mirror of
https://github.com/esphome/esphome.git
synced 2024-11-24 07:58:09 +01:00
Merge pull request #7516 from esphome/bump-2024.9.2
Some checks failed
CI for docker images / Build docker containers (push) Has been cancelled
CI / Create common environment (push) Has been cancelled
YAML lint / yamllint (push) Has been cancelled
CI / Check black (push) Has been cancelled
CI / Check flake8 (push) Has been cancelled
CI / Check pylint (push) Has been cancelled
CI / Check pyupgrade (push) Has been cancelled
CI / Run script/ci-custom (push) Has been cancelled
CI / Run script/clang-tidy for ESP32 Arduino 2/4 (push) Has been cancelled
CI / Run pytest (push) Has been cancelled
CI / Check clang-format (push) Has been cancelled
CI / Run script/clang-tidy for ESP32 Arduino 1/4 (push) Has been cancelled
CI / Run script/clang-tidy for ESP32 Arduino 3/4 (push) Has been cancelled
CI / Run script/clang-tidy for ESP32 Arduino 4/4 (push) Has been cancelled
CI / Run script/clang-tidy for ESP32 IDF (push) Has been cancelled
CI / Run script/clang-tidy for ESP8266 (push) Has been cancelled
CI / list-components (push) Has been cancelled
CI / Component test (push) Has been cancelled
CI / Split components for testing into 20 groups maximum (push) Has been cancelled
CI / Test split components (push) Has been cancelled
CI / CI Status (push) Has been cancelled
Some checks failed
CI for docker images / Build docker containers (push) Has been cancelled
CI / Create common environment (push) Has been cancelled
YAML lint / yamllint (push) Has been cancelled
CI / Check black (push) Has been cancelled
CI / Check flake8 (push) Has been cancelled
CI / Check pylint (push) Has been cancelled
CI / Check pyupgrade (push) Has been cancelled
CI / Run script/ci-custom (push) Has been cancelled
CI / Run script/clang-tidy for ESP32 Arduino 2/4 (push) Has been cancelled
CI / Run pytest (push) Has been cancelled
CI / Check clang-format (push) Has been cancelled
CI / Run script/clang-tidy for ESP32 Arduino 1/4 (push) Has been cancelled
CI / Run script/clang-tidy for ESP32 Arduino 3/4 (push) Has been cancelled
CI / Run script/clang-tidy for ESP32 Arduino 4/4 (push) Has been cancelled
CI / Run script/clang-tidy for ESP32 IDF (push) Has been cancelled
CI / Run script/clang-tidy for ESP8266 (push) Has been cancelled
CI / list-components (push) Has been cancelled
CI / Component test (push) Has been cancelled
CI / Split components for testing into 20 groups maximum (push) Has been cancelled
CI / Test split components (push) Has been cancelled
CI / CI Status (push) Has been cancelled
2024.9.2
This commit is contained in:
commit
ffb0080fc1
8 changed files with 28 additions and 25 deletions
|
@ -145,8 +145,9 @@ FINAL_VALIDATE_SCHEMA = uart.final_validate_device_schema(
|
||||||
),
|
),
|
||||||
)
|
)
|
||||||
async def reset_energy_to_code(config, action_id, template_arg, args):
|
async def reset_energy_to_code(config, action_id, template_arg, args):
|
||||||
paren = await cg.get_variable(config[CONF_ID])
|
var = cg.new_Pvariable(action_id, template_arg)
|
||||||
return cg.new_Pvariable(action_id, template_arg, paren)
|
await cg.register_parented(var, config[CONF_ID])
|
||||||
|
return var
|
||||||
|
|
||||||
|
|
||||||
async def to_code(config):
|
async def to_code(config):
|
||||||
|
|
|
@ -71,6 +71,14 @@ def _format_framework_arduino_version(ver: cv.Version) -> str:
|
||||||
# return f"~1.{ver.major}{ver.minor:02d}{ver.patch:02d}.0"
|
# return f"~1.{ver.major}{ver.minor:02d}{ver.patch:02d}.0"
|
||||||
|
|
||||||
|
|
||||||
|
def _parse_platform_version(value):
|
||||||
|
value = cv.string(value)
|
||||||
|
if value.startswith("http"):
|
||||||
|
return value
|
||||||
|
|
||||||
|
return f"https://github.com/maxgerhardt/platform-raspberrypi.git#{value}"
|
||||||
|
|
||||||
|
|
||||||
# NOTE: Keep this in mind when updating the recommended version:
|
# NOTE: Keep this in mind when updating the recommended version:
|
||||||
# * The new version needs to be thoroughly validated before changing the
|
# * The new version needs to be thoroughly validated before changing the
|
||||||
# recommended version as otherwise a bunch of devices could be bricked
|
# recommended version as otherwise a bunch of devices could be bricked
|
||||||
|
@ -82,10 +90,9 @@ def _format_framework_arduino_version(ver: cv.Version) -> str:
|
||||||
# - https://api.registry.platformio.org/v3/packages/earlephilhower/tool/framework-arduinopico
|
# - https://api.registry.platformio.org/v3/packages/earlephilhower/tool/framework-arduinopico
|
||||||
RECOMMENDED_ARDUINO_FRAMEWORK_VERSION = cv.Version(3, 9, 4)
|
RECOMMENDED_ARDUINO_FRAMEWORK_VERSION = cv.Version(3, 9, 4)
|
||||||
|
|
||||||
# The platformio/raspberrypi version to use for arduino frameworks
|
# The raspberrypi platform version to use for arduino frameworks
|
||||||
# - https://github.com/platformio/platform-raspberrypi/releases
|
# - https://github.com/maxgerhardt/platform-raspberrypi/tags
|
||||||
# - https://api.registry.platformio.org/v3/packages/platformio/platform/raspberrypi
|
RECOMMENDED_ARDUINO_PLATFORM_VERSION = "v1.2.0-gcc12"
|
||||||
ARDUINO_PLATFORM_VERSION = cv.Version(1, 13, 0)
|
|
||||||
|
|
||||||
|
|
||||||
def _arduino_check_versions(value):
|
def _arduino_check_versions(value):
|
||||||
|
@ -111,7 +118,8 @@ def _arduino_check_versions(value):
|
||||||
value[CONF_SOURCE] = source or _format_framework_arduino_version(version)
|
value[CONF_SOURCE] = source or _format_framework_arduino_version(version)
|
||||||
|
|
||||||
value[CONF_PLATFORM_VERSION] = value.get(
|
value[CONF_PLATFORM_VERSION] = value.get(
|
||||||
CONF_PLATFORM_VERSION, _parse_platform_version(str(ARDUINO_PLATFORM_VERSION))
|
CONF_PLATFORM_VERSION,
|
||||||
|
_parse_platform_version(RECOMMENDED_ARDUINO_PLATFORM_VERSION),
|
||||||
)
|
)
|
||||||
|
|
||||||
if version != RECOMMENDED_ARDUINO_FRAMEWORK_VERSION:
|
if version != RECOMMENDED_ARDUINO_FRAMEWORK_VERSION:
|
||||||
|
@ -122,15 +130,6 @@ def _arduino_check_versions(value):
|
||||||
return value
|
return value
|
||||||
|
|
||||||
|
|
||||||
def _parse_platform_version(value):
|
|
||||||
try:
|
|
||||||
# if platform version is a valid version constraint, prefix the default package
|
|
||||||
cv.platformio_version_constraint(value)
|
|
||||||
return f"platformio/raspberrypi@{value}"
|
|
||||||
except cv.Invalid:
|
|
||||||
return value
|
|
||||||
|
|
||||||
|
|
||||||
ARDUINO_FRAMEWORK_SCHEMA = cv.All(
|
ARDUINO_FRAMEWORK_SCHEMA = cv.All(
|
||||||
cv.Schema(
|
cv.Schema(
|
||||||
{
|
{
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
"""Constants used by esphome."""
|
"""Constants used by esphome."""
|
||||||
|
|
||||||
__version__ = "2024.9.1"
|
__version__ = "2024.9.2"
|
||||||
|
|
||||||
ALLOWED_NAME_CHARS = "abcdefghijklmnopqrstuvwxyz0123456789-_"
|
ALLOWED_NAME_CHARS = "abcdefghijklmnopqrstuvwxyz0123456789-_"
|
||||||
VALID_SUBSTITUTIONS_CHARACTERS = (
|
VALID_SUBSTITUTIONS_CHARACTERS = (
|
||||||
|
|
|
@ -226,4 +226,6 @@ class _Schema(vol.Schema):
|
||||||
if isinstance(schema, vol.Schema):
|
if isinstance(schema, vol.Schema):
|
||||||
schema = schema.schema
|
schema = schema.schema
|
||||||
ret = super().extend(schema, extra=extra)
|
ret = super().extend(schema, extra=extra)
|
||||||
return _Schema(ret.schema, extra=ret.extra, extra_schemas=self._extra_schemas)
|
return _Schema(
|
||||||
|
ret.schema, extra=ret.extra, extra_schemas=self._extra_schemas.copy()
|
||||||
|
)
|
||||||
|
|
|
@ -90,9 +90,6 @@ esp32:
|
||||||
RP2040_CONFIG = """
|
RP2040_CONFIG = """
|
||||||
rp2040:
|
rp2040:
|
||||||
board: {board}
|
board: {board}
|
||||||
framework:
|
|
||||||
# Required until https://github.com/platformio/platform-raspberrypi/pull/36 is merged
|
|
||||||
platform_version: https://github.com/maxgerhardt/platform-raspberrypi.git
|
|
||||||
"""
|
"""
|
||||||
|
|
||||||
BK72XX_CONFIG = """
|
BK72XX_CONFIG = """
|
||||||
|
|
|
@ -165,7 +165,7 @@ platform_packages =
|
||||||
extends = common:arduino
|
extends = common:arduino
|
||||||
board_build.filesystem_size = 0.5m
|
board_build.filesystem_size = 0.5m
|
||||||
|
|
||||||
platform = https://github.com/maxgerhardt/platform-raspberrypi.git
|
platform = https://github.com/maxgerhardt/platform-raspberrypi.git#v1.2.0-gcc12
|
||||||
platform_packages =
|
platform_packages =
|
||||||
; earlephilhower/framework-arduinopico@~1.20602.0 ; Cannot use the platformio package until old releases stop getting deleted
|
; earlephilhower/framework-arduinopico@~1.20602.0 ; Cannot use the platformio package until old releases stop getting deleted
|
||||||
earlephilhower/framework-arduinopico@https://github.com/earlephilhower/arduino-pico/releases/download/3.9.4/rp2040-3.9.4.zip
|
earlephilhower/framework-arduinopico@https://github.com/earlephilhower/arduino-pico/releases/download/3.9.4/rp2040-3.9.4.zip
|
||||||
|
|
|
@ -8,6 +8,7 @@ uart:
|
||||||
|
|
||||||
sensor:
|
sensor:
|
||||||
- platform: bl0906
|
- platform: bl0906
|
||||||
|
id: bl
|
||||||
frequency:
|
frequency:
|
||||||
name: 'Frequency'
|
name: 'Frequency'
|
||||||
temperature:
|
temperature:
|
||||||
|
@ -60,3 +61,9 @@ sensor:
|
||||||
name: 'Total_Energy'
|
name: 'Total_Energy'
|
||||||
total_power:
|
total_power:
|
||||||
name: 'Total_Power'
|
name: 'Total_Power'
|
||||||
|
|
||||||
|
button:
|
||||||
|
- platform: template
|
||||||
|
id: reset
|
||||||
|
on_press:
|
||||||
|
- bl0906.reset_energy: bl
|
||||||
|
|
|
@ -4,9 +4,6 @@ esphome:
|
||||||
|
|
||||||
rp2040:
|
rp2040:
|
||||||
board: rpipicow
|
board: rpipicow
|
||||||
framework:
|
|
||||||
# Waiting for https://github.com/platformio/platform-raspberrypi/pull/36
|
|
||||||
platform_version: https://github.com/maxgerhardt/platform-raspberrypi.git
|
|
||||||
|
|
||||||
logger:
|
logger:
|
||||||
level: VERY_VERBOSE
|
level: VERY_VERBOSE
|
||||||
|
|
Loading…
Reference in a new issue