esphome 2024.6.0b4__py3-none-any.whl → 2024.6.1__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- esphome/components/debug/debug_libretiny.cpp +1 -1
- esphome/components/network/__init__.py +15 -11
- esphome/const.py +1 -1
- {esphome-2024.6.0b4.dist-info → esphome-2024.6.1.dist-info}/METADATA +2 -2
- {esphome-2024.6.0b4.dist-info → esphome-2024.6.1.dist-info}/RECORD +9 -9
- {esphome-2024.6.0b4.dist-info → esphome-2024.6.1.dist-info}/LICENSE +0 -0
- {esphome-2024.6.0b4.dist-info → esphome-2024.6.1.dist-info}/WHEEL +0 -0
- {esphome-2024.6.0b4.dist-info → esphome-2024.6.1.dist-info}/entry_points.txt +0 -0
- {esphome-2024.6.0b4.dist-info → esphome-2024.6.1.dist-info}/top_level.txt +0 -0
@@ -12,7 +12,7 @@ std::string DebugComponent::get_reset_reason_() { return lt_get_reboot_reason_na
|
|
12
12
|
uint32_t DebugComponent::get_free_heap_() { return lt_heap_get_free(); }
|
13
13
|
|
14
14
|
void DebugComponent::get_device_info_(std::string &device_info) {
|
15
|
-
|
15
|
+
std::string reset_reason = get_reset_reason_();
|
16
16
|
ESP_LOGD(TAG, "LibreTiny Version: %s", lt_get_version());
|
17
17
|
ESP_LOGD(TAG, "Chip: %s (%04x) @ %u MHz", lt_cpu_get_model_name(), lt_cpu_get_model(), lt_cpu_get_freq_mhz());
|
18
18
|
ESP_LOGD(TAG, "Chip ID: 0x%06X", lt_cpu_get_mac_id());
|
@@ -19,7 +19,12 @@ IPAddress = network_ns.class_("IPAddress")
|
|
19
19
|
|
20
20
|
CONFIG_SCHEMA = cv.Schema(
|
21
21
|
{
|
22
|
-
cv.SplitDefault(
|
22
|
+
cv.SplitDefault(
|
23
|
+
CONF_ENABLE_IPV6,
|
24
|
+
esp8266=False,
|
25
|
+
esp32=False,
|
26
|
+
rp2040=False,
|
27
|
+
): cv.All(
|
23
28
|
cv.boolean, cv.only_on([PLATFORM_ESP32, PLATFORM_ESP8266, PLATFORM_RP2040])
|
24
29
|
),
|
25
30
|
cv.Optional(CONF_MIN_IPV6_ADDR_COUNT, default=0): cv.positive_int,
|
@@ -28,18 +33,17 @@ CONFIG_SCHEMA = cv.Schema(
|
|
28
33
|
|
29
34
|
|
30
35
|
async def to_code(config):
|
31
|
-
if CONF_ENABLE_IPV6
|
32
|
-
cg.add_define("USE_NETWORK_IPV6",
|
33
|
-
|
34
|
-
|
35
|
-
|
36
|
-
if CORE.using_esp_idf:
|
37
|
-
add_idf_sdkconfig_option("CONFIG_LWIP_IPV6", config[CONF_ENABLE_IPV6])
|
38
|
-
add_idf_sdkconfig_option(
|
39
|
-
"CONFIG_LWIP_IPV6_AUTOCONFIG", config[CONF_ENABLE_IPV6]
|
36
|
+
if (enable_ipv6 := config.get(CONF_ENABLE_IPV6, None)) is not None:
|
37
|
+
cg.add_define("USE_NETWORK_IPV6", enable_ipv6)
|
38
|
+
if enable_ipv6:
|
39
|
+
cg.add_define(
|
40
|
+
"USE_NETWORK_MIN_IPV6_ADDR_COUNT", config[CONF_MIN_IPV6_ADDR_COUNT]
|
40
41
|
)
|
42
|
+
if CORE.using_esp_idf:
|
43
|
+
add_idf_sdkconfig_option("CONFIG_LWIP_IPV6", enable_ipv6)
|
44
|
+
add_idf_sdkconfig_option("CONFIG_LWIP_IPV6_AUTOCONFIG", enable_ipv6)
|
41
45
|
else:
|
42
|
-
if
|
46
|
+
if enable_ipv6:
|
43
47
|
cg.add_build_flag("-DCONFIG_LWIP_IPV6")
|
44
48
|
cg.add_build_flag("-DCONFIG_LWIP_IPV6_AUTOCONFIG")
|
45
49
|
if CORE.is_rp2040:
|
esphome/const.py
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.1
|
2
2
|
Name: esphome
|
3
|
-
Version: 2024.6.
|
3
|
+
Version: 2024.6.1
|
4
4
|
Summary: Make creating custom firmwares for ESP32/ESP8266 super easy.
|
5
5
|
Author-email: The ESPHome Authors <esphome@nabucasa.com>
|
6
6
|
License: MIT
|
@@ -36,7 +36,7 @@ Requires-Dist: pyserial ==3.5
|
|
36
36
|
Requires-Dist: platformio ==6.1.15
|
37
37
|
Requires-Dist: esptool ==4.7.0
|
38
38
|
Requires-Dist: click ==8.1.7
|
39
|
-
Requires-Dist: esphome-dashboard ==
|
39
|
+
Requires-Dist: esphome-dashboard ==20240620.0
|
40
40
|
Requires-Dist: aioesphomeapi ==24.3.0
|
41
41
|
Requires-Dist: zeroconf ==0.132.2
|
42
42
|
Requires-Dist: python-magic ==0.4.27
|
@@ -5,7 +5,7 @@ esphome/codegen.py,sha256=A8O0Jr8qBILHlr7NwPPeW2DSKQ9H5d85j5fOXQw0rSQ,1835
|
|
5
5
|
esphome/config.py,sha256=wztK2UmO7-hc6HFDAi6YWtrPVy5mH0diKuqpsWp4-XA,39616
|
6
6
|
esphome/config_helpers.py,sha256=O7e8KvTpA3i5yjFORNhzPSsVSHDyKmF965b09MHyDWc,3118
|
7
7
|
esphome/config_validation.py,sha256=G79LGVIh5BdpGkzuehkm7Db_llpbC2of4dKqZEpHc3A,64838
|
8
|
-
esphome/const.py,sha256
|
8
|
+
esphome/const.py,sha256=xhJMd1J0q83zba92AuQKYK6YN8eDmfL0BlUc_5-QoaM,38841
|
9
9
|
esphome/coroutine.py,sha256=IG2kC92OrenyiRm7Qo9uC-4qU4b4-Lmj0TkMIjRG2RY,9344
|
10
10
|
esphome/cpp_generator.py,sha256=hW2EfubUiildhKXZIdV8Dr3Q9TM5oHybFwiTo5-vEUE,31203
|
11
11
|
esphome/cpp_helpers.py,sha256=KadRBBoo4QRT-VwdWFtvxv_FYjqhZTkBhfMX-JhEMwg,4803
|
@@ -586,7 +586,7 @@ esphome/components/debug/debug_component.h,sha256=Q1ZL85gLoSk2PJJ9vliOCIYKnAFIqS
|
|
586
586
|
esphome/components/debug/debug_esp32.cpp,sha256=zYGKH5ihTA_TMfLcP4OGzX79-OKrxVLowkj3RUQiRfU,8485
|
587
587
|
esphome/components/debug/debug_esp8266.cpp,sha256=eTj_cCcsHgG5YgtryxZFmM1bN2mHRXLEC1qPkfBDdDY,3145
|
588
588
|
esphome/components/debug/debug_host.cpp,sha256=DeAkj-QT8OPcQykp1Cl98YtnJ28kVd3TDR4LXgs1x-o,396
|
589
|
-
esphome/components/debug/debug_libretiny.cpp,sha256=
|
589
|
+
esphome/components/debug/debug_libretiny.cpp,sha256=18T23svXnWw-__ykQjxoaDQ5jpztW1MHiOWDh_XoTzM,1569
|
590
590
|
esphome/components/debug/debug_rp2040.cpp,sha256=87m3zvm1IB9RaKoMDc6h_TNIgpzkNK6sgrk9Ab6qMkE,602
|
591
591
|
esphome/components/debug/sensor.py,sha256=3j-Ef3oDnryeNsykRnhBalE81ZCjbdqrKvKUxx1TFUI,2709
|
592
592
|
esphome/components/debug/text_sensor.py,sha256=jL5px2vXIw39kdXXbYqq2thB5vQSOqAr332j4rjt02Q,1200
|
@@ -1695,7 +1695,7 @@ esphome/components/neopixelbus/_methods.py,sha256=Qt6aC4K-9ySyRVD2aUy8UmM_H9brdf
|
|
1695
1695
|
esphome/components/neopixelbus/const.py,sha256=8dPnqN1skzSEnjjsr3H2Q3BJOEn-TyFB1PApCSSsYUw,824
|
1696
1696
|
esphome/components/neopixelbus/light.py,sha256=Qm2eq4wSt7jVcX81wtGvOmTHHIStP4GM1mNnHzrtUuQ,7289
|
1697
1697
|
esphome/components/neopixelbus/neopixelbus_light.h,sha256=Q-F19U58RBjGcE_0mJc7rZG5JPnxKNgcBWRVvbEH1V4,4650
|
1698
|
-
esphome/components/network/__init__.py,sha256=
|
1698
|
+
esphome/components/network/__init__.py,sha256=ToQVWMATnRLWNBc_HMaN3ZFKIAFQrJ0a87V1EjXjKqc,1706
|
1699
1699
|
esphome/components/network/ip_address.h,sha256=tO_BQRZ_SrX8-PQhbRdCMT0k9Odb030_xleZl7SOcJs,4231
|
1700
1700
|
esphome/components/network/util.cpp,sha256=hGmUg9ETloFHVAdYcg1b9ojsqNch4rUvZhbRlNTxbGY,1484
|
1701
1701
|
esphome/components/network/util.h,sha256=cZdPgWnrHA46xJEZ6ZJpB0hb-PzjutCB-1avFwAR7hc,431
|
@@ -3113,9 +3113,9 @@ esphome/dashboard/util/itertools.py,sha256=8eLrWEWmICLtXNxkKdYPQV0c_N4GEz8m9Npnb
|
|
3113
3113
|
esphome/dashboard/util/password.py,sha256=cQz3b9B-ijTe7zS6BeCW0hc3pWv6JjC78jmnycYYAh8,321
|
3114
3114
|
esphome/dashboard/util/subprocess.py,sha256=T8EW6dbU4LPd2DG1dRrdh8li71tt6J1isn411poMhkk,1022
|
3115
3115
|
esphome/dashboard/util/text.py,sha256=ENDnfN4O0NdA3CKVJjQYabFbwbrsIhVKrAMQe53qYu4,534
|
3116
|
-
esphome-2024.6.
|
3117
|
-
esphome-2024.6.
|
3118
|
-
esphome-2024.6.
|
3119
|
-
esphome-2024.6.
|
3120
|
-
esphome-2024.6.
|
3121
|
-
esphome-2024.6.
|
3116
|
+
esphome-2024.6.1.dist-info/LICENSE,sha256=HzEjkBInJe44L4WvAOPfhPJJDNj6YbnqFyvGWRzArGM,36664
|
3117
|
+
esphome-2024.6.1.dist-info/METADATA,sha256=dzznjmt_HecwKildcmA_qNS4rZW7fjOoHl4r0jegKu8,3263
|
3118
|
+
esphome-2024.6.1.dist-info/WHEEL,sha256=GJ7t_kWBFywbagK5eo9IoUwLW6oyOeTKmQ-9iHFVNxQ,92
|
3119
|
+
esphome-2024.6.1.dist-info/entry_points.txt,sha256=mIxVNuWtbYzeEcaWCl-AQ-97aBOWbnYBAK8nbF6P4M0,50
|
3120
|
+
esphome-2024.6.1.dist-info/top_level.txt,sha256=0GSXEW3cnITpgG3qnsSMz0qoqJHAFyfw7Y8MVtEf1Yk,8
|
3121
|
+
esphome-2024.6.1.dist-info/RECORD,,
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|