mirror of
https://github.com/esphome/esphome.git
synced 2025-04-06 19:00:29 +01:00
Merge branch 'dev' into separate-ota-backend
This commit is contained in:
commit
f83604afb9
7
.github/workflows/ci.yml
vendored
7
.github/workflows/ci.yml
vendored
@ -472,6 +472,7 @@ jobs:
|
|||||||
- compile-tests
|
- compile-tests
|
||||||
- clang-tidy
|
- clang-tidy
|
||||||
- test-build-components
|
- test-build-components
|
||||||
|
- list-components
|
||||||
if: always()
|
if: always()
|
||||||
steps:
|
steps:
|
||||||
- name: Success
|
- name: Success
|
||||||
@ -479,4 +480,8 @@ jobs:
|
|||||||
run: exit 0
|
run: exit 0
|
||||||
- name: Failure
|
- name: Failure
|
||||||
if: ${{ contains(needs.*.result, 'failure') }}
|
if: ${{ contains(needs.*.result, 'failure') }}
|
||||||
run: exit 1
|
env:
|
||||||
|
JSON_DOC: ${{ toJSON(needs) }}
|
||||||
|
run: |
|
||||||
|
echo $JSON_DOC | jq
|
||||||
|
exit 1
|
||||||
|
38
.github/workflows/release.yml
vendored
38
.github/workflows/release.yml
vendored
@ -17,14 +17,16 @@ jobs:
|
|||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
outputs:
|
outputs:
|
||||||
tag: ${{ steps.tag.outputs.tag }}
|
tag: ${{ steps.tag.outputs.tag }}
|
||||||
|
branch_build: ${{ steps.tag.outputs.branch_build }}
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v4.1.1
|
- uses: actions/checkout@v4.1.1
|
||||||
- name: Get tag
|
- name: Get tag
|
||||||
id: tag
|
id: tag
|
||||||
# yamllint disable rule:line-length
|
# yamllint disable rule:line-length
|
||||||
run: |
|
run: |
|
||||||
if [[ "$GITHUB_EVENT_NAME" = "release" ]]; then
|
if [[ "${{ github.event_name }}" = "release" ]]; then
|
||||||
TAG="${GITHUB_REF#refs/tags/}"
|
TAG="${{ github.event.release.tag_name}}"
|
||||||
|
BRANCH_BUILD="false"
|
||||||
else
|
else
|
||||||
TAG=$(cat esphome/const.py | sed -n -E "s/^__version__\s+=\s+\"(.+)\"$/\1/p")
|
TAG=$(cat esphome/const.py | sed -n -E "s/^__version__\s+=\s+\"(.+)\"$/\1/p")
|
||||||
today="$(date --utc '+%Y%m%d')"
|
today="$(date --utc '+%Y%m%d')"
|
||||||
@ -32,15 +34,22 @@ jobs:
|
|||||||
BRANCH=${GITHUB_REF#refs/heads/}
|
BRANCH=${GITHUB_REF#refs/heads/}
|
||||||
if [[ "$BRANCH" != "dev" ]]; then
|
if [[ "$BRANCH" != "dev" ]]; then
|
||||||
TAG="${TAG}-${BRANCH}"
|
TAG="${TAG}-${BRANCH}"
|
||||||
|
BRANCH_BUILD="true"
|
||||||
|
else
|
||||||
|
BRANCH_BUILD="false"
|
||||||
fi
|
fi
|
||||||
fi
|
fi
|
||||||
echo "tag=${TAG}" >> $GITHUB_OUTPUT
|
echo "tag=${TAG}" >> $GITHUB_OUTPUT
|
||||||
|
echo "branch_build=${BRANCH_BUILD}" >> $GITHUB_OUTPUT
|
||||||
# yamllint enable rule:line-length
|
# yamllint enable rule:line-length
|
||||||
|
|
||||||
deploy-pypi:
|
deploy-pypi:
|
||||||
name: Build and publish to PyPi
|
name: Build and publish to PyPi
|
||||||
if: github.repository == 'esphome/esphome' && github.event_name == 'release'
|
if: github.repository == 'esphome/esphome' && github.event_name == 'release'
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
|
permissions:
|
||||||
|
contents: read
|
||||||
|
id-token: write
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v4.1.1
|
- uses: actions/checkout@v4.1.1
|
||||||
- name: Set up Python
|
- name: Set up Python
|
||||||
@ -50,16 +59,11 @@ jobs:
|
|||||||
- name: Set up python environment
|
- name: Set up python environment
|
||||||
env:
|
env:
|
||||||
ESPHOME_NO_VENV: 1
|
ESPHOME_NO_VENV: 1
|
||||||
run: |
|
run: script/setup
|
||||||
script/setup
|
|
||||||
pip install twine
|
|
||||||
- name: Build
|
- name: Build
|
||||||
run: python setup.py sdist bdist_wheel
|
run: python setup.py sdist bdist_wheel
|
||||||
- name: Upload
|
- name: Publish
|
||||||
env:
|
uses: pypa/gh-action-pypi-publish@v1.8.14
|
||||||
TWINE_USERNAME: __token__
|
|
||||||
TWINE_PASSWORD: ${{ secrets.PYPI_TOKEN }}
|
|
||||||
run: twine upload dist/*
|
|
||||||
|
|
||||||
deploy-docker:
|
deploy-docker:
|
||||||
name: Build ESPHome ${{ matrix.platform }}
|
name: Build ESPHome ${{ matrix.platform }}
|
||||||
@ -197,22 +201,28 @@ jobs:
|
|||||||
$(printf '${{ steps.tags.outputs.image }}@sha256:%s ' *)
|
$(printf '${{ steps.tags.outputs.image }}@sha256:%s ' *)
|
||||||
|
|
||||||
deploy-ha-addon-repo:
|
deploy-ha-addon-repo:
|
||||||
if: github.repository == 'esphome/esphome' && github.event_name == 'release'
|
if: github.repository == 'esphome/esphome' && needs.init.outputs.branch_build == 'false'
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
needs: [deploy-manifest]
|
needs:
|
||||||
|
- init
|
||||||
|
- deploy-manifest
|
||||||
steps:
|
steps:
|
||||||
- name: Trigger Workflow
|
- name: Trigger Workflow
|
||||||
uses: actions/github-script@v7.0.1
|
uses: actions/github-script@v7.0.1
|
||||||
with:
|
with:
|
||||||
github-token: ${{ secrets.DEPLOY_HA_ADDON_REPO_TOKEN }}
|
github-token: ${{ secrets.DEPLOY_HA_ADDON_REPO_TOKEN }}
|
||||||
script: |
|
script: |
|
||||||
|
let description = "ESPHome";
|
||||||
|
if (context.eventName == "release") {
|
||||||
|
description = ${{ toJSON(github.event.release.body) }};
|
||||||
|
}
|
||||||
github.rest.actions.createWorkflowDispatch({
|
github.rest.actions.createWorkflowDispatch({
|
||||||
owner: "esphome",
|
owner: "esphome",
|
||||||
repo: "home-assistant-addon",
|
repo: "home-assistant-addon",
|
||||||
workflow_id: "bump-version.yml",
|
workflow_id: "bump-version.yml",
|
||||||
ref: "main",
|
ref: "main",
|
||||||
inputs: {
|
inputs: {
|
||||||
version: "${{ github.event.release.tag_name }}",
|
version: "${{ needs.init.outputs.tag }}",
|
||||||
content: ${{ toJSON(github.event.release.body) }}
|
content: description
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
|
2
.github/workflows/sync-device-classes.yml
vendored
2
.github/workflows/sync-device-classes.yml
vendored
@ -36,7 +36,7 @@ jobs:
|
|||||||
python ./script/sync-device_class.py
|
python ./script/sync-device_class.py
|
||||||
|
|
||||||
- name: Commit changes
|
- name: Commit changes
|
||||||
uses: peter-evans/create-pull-request@v6.0.3
|
uses: peter-evans/create-pull-request@v6.0.4
|
||||||
with:
|
with:
|
||||||
commit-message: "Synchronise Device Classes from Home Assistant"
|
commit-message: "Synchronise Device Classes from Home Assistant"
|
||||||
committer: esphomebot <esphome@nabucasa.com>
|
committer: esphomebot <esphome@nabucasa.com>
|
||||||
|
@ -27,7 +27,7 @@ repos:
|
|||||||
- --branch=release
|
- --branch=release
|
||||||
- --branch=beta
|
- --branch=beta
|
||||||
- repo: https://github.com/asottile/pyupgrade
|
- repo: https://github.com/asottile/pyupgrade
|
||||||
rev: v3.15.1
|
rev: v3.15.2
|
||||||
hooks:
|
hooks:
|
||||||
- id: pyupgrade
|
- id: pyupgrade
|
||||||
args: [--py39-plus]
|
args: [--py39-plus]
|
||||||
|
47
docker/ha-addon-rootfs/etc/cont-init.d/30-esphome-fork.sh
Executable file
47
docker/ha-addon-rootfs/etc/cont-init.d/30-esphome-fork.sh
Executable file
@ -0,0 +1,47 @@
|
|||||||
|
#!/usr/bin/with-contenv bashio
|
||||||
|
# ==============================================================================
|
||||||
|
# This file installs the user ESPHome fork if specified.
|
||||||
|
# The fork must be up to date with the latest ESPHome dev branch
|
||||||
|
# and have no conflicts.
|
||||||
|
# This config option only exists in the ESPHome Dev add-on.
|
||||||
|
# ==============================================================================
|
||||||
|
|
||||||
|
declare esphome_fork
|
||||||
|
|
||||||
|
if bashio::config.has_value 'esphome_fork'; then
|
||||||
|
esphome_fork=$(bashio::config 'esphome_fork')
|
||||||
|
# format: [username][/repository]:ref
|
||||||
|
if [[ "$esphome_fork" =~ ^(([^/]+)(/([^:]+))?:)?([^:/]+)$ ]]; then
|
||||||
|
username="${BASH_REMATCH[2]:-esphome}"
|
||||||
|
repository="${BASH_REMATCH[4]:-esphome}"
|
||||||
|
ref="${BASH_REMATCH[5]}"
|
||||||
|
else
|
||||||
|
bashio::exit.nok "Invalid esphome_fork format: $esphome_fork"
|
||||||
|
fi
|
||||||
|
full_url="https://github.com/${username}/${repository}/archive/${ref}.tar.gz"
|
||||||
|
bashio::log.info "Checking forked ESPHome"
|
||||||
|
dev_version=$(python3 -c "from esphome.const import __version__; print(__version__)")
|
||||||
|
bashio::log.info "Downloading ESPHome from fork '${esphome_fork}' (${full_url})..."
|
||||||
|
curl -L -o /tmp/esphome.tar.gz "${full_url}" -qq ||
|
||||||
|
bashio::exit.nok "Failed downloading ESPHome fork."
|
||||||
|
bashio::log.info "Installing ESPHome from fork '${esphome_fork}' (${full_url})..."
|
||||||
|
rm -rf /esphome || bashio::exit.nok "Failed to remove ESPHome."
|
||||||
|
mkdir /esphome
|
||||||
|
tar -zxf /tmp/esphome.tar.gz -C /esphome --strip-components=1 ||
|
||||||
|
bashio::exit.nok "Failed installing ESPHome from fork."
|
||||||
|
pip install -U -e /esphome || bashio::exit.nok "Failed installing ESPHome from fork."
|
||||||
|
rm -f /tmp/esphome.tar.gz
|
||||||
|
fork_version=$(python3 -c "from esphome.const import __version__; print(__version__)")
|
||||||
|
|
||||||
|
if [[ "$fork_version" != "$dev_version" ]]; then
|
||||||
|
bashio::log.error "############################"
|
||||||
|
bashio::log.error "Uninstalled fork as version does not match"
|
||||||
|
bashio::log.error "Update (or ask the author to update) the branch"
|
||||||
|
bashio::log.error "This is important as the dev addon and the dev ESPHome"
|
||||||
|
bashio::log.error "branch can have changes that are not compatible with old forks"
|
||||||
|
bashio::log.error "and get reported as bugs which we cannot solve easily."
|
||||||
|
bashio::log.error "############################"
|
||||||
|
bashio::exit.nok
|
||||||
|
fi
|
||||||
|
bashio::log.info "Installed ESPHome from fork '${esphome_fork}' (${full_url})..."
|
||||||
|
fi
|
@ -244,122 +244,150 @@ async def setup_climate_core_(var, config):
|
|||||||
await setup_entity(var, config)
|
await setup_entity(var, config)
|
||||||
|
|
||||||
visual = config[CONF_VISUAL]
|
visual = config[CONF_VISUAL]
|
||||||
if CONF_MIN_TEMPERATURE in visual:
|
if (min_temp := visual.get(CONF_MIN_TEMPERATURE)) is not None:
|
||||||
cg.add(var.set_visual_min_temperature_override(visual[CONF_MIN_TEMPERATURE]))
|
cg.add(var.set_visual_min_temperature_override(min_temp))
|
||||||
if CONF_MAX_TEMPERATURE in visual:
|
if (max_temp := visual.get(CONF_MAX_TEMPERATURE)) is not None:
|
||||||
cg.add(var.set_visual_max_temperature_override(visual[CONF_MAX_TEMPERATURE]))
|
cg.add(var.set_visual_max_temperature_override(max_temp))
|
||||||
if CONF_TEMPERATURE_STEP in visual:
|
if (temp_step := visual.get(CONF_TEMPERATURE_STEP)) is not None:
|
||||||
cg.add(
|
cg.add(
|
||||||
var.set_visual_temperature_step_override(
|
var.set_visual_temperature_step_override(
|
||||||
visual[CONF_TEMPERATURE_STEP][CONF_TARGET_TEMPERATURE],
|
temp_step[CONF_TARGET_TEMPERATURE],
|
||||||
visual[CONF_TEMPERATURE_STEP][CONF_CURRENT_TEMPERATURE],
|
temp_step[CONF_CURRENT_TEMPERATURE],
|
||||||
)
|
)
|
||||||
)
|
)
|
||||||
if CONF_MIN_HUMIDITY in visual:
|
if (min_humidity := visual.get(CONF_MIN_HUMIDITY)) is not None:
|
||||||
cg.add(var.set_visual_min_humidity_override(visual[CONF_MIN_HUMIDITY]))
|
cg.add(var.set_visual_min_humidity_override(min_humidity))
|
||||||
if CONF_MAX_HUMIDITY in visual:
|
if (max_humidity := visual.get(CONF_MAX_HUMIDITY)) is not None:
|
||||||
cg.add(var.set_visual_max_humidity_override(visual[CONF_MAX_HUMIDITY]))
|
cg.add(var.set_visual_max_humidity_override(max_humidity))
|
||||||
|
|
||||||
if CONF_MQTT_ID in config:
|
if (mqtt_id := config.get(CONF_MQTT_ID)) is not None:
|
||||||
mqtt_ = cg.new_Pvariable(config[CONF_MQTT_ID], var)
|
mqtt_ = cg.new_Pvariable(mqtt_id, var)
|
||||||
await mqtt.register_mqtt_component(mqtt_, config)
|
await mqtt.register_mqtt_component(mqtt_, config)
|
||||||
|
|
||||||
if CONF_ACTION_STATE_TOPIC in config:
|
if (action_state_topic := config.get(CONF_ACTION_STATE_TOPIC)) is not None:
|
||||||
cg.add(mqtt_.set_custom_action_state_topic(config[CONF_ACTION_STATE_TOPIC]))
|
cg.add(mqtt_.set_custom_action_state_topic(action_state_topic))
|
||||||
if CONF_AWAY_COMMAND_TOPIC in config:
|
if (away_command_topic := config.get(CONF_AWAY_COMMAND_TOPIC)) is not None:
|
||||||
cg.add(mqtt_.set_custom_away_command_topic(config[CONF_AWAY_COMMAND_TOPIC]))
|
cg.add(mqtt_.set_custom_away_command_topic(away_command_topic))
|
||||||
if CONF_AWAY_STATE_TOPIC in config:
|
if (away_state_topic := config.get(CONF_AWAY_STATE_TOPIC)) is not None:
|
||||||
cg.add(mqtt_.set_custom_away_state_topic(config[CONF_AWAY_STATE_TOPIC]))
|
cg.add(mqtt_.set_custom_away_state_topic(away_state_topic))
|
||||||
if CONF_CURRENT_TEMPERATURE_STATE_TOPIC in config:
|
if (
|
||||||
|
current_temperature_state_topic := config.get(
|
||||||
|
CONF_CURRENT_TEMPERATURE_STATE_TOPIC
|
||||||
|
)
|
||||||
|
) is not None:
|
||||||
cg.add(
|
cg.add(
|
||||||
mqtt_.set_custom_current_temperature_state_topic(
|
mqtt_.set_custom_current_temperature_state_topic(
|
||||||
config[CONF_CURRENT_TEMPERATURE_STATE_TOPIC]
|
current_temperature_state_topic
|
||||||
)
|
)
|
||||||
)
|
)
|
||||||
if CONF_CURRENT_HUMIDITY_STATE_TOPIC in config:
|
if (
|
||||||
|
current_humidity_state_topic := config.get(
|
||||||
|
CONF_CURRENT_HUMIDITY_STATE_TOPIC
|
||||||
|
)
|
||||||
|
) is not None:
|
||||||
cg.add(
|
cg.add(
|
||||||
mqtt_.set_custom_current_humidity_state_topic(
|
mqtt_.set_custom_current_humidity_state_topic(
|
||||||
config[CONF_CURRENT_HUMIDITY_STATE_TOPIC]
|
current_humidity_state_topic
|
||||||
)
|
)
|
||||||
)
|
)
|
||||||
if CONF_FAN_MODE_COMMAND_TOPIC in config:
|
if (
|
||||||
cg.add(
|
fan_mode_command_topic := config.get(CONF_FAN_MODE_COMMAND_TOPIC)
|
||||||
mqtt_.set_custom_fan_mode_command_topic(
|
) is not None:
|
||||||
config[CONF_FAN_MODE_COMMAND_TOPIC]
|
cg.add(mqtt_.set_custom_fan_mode_command_topic(fan_mode_command_topic))
|
||||||
)
|
if (fan_mode_state_topic := config.get(CONF_FAN_MODE_STATE_TOPIC)) is not None:
|
||||||
|
cg.add(mqtt_.set_custom_fan_mode_state_topic(fan_mode_state_topic))
|
||||||
|
if (mode_command_topic := config.get(CONF_MODE_COMMAND_TOPIC)) is not None:
|
||||||
|
cg.add(mqtt_.set_custom_mode_command_topic(mode_command_topic))
|
||||||
|
if (mode_state_topic := config.get(CONF_MODE_STATE_TOPIC)) is not None:
|
||||||
|
cg.add(mqtt_.set_custom_mode_state_topic(mode_state_topic))
|
||||||
|
if (preset_command_topic := config.get(CONF_PRESET_COMMAND_TOPIC)) is not None:
|
||||||
|
cg.add(mqtt_.set_custom_preset_command_topic(preset_command_topic))
|
||||||
|
if (preset_state_topic := config.get(CONF_PRESET_STATE_TOPIC)) is not None:
|
||||||
|
cg.add(mqtt_.set_custom_preset_state_topic(preset_state_topic))
|
||||||
|
if (
|
||||||
|
swing_mode_command_topic := config.get(CONF_SWING_MODE_COMMAND_TOPIC)
|
||||||
|
) is not None:
|
||||||
|
cg.add(mqtt_.set_custom_swing_mode_command_topic(swing_mode_command_topic))
|
||||||
|
if (
|
||||||
|
swing_mode_state_topic := config.get(CONF_SWING_MODE_STATE_TOPIC)
|
||||||
|
) is not None:
|
||||||
|
cg.add(mqtt_.set_custom_swing_mode_state_topic(swing_mode_state_topic))
|
||||||
|
if (
|
||||||
|
target_temperature_command_topic := config.get(
|
||||||
|
CONF_TARGET_TEMPERATURE_COMMAND_TOPIC
|
||||||
)
|
)
|
||||||
if CONF_FAN_MODE_STATE_TOPIC in config:
|
) is not None:
|
||||||
cg.add(
|
|
||||||
mqtt_.set_custom_fan_mode_state_topic(config[CONF_FAN_MODE_STATE_TOPIC])
|
|
||||||
)
|
|
||||||
if CONF_MODE_COMMAND_TOPIC in config:
|
|
||||||
cg.add(mqtt_.set_custom_mode_command_topic(config[CONF_MODE_COMMAND_TOPIC]))
|
|
||||||
if CONF_MODE_STATE_TOPIC in config:
|
|
||||||
cg.add(mqtt_.set_custom_mode_state_topic(config[CONF_MODE_STATE_TOPIC]))
|
|
||||||
if CONF_PRESET_COMMAND_TOPIC in config:
|
|
||||||
cg.add(
|
|
||||||
mqtt_.set_custom_preset_command_topic(config[CONF_PRESET_COMMAND_TOPIC])
|
|
||||||
)
|
|
||||||
if CONF_PRESET_STATE_TOPIC in config:
|
|
||||||
cg.add(mqtt_.set_custom_preset_state_topic(config[CONF_PRESET_STATE_TOPIC]))
|
|
||||||
if CONF_SWING_MODE_COMMAND_TOPIC in config:
|
|
||||||
cg.add(
|
|
||||||
mqtt_.set_custom_swing_mode_command_topic(
|
|
||||||
config[CONF_SWING_MODE_COMMAND_TOPIC]
|
|
||||||
)
|
|
||||||
)
|
|
||||||
if CONF_SWING_MODE_STATE_TOPIC in config:
|
|
||||||
cg.add(
|
|
||||||
mqtt_.set_custom_swing_mode_state_topic(
|
|
||||||
config[CONF_SWING_MODE_STATE_TOPIC]
|
|
||||||
)
|
|
||||||
)
|
|
||||||
if CONF_TARGET_TEMPERATURE_COMMAND_TOPIC in config:
|
|
||||||
cg.add(
|
cg.add(
|
||||||
mqtt_.set_custom_target_temperature_command_topic(
|
mqtt_.set_custom_target_temperature_command_topic(
|
||||||
config[CONF_TARGET_TEMPERATURE_COMMAND_TOPIC]
|
target_temperature_command_topic
|
||||||
)
|
)
|
||||||
)
|
)
|
||||||
if CONF_TARGET_TEMPERATURE_STATE_TOPIC in config:
|
if (
|
||||||
|
target_temperature_state_topic := config.get(
|
||||||
|
CONF_TARGET_TEMPERATURE_STATE_TOPIC
|
||||||
|
)
|
||||||
|
) is not None:
|
||||||
cg.add(
|
cg.add(
|
||||||
mqtt_.set_custom_target_temperature_state_topic(
|
mqtt_.set_custom_target_temperature_state_topic(
|
||||||
config[CONF_TARGET_TEMPERATURE_STATE_TOPIC]
|
target_temperature_state_topic
|
||||||
)
|
)
|
||||||
)
|
)
|
||||||
if CONF_TARGET_TEMPERATURE_HIGH_COMMAND_TOPIC in config:
|
if (
|
||||||
|
target_temperature_high_command_topic := config.get(
|
||||||
|
CONF_TARGET_TEMPERATURE_HIGH_COMMAND_TOPIC
|
||||||
|
)
|
||||||
|
) is not None:
|
||||||
cg.add(
|
cg.add(
|
||||||
mqtt_.set_custom_target_temperature_high_command_topic(
|
mqtt_.set_custom_target_temperature_high_command_topic(
|
||||||
config[CONF_TARGET_TEMPERATURE_HIGH_COMMAND_TOPIC]
|
target_temperature_high_command_topic
|
||||||
)
|
)
|
||||||
)
|
)
|
||||||
if CONF_TARGET_TEMPERATURE_HIGH_STATE_TOPIC in config:
|
if (
|
||||||
|
target_temperature_high_state_topic := config.get(
|
||||||
|
CONF_TARGET_TEMPERATURE_HIGH_STATE_TOPIC
|
||||||
|
)
|
||||||
|
) is not None:
|
||||||
cg.add(
|
cg.add(
|
||||||
mqtt_.set_custom_target_temperature_high_state_topic(
|
mqtt_.set_custom_target_temperature_high_state_topic(
|
||||||
config[CONF_TARGET_TEMPERATURE_HIGH_STATE_TOPIC]
|
target_temperature_high_state_topic
|
||||||
)
|
)
|
||||||
)
|
)
|
||||||
if CONF_TARGET_TEMPERATURE_LOW_COMMAND_TOPIC in config:
|
if (
|
||||||
|
target_temperature_low_command_topic := config.get(
|
||||||
|
CONF_TARGET_TEMPERATURE_LOW_COMMAND_TOPIC
|
||||||
|
)
|
||||||
|
) is not None:
|
||||||
cg.add(
|
cg.add(
|
||||||
mqtt_.set_custom_target_temperature_low_command_topic(
|
mqtt_.set_custom_target_temperature_low_command_topic(
|
||||||
config[CONF_TARGET_TEMPERATURE_LOW_COMMAND_TOPIC]
|
target_temperature_low_command_topic
|
||||||
)
|
)
|
||||||
)
|
)
|
||||||
if CONF_TARGET_TEMPERATURE_LOW_STATE_TOPIC in config:
|
if (
|
||||||
|
target_temperature_low_state_topic := config.get(
|
||||||
|
CONF_TARGET_TEMPERATURE_LOW_STATE_TOPIC
|
||||||
|
)
|
||||||
|
) is not None:
|
||||||
cg.add(
|
cg.add(
|
||||||
mqtt_.set_custom_target_temperature_state_topic(
|
mqtt_.set_custom_target_temperature_state_topic(
|
||||||
config[CONF_TARGET_TEMPERATURE_LOW_STATE_TOPIC]
|
target_temperature_low_state_topic
|
||||||
)
|
)
|
||||||
)
|
)
|
||||||
if CONF_TARGET_HUMIDITY_COMMAND_TOPIC in config:
|
if (
|
||||||
|
target_humidity_command_topic := config.get(
|
||||||
|
CONF_TARGET_HUMIDITY_COMMAND_TOPIC
|
||||||
|
)
|
||||||
|
) is not None:
|
||||||
cg.add(
|
cg.add(
|
||||||
mqtt_.set_custom_target_humidity_command_topic(
|
mqtt_.set_custom_target_humidity_command_topic(
|
||||||
config[CONF_TARGET_HUMIDITY_COMMAND_TOPIC]
|
target_humidity_command_topic
|
||||||
)
|
)
|
||||||
)
|
)
|
||||||
if CONF_TARGET_HUMIDITY_STATE_TOPIC in config:
|
if (
|
||||||
|
target_humidity_state_topic := config.get(CONF_TARGET_HUMIDITY_STATE_TOPIC)
|
||||||
|
) is not None:
|
||||||
cg.add(
|
cg.add(
|
||||||
mqtt_.set_custom_target_humidity_state_topic(
|
mqtt_.set_custom_target_humidity_state_topic(
|
||||||
config[CONF_TARGET_HUMIDITY_STATE_TOPIC]
|
target_humidity_state_topic
|
||||||
)
|
)
|
||||||
)
|
)
|
||||||
|
|
||||||
@ -411,45 +439,35 @@ CLIMATE_CONTROL_ACTION_SCHEMA = cv.Schema(
|
|||||||
async def climate_control_to_code(config, action_id, template_arg, args):
|
async def climate_control_to_code(config, action_id, template_arg, args):
|
||||||
paren = await cg.get_variable(config[CONF_ID])
|
paren = await cg.get_variable(config[CONF_ID])
|
||||||
var = cg.new_Pvariable(action_id, template_arg, paren)
|
var = cg.new_Pvariable(action_id, template_arg, paren)
|
||||||
if CONF_MODE in config:
|
if (mode := config.get(CONF_MODE)) is not None:
|
||||||
template_ = await cg.templatable(config[CONF_MODE], args, ClimateMode)
|
template_ = await cg.templatable(mode, args, ClimateMode)
|
||||||
cg.add(var.set_mode(template_))
|
cg.add(var.set_mode(template_))
|
||||||
if CONF_TARGET_TEMPERATURE in config:
|
if (target_temp := config.get(CONF_TARGET_TEMPERATURE)) is not None:
|
||||||
template_ = await cg.templatable(config[CONF_TARGET_TEMPERATURE], args, float)
|
template_ = await cg.templatable(target_temp, args, float)
|
||||||
cg.add(var.set_target_temperature(template_))
|
cg.add(var.set_target_temperature(template_))
|
||||||
if CONF_TARGET_TEMPERATURE_LOW in config:
|
if (target_temp_low := config.get(CONF_TARGET_TEMPERATURE_LOW)) is not None:
|
||||||
template_ = await cg.templatable(
|
template_ = await cg.templatable(target_temp_low, args, float)
|
||||||
config[CONF_TARGET_TEMPERATURE_LOW], args, float
|
|
||||||
)
|
|
||||||
cg.add(var.set_target_temperature_low(template_))
|
cg.add(var.set_target_temperature_low(template_))
|
||||||
if CONF_TARGET_TEMPERATURE_HIGH in config:
|
if (target_temp_high := config.get(CONF_TARGET_TEMPERATURE_HIGH)) is not None:
|
||||||
template_ = await cg.templatable(
|
template_ = await cg.templatable(target_temp_high, args, float)
|
||||||
config[CONF_TARGET_TEMPERATURE_HIGH], args, float
|
|
||||||
)
|
|
||||||
cg.add(var.set_target_temperature_high(template_))
|
cg.add(var.set_target_temperature_high(template_))
|
||||||
if CONF_TARGET_HUMIDITY in config:
|
if (target_humidity := config.get(CONF_TARGET_HUMIDITY)) is not None:
|
||||||
template_ = await cg.templatable(config[CONF_TARGET_HUMIDITY], args, float)
|
template_ = await cg.templatable(target_humidity, args, float)
|
||||||
cg.add(var.set_target_humidity(template_))
|
cg.add(var.set_target_humidity(template_))
|
||||||
if CONF_FAN_MODE in config:
|
if (fan_mode := config.get(CONF_FAN_MODE)) is not None:
|
||||||
template_ = await cg.templatable(config[CONF_FAN_MODE], args, ClimateFanMode)
|
template_ = await cg.templatable(fan_mode, args, ClimateFanMode)
|
||||||
cg.add(var.set_fan_mode(template_))
|
cg.add(var.set_fan_mode(template_))
|
||||||
if CONF_CUSTOM_FAN_MODE in config:
|
if (custom_fan_mode := config.get(CONF_CUSTOM_FAN_MODE)) is not None:
|
||||||
template_ = await cg.templatable(
|
template_ = await cg.templatable(custom_fan_mode, args, cg.std_string)
|
||||||
config[CONF_CUSTOM_FAN_MODE], args, cg.std_string
|
|
||||||
)
|
|
||||||
cg.add(var.set_custom_fan_mode(template_))
|
cg.add(var.set_custom_fan_mode(template_))
|
||||||
if CONF_PRESET in config:
|
if (preset := config.get(CONF_PRESET)) is not None:
|
||||||
template_ = await cg.templatable(config[CONF_PRESET], args, ClimatePreset)
|
template_ = await cg.templatable(preset, args, ClimatePreset)
|
||||||
cg.add(var.set_preset(template_))
|
cg.add(var.set_preset(template_))
|
||||||
if CONF_CUSTOM_PRESET in config:
|
if (custom_preset := config.get(CONF_CUSTOM_PRESET)) is not None:
|
||||||
template_ = await cg.templatable(
|
template_ = await cg.templatable(custom_preset, args, cg.std_string)
|
||||||
config[CONF_CUSTOM_PRESET], args, cg.std_string
|
|
||||||
)
|
|
||||||
cg.add(var.set_custom_preset(template_))
|
cg.add(var.set_custom_preset(template_))
|
||||||
if CONF_SWING_MODE in config:
|
if (swing_mode := config.get(CONF_SWING_MODE)) is not None:
|
||||||
template_ = await cg.templatable(
|
template_ = await cg.templatable(swing_mode, args, ClimateSwingMode)
|
||||||
config[CONF_SWING_MODE], args, ClimateSwingMode
|
|
||||||
)
|
|
||||||
cg.add(var.set_swing_mode(template_))
|
cg.add(var.set_swing_mode(template_))
|
||||||
return var
|
return var
|
||||||
|
|
||||||
|
@ -122,8 +122,8 @@ COVER_SCHEMA = cv.ENTITY_BASE_SCHEMA.extend(cv.MQTT_COMMAND_COMPONENT_SCHEMA).ex
|
|||||||
async def setup_cover_core_(var, config):
|
async def setup_cover_core_(var, config):
|
||||||
await setup_entity(var, config)
|
await setup_entity(var, config)
|
||||||
|
|
||||||
if CONF_DEVICE_CLASS in config:
|
if (device_class := config.get(CONF_DEVICE_CLASS)) is not None:
|
||||||
cg.add(var.set_device_class(config[CONF_DEVICE_CLASS]))
|
cg.add(var.set_device_class(device_class))
|
||||||
|
|
||||||
for conf in config.get(CONF_ON_OPEN, []):
|
for conf in config.get(CONF_ON_OPEN, []):
|
||||||
trigger = cg.new_Pvariable(conf[CONF_TRIGGER_ID], var)
|
trigger = cg.new_Pvariable(conf[CONF_TRIGGER_ID], var)
|
||||||
@ -132,24 +132,20 @@ async def setup_cover_core_(var, config):
|
|||||||
trigger = cg.new_Pvariable(conf[CONF_TRIGGER_ID], var)
|
trigger = cg.new_Pvariable(conf[CONF_TRIGGER_ID], var)
|
||||||
await automation.build_automation(trigger, [], conf)
|
await automation.build_automation(trigger, [], conf)
|
||||||
|
|
||||||
if CONF_MQTT_ID in config:
|
if (mqtt_id := config.get(CONF_MQTT_ID)) is not None:
|
||||||
mqtt_ = cg.new_Pvariable(config[CONF_MQTT_ID], var)
|
mqtt_ = cg.new_Pvariable(mqtt_id, var)
|
||||||
await mqtt.register_mqtt_component(mqtt_, config)
|
await mqtt.register_mqtt_component(mqtt_, config)
|
||||||
|
|
||||||
if CONF_POSITION_STATE_TOPIC in config:
|
if (position_state_topic := config.get(CONF_POSITION_STATE_TOPIC)) is not None:
|
||||||
cg.add(
|
cg.add(mqtt_.set_custom_position_state_topic(position_state_topic))
|
||||||
mqtt_.set_custom_position_state_topic(config[CONF_POSITION_STATE_TOPIC])
|
if (
|
||||||
)
|
position_command_topic := config.get(CONF_POSITION_COMMAND_TOPIC)
|
||||||
if CONF_POSITION_COMMAND_TOPIC in config:
|
) is not None:
|
||||||
cg.add(
|
cg.add(mqtt_.set_custom_position_command_topic(position_command_topic))
|
||||||
mqtt_.set_custom_position_command_topic(
|
if (tilt_state_topic := config.get(CONF_TILT_STATE_TOPIC)) is not None:
|
||||||
config[CONF_POSITION_COMMAND_TOPIC]
|
cg.add(mqtt_.set_custom_tilt_state_topic(tilt_state_topic))
|
||||||
)
|
if (tilt_command_topic := config.get(CONF_TILT_COMMAND_TOPIC)) is not None:
|
||||||
)
|
cg.add(mqtt_.set_custom_tilt_command_topic(tilt_command_topic))
|
||||||
if CONF_TILT_STATE_TOPIC in config:
|
|
||||||
cg.add(mqtt_.set_custom_tilt_state_topic(config[CONF_TILT_STATE_TOPIC]))
|
|
||||||
if CONF_TILT_COMMAND_TOPIC in config:
|
|
||||||
cg.add(mqtt_.set_custom_tilt_command_topic(config[CONF_TILT_COMMAND_TOPIC]))
|
|
||||||
|
|
||||||
|
|
||||||
async def register_cover(var, config):
|
async def register_cover(var, config):
|
||||||
@ -205,17 +201,17 @@ COVER_CONTROL_ACTION_SCHEMA = cv.Schema(
|
|||||||
async def cover_control_to_code(config, action_id, template_arg, args):
|
async def cover_control_to_code(config, action_id, template_arg, args):
|
||||||
paren = await cg.get_variable(config[CONF_ID])
|
paren = await cg.get_variable(config[CONF_ID])
|
||||||
var = cg.new_Pvariable(action_id, template_arg, paren)
|
var = cg.new_Pvariable(action_id, template_arg, paren)
|
||||||
if CONF_STOP in config:
|
if (stop := config.get(CONF_STOP)) is not None:
|
||||||
template_ = await cg.templatable(config[CONF_STOP], args, bool)
|
template_ = await cg.templatable(stop, args, bool)
|
||||||
cg.add(var.set_stop(template_))
|
cg.add(var.set_stop(template_))
|
||||||
if CONF_STATE in config:
|
if (state := config.get(CONF_STATE)) is not None:
|
||||||
template_ = await cg.templatable(config[CONF_STATE], args, float)
|
template_ = await cg.templatable(state, args, float)
|
||||||
cg.add(var.set_position(template_))
|
cg.add(var.set_position(template_))
|
||||||
if CONF_POSITION in config:
|
if (position := config.get(CONF_POSITION)) is not None:
|
||||||
template_ = await cg.templatable(config[CONF_POSITION], args, float)
|
template_ = await cg.templatable(position, args, float)
|
||||||
cg.add(var.set_position(template_))
|
cg.add(var.set_position(template_))
|
||||||
if CONF_TILT in config:
|
if (tilt := config.get(CONF_TILT)) is not None:
|
||||||
template_ = await cg.templatable(config[CONF_TILT], args, float)
|
template_ = await cg.templatable(tilt, args, float)
|
||||||
cg.add(var.set_tilt(template_))
|
cg.add(var.set_tilt(template_))
|
||||||
return var
|
return var
|
||||||
|
|
||||||
|
@ -106,8 +106,8 @@ def datetime_schema(class_: MockObjClass) -> cv.Schema:
|
|||||||
async def setup_datetime_core_(var, config):
|
async def setup_datetime_core_(var, config):
|
||||||
await setup_entity(var, config)
|
await setup_entity(var, config)
|
||||||
|
|
||||||
if CONF_MQTT_ID in config:
|
if (mqtt_id := config.get(CONF_MQTT_ID)) is not None:
|
||||||
mqtt_ = cg.new_Pvariable(config[CONF_MQTT_ID], var)
|
mqtt_ = cg.new_Pvariable(mqtt_id, var)
|
||||||
await mqtt.register_mqtt_component(mqtt_, config)
|
await mqtt.register_mqtt_component(mqtt_, config)
|
||||||
for conf in config.get(CONF_ON_VALUE, []):
|
for conf in config.get(CONF_ON_VALUE, []):
|
||||||
trigger = cg.new_Pvariable(conf[CONF_TRIGGER_ID], var)
|
trigger = cg.new_Pvariable(conf[CONF_TRIGGER_ID], var)
|
||||||
|
@ -180,40 +180,34 @@ async def setup_fan_core_(var, config):
|
|||||||
|
|
||||||
cg.add(var.set_restore_mode(config[CONF_RESTORE_MODE]))
|
cg.add(var.set_restore_mode(config[CONF_RESTORE_MODE]))
|
||||||
|
|
||||||
if CONF_MQTT_ID in config:
|
if (mqtt_id := config.get(CONF_MQTT_ID)) is not None:
|
||||||
mqtt_ = cg.new_Pvariable(config[CONF_MQTT_ID], var)
|
mqtt_ = cg.new_Pvariable(mqtt_id, var)
|
||||||
await mqtt.register_mqtt_component(mqtt_, config)
|
await mqtt.register_mqtt_component(mqtt_, config)
|
||||||
|
|
||||||
if CONF_OSCILLATION_STATE_TOPIC in config:
|
if (
|
||||||
|
oscillation_state_topic := config.get(CONF_OSCILLATION_STATE_TOPIC)
|
||||||
|
) is not None:
|
||||||
|
cg.add(mqtt_.set_custom_oscillation_state_topic(oscillation_state_topic))
|
||||||
|
if (
|
||||||
|
oscillation_command_topic := config.get(CONF_OSCILLATION_COMMAND_TOPIC)
|
||||||
|
) is not None:
|
||||||
cg.add(
|
cg.add(
|
||||||
mqtt_.set_custom_oscillation_state_topic(
|
mqtt_.set_custom_oscillation_command_topic(oscillation_command_topic)
|
||||||
config[CONF_OSCILLATION_STATE_TOPIC]
|
|
||||||
)
|
|
||||||
)
|
)
|
||||||
if CONF_OSCILLATION_COMMAND_TOPIC in config:
|
if (
|
||||||
|
speed_level_state_topic := config.get(CONF_SPEED_LEVEL_STATE_TOPIC)
|
||||||
|
) is not None:
|
||||||
|
cg.add(mqtt_.set_custom_speed_level_state_topic(speed_level_state_topic))
|
||||||
|
if (
|
||||||
|
speed_level_command_topic := config.get(CONF_SPEED_LEVEL_COMMAND_TOPIC)
|
||||||
|
) is not None:
|
||||||
cg.add(
|
cg.add(
|
||||||
mqtt_.set_custom_oscillation_command_topic(
|
mqtt_.set_custom_speed_level_command_topic(speed_level_command_topic)
|
||||||
config[CONF_OSCILLATION_COMMAND_TOPIC]
|
|
||||||
)
|
|
||||||
)
|
|
||||||
if CONF_SPEED_LEVEL_STATE_TOPIC in config:
|
|
||||||
cg.add(
|
|
||||||
mqtt_.set_custom_speed_level_state_topic(
|
|
||||||
config[CONF_SPEED_LEVEL_STATE_TOPIC]
|
|
||||||
)
|
|
||||||
)
|
|
||||||
if CONF_SPEED_LEVEL_COMMAND_TOPIC in config:
|
|
||||||
cg.add(
|
|
||||||
mqtt_.set_custom_speed_level_command_topic(
|
|
||||||
config[CONF_SPEED_LEVEL_COMMAND_TOPIC]
|
|
||||||
)
|
|
||||||
)
|
|
||||||
if CONF_SPEED_STATE_TOPIC in config:
|
|
||||||
cg.add(mqtt_.set_custom_speed_state_topic(config[CONF_SPEED_STATE_TOPIC]))
|
|
||||||
if CONF_SPEED_COMMAND_TOPIC in config:
|
|
||||||
cg.add(
|
|
||||||
mqtt_.set_custom_speed_command_topic(config[CONF_SPEED_COMMAND_TOPIC])
|
|
||||||
)
|
)
|
||||||
|
if (speed_state_topic := config.get(CONF_SPEED_STATE_TOPIC)) is not None:
|
||||||
|
cg.add(mqtt_.set_custom_speed_state_topic(speed_state_topic))
|
||||||
|
if (speed_command_topic := config.get(CONF_SPEED_COMMAND_TOPIC)) is not None:
|
||||||
|
cg.add(mqtt_.set_custom_speed_command_topic(speed_command_topic))
|
||||||
|
|
||||||
for conf in config.get(CONF_ON_STATE, []):
|
for conf in config.get(CONF_ON_STATE, []):
|
||||||
trigger = cg.new_Pvariable(conf[CONF_TRIGGER_ID], var)
|
trigger = cg.new_Pvariable(conf[CONF_TRIGGER_ID], var)
|
||||||
@ -288,14 +282,14 @@ async def fan_turn_off_to_code(config, action_id, template_arg, args):
|
|||||||
async def fan_turn_on_to_code(config, action_id, template_arg, args):
|
async def fan_turn_on_to_code(config, action_id, template_arg, args):
|
||||||
paren = await cg.get_variable(config[CONF_ID])
|
paren = await cg.get_variable(config[CONF_ID])
|
||||||
var = cg.new_Pvariable(action_id, template_arg, paren)
|
var = cg.new_Pvariable(action_id, template_arg, paren)
|
||||||
if CONF_OSCILLATING in config:
|
if (oscillating := config.get(CONF_OSCILLATING)) is not None:
|
||||||
template_ = await cg.templatable(config[CONF_OSCILLATING], args, bool)
|
template_ = await cg.templatable(oscillating, args, bool)
|
||||||
cg.add(var.set_oscillating(template_))
|
cg.add(var.set_oscillating(template_))
|
||||||
if CONF_SPEED in config:
|
if (speed := config.get(CONF_SPEED)) is not None:
|
||||||
template_ = await cg.templatable(config[CONF_SPEED], args, int)
|
template_ = await cg.templatable(speed, args, int)
|
||||||
cg.add(var.set_speed(template_))
|
cg.add(var.set_speed(template_))
|
||||||
if CONF_DIRECTION in config:
|
if (direction := config.get(CONF_DIRECTION)) is not None:
|
||||||
template_ = await cg.templatable(config[CONF_DIRECTION], args, FanDirection)
|
template_ = await cg.templatable(direction, args, FanDirection)
|
||||||
cg.add(var.set_direction(template_))
|
cg.add(var.set_direction(template_))
|
||||||
return var
|
return var
|
||||||
|
|
||||||
|
@ -137,18 +137,16 @@ async def setup_light_core_(light_var, output_var, config):
|
|||||||
|
|
||||||
cg.add(light_var.set_restore_mode(config[CONF_RESTORE_MODE]))
|
cg.add(light_var.set_restore_mode(config[CONF_RESTORE_MODE]))
|
||||||
|
|
||||||
if CONF_DEFAULT_TRANSITION_LENGTH in config:
|
if (
|
||||||
cg.add(
|
default_transition_length := config.get(CONF_DEFAULT_TRANSITION_LENGTH)
|
||||||
light_var.set_default_transition_length(
|
) is not None:
|
||||||
config[CONF_DEFAULT_TRANSITION_LENGTH]
|
cg.add(light_var.set_default_transition_length(default_transition_length))
|
||||||
)
|
if (
|
||||||
)
|
flash_transition_length := config.get(CONF_FLASH_TRANSITION_LENGTH)
|
||||||
if CONF_FLASH_TRANSITION_LENGTH in config:
|
) is not None:
|
||||||
cg.add(
|
cg.add(light_var.set_flash_transition_length(flash_transition_length))
|
||||||
light_var.set_flash_transition_length(config[CONF_FLASH_TRANSITION_LENGTH])
|
if (gamma_correct := config.get(CONF_GAMMA_CORRECT)) is not None:
|
||||||
)
|
cg.add(light_var.set_gamma_correct(gamma_correct))
|
||||||
if CONF_GAMMA_CORRECT in config:
|
|
||||||
cg.add(light_var.set_gamma_correct(config[CONF_GAMMA_CORRECT]))
|
|
||||||
effects = await cg.build_registry_list(
|
effects = await cg.build_registry_list(
|
||||||
EFFECTS_REGISTRY, config.get(CONF_EFFECTS, [])
|
EFFECTS_REGISTRY, config.get(CONF_EFFECTS, [])
|
||||||
)
|
)
|
||||||
@ -164,15 +162,15 @@ async def setup_light_core_(light_var, output_var, config):
|
|||||||
trigger = cg.new_Pvariable(conf[CONF_TRIGGER_ID], light_var)
|
trigger = cg.new_Pvariable(conf[CONF_TRIGGER_ID], light_var)
|
||||||
await auto.build_automation(trigger, [], conf)
|
await auto.build_automation(trigger, [], conf)
|
||||||
|
|
||||||
if CONF_COLOR_CORRECT in config:
|
if (color_correct := config.get(CONF_COLOR_CORRECT)) is not None:
|
||||||
cg.add(output_var.set_correction(*config[CONF_COLOR_CORRECT]))
|
cg.add(output_var.set_correction(*color_correct))
|
||||||
|
|
||||||
if CONF_POWER_SUPPLY in config:
|
if (power_supply_id := config.get(CONF_POWER_SUPPLY)) is not None:
|
||||||
var_ = await cg.get_variable(config[CONF_POWER_SUPPLY])
|
var_ = await cg.get_variable(power_supply_id)
|
||||||
cg.add(output_var.set_power_supply(var_))
|
cg.add(output_var.set_power_supply(var_))
|
||||||
|
|
||||||
if CONF_MQTT_ID in config:
|
if (mqtt_id := config.get(CONF_MQTT_ID)) is not None:
|
||||||
mqtt_ = cg.new_Pvariable(config[CONF_MQTT_ID], light_var)
|
mqtt_ = cg.new_Pvariable(mqtt_id, light_var)
|
||||||
await mqtt.register_mqtt_component(mqtt_, config)
|
await mqtt.register_mqtt_component(mqtt_, config)
|
||||||
|
|
||||||
|
|
||||||
|
@ -57,8 +57,8 @@ async def setup_lock_core_(var, config):
|
|||||||
trigger = cg.new_Pvariable(conf[CONF_TRIGGER_ID], var)
|
trigger = cg.new_Pvariable(conf[CONF_TRIGGER_ID], var)
|
||||||
await automation.build_automation(trigger, [], conf)
|
await automation.build_automation(trigger, [], conf)
|
||||||
|
|
||||||
if CONF_MQTT_ID in config:
|
if mqtt_id := config.get(CONF_MQTT_ID):
|
||||||
mqtt_ = cg.new_Pvariable(config[CONF_MQTT_ID], var)
|
mqtt_ = cg.new_Pvariable(mqtt_id, var)
|
||||||
await mqtt.register_mqtt_component(mqtt_, config)
|
await mqtt.register_mqtt_component(mqtt_, config)
|
||||||
|
|
||||||
|
|
||||||
|
@ -120,30 +120,28 @@ void Logger::pre_setup() {
|
|||||||
switch (this->uart_) {
|
switch (this->uart_) {
|
||||||
case UART_SELECTION_UART0:
|
case UART_SELECTION_UART0:
|
||||||
this->uart_num_ = UART_NUM_0;
|
this->uart_num_ = UART_NUM_0;
|
||||||
|
init_uart(this->uart_num_, baud_rate_, tx_buffer_size_);
|
||||||
break;
|
break;
|
||||||
case UART_SELECTION_UART1:
|
case UART_SELECTION_UART1:
|
||||||
this->uart_num_ = UART_NUM_1;
|
this->uart_num_ = UART_NUM_1;
|
||||||
|
init_uart(this->uart_num_, baud_rate_, tx_buffer_size_);
|
||||||
break;
|
break;
|
||||||
#ifdef USE_ESP32_VARIANT_ESP32
|
#ifdef USE_ESP32_VARIANT_ESP32
|
||||||
case UART_SELECTION_UART2:
|
case UART_SELECTION_UART2:
|
||||||
this->uart_num_ = UART_NUM_2;
|
this->uart_num_ = UART_NUM_2;
|
||||||
|
init_uart(this->uart_num_, baud_rate_, tx_buffer_size_);
|
||||||
break;
|
break;
|
||||||
#endif
|
#endif
|
||||||
#ifdef USE_LOGGER_USB_CDC
|
#ifdef USE_LOGGER_USB_CDC
|
||||||
case UART_SELECTION_USB_CDC:
|
case UART_SELECTION_USB_CDC:
|
||||||
this->uart_num_ = -1;
|
|
||||||
break;
|
break;
|
||||||
#endif
|
#endif
|
||||||
#ifdef USE_LOGGER_USB_SERIAL_JTAG
|
#ifdef USE_LOGGER_USB_SERIAL_JTAG
|
||||||
case UART_SELECTION_USB_SERIAL_JTAG:
|
case UART_SELECTION_USB_SERIAL_JTAG:
|
||||||
this->uart_num_ = -1;
|
|
||||||
init_usb_serial_jtag_();
|
init_usb_serial_jtag_();
|
||||||
break;
|
break;
|
||||||
#endif
|
#endif
|
||||||
}
|
}
|
||||||
if (this->uart_num_ >= 0) {
|
|
||||||
init_uart(this->uart_num_, baud_rate_, tx_buffer_size_);
|
|
||||||
}
|
|
||||||
#endif // USE_ESP_IDF
|
#endif // USE_ESP_IDF
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -27,7 +27,7 @@ void NextionBinarySensor::process_touch(uint8_t page_id, uint8_t component_id, b
|
|||||||
}
|
}
|
||||||
|
|
||||||
void NextionBinarySensor::update() {
|
void NextionBinarySensor::update() {
|
||||||
if (!this->nextion_->is_setup())
|
if (!this->nextion_->is_setup() || this->nextion_->is_updating())
|
||||||
return;
|
return;
|
||||||
|
|
||||||
if (this->variable_name_.empty()) // This is a touch component
|
if (this->variable_name_.empty()) // This is a touch component
|
||||||
@ -37,7 +37,7 @@ void NextionBinarySensor::update() {
|
|||||||
}
|
}
|
||||||
|
|
||||||
void NextionBinarySensor::set_state(bool state, bool publish, bool send_to_nextion) {
|
void NextionBinarySensor::set_state(bool state, bool publish, bool send_to_nextion) {
|
||||||
if (!this->nextion_->is_setup())
|
if (!this->nextion_->is_setup() || this->nextion_->is_updating())
|
||||||
return;
|
return;
|
||||||
|
|
||||||
if (this->component_id_ == 0) // This is a legacy touch component
|
if (this->component_id_ == 0) // This is a legacy touch component
|
||||||
|
@ -68,8 +68,8 @@ CONFIG_SCHEMA = (
|
|||||||
}
|
}
|
||||||
),
|
),
|
||||||
cv.Optional(CONF_TOUCH_SLEEP_TIMEOUT): cv.int_range(min=3, max=65535),
|
cv.Optional(CONF_TOUCH_SLEEP_TIMEOUT): cv.int_range(min=3, max=65535),
|
||||||
cv.Optional(CONF_WAKE_UP_PAGE): cv.positive_int,
|
cv.Optional(CONF_WAKE_UP_PAGE): cv.uint8_t,
|
||||||
cv.Optional(CONF_START_UP_PAGE): cv.positive_int,
|
cv.Optional(CONF_START_UP_PAGE): cv.uint8_t,
|
||||||
cv.Optional(CONF_AUTO_WAKE_ON_TOUCH, default=True): cv.boolean,
|
cv.Optional(CONF_AUTO_WAKE_ON_TOUCH, default=True): cv.boolean,
|
||||||
cv.Optional(CONF_EXIT_REPARSE_ON_START, default=False): cv.boolean,
|
cv.Optional(CONF_EXIT_REPARSE_ON_START, default=False): cv.boolean,
|
||||||
}
|
}
|
||||||
|
@ -138,11 +138,11 @@ void Nextion::dump_config() {
|
|||||||
}
|
}
|
||||||
|
|
||||||
if (this->wake_up_page_ != -1) {
|
if (this->wake_up_page_ != -1) {
|
||||||
ESP_LOGCONFIG(TAG, " Wake Up Page: %d", this->wake_up_page_);
|
ESP_LOGCONFIG(TAG, " Wake Up Page: %" PRId16, this->wake_up_page_);
|
||||||
}
|
}
|
||||||
|
|
||||||
if (this->start_up_page_ != -1) {
|
if (this->start_up_page_ != -1) {
|
||||||
ESP_LOGCONFIG(TAG, " Start Up Page: %d", this->start_up_page_);
|
ESP_LOGCONFIG(TAG, " Start Up Page: %" PRId16, this->start_up_page_);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -194,6 +194,17 @@ void Nextion::update_all_components() {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
bool Nextion::send_command(const char *command) {
|
||||||
|
if ((!this->is_setup() && !this->ignore_is_setup_) || this->is_sleeping())
|
||||||
|
return false;
|
||||||
|
|
||||||
|
if (this->send_command_(command)) {
|
||||||
|
this->add_no_result_to_queue_("send_command");
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
bool Nextion::send_command_printf(const char *format, ...) {
|
bool Nextion::send_command_printf(const char *format, ...) {
|
||||||
if ((!this->is_setup() && !this->ignore_is_setup_) || this->is_sleeping())
|
if ((!this->is_setup() && !this->ignore_is_setup_) || this->is_sleeping())
|
||||||
return false;
|
return false;
|
||||||
@ -1024,23 +1035,23 @@ bool Nextion::add_no_result_to_queue_with_printf_(const std::string &variable_na
|
|||||||
* @param is_sleep_safe The command is safe to send when the Nextion is sleeping
|
* @param is_sleep_safe The command is safe to send when the Nextion is sleeping
|
||||||
*/
|
*/
|
||||||
|
|
||||||
void Nextion::add_no_result_to_queue_with_set(NextionComponentBase *component, int state_value) {
|
void Nextion::add_no_result_to_queue_with_set(NextionComponentBase *component, int32_t state_value) {
|
||||||
this->add_no_result_to_queue_with_set(component->get_variable_name(), component->get_variable_name_to_send(),
|
this->add_no_result_to_queue_with_set(component->get_variable_name(), component->get_variable_name_to_send(),
|
||||||
state_value);
|
state_value);
|
||||||
}
|
}
|
||||||
|
|
||||||
void Nextion::add_no_result_to_queue_with_set(const std::string &variable_name,
|
void Nextion::add_no_result_to_queue_with_set(const std::string &variable_name,
|
||||||
const std::string &variable_name_to_send, int state_value) {
|
const std::string &variable_name_to_send, int32_t state_value) {
|
||||||
this->add_no_result_to_queue_with_set_internal_(variable_name, variable_name_to_send, state_value);
|
this->add_no_result_to_queue_with_set_internal_(variable_name, variable_name_to_send, state_value);
|
||||||
}
|
}
|
||||||
|
|
||||||
void Nextion::add_no_result_to_queue_with_set_internal_(const std::string &variable_name,
|
void Nextion::add_no_result_to_queue_with_set_internal_(const std::string &variable_name,
|
||||||
const std::string &variable_name_to_send, int state_value,
|
const std::string &variable_name_to_send, int32_t state_value,
|
||||||
bool is_sleep_safe) {
|
bool is_sleep_safe) {
|
||||||
if ((!this->is_setup() && !this->ignore_is_setup_) || (!is_sleep_safe && this->is_sleeping()))
|
if ((!this->is_setup() && !this->ignore_is_setup_) || (!is_sleep_safe && this->is_sleeping()))
|
||||||
return;
|
return;
|
||||||
|
|
||||||
this->add_no_result_to_queue_with_ignore_sleep_printf_(variable_name, "%s=%d", variable_name_to_send.c_str(),
|
this->add_no_result_to_queue_with_ignore_sleep_printf_(variable_name, "%s=%" PRId32, variable_name_to_send.c_str(),
|
||||||
state_value);
|
state_value);
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -1137,5 +1148,7 @@ void Nextion::set_writer(const nextion_writer_t &writer) { this->writer_ = write
|
|||||||
ESPDEPRECATED("set_wait_for_ack(bool) is deprecated and has no effect", "v1.20")
|
ESPDEPRECATED("set_wait_for_ack(bool) is deprecated and has no effect", "v1.20")
|
||||||
void Nextion::set_wait_for_ack(bool wait_for_ack) { ESP_LOGE(TAG, "This command is deprecated"); }
|
void Nextion::set_wait_for_ack(bool wait_for_ack) { ESP_LOGE(TAG, "This command is deprecated"); }
|
||||||
|
|
||||||
|
bool Nextion::is_updating() { return this->is_updating_; }
|
||||||
|
|
||||||
} // namespace nextion
|
} // namespace nextion
|
||||||
} // namespace esphome
|
} // namespace esphome
|
||||||
|
@ -50,6 +50,7 @@ class Nextion : public NextionBase, public PollingComponent, public uart::UARTDe
|
|||||||
* This will set the `txt` property of the component `textview` to `Hello World`.
|
* This will set the `txt` property of the component `textview` to `Hello World`.
|
||||||
*/
|
*/
|
||||||
void set_component_text(const char *component, const char *text);
|
void set_component_text(const char *component, const char *text);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Set the text of a component to a formatted string
|
* Set the text of a component to a formatted string
|
||||||
* @param component The component name.
|
* @param component The component name.
|
||||||
@ -66,6 +67,7 @@ class Nextion : public NextionBase, public PollingComponent, public uart::UARTDe
|
|||||||
* For example when `uptime_sensor` = 506, then, `The uptime is: 506` will be displayed.
|
* For example when `uptime_sensor` = 506, then, `The uptime is: 506` will be displayed.
|
||||||
*/
|
*/
|
||||||
void set_component_text_printf(const char *component, const char *format, ...) __attribute__((format(printf, 3, 4)));
|
void set_component_text_printf(const char *component, const char *format, ...) __attribute__((format(printf, 3, 4)));
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Set the integer value of a component
|
* Set the integer value of a component
|
||||||
* @param component The component name.
|
* @param component The component name.
|
||||||
@ -78,7 +80,8 @@ class Nextion : public NextionBase, public PollingComponent, public uart::UARTDe
|
|||||||
*
|
*
|
||||||
* This will change the property `value` of the component `gauge` to 50.
|
* This will change the property `value` of the component `gauge` to 50.
|
||||||
*/
|
*/
|
||||||
void set_component_value(const char *component, int value);
|
void set_component_value(const char *component, int32_t value);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Set the picture of an image component.
|
* Set the picture of an image component.
|
||||||
* @param component The component name.
|
* @param component The component name.
|
||||||
@ -92,6 +95,7 @@ class Nextion : public NextionBase, public PollingComponent, public uart::UARTDe
|
|||||||
* This will change the image of the component `pic` to the image with ID `4`.
|
* This will change the image of the component `pic` to the image with ID `4`.
|
||||||
*/
|
*/
|
||||||
void set_component_picture(const char *component, uint8_t picture_id);
|
void set_component_picture(const char *component, uint8_t picture_id);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Set the background color of a component.
|
* Set the background color of a component.
|
||||||
* @param component The component name.
|
* @param component The component name.
|
||||||
@ -107,6 +111,7 @@ class Nextion : public NextionBase, public PollingComponent, public uart::UARTDe
|
|||||||
* Nextion HMI colors.
|
* Nextion HMI colors.
|
||||||
*/
|
*/
|
||||||
void set_component_background_color(const char *component, uint16_t color);
|
void set_component_background_color(const char *component, uint16_t color);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Set the background color of a component.
|
* Set the background color of a component.
|
||||||
* @param component The component name.
|
* @param component The component name.
|
||||||
@ -121,6 +126,7 @@ class Nextion : public NextionBase, public PollingComponent, public uart::UARTDe
|
|||||||
* Use [Nextion Instruction Set](https://nextion.tech/instruction-set/#s5) for a list of Nextion HMI colors constants.
|
* Use [Nextion Instruction Set](https://nextion.tech/instruction-set/#s5) for a list of Nextion HMI colors constants.
|
||||||
*/
|
*/
|
||||||
void set_component_background_color(const char *component, const char *color);
|
void set_component_background_color(const char *component, const char *color);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Set the background color of a component.
|
* Set the background color of a component.
|
||||||
* @param component The component name.
|
* @param component The component name.
|
||||||
@ -135,6 +141,7 @@ class Nextion : public NextionBase, public PollingComponent, public uart::UARTDe
|
|||||||
* This will change the background color of the component `button` to blue.
|
* This will change the background color of the component `button` to blue.
|
||||||
*/
|
*/
|
||||||
void set_component_background_color(const char *component, Color color) override;
|
void set_component_background_color(const char *component, Color color) override;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Set the pressed background color of a component.
|
* Set the pressed background color of a component.
|
||||||
* @param component The component name.
|
* @param component The component name.
|
||||||
@ -151,6 +158,7 @@ class Nextion : public NextionBase, public PollingComponent, public uart::UARTDe
|
|||||||
* Nextion HMI colors.
|
* Nextion HMI colors.
|
||||||
*/
|
*/
|
||||||
void set_component_pressed_background_color(const char *component, uint16_t color);
|
void set_component_pressed_background_color(const char *component, uint16_t color);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Set the pressed background color of a component.
|
* Set the pressed background color of a component.
|
||||||
* @param component The component name.
|
* @param component The component name.
|
||||||
@ -166,6 +174,7 @@ class Nextion : public NextionBase, public PollingComponent, public uart::UARTDe
|
|||||||
* Use [Nextion Instruction Set](https://nextion.tech/instruction-set/#s5) for a list of Nextion HMI colors constants.
|
* Use [Nextion Instruction Set](https://nextion.tech/instruction-set/#s5) for a list of Nextion HMI colors constants.
|
||||||
*/
|
*/
|
||||||
void set_component_pressed_background_color(const char *component, const char *color);
|
void set_component_pressed_background_color(const char *component, const char *color);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Set the pressed background color of a component.
|
* Set the pressed background color of a component.
|
||||||
* @param component The component name.
|
* @param component The component name.
|
||||||
@ -181,6 +190,7 @@ class Nextion : public NextionBase, public PollingComponent, public uart::UARTDe
|
|||||||
* is shown when the component is pressed.
|
* is shown when the component is pressed.
|
||||||
*/
|
*/
|
||||||
void set_component_pressed_background_color(const char *component, Color color) override;
|
void set_component_pressed_background_color(const char *component, Color color) override;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Set the foreground color of a component.
|
* Set the foreground color of a component.
|
||||||
* @param component The component name.
|
* @param component The component name.
|
||||||
@ -196,6 +206,7 @@ class Nextion : public NextionBase, public PollingComponent, public uart::UARTDe
|
|||||||
* Nextion HMI colors.
|
* Nextion HMI colors.
|
||||||
*/
|
*/
|
||||||
void set_component_foreground_color(const char *component, uint16_t color);
|
void set_component_foreground_color(const char *component, uint16_t color);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Set the foreground color of a component.
|
* Set the foreground color of a component.
|
||||||
* @param component The component name.
|
* @param component The component name.
|
||||||
@ -210,6 +221,7 @@ class Nextion : public NextionBase, public PollingComponent, public uart::UARTDe
|
|||||||
* Use [Nextion Instruction Set](https://nextion.tech/instruction-set/#s5) for a list of Nextion HMI colors constants.
|
* Use [Nextion Instruction Set](https://nextion.tech/instruction-set/#s5) for a list of Nextion HMI colors constants.
|
||||||
*/
|
*/
|
||||||
void set_component_foreground_color(const char *component, const char *color);
|
void set_component_foreground_color(const char *component, const char *color);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Set the foreground color of a component.
|
* Set the foreground color of a component.
|
||||||
* @param component The component name.
|
* @param component The component name.
|
||||||
@ -223,6 +235,7 @@ class Nextion : public NextionBase, public PollingComponent, public uart::UARTDe
|
|||||||
* This will change the foreground color of the component `button` to black.
|
* This will change the foreground color of the component `button` to black.
|
||||||
*/
|
*/
|
||||||
void set_component_foreground_color(const char *component, Color color) override;
|
void set_component_foreground_color(const char *component, Color color) override;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Set the pressed foreground color of a component.
|
* Set the pressed foreground color of a component.
|
||||||
* @param component The component name.
|
* @param component The component name.
|
||||||
@ -239,6 +252,7 @@ class Nextion : public NextionBase, public PollingComponent, public uart::UARTDe
|
|||||||
* Nextion HMI colors.
|
* Nextion HMI colors.
|
||||||
*/
|
*/
|
||||||
void set_component_pressed_foreground_color(const char *component, uint16_t color);
|
void set_component_pressed_foreground_color(const char *component, uint16_t color);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Set the pressed foreground color of a component.
|
* Set the pressed foreground color of a component.
|
||||||
* @param component The component name.
|
* @param component The component name.
|
||||||
@ -254,6 +268,7 @@ class Nextion : public NextionBase, public PollingComponent, public uart::UARTDe
|
|||||||
* Use [Nextion Instruction Set](https://nextion.tech/instruction-set/#s5) for a list of Nextion HMI colors constants.
|
* Use [Nextion Instruction Set](https://nextion.tech/instruction-set/#s5) for a list of Nextion HMI colors constants.
|
||||||
*/
|
*/
|
||||||
void set_component_pressed_foreground_color(const char *component, const char *color);
|
void set_component_pressed_foreground_color(const char *component, const char *color);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Set the pressed foreground color of a component.
|
* Set the pressed foreground color of a component.
|
||||||
* @param component The component name.
|
* @param component The component name.
|
||||||
@ -283,6 +298,7 @@ class Nextion : public NextionBase, public PollingComponent, public uart::UARTDe
|
|||||||
* This will change the picture id of the component `textview`.
|
* This will change the picture id of the component `textview`.
|
||||||
*/
|
*/
|
||||||
void set_component_pic(const char *component, uint8_t pic_id);
|
void set_component_pic(const char *component, uint8_t pic_id);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Set the background picture id of component.
|
* Set the background picture id of component.
|
||||||
* @param component The component name.
|
* @param component The component name.
|
||||||
@ -312,6 +328,7 @@ class Nextion : public NextionBase, public PollingComponent, public uart::UARTDe
|
|||||||
* Nextion HMI colors.
|
* Nextion HMI colors.
|
||||||
*/
|
*/
|
||||||
void set_component_font_color(const char *component, uint16_t color);
|
void set_component_font_color(const char *component, uint16_t color);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Set the font color of a component.
|
* Set the font color of a component.
|
||||||
* @param component The component name.
|
* @param component The component name.
|
||||||
@ -326,6 +343,7 @@ class Nextion : public NextionBase, public PollingComponent, public uart::UARTDe
|
|||||||
* Use [Nextion Instruction Set](https://nextion.tech/instruction-set/#s5) for a list of Nextion HMI colors constants.
|
* Use [Nextion Instruction Set](https://nextion.tech/instruction-set/#s5) for a list of Nextion HMI colors constants.
|
||||||
*/
|
*/
|
||||||
void set_component_font_color(const char *component, const char *color);
|
void set_component_font_color(const char *component, const char *color);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Set the font color of a component.
|
* Set the font color of a component.
|
||||||
* @param component The component name.
|
* @param component The component name.
|
||||||
@ -339,6 +357,7 @@ class Nextion : public NextionBase, public PollingComponent, public uart::UARTDe
|
|||||||
* This will change the font color of the component `textview` to black.
|
* This will change the font color of the component `textview` to black.
|
||||||
*/
|
*/
|
||||||
void set_component_font_color(const char *component, Color color) override;
|
void set_component_font_color(const char *component, Color color) override;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Set the pressed font color of a component.
|
* Set the pressed font color of a component.
|
||||||
* @param component The component name.
|
* @param component The component name.
|
||||||
@ -354,6 +373,7 @@ class Nextion : public NextionBase, public PollingComponent, public uart::UARTDe
|
|||||||
* Nextion HMI colors.
|
* Nextion HMI colors.
|
||||||
*/
|
*/
|
||||||
void set_component_pressed_font_color(const char *component, uint16_t color);
|
void set_component_pressed_font_color(const char *component, uint16_t color);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Set the pressed font color of a component.
|
* Set the pressed font color of a component.
|
||||||
* @param component The component name.
|
* @param component The component name.
|
||||||
@ -368,6 +388,7 @@ class Nextion : public NextionBase, public PollingComponent, public uart::UARTDe
|
|||||||
* Use [Nextion Instruction Set](https://nextion.tech/instruction-set/#s5) for a list of Nextion HMI colors constants.
|
* Use [Nextion Instruction Set](https://nextion.tech/instruction-set/#s5) for a list of Nextion HMI colors constants.
|
||||||
*/
|
*/
|
||||||
void set_component_pressed_font_color(const char *component, const char *color);
|
void set_component_pressed_font_color(const char *component, const char *color);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Set the pressed font color of a component.
|
* Set the pressed font color of a component.
|
||||||
* @param component The component name.
|
* @param component The component name.
|
||||||
@ -381,6 +402,7 @@ class Nextion : public NextionBase, public PollingComponent, public uart::UARTDe
|
|||||||
* This will change the pressed font color of the component `button` to black.
|
* This will change the pressed font color of the component `button` to black.
|
||||||
*/
|
*/
|
||||||
void set_component_pressed_font_color(const char *component, Color color) override;
|
void set_component_pressed_font_color(const char *component, Color color) override;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Set the coordinates of a component on screen.
|
* Set the coordinates of a component on screen.
|
||||||
* @param component The component name.
|
* @param component The component name.
|
||||||
@ -394,7 +416,8 @@ class Nextion : public NextionBase, public PollingComponent, public uart::UARTDe
|
|||||||
*
|
*
|
||||||
* This will move the position of the component `pic` to the x coordinate `55` and y coordinate `100`.
|
* This will move the position of the component `pic` to the x coordinate `55` and y coordinate `100`.
|
||||||
*/
|
*/
|
||||||
void set_component_coordinates(const char *component, int x, int y);
|
void set_component_coordinates(const char *component, uint16_t x, uint16_t y);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Set the font id for a component.
|
* Set the font id for a component.
|
||||||
* @param component The component name.
|
* @param component The component name.
|
||||||
@ -408,6 +431,7 @@ class Nextion : public NextionBase, public PollingComponent, public uart::UARTDe
|
|||||||
* Changes the font of the component named `textveiw`. Font IDs are set in the Nextion Editor.
|
* Changes the font of the component named `textveiw`. Font IDs are set in the Nextion Editor.
|
||||||
*/
|
*/
|
||||||
void set_component_font(const char *component, uint8_t font_id) override;
|
void set_component_font(const char *component, uint8_t font_id) override;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Send the current time to the nextion display.
|
* Send the current time to the nextion display.
|
||||||
* @param time The time instance to send (get this with id(my_time).now() ).
|
* @param time The time instance to send (get this with id(my_time).now() ).
|
||||||
@ -426,6 +450,7 @@ class Nextion : public NextionBase, public PollingComponent, public uart::UARTDe
|
|||||||
* Switches to the page named `main`. Pages are named in the Nextion Editor.
|
* Switches to the page named `main`. Pages are named in the Nextion Editor.
|
||||||
*/
|
*/
|
||||||
void goto_page(const char *page);
|
void goto_page(const char *page);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Show the page with a given id.
|
* Show the page with a given id.
|
||||||
* @param page The id of the page.
|
* @param page The id of the page.
|
||||||
@ -438,6 +463,7 @@ class Nextion : public NextionBase, public PollingComponent, public uart::UARTDe
|
|||||||
* Switches to the page named `main`. Pages are named in the Nextion Editor.
|
* Switches to the page named `main`. Pages are named in the Nextion Editor.
|
||||||
*/
|
*/
|
||||||
void goto_page(uint8_t page);
|
void goto_page(uint8_t page);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Hide a component.
|
* Hide a component.
|
||||||
* @param component The component name.
|
* @param component The component name.
|
||||||
@ -450,6 +476,7 @@ class Nextion : public NextionBase, public PollingComponent, public uart::UARTDe
|
|||||||
* Hides the component named `button`.
|
* Hides the component named `button`.
|
||||||
*/
|
*/
|
||||||
void hide_component(const char *component) override;
|
void hide_component(const char *component) override;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Show a component.
|
* Show a component.
|
||||||
* @param component The component name.
|
* @param component The component name.
|
||||||
@ -462,6 +489,7 @@ class Nextion : public NextionBase, public PollingComponent, public uart::UARTDe
|
|||||||
* Shows the component named `button`.
|
* Shows the component named `button`.
|
||||||
*/
|
*/
|
||||||
void show_component(const char *component) override;
|
void show_component(const char *component) override;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Enable touch for a component.
|
* Enable touch for a component.
|
||||||
* @param component The component name.
|
* @param component The component name.
|
||||||
@ -474,6 +502,7 @@ class Nextion : public NextionBase, public PollingComponent, public uart::UARTDe
|
|||||||
* Enables touch for component named `button`.
|
* Enables touch for component named `button`.
|
||||||
*/
|
*/
|
||||||
void enable_component_touch(const char *component);
|
void enable_component_touch(const char *component);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Disable touch for a component.
|
* Disable touch for a component.
|
||||||
* @param component The component name.
|
* @param component The component name.
|
||||||
@ -486,14 +515,17 @@ class Nextion : public NextionBase, public PollingComponent, public uart::UARTDe
|
|||||||
* Disables touch for component named `button`.
|
* Disables touch for component named `button`.
|
||||||
*/
|
*/
|
||||||
void disable_component_touch(const char *component);
|
void disable_component_touch(const char *component);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Add waveform data to a waveform component
|
* Add waveform data to a waveform component
|
||||||
* @param component_id The integer component id.
|
* @param component_id The integer component id.
|
||||||
* @param channel_number The channel number to write to.
|
* @param channel_number The channel number to write to.
|
||||||
* @param value The value to write.
|
* @param value The value to write.
|
||||||
*/
|
*/
|
||||||
void add_waveform_data(int component_id, uint8_t channel_number, uint8_t value);
|
void add_waveform_data(uint8_t component_id, uint8_t channel_number, uint8_t value);
|
||||||
void open_waveform_channel(int component_id, uint8_t channel_number, uint8_t value);
|
|
||||||
|
void open_waveform_channel(uint8_t component_id, uint8_t channel_number, uint8_t value);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Display a picture at coordinates.
|
* Display a picture at coordinates.
|
||||||
* @param picture_id The picture id.
|
* @param picture_id The picture id.
|
||||||
@ -507,7 +539,8 @@ class Nextion : public NextionBase, public PollingComponent, public uart::UARTDe
|
|||||||
*
|
*
|
||||||
* Displays the picture who has the id `2` at the x coordinates `15` and y coordinates `25`.
|
* Displays the picture who has the id `2` at the x coordinates `15` and y coordinates `25`.
|
||||||
*/
|
*/
|
||||||
void display_picture(int picture_id, int x_start, int y_start);
|
void display_picture(uint16_t picture_id, uint16_t x_start, uint16_t y_start);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Fill a rectangle with a color.
|
* Fill a rectangle with a color.
|
||||||
* @param x1 The starting x coordinate.
|
* @param x1 The starting x coordinate.
|
||||||
@ -526,7 +559,8 @@ class Nextion : public NextionBase, public PollingComponent, public uart::UARTDe
|
|||||||
* Use this [color picker](https://nodtem66.github.io/nextion-hmi-color-convert/index.html) to convert color codes to
|
* Use this [color picker](https://nodtem66.github.io/nextion-hmi-color-convert/index.html) to convert color codes to
|
||||||
* Nextion HMI colors.
|
* Nextion HMI colors.
|
||||||
*/
|
*/
|
||||||
void fill_area(int x1, int y1, int width, int height, uint16_t color);
|
void fill_area(uint16_t x1, uint16_t y1, uint16_t width, uint16_t height, uint16_t color);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Fill a rectangle with a color.
|
* Fill a rectangle with a color.
|
||||||
* @param x1 The starting x coordinate.
|
* @param x1 The starting x coordinate.
|
||||||
@ -544,7 +578,8 @@ class Nextion : public NextionBase, public PollingComponent, public uart::UARTDe
|
|||||||
* the red color.
|
* the red color.
|
||||||
* Use [Nextion Instruction Set](https://nextion.tech/instruction-set/#s5) for a list of Nextion HMI colors constants.
|
* Use [Nextion Instruction Set](https://nextion.tech/instruction-set/#s5) for a list of Nextion HMI colors constants.
|
||||||
*/
|
*/
|
||||||
void fill_area(int x1, int y1, int width, int height, const char *color);
|
void fill_area(uint16_t x1, uint16_t y1, uint16_t width, uint16_t height, const char *color);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Fill a rectangle with a color.
|
* Fill a rectangle with a color.
|
||||||
* @param x1 The starting x coordinate.
|
* @param x1 The starting x coordinate.
|
||||||
@ -562,7 +597,8 @@ class Nextion : public NextionBase, public PollingComponent, public uart::UARTDe
|
|||||||
* Fills an area that starts at x coordinate `50` and y coordinate `50` with a height of `100` and width of `100` with
|
* Fills an area that starts at x coordinate `50` and y coordinate `50` with a height of `100` and width of `100` with
|
||||||
* blue color.
|
* blue color.
|
||||||
*/
|
*/
|
||||||
void fill_area(int x1, int y1, int width, int height, Color color);
|
void fill_area(uint16_t x1, uint16_t y1, uint16_t width, uint16_t height, Color color);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Draw a line on the screen.
|
* Draw a line on the screen.
|
||||||
* @param x1 The starting x coordinate.
|
* @param x1 The starting x coordinate.
|
||||||
@ -581,7 +617,8 @@ class Nextion : public NextionBase, public PollingComponent, public uart::UARTDe
|
|||||||
* Use this [color picker](https://nodtem66.github.io/nextion-hmi-color-convert/index.html) to convert color codes to
|
* Use this [color picker](https://nodtem66.github.io/nextion-hmi-color-convert/index.html) to convert color codes to
|
||||||
* Nextion HMI colors.
|
* Nextion HMI colors.
|
||||||
*/
|
*/
|
||||||
void line(int x1, int y1, int x2, int y2, uint16_t color);
|
void line(uint16_t x1, uint16_t y1, uint16_t x2, uint16_t y2, uint16_t color);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Draw a line on the screen.
|
* Draw a line on the screen.
|
||||||
* @param x1 The starting x coordinate.
|
* @param x1 The starting x coordinate.
|
||||||
@ -599,7 +636,8 @@ class Nextion : public NextionBase, public PollingComponent, public uart::UARTDe
|
|||||||
* `75` with the blue color.
|
* `75` with the blue color.
|
||||||
* Use [Nextion Instruction Set](https://nextion.tech/instruction-set/#s5) for a list of Nextion HMI colors constants.
|
* Use [Nextion Instruction Set](https://nextion.tech/instruction-set/#s5) for a list of Nextion HMI colors constants.
|
||||||
*/
|
*/
|
||||||
void line(int x1, int y1, int x2, int y2, const char *color);
|
void line(uint16_t x1, uint16_t y1, uint16_t x2, uint16_t y2, const char *color);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Draw a line on the screen.
|
* Draw a line on the screen.
|
||||||
* @param x1 The starting x coordinate.
|
* @param x1 The starting x coordinate.
|
||||||
@ -617,7 +655,8 @@ class Nextion : public NextionBase, public PollingComponent, public uart::UARTDe
|
|||||||
* Makes a line that starts at x coordinate `50` and y coordinate `50` and ends at x coordinate `75` and y coordinate
|
* Makes a line that starts at x coordinate `50` and y coordinate `50` and ends at x coordinate `75` and y coordinate
|
||||||
* `75` with blue color.
|
* `75` with blue color.
|
||||||
*/
|
*/
|
||||||
void line(int x1, int y1, int x2, int y2, Color color);
|
void line(uint16_t x1, uint16_t y1, uint16_t x2, uint16_t y2, Color color);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Draw a rectangle outline.
|
* Draw a rectangle outline.
|
||||||
* @param x1 The starting x coordinate.
|
* @param x1 The starting x coordinate.
|
||||||
@ -636,7 +675,8 @@ class Nextion : public NextionBase, public PollingComponent, public uart::UARTDe
|
|||||||
* Use this [color picker](https://nodtem66.github.io/nextion-hmi-color-convert/index.html) to convert color codes to
|
* Use this [color picker](https://nodtem66.github.io/nextion-hmi-color-convert/index.html) to convert color codes to
|
||||||
* Nextion HMI colors.
|
* Nextion HMI colors.
|
||||||
*/
|
*/
|
||||||
void rectangle(int x1, int y1, int width, int height, uint16_t color);
|
void rectangle(uint16_t x1, uint16_t y1, uint16_t width, uint16_t height, uint16_t color);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Draw a rectangle outline.
|
* Draw a rectangle outline.
|
||||||
* @param x1 The starting x coordinate.
|
* @param x1 The starting x coordinate.
|
||||||
@ -654,7 +694,8 @@ class Nextion : public NextionBase, public PollingComponent, public uart::UARTDe
|
|||||||
* length of `50` with the blue color.
|
* length of `50` with the blue color.
|
||||||
* Use [Nextion Instruction Set](https://nextion.tech/instruction-set/#s5) for a list of Nextion HMI colors constants.
|
* Use [Nextion Instruction Set](https://nextion.tech/instruction-set/#s5) for a list of Nextion HMI colors constants.
|
||||||
*/
|
*/
|
||||||
void rectangle(int x1, int y1, int width, int height, const char *color);
|
void rectangle(uint16_t x1, uint16_t y1, uint16_t width, uint16_t height, const char *color);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Draw a rectangle outline.
|
* Draw a rectangle outline.
|
||||||
* @param x1 The starting x coordinate.
|
* @param x1 The starting x coordinate.
|
||||||
@ -672,7 +713,8 @@ class Nextion : public NextionBase, public PollingComponent, public uart::UARTDe
|
|||||||
* Makes a outline of a rectangle that starts at x coordinate `25` and y coordinate `35` and has a width of `40` and a
|
* Makes a outline of a rectangle that starts at x coordinate `25` and y coordinate `35` and has a width of `40` and a
|
||||||
* length of `50` with blue color.
|
* length of `50` with blue color.
|
||||||
*/
|
*/
|
||||||
void rectangle(int x1, int y1, int width, int height, Color color);
|
void rectangle(uint16_t x1, uint16_t y1, uint16_t width, uint16_t height, Color color);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Draw a circle outline
|
* Draw a circle outline
|
||||||
* @param center_x The center x coordinate.
|
* @param center_x The center x coordinate.
|
||||||
@ -682,7 +724,8 @@ class Nextion : public NextionBase, public PollingComponent, public uart::UARTDe
|
|||||||
* Use this [color picker](https://nodtem66.github.io/nextion-hmi-color-convert/index.html) to convert color codes to
|
* Use this [color picker](https://nodtem66.github.io/nextion-hmi-color-convert/index.html) to convert color codes to
|
||||||
* Nextion HMI colors.
|
* Nextion HMI colors.
|
||||||
*/
|
*/
|
||||||
void circle(int center_x, int center_y, int radius, uint16_t color);
|
void circle(uint16_t center_x, uint16_t center_y, uint16_t radius, uint16_t color);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Draw a circle outline
|
* Draw a circle outline
|
||||||
* @param center_x The center x coordinate.
|
* @param center_x The center x coordinate.
|
||||||
@ -691,7 +734,8 @@ class Nextion : public NextionBase, public PollingComponent, public uart::UARTDe
|
|||||||
* @param color The color to draw with (as a string).
|
* @param color The color to draw with (as a string).
|
||||||
* Use [Nextion Instruction Set](https://nextion.tech/instruction-set/#s5) for a list of Nextion HMI colors constants.
|
* Use [Nextion Instruction Set](https://nextion.tech/instruction-set/#s5) for a list of Nextion HMI colors constants.
|
||||||
*/
|
*/
|
||||||
void circle(int center_x, int center_y, int radius, const char *color);
|
void circle(uint16_t center_x, uint16_t center_y, uint16_t radius, const char *color);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Draw a circle outline
|
* Draw a circle outline
|
||||||
* @param center_x The center x coordinate.
|
* @param center_x The center x coordinate.
|
||||||
@ -699,7 +743,8 @@ class Nextion : public NextionBase, public PollingComponent, public uart::UARTDe
|
|||||||
* @param radius The circle radius.
|
* @param radius The circle radius.
|
||||||
* @param color The color to draw with (as Color).
|
* @param color The color to draw with (as Color).
|
||||||
*/
|
*/
|
||||||
void circle(int center_x, int center_y, int radius, Color color);
|
void circle(uint16_t center_x, uint16_t center_y, uint16_t radius, Color color);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Draw a filled circled.
|
* Draw a filled circled.
|
||||||
* @param center_x The center x coordinate.
|
* @param center_x The center x coordinate.
|
||||||
@ -716,7 +761,8 @@ class Nextion : public NextionBase, public PollingComponent, public uart::UARTDe
|
|||||||
* Use this [color picker](https://nodtem66.github.io/nextion-hmi-color-convert/index.html) to convert color codes to
|
* Use this [color picker](https://nodtem66.github.io/nextion-hmi-color-convert/index.html) to convert color codes to
|
||||||
* Nextion HMI colors.
|
* Nextion HMI colors.
|
||||||
*/
|
*/
|
||||||
void filled_circle(int center_x, int center_y, int radius, uint16_t color);
|
void filled_circle(uint16_t center_x, uint16_t center_y, uint16_t radius, uint16_t color);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Draw a filled circled.
|
* Draw a filled circled.
|
||||||
* @param center_x The center x coordinate.
|
* @param center_x The center x coordinate.
|
||||||
@ -732,7 +778,8 @@ class Nextion : public NextionBase, public PollingComponent, public uart::UARTDe
|
|||||||
* Makes a filled circle at the x coordinate `25` and y coordinate `25` with a radius of `10` with the blue color.
|
* Makes a filled circle at the x coordinate `25` and y coordinate `25` with a radius of `10` with the blue color.
|
||||||
* Use [Nextion Instruction Set](https://nextion.tech/instruction-set/#s5) for a list of Nextion HMI colors constants.
|
* Use [Nextion Instruction Set](https://nextion.tech/instruction-set/#s5) for a list of Nextion HMI colors constants.
|
||||||
*/
|
*/
|
||||||
void filled_circle(int center_x, int center_y, int radius, const char *color);
|
void filled_circle(uint16_t center_x, uint16_t center_y, uint16_t radius, const char *color);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Draw a filled circled.
|
* Draw a filled circled.
|
||||||
* @param center_x The center x coordinate.
|
* @param center_x The center x coordinate.
|
||||||
@ -748,7 +795,7 @@ class Nextion : public NextionBase, public PollingComponent, public uart::UARTDe
|
|||||||
*
|
*
|
||||||
* Makes a filled circle at the x coordinate `25` and y coordinate `25` with a radius of `10` with blue color.
|
* Makes a filled circle at the x coordinate `25` and y coordinate `25` with a radius of `10` with blue color.
|
||||||
*/
|
*/
|
||||||
void filled_circle(int center_x, int center_y, int radius, Color color);
|
void filled_circle(uint16_t center_x, uint16_t center_y, uint16_t radius, Color color);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Draws a QR code in the screen
|
* Draws a QR code in the screen
|
||||||
@ -768,8 +815,9 @@ class Nextion : public NextionBase, public PollingComponent, public uart::UARTDe
|
|||||||
*
|
*
|
||||||
* Draws a QR code with a Wi-Fi network credentials starting at the given coordinates (25,25).
|
* Draws a QR code with a Wi-Fi network credentials starting at the given coordinates (25,25).
|
||||||
*/
|
*/
|
||||||
void qrcode(int x1, int y1, const char *content, int size = 200, uint16_t background_color = 65535,
|
void qrcode(uint16_t x1, uint16_t y1, const char *content, uint16_t size = 200, uint16_t background_color = 65535,
|
||||||
uint16_t foreground_color = 0, int logo_pic = -1, uint8_t border_width = 8);
|
uint16_t foreground_color = 0, uint8_t logo_pic = -1, uint8_t border_width = 8);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Draws a QR code in the screen
|
* Draws a QR code in the screen
|
||||||
* @param x1 The top left x coordinate to start the QR code.
|
* @param x1 The top left x coordinate to start the QR code.
|
||||||
@ -791,8 +839,9 @@ class Nextion : public NextionBase, public PollingComponent, public uart::UARTDe
|
|||||||
* Draws a QR code with a Wi-Fi network credentials starting at the given coordinates (25,25) with size of 150px in
|
* Draws a QR code with a Wi-Fi network credentials starting at the given coordinates (25,25) with size of 150px in
|
||||||
* red on a blue background.
|
* red on a blue background.
|
||||||
*/
|
*/
|
||||||
void qrcode(int x1, int y1, const char *content, int size, Color background_color = Color(255, 255, 255),
|
void qrcode(uint16_t x1, uint16_t y1, const char *content, uint16_t size,
|
||||||
Color foreground_color = Color(0, 0, 0), int logo_pic = -1, uint8_t border_width = 8);
|
Color background_color = Color(255, 255, 255), Color foreground_color = Color(0, 0, 0),
|
||||||
|
uint8_t logo_pic = -1, uint8_t border_width = 8);
|
||||||
|
|
||||||
/** Set the brightness of the backlight.
|
/** Set the brightness of the backlight.
|
||||||
*
|
*
|
||||||
@ -806,6 +855,7 @@ class Nextion : public NextionBase, public PollingComponent, public uart::UARTDe
|
|||||||
* Changes the brightness of the display to 30%.
|
* Changes the brightness of the display to 30%.
|
||||||
*/
|
*/
|
||||||
void set_backlight_brightness(float brightness);
|
void set_backlight_brightness(float brightness);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Set the touch sleep timeout of the display.
|
* Set the touch sleep timeout of the display.
|
||||||
* @param timeout Timeout in seconds.
|
* @param timeout Timeout in seconds.
|
||||||
@ -819,6 +869,7 @@ class Nextion : public NextionBase, public PollingComponent, public uart::UARTDe
|
|||||||
* `thup`.
|
* `thup`.
|
||||||
*/
|
*/
|
||||||
void set_touch_sleep_timeout(uint16_t timeout);
|
void set_touch_sleep_timeout(uint16_t timeout);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Sets which page Nextion loads when exiting sleep mode. Note this can be set even when Nextion is in sleep mode.
|
* Sets which page Nextion loads when exiting sleep mode. Note this can be set even when Nextion is in sleep mode.
|
||||||
* @param page_id The page id, from 0 to the lage page in Nextion. Set 255 (not set to any existing page) to
|
* @param page_id The page id, from 0 to the lage page in Nextion. Set 255 (not set to any existing page) to
|
||||||
@ -832,6 +883,7 @@ class Nextion : public NextionBase, public PollingComponent, public uart::UARTDe
|
|||||||
* The display will wake up to page 2.
|
* The display will wake up to page 2.
|
||||||
*/
|
*/
|
||||||
void set_wake_up_page(uint8_t page_id = 255);
|
void set_wake_up_page(uint8_t page_id = 255);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Sets which page Nextion loads when connecting to ESPHome.
|
* Sets which page Nextion loads when connecting to ESPHome.
|
||||||
* @param page_id The page id, from 0 to the lage page in Nextion. Set 255 (not set to any existing page) to
|
* @param page_id The page id, from 0 to the lage page in Nextion. Set 255 (not set to any existing page) to
|
||||||
@ -859,6 +911,7 @@ class Nextion : public NextionBase, public PollingComponent, public uart::UARTDe
|
|||||||
* The display will wake up by touch.
|
* The display will wake up by touch.
|
||||||
*/
|
*/
|
||||||
void set_auto_wake_on_touch(bool auto_wake);
|
void set_auto_wake_on_touch(bool auto_wake);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Sets if Nextion should exit the active reparse mode before the "connect" command is sent
|
* Sets if Nextion should exit the active reparse mode before the "connect" command is sent
|
||||||
* @param exit_reparse True or false. When exit_reparse is true, the exit reparse command
|
* @param exit_reparse True or false. When exit_reparse is true, the exit reparse command
|
||||||
@ -872,18 +925,32 @@ class Nextion : public NextionBase, public PollingComponent, public uart::UARTDe
|
|||||||
* The display will be requested to leave active reparse mode before setup.
|
* The display will be requested to leave active reparse mode before setup.
|
||||||
*/
|
*/
|
||||||
void set_exit_reparse_on_start(bool exit_reparse);
|
void set_exit_reparse_on_start(bool exit_reparse);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Sets Nextion mode between sleep and awake
|
* Sets Nextion mode between sleep and awake
|
||||||
* @param True or false. Sleep=true to enter sleep mode or sleep=false to exit sleep mode.
|
* @param True or false. Sleep=true to enter sleep mode or sleep=false to exit sleep mode.
|
||||||
*/
|
*/
|
||||||
void sleep(bool sleep);
|
void sleep(bool sleep);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Sets Nextion Protocol Reparse mode between active or passive
|
* @brief Sets the Nextion display's protocol reparse mode.
|
||||||
* @param True or false.
|
*
|
||||||
* active_mode=true to enter active protocol reparse mode
|
* This function toggles the Nextion display's protocol reparse mode between active and passive.
|
||||||
* active_mode=false to enter passive protocol reparse mode.
|
* In active mode, the display actively parses incoming data.
|
||||||
|
* In passive mode, it does not parse data unless specifically instructed to do so.
|
||||||
|
* This is useful for managing how the Nextion display interprets incoming commands,
|
||||||
|
* especially during initialization or in scenarios where precise control over command processing is needed.
|
||||||
|
*
|
||||||
|
* @param active_mode A boolean value indicating the desired reparse mode.
|
||||||
|
* - true to set the display to active protocol reparse mode, where it actively parses incoming commands.
|
||||||
|
* - false to set the display to passive protocol reparse mode, where command parsing is done only on explicit
|
||||||
|
* instruction.
|
||||||
|
*
|
||||||
|
* @return bool Returns true if all commands were sent successfully to the Nextion display, indicating that the mode
|
||||||
|
* was set as expected. Returns false if any of the commands failed to send, indicating that the desired reparse mode
|
||||||
|
* may not be correctly set.
|
||||||
*/
|
*/
|
||||||
void set_protocol_reparse_mode(bool active_mode);
|
bool set_protocol_reparse_mode(bool active_mode);
|
||||||
|
|
||||||
// ========== INTERNAL METHODS ==========
|
// ========== INTERNAL METHODS ==========
|
||||||
// (In most use cases you won't need these)
|
// (In most use cases you won't need these)
|
||||||
@ -903,6 +970,12 @@ class Nextion : public NextionBase, public PollingComponent, public uart::UARTDe
|
|||||||
// This function has been deprecated
|
// This function has been deprecated
|
||||||
void set_wait_for_ack(bool wait_for_ack);
|
void set_wait_for_ack(bool wait_for_ack);
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Manually send a raw command to the display.
|
||||||
|
* @param command The pcommand, like "page 0"
|
||||||
|
* @return Whether the send was successful.
|
||||||
|
*/
|
||||||
|
bool send_command(const char *command);
|
||||||
/**
|
/**
|
||||||
* Manually send a raw formatted command to the display.
|
* Manually send a raw formatted command to the display.
|
||||||
* @param format The printf-style command format, like "vis %s,0"
|
* @param format The printf-style command format, like "vis %s,0"
|
||||||
@ -916,7 +989,6 @@ class Nextion : public NextionBase, public PollingComponent, public uart::UARTDe
|
|||||||
* Set the tft file URL. https seems problematic with arduino..
|
* Set the tft file URL. https seems problematic with arduino..
|
||||||
*/
|
*/
|
||||||
void set_tft_url(const std::string &tft_url) { this->tft_url_ = tft_url; }
|
void set_tft_url(const std::string &tft_url) { this->tft_url_ = tft_url; }
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@ -980,9 +1052,9 @@ class Nextion : public NextionBase, public PollingComponent, public uart::UARTDe
|
|||||||
void set_nextion_sensor_state(NextionQueueType queue_type, const std::string &name, float state);
|
void set_nextion_sensor_state(NextionQueueType queue_type, const std::string &name, float state);
|
||||||
void set_nextion_text_state(const std::string &name, const std::string &state);
|
void set_nextion_text_state(const std::string &name, const std::string &state);
|
||||||
|
|
||||||
void add_no_result_to_queue_with_set(NextionComponentBase *component, int state_value) override;
|
void add_no_result_to_queue_with_set(NextionComponentBase *component, int32_t state_value) override;
|
||||||
void add_no_result_to_queue_with_set(const std::string &variable_name, const std::string &variable_name_to_send,
|
void add_no_result_to_queue_with_set(const std::string &variable_name, const std::string &variable_name_to_send,
|
||||||
int state_value) override;
|
int32_t state_value) override;
|
||||||
|
|
||||||
void add_no_result_to_queue_with_set(NextionComponentBase *component, const std::string &state_value) override;
|
void add_no_result_to_queue_with_set(NextionComponentBase *component, const std::string &state_value) override;
|
||||||
void add_no_result_to_queue_with_set(const std::string &variable_name, const std::string &variable_name_to_send,
|
void add_no_result_to_queue_with_set(const std::string &variable_name, const std::string &variable_name_to_send,
|
||||||
@ -1019,6 +1091,26 @@ class Nextion : public NextionBase, public PollingComponent, public uart::UARTDe
|
|||||||
*/
|
*/
|
||||||
size_t queue_size() { return this->nextion_queue_.size(); }
|
size_t queue_size() { return this->nextion_queue_.size(); }
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @brief Check if the TFT update process is currently running.
|
||||||
|
*
|
||||||
|
* This method provides a way to determine if the Nextion display is in the
|
||||||
|
* process of updating its TFT firmware. When a TFT update is in progress,
|
||||||
|
* certain operations or commands may be restricted or could interfere with the
|
||||||
|
* update process. By checking the state of the update process, the system can
|
||||||
|
* make informed decisions about performing actions that involve communication
|
||||||
|
* with the Nextion display.
|
||||||
|
*
|
||||||
|
* @return true if the TFT update process is active, indicating that the Nextion
|
||||||
|
* display is currently updating its firmware. This implies that caution
|
||||||
|
* should be taken with commands sent to the display to avoid interrupting
|
||||||
|
* the update process.
|
||||||
|
* @return false if the TFT update process is not active, indicating that the Nextion
|
||||||
|
* display is not currently updating its firmware and is in a normal operational
|
||||||
|
* state, ready to receive and process commands as usual.
|
||||||
|
*/
|
||||||
|
bool is_updating() override;
|
||||||
|
|
||||||
protected:
|
protected:
|
||||||
std::deque<NextionQueue *> nextion_queue_;
|
std::deque<NextionQueue *> nextion_queue_;
|
||||||
std::deque<NextionQueue *> waveform_queue_;
|
std::deque<NextionQueue *> waveform_queue_;
|
||||||
@ -1038,8 +1130,8 @@ class Nextion : public NextionBase, public PollingComponent, public uart::UARTDe
|
|||||||
void process_serial_();
|
void process_serial_();
|
||||||
bool is_updating_ = false;
|
bool is_updating_ = false;
|
||||||
uint32_t touch_sleep_timeout_ = 0;
|
uint32_t touch_sleep_timeout_ = 0;
|
||||||
int wake_up_page_ = -1;
|
int16_t wake_up_page_ = -1;
|
||||||
int start_up_page_ = -1;
|
int16_t start_up_page_ = -1;
|
||||||
bool auto_wake_on_touch_ = true;
|
bool auto_wake_on_touch_ = true;
|
||||||
bool exit_reparse_on_start_ = false;
|
bool exit_reparse_on_start_ = false;
|
||||||
|
|
||||||
@ -1057,7 +1149,7 @@ class Nextion : public NextionBase, public PollingComponent, public uart::UARTDe
|
|||||||
__attribute__((format(printf, 3, 4)));
|
__attribute__((format(printf, 3, 4)));
|
||||||
|
|
||||||
void add_no_result_to_queue_with_set_internal_(const std::string &variable_name,
|
void add_no_result_to_queue_with_set_internal_(const std::string &variable_name,
|
||||||
const std::string &variable_name_to_send, int state_value,
|
const std::string &variable_name_to_send, int32_t state_value,
|
||||||
bool is_sleep_safe = false);
|
bool is_sleep_safe = false);
|
||||||
|
|
||||||
void add_no_result_to_queue_with_set_internal_(const std::string &variable_name,
|
void add_no_result_to_queue_with_set_internal_(const std::string &variable_name,
|
||||||
@ -1067,13 +1159,21 @@ class Nextion : public NextionBase, public PollingComponent, public uart::UARTDe
|
|||||||
void check_pending_waveform_();
|
void check_pending_waveform_();
|
||||||
|
|
||||||
#ifdef USE_NEXTION_TFT_UPLOAD
|
#ifdef USE_NEXTION_TFT_UPLOAD
|
||||||
|
uint32_t content_length_ = 0;
|
||||||
|
int tft_size_ = 0;
|
||||||
|
uint32_t original_baud_rate_ = 0;
|
||||||
|
bool upload_first_chunk_sent_ = false;
|
||||||
|
|
||||||
|
std::string tft_url_;
|
||||||
|
uint8_t *transfer_buffer_{nullptr};
|
||||||
|
size_t transfer_buffer_size_;
|
||||||
|
|
||||||
#ifdef USE_ESP8266
|
#ifdef USE_ESP8266
|
||||||
WiFiClient *wifi_client_{nullptr};
|
WiFiClient *wifi_client_{nullptr};
|
||||||
BearSSL::WiFiClientSecure *wifi_client_secure_{nullptr};
|
BearSSL::WiFiClientSecure *wifi_client_secure_{nullptr};
|
||||||
WiFiClient *get_wifi_client_();
|
WiFiClient *get_wifi_client_();
|
||||||
#endif
|
#endif
|
||||||
int content_length_ = 0;
|
|
||||||
int tft_size_ = 0;
|
|
||||||
#ifdef ARDUINO
|
#ifdef ARDUINO
|
||||||
/**
|
/**
|
||||||
* will request chunk_size chunks from the web server
|
* will request chunk_size chunks from the web server
|
||||||
@ -1146,13 +1246,6 @@ class Nextion : public NextionBase, public PollingComponent, public uart::UARTDe
|
|||||||
|
|
||||||
void remove_front_no_sensors_();
|
void remove_front_no_sensors_();
|
||||||
|
|
||||||
#ifdef USE_NEXTION_TFT_UPLOAD
|
|
||||||
std::string tft_url_;
|
|
||||||
uint8_t *transfer_buffer_{nullptr};
|
|
||||||
size_t transfer_buffer_size_;
|
|
||||||
bool upload_first_chunk_sent_ = false;
|
|
||||||
#endif
|
|
||||||
|
|
||||||
#ifdef NEXTION_PROTOCOL_LOG
|
#ifdef NEXTION_PROTOCOL_LOG
|
||||||
void print_queue_members_();
|
void print_queue_members_();
|
||||||
#endif
|
#endif
|
||||||
@ -1160,8 +1253,8 @@ class Nextion : public NextionBase, public PollingComponent, public uart::UARTDe
|
|||||||
|
|
||||||
std::string command_data_;
|
std::string command_data_;
|
||||||
bool is_connected_ = false;
|
bool is_connected_ = false;
|
||||||
uint32_t startup_override_ms_ = 8000;
|
const uint16_t startup_override_ms_ = 8000;
|
||||||
uint32_t max_q_age_ms_ = 8000;
|
const uint16_t max_q_age_ms_ = 8000;
|
||||||
uint32_t started_ms_ = 0;
|
uint32_t started_ms_ = 0;
|
||||||
bool sent_setup_commands_ = false;
|
bool sent_setup_commands_ = false;
|
||||||
};
|
};
|
||||||
|
@ -24,9 +24,9 @@ class NextionBase;
|
|||||||
|
|
||||||
class NextionBase {
|
class NextionBase {
|
||||||
public:
|
public:
|
||||||
virtual void add_no_result_to_queue_with_set(NextionComponentBase *component, int state_value) = 0;
|
virtual void add_no_result_to_queue_with_set(NextionComponentBase *component, int32_t state_value) = 0;
|
||||||
virtual void add_no_result_to_queue_with_set(const std::string &variable_name,
|
virtual void add_no_result_to_queue_with_set(const std::string &variable_name,
|
||||||
const std::string &variable_name_to_send, int state_value) = 0;
|
const std::string &variable_name_to_send, int32_t state_value) = 0;
|
||||||
|
|
||||||
virtual void add_no_result_to_queue_with_set(NextionComponentBase *component, const std::string &state_value) = 0;
|
virtual void add_no_result_to_queue_with_set(NextionComponentBase *component, const std::string &state_value) = 0;
|
||||||
virtual void add_no_result_to_queue_with_set(const std::string &variable_name,
|
virtual void add_no_result_to_queue_with_set(const std::string &variable_name,
|
||||||
@ -48,6 +48,8 @@ class NextionBase {
|
|||||||
virtual void show_component(const char *component) = 0;
|
virtual void show_component(const char *component) = 0;
|
||||||
virtual void hide_component(const char *component) = 0;
|
virtual void hide_component(const char *component) = 0;
|
||||||
|
|
||||||
|
virtual bool is_updating() { return false; }
|
||||||
|
|
||||||
bool is_sleeping() { return this->is_sleeping_; }
|
bool is_sleeping() { return this->is_sleeping_; }
|
||||||
bool is_setup() { return this->is_setup_; }
|
bool is_setup() { return this->is_setup_; }
|
||||||
bool is_detected() { return this->is_detected_; }
|
bool is_detected() { return this->is_detected_; }
|
||||||
|
@ -36,22 +36,23 @@ void Nextion::sleep(bool sleep) {
|
|||||||
// End sleep safe commands
|
// End sleep safe commands
|
||||||
|
|
||||||
// Protocol reparse mode
|
// Protocol reparse mode
|
||||||
void Nextion::set_protocol_reparse_mode(bool active_mode) {
|
bool Nextion::set_protocol_reparse_mode(bool active_mode) {
|
||||||
const uint8_t to_send[3] = {0xFF, 0xFF, 0xFF};
|
ESP_LOGV(TAG, "Set Nextion protocol reparse mode: %s", YESNO(active_mode));
|
||||||
|
this->ignore_is_setup_ = true; // if not in reparse mode setup will fail, so it should be ignored
|
||||||
|
bool all_commands_sent = true;
|
||||||
if (active_mode) { // Sets active protocol reparse mode
|
if (active_mode) { // Sets active protocol reparse mode
|
||||||
this->write_str(
|
all_commands_sent &= this->send_command_("recmod=1");
|
||||||
"recmod=1"); // send_command_ cannot be used as Nextion might not be setup if incorrect reparse mode
|
} else { // Sets passive protocol reparse mode
|
||||||
this->write_array(to_send, sizeof(to_send));
|
all_commands_sent &=
|
||||||
} else { // Sets passive protocol reparse mode
|
this->send_command_("DRAKJHSUYDGBNCJHGJKSHBDN"); // To exit active reparse mode this sequence must be sent
|
||||||
this->write_str("DRAKJHSUYDGBNCJHGJKSHBDN"); // To exit active reparse mode this sequence must be sent
|
all_commands_sent &= this->send_command_("recmod=0"); // Sending recmode=0 twice is recommended
|
||||||
this->write_array(to_send, sizeof(to_send));
|
all_commands_sent &= this->send_command_("recmod=0");
|
||||||
this->write_str("recmod=0"); // Sending recmode=0 twice is recommended
|
|
||||||
this->write_array(to_send, sizeof(to_send));
|
|
||||||
this->write_str("recmod=0");
|
|
||||||
this->write_array(to_send, sizeof(to_send));
|
|
||||||
}
|
}
|
||||||
this->write_str("connect");
|
if (!this->nextion_reports_is_setup_) { // No need to connect if is already setup
|
||||||
this->write_array(to_send, sizeof(to_send));
|
all_commands_sent &= this->send_command_("connect");
|
||||||
|
}
|
||||||
|
this->ignore_is_setup_ = false;
|
||||||
|
return all_commands_sent;
|
||||||
}
|
}
|
||||||
void Nextion::set_exit_reparse_on_start(bool exit_reparse) { this->exit_reparse_on_start_ = exit_reparse; }
|
void Nextion::set_exit_reparse_on_start(bool exit_reparse) { this->exit_reparse_on_start_ = exit_reparse; }
|
||||||
|
|
||||||
@ -143,11 +144,11 @@ void Nextion::set_component_pressed_font_color(const char *component, Color colo
|
|||||||
|
|
||||||
// Set picture
|
// Set picture
|
||||||
void Nextion::set_component_pic(const char *component, uint8_t pic_id) {
|
void Nextion::set_component_pic(const char *component, uint8_t pic_id) {
|
||||||
this->add_no_result_to_queue_with_printf_("set_component_pic", "%s.pic=%d", component, pic_id);
|
this->add_no_result_to_queue_with_printf_("set_component_pic", "%s.pic=%" PRIu8, component, pic_id);
|
||||||
}
|
}
|
||||||
|
|
||||||
void Nextion::set_component_picc(const char *component, uint8_t pic_id) {
|
void Nextion::set_component_picc(const char *component, uint8_t pic_id) {
|
||||||
this->add_no_result_to_queue_with_printf_("set_component_pic", "%s.picc=%d", component, pic_id);
|
this->add_no_result_to_queue_with_printf_("set_component_pic", "%s.picc=%" PRIu8, component, pic_id);
|
||||||
}
|
}
|
||||||
|
|
||||||
void Nextion::set_component_text_printf(const char *component, const char *format, ...) {
|
void Nextion::set_component_text_printf(const char *component, const char *format, ...) {
|
||||||
@ -178,7 +179,7 @@ void Nextion::set_auto_wake_on_touch(bool auto_wake) {
|
|||||||
|
|
||||||
// General Component
|
// General Component
|
||||||
void Nextion::set_component_font(const char *component, uint8_t font_id) {
|
void Nextion::set_component_font(const char *component, uint8_t font_id) {
|
||||||
this->add_no_result_to_queue_with_printf_("set_component_font", "%s.font=%d", component, font_id);
|
this->add_no_result_to_queue_with_printf_("set_component_font", "%s.font=%" PRIu8, component, font_id);
|
||||||
}
|
}
|
||||||
|
|
||||||
void Nextion::hide_component(const char *component) {
|
void Nextion::hide_component(const char *component) {
|
||||||
@ -198,113 +199,130 @@ void Nextion::disable_component_touch(const char *component) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
void Nextion::set_component_picture(const char *component, uint8_t picture_id) {
|
void Nextion::set_component_picture(const char *component, uint8_t picture_id) {
|
||||||
this->add_no_result_to_queue_with_printf_("set_component_picture", "%s.pic=%d", component, picture_id);
|
this->add_no_result_to_queue_with_printf_("set_component_picture", "%s.pic=%" PRIu8, component, picture_id);
|
||||||
}
|
}
|
||||||
|
|
||||||
void Nextion::set_component_text(const char *component, const char *text) {
|
void Nextion::set_component_text(const char *component, const char *text) {
|
||||||
this->add_no_result_to_queue_with_printf_("set_component_text", "%s.txt=\"%s\"", component, text);
|
this->add_no_result_to_queue_with_printf_("set_component_text", "%s.txt=\"%s\"", component, text);
|
||||||
}
|
}
|
||||||
|
|
||||||
void Nextion::set_component_value(const char *component, int value) {
|
void Nextion::set_component_value(const char *component, int32_t value) {
|
||||||
this->add_no_result_to_queue_with_printf_("set_component_value", "%s.val=%d", component, value);
|
this->add_no_result_to_queue_with_printf_("set_component_value", "%s.val=%" PRId32, component, value);
|
||||||
}
|
}
|
||||||
|
|
||||||
void Nextion::add_waveform_data(int component_id, uint8_t channel_number, uint8_t value) {
|
void Nextion::add_waveform_data(uint8_t component_id, uint8_t channel_number, uint8_t value) {
|
||||||
this->add_no_result_to_queue_with_printf_("add_waveform_data", "add %d,%u,%u", component_id, channel_number, value);
|
this->add_no_result_to_queue_with_printf_("add_waveform_data", "add %" PRIu8 ",%" PRIu8 ",%" PRIu8, component_id,
|
||||||
|
channel_number, value);
|
||||||
}
|
}
|
||||||
|
|
||||||
void Nextion::open_waveform_channel(int component_id, uint8_t channel_number, uint8_t value) {
|
void Nextion::open_waveform_channel(uint8_t component_id, uint8_t channel_number, uint8_t value) {
|
||||||
this->add_no_result_to_queue_with_printf_("open_waveform_channel", "addt %d,%u,%u", component_id, channel_number,
|
this->add_no_result_to_queue_with_printf_("open_waveform_channel", "addt %" PRIu8 ",%" PRIu8 ",%" PRIu8, component_id,
|
||||||
value);
|
channel_number, value);
|
||||||
}
|
}
|
||||||
|
|
||||||
void Nextion::set_component_coordinates(const char *component, int x, int y) {
|
void Nextion::set_component_coordinates(const char *component, uint16_t x, uint16_t y) {
|
||||||
this->add_no_result_to_queue_with_printf_("set_component_coordinates command 1", "%s.xcen=%d", component, x);
|
this->add_no_result_to_queue_with_printf_("set_component_coordinates command 1", "%s.xcen=%" PRIu16, component, x);
|
||||||
this->add_no_result_to_queue_with_printf_("set_component_coordinates command 2", "%s.ycen=%d", component, y);
|
this->add_no_result_to_queue_with_printf_("set_component_coordinates command 2", "%s.ycen=%" PRIu16, component, y);
|
||||||
}
|
}
|
||||||
|
|
||||||
// Drawing
|
// Drawing
|
||||||
void Nextion::display_picture(int picture_id, int x_start, int y_start) {
|
void Nextion::display_picture(uint16_t picture_id, uint16_t x_start, uint16_t y_start) {
|
||||||
this->add_no_result_to_queue_with_printf_("display_picture", "pic %d, %d, %d", x_start, y_start, picture_id);
|
this->add_no_result_to_queue_with_printf_("display_picture", "pic %" PRIu16 ", %" PRIu16 ", %" PRIu16, x_start,
|
||||||
|
y_start, picture_id);
|
||||||
}
|
}
|
||||||
|
|
||||||
void Nextion::fill_area(int x1, int y1, int width, int height, uint16_t color) {
|
void Nextion::fill_area(uint16_t x1, uint16_t y1, uint16_t width, uint16_t height, uint16_t color) {
|
||||||
this->add_no_result_to_queue_with_printf_("fill_area", "fill %d,%d,%d,%d,%" PRIu16, x1, y1, width, height, color);
|
this->add_no_result_to_queue_with_printf_(
|
||||||
|
"fill_area", "fill %" PRIu16 ",%" PRIu16 ",%" PRIu16 ",%" PRIu16 ",%" PRIu16, x1, y1, width, height, color);
|
||||||
}
|
}
|
||||||
|
|
||||||
void Nextion::fill_area(int x1, int y1, int width, int height, const char *color) {
|
void Nextion::fill_area(uint16_t x1, uint16_t y1, uint16_t width, uint16_t height, const char *color) {
|
||||||
this->add_no_result_to_queue_with_printf_("fill_area", "fill %d,%d,%d,%d,%s", x1, y1, width, height, color);
|
this->add_no_result_to_queue_with_printf_("fill_area", "fill %" PRIu16 ",%" PRIu16 ",%" PRIu16 ",%" PRIu16 ",%s", x1,
|
||||||
|
y1, width, height, color);
|
||||||
}
|
}
|
||||||
|
|
||||||
void Nextion::fill_area(int x1, int y1, int width, int height, Color color) {
|
void Nextion::fill_area(uint16_t x1, uint16_t y1, uint16_t width, uint16_t height, Color color) {
|
||||||
this->add_no_result_to_queue_with_printf_("fill_area", "fill %d,%d,%d,%d,%d", x1, y1, width, height,
|
this->add_no_result_to_queue_with_printf_("fill_area",
|
||||||
display::ColorUtil::color_to_565(color));
|
"fill %" PRIu16 ",%" PRIu16 ",%" PRIu16 ",%" PRIu16 ",%" PRIu16, x1, y1,
|
||||||
|
width, height, display::ColorUtil::color_to_565(color));
|
||||||
}
|
}
|
||||||
|
|
||||||
void Nextion::line(int x1, int y1, int x2, int y2, uint16_t color) {
|
void Nextion::line(uint16_t x1, uint16_t y1, uint16_t x2, uint16_t y2, uint16_t color) {
|
||||||
this->add_no_result_to_queue_with_printf_("line", "line %d,%d,%d,%d,%" PRIu16, x1, y1, x2, y2, color);
|
this->add_no_result_to_queue_with_printf_("line", "line %" PRIu16 ",%" PRIu16 ",%" PRIu16 ",%" PRIu16 ",%" PRIu16, x1,
|
||||||
|
y1, x2, y2, color);
|
||||||
}
|
}
|
||||||
|
|
||||||
void Nextion::line(int x1, int y1, int x2, int y2, const char *color) {
|
void Nextion::line(uint16_t x1, uint16_t y1, uint16_t x2, uint16_t y2, const char *color) {
|
||||||
this->add_no_result_to_queue_with_printf_("line", "line %d,%d,%d,%d,%s", x1, y1, x2, y2, color);
|
this->add_no_result_to_queue_with_printf_("line", "line %" PRIu16 ",%" PRIu16 ",%" PRIu16 ",%" PRIu16 ",%s", x1, y1,
|
||||||
|
x2, y2, color);
|
||||||
}
|
}
|
||||||
|
|
||||||
void Nextion::line(int x1, int y1, int x2, int y2, Color color) {
|
void Nextion::line(uint16_t x1, uint16_t y1, uint16_t x2, uint16_t y2, Color color) {
|
||||||
this->add_no_result_to_queue_with_printf_("line", "line %d,%d,%d,%d,%d", x1, y1, x2, y2,
|
this->add_no_result_to_queue_with_printf_("line", "line %" PRIu16 ",%" PRIu16 ",%" PRIu16 ",%" PRIu16 ",%" PRIu16, x1,
|
||||||
display::ColorUtil::color_to_565(color));
|
y1, x2, y2, display::ColorUtil::color_to_565(color));
|
||||||
}
|
}
|
||||||
|
|
||||||
void Nextion::rectangle(int x1, int y1, int width, int height, uint16_t color) {
|
void Nextion::rectangle(uint16_t x1, uint16_t y1, uint16_t width, uint16_t height, uint16_t color) {
|
||||||
this->add_no_result_to_queue_with_printf_("draw", "draw %d,%d,%d,%d,%" PRIu16, x1, y1, x1 + width, y1 + height,
|
this->add_no_result_to_queue_with_printf_("draw", "draw %" PRIu16 ",%" PRIu16 ",%" PRIu16 ",%" PRIu16 ",%" PRIu16, x1,
|
||||||
|
y1, static_cast<uint16_t>(x1 + width), static_cast<uint16_t>(y1 + height),
|
||||||
color);
|
color);
|
||||||
}
|
}
|
||||||
|
|
||||||
void Nextion::rectangle(int x1, int y1, int width, int height, const char *color) {
|
void Nextion::rectangle(uint16_t x1, uint16_t y1, uint16_t width, uint16_t height, const char *color) {
|
||||||
this->add_no_result_to_queue_with_printf_("draw", "draw %d,%d,%d,%d,%s", x1, y1, x1 + width, y1 + height, color);
|
this->add_no_result_to_queue_with_printf_("draw", "draw %" PRIu16 ",%" PRIu16 ",%" PRIu16 ",%" PRIu16 ",%s", x1, y1,
|
||||||
|
static_cast<uint16_t>(x1 + width), static_cast<uint16_t>(y1 + height),
|
||||||
|
color);
|
||||||
}
|
}
|
||||||
|
|
||||||
void Nextion::rectangle(int x1, int y1, int width, int height, Color color) {
|
void Nextion::rectangle(uint16_t x1, uint16_t y1, uint16_t width, uint16_t height, Color color) {
|
||||||
this->add_no_result_to_queue_with_printf_("draw", "draw %d,%d,%d,%d,%d", x1, y1, x1 + width, y1 + height,
|
this->add_no_result_to_queue_with_printf_("draw", "draw %" PRIu16 ",%" PRIu16 ",%" PRIu16 ",%" PRIu16 ",%" PRIu16, x1,
|
||||||
|
y1, static_cast<uint16_t>(x1 + width), static_cast<uint16_t>(y1 + height),
|
||||||
display::ColorUtil::color_to_565(color));
|
display::ColorUtil::color_to_565(color));
|
||||||
}
|
}
|
||||||
|
|
||||||
void Nextion::circle(int center_x, int center_y, int radius, uint16_t color) {
|
void Nextion::circle(uint16_t center_x, uint16_t center_y, uint16_t radius, uint16_t color) {
|
||||||
this->add_no_result_to_queue_with_printf_("cir", "cir %d,%d,%d,%" PRIu16, center_x, center_y, radius, color);
|
this->add_no_result_to_queue_with_printf_("cir", "cir %" PRIu16 ",%" PRIu16 ",%" PRIu16 ",%" PRIu16, center_x,
|
||||||
|
center_y, radius, color);
|
||||||
}
|
}
|
||||||
|
|
||||||
void Nextion::circle(int center_x, int center_y, int radius, const char *color) {
|
void Nextion::circle(uint16_t center_x, uint16_t center_y, uint16_t radius, const char *color) {
|
||||||
this->add_no_result_to_queue_with_printf_("cir", "cir %d,%d,%d,%s", center_x, center_y, radius, color);
|
this->add_no_result_to_queue_with_printf_("cir", "cir %" PRIu16 ",%" PRIu16 ",%" PRIu16 ",%s", center_x, center_y,
|
||||||
|
radius, color);
|
||||||
}
|
}
|
||||||
|
|
||||||
void Nextion::circle(int center_x, int center_y, int radius, Color color) {
|
void Nextion::circle(uint16_t center_x, uint16_t center_y, uint16_t radius, Color color) {
|
||||||
this->add_no_result_to_queue_with_printf_("cir", "cir %d,%d,%d,%d", center_x, center_y, radius,
|
this->add_no_result_to_queue_with_printf_("cir", "cir %" PRIu16 ",%" PRIu16 ",%" PRIu16 ",%" PRIu16, center_x,
|
||||||
display::ColorUtil::color_to_565(color));
|
center_y, radius, display::ColorUtil::color_to_565(color));
|
||||||
}
|
}
|
||||||
|
|
||||||
void Nextion::filled_circle(int center_x, int center_y, int radius, uint16_t color) {
|
void Nextion::filled_circle(uint16_t center_x, uint16_t center_y, uint16_t radius, uint16_t color) {
|
||||||
this->add_no_result_to_queue_with_printf_("cirs", "cirs %d,%d,%d,%" PRIu16, center_x, center_y, radius, color);
|
this->add_no_result_to_queue_with_printf_("cirs", "cirs %" PRIu16 ",%" PRIu16 ",%" PRIu16 ",%" PRIu16, center_x,
|
||||||
|
center_y, radius, color);
|
||||||
}
|
}
|
||||||
|
|
||||||
void Nextion::filled_circle(int center_x, int center_y, int radius, const char *color) {
|
void Nextion::filled_circle(uint16_t center_x, uint16_t center_y, uint16_t radius, const char *color) {
|
||||||
this->add_no_result_to_queue_with_printf_("cirs", "cirs %d,%d,%d,%s", center_x, center_y, radius, color);
|
this->add_no_result_to_queue_with_printf_("cirs", "cirs %" PRIu16 ",%" PRIu16 ",%" PRIu16 ",%s", center_x, center_y,
|
||||||
|
radius, color);
|
||||||
}
|
}
|
||||||
|
|
||||||
void Nextion::filled_circle(int center_x, int center_y, int radius, Color color) {
|
void Nextion::filled_circle(uint16_t center_x, uint16_t center_y, uint16_t radius, Color color) {
|
||||||
this->add_no_result_to_queue_with_printf_("cirs", "cirs %d,%d,%d,%d", center_x, center_y, radius,
|
this->add_no_result_to_queue_with_printf_("cirs", "cirs %" PRIu16 ",%" PRIu16 ",%" PRIu16 ",%" PRIu16, center_x,
|
||||||
display::ColorUtil::color_to_565(color));
|
center_y, radius, display::ColorUtil::color_to_565(color));
|
||||||
}
|
}
|
||||||
|
|
||||||
void Nextion::qrcode(int x1, int y1, const char *content, int size, uint16_t background_color,
|
void Nextion::qrcode(uint16_t x1, uint16_t y1, const char *content, uint16_t size, uint16_t background_color,
|
||||||
uint16_t foreground_color, int logo_pic, uint8_t border_width) {
|
uint16_t foreground_color, uint8_t logo_pic, uint8_t border_width) {
|
||||||
this->add_no_result_to_queue_with_printf_("qrcode", "qrcode %d,%d,%d,%d,%d,%d,%d,\"%s\"", x1, y1, size,
|
|
||||||
background_color, foreground_color, logo_pic, border_width, content);
|
|
||||||
}
|
|
||||||
|
|
||||||
void Nextion::qrcode(int x1, int y1, const char *content, int size, Color background_color, Color foreground_color,
|
|
||||||
int logo_pic, uint8_t border_width) {
|
|
||||||
this->add_no_result_to_queue_with_printf_(
|
this->add_no_result_to_queue_with_printf_(
|
||||||
"qrcode", "qrcode %d,%d,%d,%d,%d,%d,%d,\"%s\"", x1, y1, size, display::ColorUtil::color_to_565(background_color),
|
"qrcode", "qrcode %" PRIu16 ",%" PRIu16 ",%" PRIu16 ",%" PRIu16 ",%" PRIu16 ",%" PRIu8 ",%" PRIu8 ",\"%s\"", x1,
|
||||||
display::ColorUtil::color_to_565(foreground_color), logo_pic, border_width, content);
|
y1, size, background_color, foreground_color, logo_pic, border_width, content);
|
||||||
|
}
|
||||||
|
|
||||||
|
void Nextion::qrcode(uint16_t x1, uint16_t y1, const char *content, uint16_t size, Color background_color,
|
||||||
|
Color foreground_color, uint8_t logo_pic, uint8_t border_width) {
|
||||||
|
this->add_no_result_to_queue_with_printf_(
|
||||||
|
"qrcode", "qrcode %" PRIu16 ",%" PRIu16 ",%" PRIu16 ",%" PRIu16 ",%" PRIu16 ",%" PRIu8 ",%" PRIu8 ",\"%s\"", x1,
|
||||||
|
y1, size, display::ColorUtil::color_to_565(background_color), display::ColorUtil::color_to_565(foreground_color),
|
||||||
|
logo_pic, border_width, content);
|
||||||
}
|
}
|
||||||
|
|
||||||
void Nextion::set_nextion_rtc_time(ESPTime time) {
|
void Nextion::set_nextion_rtc_time(ESPTime time) {
|
||||||
|
@ -30,7 +30,7 @@ void NextionSensor::add_to_wave_buffer(float state) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
void NextionSensor::update() {
|
void NextionSensor::update() {
|
||||||
if (!this->nextion_->is_setup())
|
if (!this->nextion_->is_setup() || this->nextion_->is_updating())
|
||||||
return;
|
return;
|
||||||
|
|
||||||
if (this->wave_chan_id_ == UINT8_MAX) {
|
if (this->wave_chan_id_ == UINT8_MAX) {
|
||||||
@ -45,7 +45,7 @@ void NextionSensor::update() {
|
|||||||
}
|
}
|
||||||
|
|
||||||
void NextionSensor::set_state(float state, bool publish, bool send_to_nextion) {
|
void NextionSensor::set_state(float state, bool publish, bool send_to_nextion) {
|
||||||
if (!this->nextion_->is_setup())
|
if (!this->nextion_->is_setup() || this->nextion_->is_updating())
|
||||||
return;
|
return;
|
||||||
|
|
||||||
if (std::isnan(state))
|
if (std::isnan(state))
|
||||||
|
@ -18,13 +18,13 @@ void NextionSwitch::process_bool(const std::string &variable_name, bool on) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
void NextionSwitch::update() {
|
void NextionSwitch::update() {
|
||||||
if (!this->nextion_->is_setup())
|
if (!this->nextion_->is_setup() || this->nextion_->is_updating())
|
||||||
return;
|
return;
|
||||||
this->nextion_->add_to_get_queue(this);
|
this->nextion_->add_to_get_queue(this);
|
||||||
}
|
}
|
||||||
|
|
||||||
void NextionSwitch::set_state(bool state, bool publish, bool send_to_nextion) {
|
void NextionSwitch::set_state(bool state, bool publish, bool send_to_nextion) {
|
||||||
if (!this->nextion_->is_setup())
|
if (!this->nextion_->is_setup() || this->nextion_->is_updating())
|
||||||
return;
|
return;
|
||||||
|
|
||||||
if (send_to_nextion) {
|
if (send_to_nextion) {
|
||||||
|
@ -16,13 +16,13 @@ void NextionTextSensor::process_text(const std::string &variable_name, const std
|
|||||||
}
|
}
|
||||||
|
|
||||||
void NextionTextSensor::update() {
|
void NextionTextSensor::update() {
|
||||||
if (!this->nextion_->is_setup())
|
if (!this->nextion_->is_setup() || this->nextion_->is_updating())
|
||||||
return;
|
return;
|
||||||
this->nextion_->add_to_get_queue(this);
|
this->nextion_->add_to_get_queue(this);
|
||||||
}
|
}
|
||||||
|
|
||||||
void NextionTextSensor::set_state(const std::string &state, bool publish, bool send_to_nextion) {
|
void NextionTextSensor::set_state(const std::string &state, bool publish, bool send_to_nextion) {
|
||||||
if (!this->nextion_->is_setup())
|
if (!this->nextion_->is_setup() || this->nextion_->is_updating())
|
||||||
return;
|
return;
|
||||||
|
|
||||||
if (send_to_nextion) {
|
if (send_to_nextion) {
|
||||||
|
@ -239,13 +239,14 @@ async def setup_number_core_(
|
|||||||
cg.add(trigger.set_max(template_))
|
cg.add(trigger.set_max(template_))
|
||||||
await automation.build_automation(trigger, [(float, "x")], conf)
|
await automation.build_automation(trigger, [(float, "x")], conf)
|
||||||
|
|
||||||
if CONF_UNIT_OF_MEASUREMENT in config:
|
if (unit_of_measurement := config.get(CONF_UNIT_OF_MEASUREMENT)) is not None:
|
||||||
cg.add(var.traits.set_unit_of_measurement(config[CONF_UNIT_OF_MEASUREMENT]))
|
cg.add(var.traits.set_unit_of_measurement(unit_of_measurement))
|
||||||
if CONF_MQTT_ID in config:
|
if (device_class := config.get(CONF_DEVICE_CLASS)) is not None:
|
||||||
mqtt_ = cg.new_Pvariable(config[CONF_MQTT_ID], var)
|
cg.add(var.traits.set_device_class(device_class))
|
||||||
|
|
||||||
|
if (mqtt_id := config.get(CONF_MQTT_ID)) is not None:
|
||||||
|
mqtt_ = cg.new_Pvariable(mqtt_id, var)
|
||||||
await mqtt.register_mqtt_component(mqtt_, config)
|
await mqtt.register_mqtt_component(mqtt_, config)
|
||||||
if CONF_DEVICE_CLASS in config:
|
|
||||||
cg.add(var.traits.set_device_class(config[CONF_DEVICE_CLASS]))
|
|
||||||
|
|
||||||
|
|
||||||
async def register_number(
|
async def register_number(
|
||||||
@ -284,10 +285,10 @@ async def number_in_range_to_code(config, condition_id, template_arg, args):
|
|||||||
paren = await cg.get_variable(config[CONF_ID])
|
paren = await cg.get_variable(config[CONF_ID])
|
||||||
var = cg.new_Pvariable(condition_id, template_arg, paren)
|
var = cg.new_Pvariable(condition_id, template_arg, paren)
|
||||||
|
|
||||||
if CONF_ABOVE in config:
|
if (above := config.get(CONF_ABOVE)) is not None:
|
||||||
cg.add(var.set_min(config[CONF_ABOVE]))
|
cg.add(var.set_min(above))
|
||||||
if CONF_BELOW in config:
|
if (below := config.get(CONF_BELOW)) is not None:
|
||||||
cg.add(var.set_max(config[CONF_BELOW]))
|
cg.add(var.set_max(below))
|
||||||
|
|
||||||
return var
|
return var
|
||||||
|
|
||||||
@ -391,14 +392,14 @@ async def number_set_to_code(config, action_id, template_arg, args):
|
|||||||
async def number_to_to_code(config, action_id, template_arg, args):
|
async def number_to_to_code(config, action_id, template_arg, args):
|
||||||
paren = await cg.get_variable(config[CONF_ID])
|
paren = await cg.get_variable(config[CONF_ID])
|
||||||
var = cg.new_Pvariable(action_id, template_arg, paren)
|
var = cg.new_Pvariable(action_id, template_arg, paren)
|
||||||
if CONF_OPERATION in config:
|
if (operation := config.get(CONF_OPERATION)) is not None:
|
||||||
to_ = await cg.templatable(config[CONF_OPERATION], args, NumberOperation)
|
to_ = await cg.templatable(operation, args, NumberOperation)
|
||||||
cg.add(var.set_operation(to_))
|
cg.add(var.set_operation(to_))
|
||||||
if CONF_CYCLE in config:
|
if (cycle := config.get(CONF_CYCLE)) is not None:
|
||||||
cycle_ = await cg.templatable(config[CONF_CYCLE], args, bool)
|
template_ = await cg.templatable(cycle, args, bool)
|
||||||
cg.add(var.set_cycle(cycle_))
|
cg.add(var.set_cycle(template_))
|
||||||
if CONF_MODE in config:
|
if (mode := config.get(CONF_MODE)) is not None:
|
||||||
cg.add(var.set_operation(NUMBER_OPERATION_OPTIONS[config[CONF_MODE]]))
|
cg.add(var.set_operation(NUMBER_OPERATION_OPTIONS[mode]))
|
||||||
if CONF_CYCLE in config:
|
if (cycle := config.get(CONF_CYCLE)) is not None:
|
||||||
cg.add(var.set_cycle(config[CONF_CYCLE]))
|
cg.add(var.set_cycle(cycle))
|
||||||
return var
|
return var
|
||||||
|
@ -95,8 +95,8 @@ async def setup_select_core_(var, config, *, options: list[str]):
|
|||||||
trigger, [(cg.std_string, "x"), (cg.size_t, "i")], conf
|
trigger, [(cg.std_string, "x"), (cg.size_t, "i")], conf
|
||||||
)
|
)
|
||||||
|
|
||||||
if CONF_MQTT_ID in config:
|
if (mqtt_id := config.get(CONF_MQTT_ID)) is not None:
|
||||||
mqtt_ = cg.new_Pvariable(config[CONF_MQTT_ID], var)
|
mqtt_ = cg.new_Pvariable(mqtt_id, var)
|
||||||
await mqtt.register_mqtt_component(mqtt_, config)
|
await mqtt.register_mqtt_component(mqtt_, config)
|
||||||
|
|
||||||
|
|
||||||
@ -223,14 +223,14 @@ async def select_set_index_to_code(config, action_id, template_arg, args):
|
|||||||
async def select_operation_to_code(config, action_id, template_arg, args):
|
async def select_operation_to_code(config, action_id, template_arg, args):
|
||||||
paren = await cg.get_variable(config[CONF_ID])
|
paren = await cg.get_variable(config[CONF_ID])
|
||||||
var = cg.new_Pvariable(action_id, template_arg, paren)
|
var = cg.new_Pvariable(action_id, template_arg, paren)
|
||||||
if CONF_OPERATION in config:
|
if (operation := config.get(CONF_OPERATION)) is not None:
|
||||||
op_ = await cg.templatable(config[CONF_OPERATION], args, SelectOperation)
|
op_ = await cg.templatable(operation, args, SelectOperation)
|
||||||
cg.add(var.set_operation(op_))
|
cg.add(var.set_operation(op_))
|
||||||
if CONF_CYCLE in config:
|
if (cycle := config.get(CONF_CYCLE)) is not None:
|
||||||
cycle_ = await cg.templatable(config[CONF_CYCLE], args, bool)
|
template_ = await cg.templatable(cycle, args, bool)
|
||||||
cg.add(var.set_cycle(cycle_))
|
cg.add(var.set_cycle(template_))
|
||||||
if CONF_MODE in config:
|
if (mode := config.get(CONF_MODE)) is not None:
|
||||||
cg.add(var.set_operation(SELECT_OPERATION_OPTIONS[config[CONF_MODE]]))
|
cg.add(var.set_operation(SELECT_OPERATION_OPTIONS[mode]))
|
||||||
if CONF_CYCLE in config:
|
if (cycle := config.get(CONF_CYCLE)) is not None:
|
||||||
cg.add(var.set_cycle(config[CONF_CYCLE]))
|
cg.add(var.set_cycle(cycle))
|
||||||
return var
|
return var
|
||||||
|
@ -12,7 +12,7 @@ void Select::publish_state(const std::string &state) {
|
|||||||
if (index.has_value()) {
|
if (index.has_value()) {
|
||||||
this->has_state_ = true;
|
this->has_state_ = true;
|
||||||
this->state = state;
|
this->state = state;
|
||||||
ESP_LOGD(TAG, "'%s': Sending state %s (index %d)", name, state.c_str(), index.value());
|
ESP_LOGD(TAG, "'%s': Sending state %s (index %zu)", name, state.c_str(), index.value());
|
||||||
this->state_callback_.call(state, index.value());
|
this->state_callback_.call(state, index.value());
|
||||||
} else {
|
} else {
|
||||||
ESP_LOGE(TAG, "'%s': invalid state for publish_state(): %s", name, state.c_str());
|
ESP_LOGE(TAG, "'%s': invalid state for publish_state(): %s", name, state.c_str());
|
||||||
|
@ -71,7 +71,7 @@ void SelectCall::perform() {
|
|||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
if (this->index_.value() >= options.size()) {
|
if (this->index_.value() >= options.size()) {
|
||||||
ESP_LOGW(TAG, "'%s' - Index value %d out of bounds", name, this->index_.value());
|
ESP_LOGW(TAG, "'%s' - Index value %zu out of bounds", name, this->index_.value());
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
target_value = options[this->index_.value()];
|
target_value = options[this->index_.value()];
|
||||||
|
@ -732,14 +732,14 @@ async def build_filters(config):
|
|||||||
async def setup_sensor_core_(var, config):
|
async def setup_sensor_core_(var, config):
|
||||||
await setup_entity(var, config)
|
await setup_entity(var, config)
|
||||||
|
|
||||||
if CONF_DEVICE_CLASS in config:
|
if (device_class := config.get(CONF_DEVICE_CLASS)) is not None:
|
||||||
cg.add(var.set_device_class(config[CONF_DEVICE_CLASS]))
|
cg.add(var.set_device_class(device_class))
|
||||||
if CONF_STATE_CLASS in config:
|
if (state_class := config.get(CONF_STATE_CLASS)) is not None:
|
||||||
cg.add(var.set_state_class(config[CONF_STATE_CLASS]))
|
cg.add(var.set_state_class(state_class))
|
||||||
if CONF_UNIT_OF_MEASUREMENT in config:
|
if (unit_of_measurement := config.get(CONF_UNIT_OF_MEASUREMENT)) is not None:
|
||||||
cg.add(var.set_unit_of_measurement(config[CONF_UNIT_OF_MEASUREMENT]))
|
cg.add(var.set_unit_of_measurement(unit_of_measurement))
|
||||||
if CONF_ACCURACY_DECIMALS in config:
|
if (accuracy_decimals := config.get(CONF_ACCURACY_DECIMALS)) is not None:
|
||||||
cg.add(var.set_accuracy_decimals(config[CONF_ACCURACY_DECIMALS]))
|
cg.add(var.set_accuracy_decimals(accuracy_decimals))
|
||||||
cg.add(var.set_force_update(config[CONF_FORCE_UPDATE]))
|
cg.add(var.set_force_update(config[CONF_FORCE_UPDATE]))
|
||||||
if config.get(CONF_FILTERS): # must exist and not be empty
|
if config.get(CONF_FILTERS): # must exist and not be empty
|
||||||
filters = await build_filters(config[CONF_FILTERS])
|
filters = await build_filters(config[CONF_FILTERS])
|
||||||
@ -754,23 +754,23 @@ async def setup_sensor_core_(var, config):
|
|||||||
for conf in config.get(CONF_ON_VALUE_RANGE, []):
|
for conf in config.get(CONF_ON_VALUE_RANGE, []):
|
||||||
trigger = cg.new_Pvariable(conf[CONF_TRIGGER_ID], var)
|
trigger = cg.new_Pvariable(conf[CONF_TRIGGER_ID], var)
|
||||||
await cg.register_component(trigger, conf)
|
await cg.register_component(trigger, conf)
|
||||||
if CONF_ABOVE in conf:
|
if (above := conf.get(CONF_ABOVE)) is not None:
|
||||||
template_ = await cg.templatable(conf[CONF_ABOVE], [(float, "x")], float)
|
template_ = await cg.templatable(above, [(float, "x")], float)
|
||||||
cg.add(trigger.set_min(template_))
|
cg.add(trigger.set_min(template_))
|
||||||
if CONF_BELOW in conf:
|
if (below := conf.get(CONF_BELOW)) is not None:
|
||||||
template_ = await cg.templatable(conf[CONF_BELOW], [(float, "x")], float)
|
template_ = await cg.templatable(below, [(float, "x")], float)
|
||||||
cg.add(trigger.set_max(template_))
|
cg.add(trigger.set_max(template_))
|
||||||
await automation.build_automation(trigger, [(float, "x")], conf)
|
await automation.build_automation(trigger, [(float, "x")], conf)
|
||||||
|
|
||||||
if CONF_MQTT_ID in config:
|
if (mqtt_id := config.get(CONF_MQTT_ID)) is not None:
|
||||||
mqtt_ = cg.new_Pvariable(config[CONF_MQTT_ID], var)
|
mqtt_ = cg.new_Pvariable(mqtt_id, var)
|
||||||
await mqtt.register_mqtt_component(mqtt_, config)
|
await mqtt.register_mqtt_component(mqtt_, config)
|
||||||
|
|
||||||
if CONF_EXPIRE_AFTER in config:
|
if (expire_after := config.get(CONF_EXPIRE_AFTER, _UNDEF)) is not _UNDEF:
|
||||||
if config[CONF_EXPIRE_AFTER] is None:
|
if expire_after is None:
|
||||||
cg.add(mqtt_.disable_expire_after())
|
cg.add(mqtt_.disable_expire_after())
|
||||||
else:
|
else:
|
||||||
cg.add(mqtt_.set_expire_after(config[CONF_EXPIRE_AFTER]))
|
cg.add(mqtt_.set_expire_after(expire_after))
|
||||||
|
|
||||||
|
|
||||||
async def register_sensor(var, config):
|
async def register_sensor(var, config):
|
||||||
@ -803,10 +803,10 @@ async def sensor_in_range_to_code(config, condition_id, template_arg, args):
|
|||||||
paren = await cg.get_variable(config[CONF_ID])
|
paren = await cg.get_variable(config[CONF_ID])
|
||||||
var = cg.new_Pvariable(condition_id, template_arg, paren)
|
var = cg.new_Pvariable(condition_id, template_arg, paren)
|
||||||
|
|
||||||
if CONF_ABOVE in config:
|
if (above := config.get(CONF_ABOVE)) is not None:
|
||||||
cg.add(var.set_min(config[CONF_ABOVE]))
|
cg.add(var.set_min(above))
|
||||||
if CONF_BELOW in config:
|
if (below := config.get(CONF_BELOW)) is not None:
|
||||||
cg.add(var.set_max(config[CONF_BELOW]))
|
cg.add(var.set_max(below))
|
||||||
|
|
||||||
return var
|
return var
|
||||||
|
|
||||||
|
@ -79,7 +79,7 @@ SkipInitialFilter::SkipInitialFilter(size_t num_to_ignore) : num_to_ignore_(num_
|
|||||||
optional<float> SkipInitialFilter::new_value(float value) {
|
optional<float> SkipInitialFilter::new_value(float value) {
|
||||||
if (num_to_ignore_ > 0) {
|
if (num_to_ignore_ > 0) {
|
||||||
num_to_ignore_--;
|
num_to_ignore_--;
|
||||||
ESP_LOGV(TAG, "SkipInitialFilter(%p)::new_value(%f) SKIPPING, %u left", this, value, num_to_ignore_);
|
ESP_LOGV(TAG, "SkipInitialFilter(%p)::new_value(%f) SKIPPING, %zu left", this, value, num_to_ignore_);
|
||||||
return {};
|
return {};
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -106,23 +106,23 @@ void SM2135::loop() {
|
|||||||
delay(1);
|
delay(1);
|
||||||
this->sm2135_start_();
|
this->sm2135_start_();
|
||||||
this->write_byte_(SM2135_ADDR_C);
|
this->write_byte_(SM2135_ADDR_C);
|
||||||
this->write_byte_(this->pwm_amounts_[4]); // Warm
|
this->write_byte_(this->pwm_amounts_[3]);
|
||||||
this->write_byte_(this->pwm_amounts_[3]); // Cold
|
this->write_byte_(this->pwm_amounts_[4]);
|
||||||
} else {
|
} else {
|
||||||
// Color
|
// Color
|
||||||
|
|
||||||
this->write_byte_(SM2135_RGB);
|
this->write_byte_(SM2135_RGB);
|
||||||
this->write_byte_(this->pwm_amounts_[1]); // Green
|
this->write_byte_(this->pwm_amounts_[0]);
|
||||||
this->write_byte_(this->pwm_amounts_[0]); // Red
|
this->write_byte_(this->pwm_amounts_[1]);
|
||||||
this->write_byte_(this->pwm_amounts_[2]); // Blue
|
this->write_byte_(this->pwm_amounts_[2]);
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
this->write_byte_(SM2135_RGB);
|
this->write_byte_(SM2135_RGB);
|
||||||
this->write_byte_(this->pwm_amounts_[1]); // Green
|
this->write_byte_(this->pwm_amounts_[0]);
|
||||||
this->write_byte_(this->pwm_amounts_[0]); // Red
|
this->write_byte_(this->pwm_amounts_[1]);
|
||||||
this->write_byte_(this->pwm_amounts_[2]); // Blue
|
this->write_byte_(this->pwm_amounts_[2]);
|
||||||
this->write_byte_(this->pwm_amounts_[4]); // Warm
|
this->write_byte_(this->pwm_amounts_[3]);
|
||||||
this->write_byte_(this->pwm_amounts_[3]); // Cold
|
this->write_byte_(this->pwm_amounts_[4]);
|
||||||
}
|
}
|
||||||
|
|
||||||
this->sm2135_stop_();
|
this->sm2135_stop_();
|
||||||
|
@ -138,8 +138,8 @@ SWITCH_SCHEMA = switch_schema() # for compatibility
|
|||||||
async def setup_switch_core_(var, config):
|
async def setup_switch_core_(var, config):
|
||||||
await setup_entity(var, config)
|
await setup_entity(var, config)
|
||||||
|
|
||||||
if CONF_INVERTED in config:
|
if (inverted := config.get(CONF_INVERTED)) is not None:
|
||||||
cg.add(var.set_inverted(config[CONF_INVERTED]))
|
cg.add(var.set_inverted(inverted))
|
||||||
for conf in config.get(CONF_ON_TURN_ON, []):
|
for conf in config.get(CONF_ON_TURN_ON, []):
|
||||||
trigger = cg.new_Pvariable(conf[CONF_TRIGGER_ID], var)
|
trigger = cg.new_Pvariable(conf[CONF_TRIGGER_ID], var)
|
||||||
await automation.build_automation(trigger, [], conf)
|
await automation.build_automation(trigger, [], conf)
|
||||||
@ -147,12 +147,12 @@ async def setup_switch_core_(var, config):
|
|||||||
trigger = cg.new_Pvariable(conf[CONF_TRIGGER_ID], var)
|
trigger = cg.new_Pvariable(conf[CONF_TRIGGER_ID], var)
|
||||||
await automation.build_automation(trigger, [], conf)
|
await automation.build_automation(trigger, [], conf)
|
||||||
|
|
||||||
if CONF_MQTT_ID in config:
|
if (mqtt_id := config.get(CONF_MQTT_ID)) is not None:
|
||||||
mqtt_ = cg.new_Pvariable(config[CONF_MQTT_ID], var)
|
mqtt_ = cg.new_Pvariable(mqtt_id, var)
|
||||||
await mqtt.register_mqtt_component(mqtt_, config)
|
await mqtt.register_mqtt_component(mqtt_, config)
|
||||||
|
|
||||||
if CONF_DEVICE_CLASS in config:
|
if (device_class := config.get(CONF_DEVICE_CLASS)) is not None:
|
||||||
cg.add(var.set_device_class(config[CONF_DEVICE_CLASS]))
|
cg.add(var.set_device_class(device_class))
|
||||||
|
|
||||||
cg.add(var.set_restore_mode(config[CONF_RESTORE_MODE]))
|
cg.add(var.set_restore_mode(config[CONF_RESTORE_MODE]))
|
||||||
|
|
||||||
|
@ -73,8 +73,8 @@ async def setup_text_core_(
|
|||||||
trigger = cg.new_Pvariable(conf[CONF_TRIGGER_ID], var)
|
trigger = cg.new_Pvariable(conf[CONF_TRIGGER_ID], var)
|
||||||
await automation.build_automation(trigger, [(cg.std_string, "x")], conf)
|
await automation.build_automation(trigger, [(cg.std_string, "x")], conf)
|
||||||
|
|
||||||
if CONF_MQTT_ID in config:
|
if (mqtt_id := config.get(CONF_MQTT_ID)) is not None:
|
||||||
mqtt_ = cg.new_Pvariable(config[CONF_MQTT_ID], var)
|
mqtt_ = cg.new_Pvariable(mqtt_id, var)
|
||||||
await mqtt.register_mqtt_component(mqtt_, config)
|
await mqtt.register_mqtt_component(mqtt_, config)
|
||||||
|
|
||||||
|
|
||||||
|
@ -186,8 +186,8 @@ async def build_filters(config):
|
|||||||
async def setup_text_sensor_core_(var, config):
|
async def setup_text_sensor_core_(var, config):
|
||||||
await setup_entity(var, config)
|
await setup_entity(var, config)
|
||||||
|
|
||||||
if CONF_DEVICE_CLASS in config:
|
if (device_class := config.get(CONF_DEVICE_CLASS)) is not None:
|
||||||
cg.add(var.set_device_class(config[CONF_DEVICE_CLASS]))
|
cg.add(var.set_device_class(device_class))
|
||||||
|
|
||||||
if config.get(CONF_FILTERS): # must exist and not be empty
|
if config.get(CONF_FILTERS): # must exist and not be empty
|
||||||
filters = await build_filters(config[CONF_FILTERS])
|
filters = await build_filters(config[CONF_FILTERS])
|
||||||
@ -201,8 +201,8 @@ async def setup_text_sensor_core_(var, config):
|
|||||||
trigger = cg.new_Pvariable(conf[CONF_TRIGGER_ID], var)
|
trigger = cg.new_Pvariable(conf[CONF_TRIGGER_ID], var)
|
||||||
await automation.build_automation(trigger, [(cg.std_string, "x")], conf)
|
await automation.build_automation(trigger, [(cg.std_string, "x")], conf)
|
||||||
|
|
||||||
if CONF_MQTT_ID in config:
|
if (mqtt_id := config.get(CONF_MQTT_ID)) is not None:
|
||||||
mqtt_ = cg.new_Pvariable(config[CONF_MQTT_ID], var)
|
mqtt_ = cg.new_Pvariable(mqtt_id, var)
|
||||||
await mqtt.register_mqtt_component(mqtt_, config)
|
await mqtt.register_mqtt_component(mqtt_, config)
|
||||||
|
|
||||||
|
|
||||||
|
@ -28,23 +28,24 @@ void TMP102Component::dump_config() {
|
|||||||
}
|
}
|
||||||
|
|
||||||
void TMP102Component::update() {
|
void TMP102Component::update() {
|
||||||
int16_t raw_temperature;
|
|
||||||
if (this->write(&TMP102_REGISTER_TEMPERATURE, 1) != i2c::ERROR_OK) {
|
if (this->write(&TMP102_REGISTER_TEMPERATURE, 1) != i2c::ERROR_OK) {
|
||||||
this->status_set_warning();
|
this->status_set_warning();
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
delay(50); // NOLINT
|
this->set_timeout("read_temp", 50, [this]() {
|
||||||
if (this->read(reinterpret_cast<uint8_t *>(&raw_temperature), 2) != i2c::ERROR_OK) {
|
int16_t raw_temperature;
|
||||||
this->status_set_warning();
|
if (this->read(reinterpret_cast<uint8_t *>(&raw_temperature), 2) != i2c::ERROR_OK) {
|
||||||
return;
|
this->status_set_warning();
|
||||||
}
|
return;
|
||||||
raw_temperature = i2c::i2ctohs(raw_temperature);
|
}
|
||||||
raw_temperature = raw_temperature >> 4;
|
raw_temperature = i2c::i2ctohs(raw_temperature);
|
||||||
float temperature = raw_temperature * TMP102_CONVERSION_FACTOR;
|
raw_temperature = raw_temperature >> 4;
|
||||||
ESP_LOGD(TAG, "Got Temperature=%.1f°C", temperature);
|
float temperature = raw_temperature * TMP102_CONVERSION_FACTOR;
|
||||||
|
ESP_LOGD(TAG, "Got Temperature=%.1f°C", temperature);
|
||||||
|
|
||||||
this->publish_state(temperature);
|
this->publish_state(temperature);
|
||||||
this->status_clear_warning();
|
this->status_clear_warning();
|
||||||
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
float TMP102Component::get_setup_priority() const { return setup_priority::DATA; }
|
float TMP102Component::get_setup_priority() const { return setup_priority::DATA; }
|
||||||
|
@ -208,7 +208,7 @@ async def to_code(config):
|
|||||||
cg.add(var.set_switch_id(switch_datapoint))
|
cg.add(var.set_switch_id(switch_datapoint))
|
||||||
|
|
||||||
if active_state_config := config.get(CONF_ACTIVE_STATE):
|
if active_state_config := config.get(CONF_ACTIVE_STATE):
|
||||||
cg.add(var.set_active_state_id(CONF_DATAPOINT))
|
cg.add(var.set_active_state_id(active_state_config.get(CONF_DATAPOINT)))
|
||||||
if (heating_value := active_state_config.get(CONF_HEATING_VALUE)) is not None:
|
if (heating_value := active_state_config.get(CONF_HEATING_VALUE)) is not None:
|
||||||
cg.add(var.set_active_state_heating_value(heating_value))
|
cg.add(var.set_active_state_heating_value(heating_value))
|
||||||
if (cooling_value := active_state_config.get(CONF_COOLING_VALUE)) is not None:
|
if (cooling_value := active_state_config.get(CONF_COOLING_VALUE)) is not None:
|
||||||
@ -219,14 +219,10 @@ async def to_code(config):
|
|||||||
cg.add(var.set_active_state_fanonly_value(fanonly_value))
|
cg.add(var.set_active_state_fanonly_value(fanonly_value))
|
||||||
else:
|
else:
|
||||||
if heating_state_pin_config := config.get(CONF_HEATING_STATE_PIN):
|
if heating_state_pin_config := config.get(CONF_HEATING_STATE_PIN):
|
||||||
heating_state_pin = await cg.gpio_pin_expression(
|
heating_state_pin = await cg.gpio_pin_expression(heating_state_pin_config)
|
||||||
config(heating_state_pin_config)
|
|
||||||
)
|
|
||||||
cg.add(var.set_heating_state_pin(heating_state_pin))
|
cg.add(var.set_heating_state_pin(heating_state_pin))
|
||||||
if cooling_state_pin_config := config.get(CONF_COOLING_STATE_PIN):
|
if cooling_state_pin_config := config.get(CONF_COOLING_STATE_PIN):
|
||||||
cooling_state_pin = await cg.gpio_pin_expression(
|
cooling_state_pin = await cg.gpio_pin_expression(cooling_state_pin_config)
|
||||||
config(cooling_state_pin_config)
|
|
||||||
)
|
|
||||||
cg.add(var.set_cooling_state_pin(cooling_state_pin))
|
cg.add(var.set_cooling_state_pin(cooling_state_pin))
|
||||||
|
|
||||||
if target_temperature_datapoint := config.get(CONF_TARGET_TEMPERATURE_DATAPOINT):
|
if target_temperature_datapoint := config.get(CONF_TARGET_TEMPERATURE_DATAPOINT):
|
||||||
@ -254,11 +250,11 @@ async def to_code(config):
|
|||||||
|
|
||||||
if preset_config := config.get(CONF_PRESET, {}):
|
if preset_config := config.get(CONF_PRESET, {}):
|
||||||
if eco_config := preset_config.get(CONF_ECO, {}):
|
if eco_config := preset_config.get(CONF_ECO, {}):
|
||||||
cg.add(var.set_eco_id(CONF_DATAPOINT))
|
cg.add(var.set_eco_id(eco_config.get(CONF_DATAPOINT)))
|
||||||
if eco_temperature := eco_config.get(CONF_TEMPERATURE):
|
if eco_temperature := eco_config.get(CONF_TEMPERATURE):
|
||||||
cg.add(var.set_eco_temperature(eco_temperature))
|
cg.add(var.set_eco_temperature(eco_temperature))
|
||||||
if CONF_SLEEP in preset_config:
|
if sleep_config := preset_config.get(CONF_SLEEP, {}):
|
||||||
cg.add(var.set_sleep_id(CONF_DATAPOINT))
|
cg.add(var.set_sleep_id(sleep_config.get(CONF_DATAPOINT)))
|
||||||
|
|
||||||
if swing_mode_config := config.get(CONF_SWING_MODE):
|
if swing_mode_config := config.get(CONF_SWING_MODE):
|
||||||
if swing_vertical_datapoint := swing_mode_config.get(CONF_VERTICAL_DATAPOINT):
|
if swing_vertical_datapoint := swing_mode_config.get(CONF_VERTICAL_DATAPOINT):
|
||||||
@ -268,7 +264,7 @@ async def to_code(config):
|
|||||||
):
|
):
|
||||||
cg.add(var.set_swing_horizontal_id(swing_horizontal_datapoint))
|
cg.add(var.set_swing_horizontal_id(swing_horizontal_datapoint))
|
||||||
if fan_mode_config := config.get(CONF_FAN_MODE):
|
if fan_mode_config := config.get(CONF_FAN_MODE):
|
||||||
cg.add(var.set_fan_speed_id(CONF_DATAPOINT))
|
cg.add(var.set_fan_speed_id(fan_mode_config.get(CONF_DATAPOINT)))
|
||||||
if (fan_auto_value := fan_mode_config.get(CONF_AUTO_VALUE)) is not None:
|
if (fan_auto_value := fan_mode_config.get(CONF_AUTO_VALUE)) is not None:
|
||||||
cg.add(var.set_fan_speed_auto_value(fan_auto_value))
|
cg.add(var.set_fan_speed_auto_value(fan_auto_value))
|
||||||
if (fan_low_value := fan_mode_config.get(CONF_LOW_VALUE)) is not None:
|
if (fan_low_value := fan_mode_config.get(CONF_LOW_VALUE)) is not None:
|
||||||
|
@ -333,10 +333,11 @@ class LoadValidationStep(ConfigValidationStep):
|
|||||||
if load not in result:
|
if load not in result:
|
||||||
result.add_validation_step(AutoLoadValidationStep(load))
|
result.add_validation_step(AutoLoadValidationStep(load))
|
||||||
|
|
||||||
|
result.add_validation_step(
|
||||||
|
MetadataValidationStep([self.domain], self.domain, self.conf, component)
|
||||||
|
)
|
||||||
|
|
||||||
if not component.is_platform_component:
|
if not component.is_platform_component:
|
||||||
result.add_validation_step(
|
|
||||||
MetadataValidationStep([self.domain], self.domain, self.conf, component)
|
|
||||||
)
|
|
||||||
return
|
return
|
||||||
|
|
||||||
# This is a platform component, proceed to reading platform entries
|
# This is a platform component, proceed to reading platform entries
|
||||||
@ -520,8 +521,6 @@ class SchemaValidationStep(ConfigValidationStep):
|
|||||||
self.comp = comp
|
self.comp = comp
|
||||||
|
|
||||||
def run(self, result: Config) -> None:
|
def run(self, result: Config) -> None:
|
||||||
if self.comp.config_schema is None:
|
|
||||||
return
|
|
||||||
token = path_context.set(self.path)
|
token = path_context.set(self.path)
|
||||||
with result.catch_error(self.path):
|
with result.catch_error(self.path):
|
||||||
if self.comp.is_platform:
|
if self.comp.is_platform:
|
||||||
@ -536,7 +535,7 @@ class SchemaValidationStep(ConfigValidationStep):
|
|||||||
validated["platform"] = platform_val
|
validated["platform"] = platform_val
|
||||||
validated.move_to_end("platform", last=False)
|
validated.move_to_end("platform", last=False)
|
||||||
result.set_by_path(self.path, validated)
|
result.set_by_path(self.path, validated)
|
||||||
else:
|
elif self.comp.config_schema is not None:
|
||||||
schema = cv.Schema(self.comp.config_schema)
|
schema = cv.Schema(self.comp.config_schema)
|
||||||
validated = schema(self.conf)
|
validated = schema(self.conf)
|
||||||
result.set_by_path(self.path, validated)
|
result.set_by_path(self.path, validated)
|
||||||
|
@ -1590,6 +1590,10 @@ def typed_schema(schemas, **kwargs):
|
|||||||
"""Create a schema that has a key to distinguish between schemas"""
|
"""Create a schema that has a key to distinguish between schemas"""
|
||||||
key = kwargs.pop("key", CONF_TYPE)
|
key = kwargs.pop("key", CONF_TYPE)
|
||||||
default_schema_option = kwargs.pop("default_type", None)
|
default_schema_option = kwargs.pop("default_type", None)
|
||||||
|
enum_mapping = kwargs.pop("enum", None)
|
||||||
|
if enum_mapping is not None:
|
||||||
|
assert isinstance(enum_mapping, dict)
|
||||||
|
assert set(enum_mapping.keys()) == set(schemas.keys())
|
||||||
key_validator = one_of(*schemas, **kwargs)
|
key_validator = one_of(*schemas, **kwargs)
|
||||||
|
|
||||||
def validator(value):
|
def validator(value):
|
||||||
@ -1600,6 +1604,9 @@ def typed_schema(schemas, **kwargs):
|
|||||||
if schema_option is None:
|
if schema_option is None:
|
||||||
raise Invalid(f"{key} not specified!")
|
raise Invalid(f"{key} not specified!")
|
||||||
key_v = key_validator(schema_option)
|
key_v = key_validator(schema_option)
|
||||||
|
if enum_mapping is not None:
|
||||||
|
key_v = add_class_to_obj(key_v, core.EnumValue)
|
||||||
|
key_v.enum_value = enum_mapping[key_v]
|
||||||
value = Schema(schemas[key_v])(value)
|
value = Schema(schemas[key_v])(value)
|
||||||
value[key] = key_v
|
value[key] = key_v
|
||||||
return value
|
return value
|
||||||
|
@ -13,8 +13,8 @@ platformio==6.1.13 # When updating platformio, also update Dockerfile
|
|||||||
esptool==4.7.0
|
esptool==4.7.0
|
||||||
click==8.1.7
|
click==8.1.7
|
||||||
esphome-dashboard==20240412.0
|
esphome-dashboard==20240412.0
|
||||||
aioesphomeapi==23.2.0
|
aioesphomeapi==24.0.0
|
||||||
zeroconf==0.131.0
|
zeroconf==0.132.2
|
||||||
python-magic==0.4.27
|
python-magic==0.4.27
|
||||||
ruamel.yaml==0.18.6 # dashboard_import
|
ruamel.yaml==0.18.6 # dashboard_import
|
||||||
|
|
||||||
|
@ -1,13 +1,13 @@
|
|||||||
pylint==3.1.0
|
pylint==3.1.0
|
||||||
flake8==7.0.0 # also change in .pre-commit-config.yaml when updating
|
flake8==7.0.0 # also change in .pre-commit-config.yaml when updating
|
||||||
black==24.4.0 # also change in .pre-commit-config.yaml when updating
|
black==24.4.0 # also change in .pre-commit-config.yaml when updating
|
||||||
pyupgrade==3.15.1 # also change in .pre-commit-config.yaml when updating
|
pyupgrade==3.15.2 # also change in .pre-commit-config.yaml when updating
|
||||||
pre-commit
|
pre-commit
|
||||||
|
|
||||||
# Unit tests
|
# Unit tests
|
||||||
pytest==8.1.1
|
pytest==8.1.1
|
||||||
pytest-cov==4.1.0
|
pytest-cov==4.1.0
|
||||||
pytest-mock==3.12.0
|
pytest-mock==3.14.0
|
||||||
pytest-asyncio==0.23.6
|
pytest-asyncio==0.23.6
|
||||||
asyncmock==0.4.2
|
asyncmock==0.4.2
|
||||||
hypothesis==6.92.1
|
hypothesis==6.92.1
|
||||||
|
Loading…
x
Reference in New Issue
Block a user