boneio 1.3.1.dev1__tar.gz → 1.4.0.dev1__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {boneio-1.3.1.dev1/boneio.egg-info → boneio-1.4.0.dev1}/PKG-INFO +1 -1
- {boneio-1.3.1.dev1/boneio/boards/0.4 → boneio-1.4.0.dev1/boneio/boards/0.2}/input.yaml +0 -14
- boneio-1.4.0.dev1/boneio/boards/0.3/input.yaml +105 -0
- boneio-1.4.0.dev1/boneio/boards/0.4/input.yaml +105 -0
- {boneio-1.3.1.dev1/boneio/boards/0.6 → boneio-1.4.0.dev1/boneio/boards/0.5}/input.yaml +0 -12
- {boneio-1.3.1.dev1/boneio/boards/0.7 → boneio-1.4.0.dev1/boneio/boards/0.6}/input.yaml +0 -12
- {boneio-1.3.1.dev1/boneio/boards/0.5 → boneio-1.4.0.dev1/boneio/boards/0.7}/input.yaml +0 -12
- {boneio-1.3.1.dev1 → boneio-1.4.0.dev1}/boneio/boards/0.8/input.yaml +0 -12
- {boneio-1.3.1.dev1 → boneio-1.4.0.dev1}/boneio/components/cover/cover.py +59 -44
- {boneio-1.3.1.dev1 → boneio-1.4.0.dev1}/boneio/components/cover/time_based.py +25 -28
- {boneio-1.3.1.dev1 → boneio-1.4.0.dev1}/boneio/components/cover/venetian.py +72 -80
- {boneio-1.3.1.dev1 → boneio-1.4.0.dev1}/boneio/components/group/output_group.py +2 -3
- {boneio-1.3.1.dev1 → boneio-1.4.0.dev1}/boneio/components/input/__init__.py +6 -0
- {boneio-1.3.1.dev1 → boneio-1.4.0.dev1}/boneio/components/input/detectors.py +87 -0
- boneio-1.4.0.dev1/boneio/components/input/remote/__init__.py +22 -0
- boneio-1.4.0.dev1/boneio/components/input/remote/base.py +337 -0
- boneio-1.4.0.dev1/boneio/components/input/remote/esphome.py +94 -0
- {boneio-1.3.1.dev1 → boneio-1.4.0.dev1}/boneio/components/irrigation/controller.py +2 -2
- {boneio-1.3.1.dev1 → boneio-1.4.0.dev1}/boneio/components/output/basic.py +3 -1
- {boneio-1.3.1.dev1 → boneio-1.4.0.dev1}/boneio/components/output/mcp.py +10 -18
- boneio-1.4.0.dev1/boneio/components/output/remote.py +506 -0
- {boneio-1.3.1.dev1 → boneio-1.4.0.dev1}/boneio/components/template/alarm_panel.py +70 -21
- {boneio-1.3.1.dev1 → boneio-1.4.0.dev1}/boneio/components/template/gate_cover.py +15 -25
- {boneio-1.3.1.dev1 → boneio-1.4.0.dev1}/boneio/components/template/thermostat.py +7 -8
- {boneio-1.3.1.dev1 → boneio-1.4.0.dev1}/boneio/core/cloud/registration.py +10 -28
- {boneio-1.3.1.dev1 → boneio-1.4.0.dev1}/boneio/core/config/migrations/v1_proxy_port.py +3 -4
- {boneio-1.3.1.dev1 → boneio-1.4.0.dev1}/boneio/core/config/schema_converter.py +4 -5
- {boneio-1.3.1.dev1 → boneio-1.4.0.dev1}/boneio/core/manager/action_conditions.py +2 -8
- {boneio-1.3.1.dev1 → boneio-1.4.0.dev1}/boneio/core/manager/canopen.py +18 -52
- {boneio-1.3.1.dev1 → boneio-1.4.0.dev1}/boneio/core/manager/covers.py +1 -1
- {boneio-1.3.1.dev1 → boneio-1.4.0.dev1}/boneio/core/manager/inputs.py +150 -63
- {boneio-1.3.1.dev1 → boneio-1.4.0.dev1}/boneio/core/manager/irrigation.py +20 -18
- {boneio-1.3.1.dev1 → boneio-1.4.0.dev1}/boneio/core/manager/manager.py +163 -1
- {boneio-1.3.1.dev1 → boneio-1.4.0.dev1}/boneio/core/manager/remote.py +5 -2
- boneio-1.4.0.dev1/boneio/core/manager/remote_input_registrar.py +236 -0
- {boneio-1.3.1.dev1 → boneio-1.4.0.dev1}/boneio/core/manager/templates/alarm.py +15 -10
- {boneio-1.3.1.dev1 → boneio-1.4.0.dev1}/boneio/core/manager/update.py +39 -41
- {boneio-1.3.1.dev1 → boneio-1.4.0.dev1}/boneio/core/remote/base.py +3 -3
- {boneio-1.3.1.dev1 → boneio-1.4.0.dev1}/boneio/core/remote/esphome.py +520 -275
- {boneio-1.3.1.dev1 → boneio-1.4.0.dev1}/boneio/core/remote/wled.py +36 -0
- {boneio-1.3.1.dev1 → boneio-1.4.0.dev1}/boneio/core/system/host_data.py +2 -4
- {boneio-1.3.1.dev1 → boneio-1.4.0.dev1}/boneio/core/utils/async_updater.py +35 -50
- {boneio-1.3.1.dev1 → boneio-1.4.0.dev1}/boneio/core/utils/util.py +2 -2
- {boneio-1.3.1.dev1 → boneio-1.4.0.dev1}/boneio/hardware/display/early_oled.py +22 -16
- {boneio-1.3.1.dev1 → boneio-1.4.0.dev1}/boneio/hardware/display/oled.py +6 -2
- {boneio-1.3.1.dev1 → boneio-1.4.0.dev1}/boneio/hardware/gpio/expanders/mcp23017.py +12 -14
- {boneio-1.3.1.dev1 → boneio-1.4.0.dev1}/boneio/hardware/gpio/input/base.py +55 -45
- {boneio-1.3.1.dev1 → boneio-1.4.0.dev1}/boneio/hardware/gpio/input/manager.py +72 -85
- {boneio-1.3.1.dev1 → boneio-1.4.0.dev1}/boneio/hardware/i2c/bus.py +8 -12
- {boneio-1.3.1.dev1 → boneio-1.4.0.dev1}/boneio/hardware/i2c/ina219.py +4 -2
- {boneio-1.3.1.dev1 → boneio-1.4.0.dev1}/boneio/hardware/i2c/mcp9808.py +1 -1
- {boneio-1.3.1.dev1 → boneio-1.4.0.dev1}/boneio/hardware/onewire/dallas.py +29 -28
- {boneio-1.3.1.dev1 → boneio-1.4.0.dev1}/boneio/hardware/sensor/temperature/base.py +1 -1
- {boneio-1.3.1.dev1 → boneio-1.4.0.dev1}/boneio/integration/homeassistant.py +108 -0
- {boneio-1.3.1.dev1 → boneio-1.4.0.dev1}/boneio/migrations/actions.py +8 -4
- {boneio-1.3.1.dev1 → boneio-1.4.0.dev1}/boneio/migrations/assets/MANIFEST.sha256 +1 -1
- {boneio-1.3.1.dev1 → boneio-1.4.0.dev1}/boneio/migrations/assets/sudoers/boneio +1 -1
- {boneio-1.3.1.dev1 → boneio-1.4.0.dev1}/boneio/migrations/runner.py +2 -2
- boneio-1.4.0.dev1/boneio/migrations/versions/v1_4_0_fix_mqtt_sudoers.py +35 -0
- {boneio-1.3.1.dev1 → boneio-1.4.0.dev1}/boneio/modbus/cli.py +2 -4
- {boneio-1.3.1.dev1 → boneio-1.4.0.dev1}/boneio/modbus/client.py +64 -64
- {boneio-1.3.1.dev1 → boneio-1.4.0.dev1}/boneio/modbus/coordinator.py +101 -24
- {boneio-1.3.1.dev1 → boneio-1.4.0.dev1}/boneio/modbus/entities/base.py +9 -3
- {boneio-1.3.1.dev1 → boneio-1.4.0.dev1}/boneio/modbus/entities/derived/numeric.py +3 -1
- {boneio-1.3.1.dev1 → boneio-1.4.0.dev1}/boneio/modbus/entities/sensor/numeric.py +3 -1
- {boneio-1.3.1.dev1 → boneio-1.4.0.dev1}/boneio/modbus/entities/sensor/text.py +6 -2
- {boneio-1.3.1.dev1 → boneio-1.4.0.dev1}/boneio/modbus/entities/writeable/binary.py +3 -1
- {boneio-1.3.1.dev1 → boneio-1.4.0.dev1}/boneio/modbus/entities/writeable/numeric.py +3 -1
- {boneio-1.3.1.dev1 → boneio-1.4.0.dev1}/boneio/models/__init__.py +2 -0
- {boneio-1.3.1.dev1 → boneio-1.4.0.dev1}/boneio/models/state.py +13 -1
- {boneio-1.3.1.dev1 → boneio-1.4.0.dev1}/boneio/runner.py +6 -1
- {boneio-1.3.1.dev1 → boneio-1.4.0.dev1}/boneio/schema/actions.yaml +10 -0
- {boneio-1.3.1.dev1 → boneio-1.4.0.dev1}/boneio/schema/remote_devices.yaml +0 -2
- boneio-1.4.0.dev1/boneio/schema/remote_inputs.yaml +128 -0
- boneio-1.4.0.dev1/boneio/schema/remote_outputs.yaml +93 -0
- {boneio-1.3.1.dev1 → boneio-1.4.0.dev1}/boneio/schema/schema.yaml +14 -6
- boneio-1.4.0.dev1/boneio/version.py +2 -0
- {boneio-1.3.1.dev1 → boneio-1.4.0.dev1}/boneio/webui/action_validation.py +1 -1
- {boneio-1.3.1.dev1 → boneio-1.4.0.dev1}/boneio/webui/app.py +47 -110
- boneio-1.4.0.dev1/boneio/webui/frontend-dist/assets/ConfigEditor-D35Ov2Ei.js +1 -0
- boneio-1.3.1.dev1/boneio/webui/frontend-dist/assets/aiConfig-LL3nlemJ.js → boneio-1.4.0.dev1/boneio/webui/frontend-dist/assets/aiConfig-C2Ks7Xed.js +1 -1
- boneio-1.4.0.dev1/boneio/webui/frontend-dist/assets/aiWizardPrompt-yfvA94cl.js +2 -0
- boneio-1.4.0.dev1/boneio/webui/frontend-dist/assets/index-DEwnXFJ3.js +44 -0
- boneio-1.4.0.dev1/boneio/webui/frontend-dist/assets/index-DncHwhdn.css +2 -0
- boneio-1.4.0.dev1/boneio/webui/frontend-dist/assets/useTranslation-yM5lKQna.js +13 -0
- {boneio-1.3.1.dev1 → boneio-1.4.0.dev1}/boneio/webui/frontend-dist/index.html +4 -4
- {boneio-1.3.1.dev1/boneio/webui → boneio-1.4.0.dev1/boneio/webui/frontend-dist}/schema/binary_sensor.schema.json +27 -2
- {boneio-1.3.1.dev1 → boneio-1.4.0.dev1}/boneio/webui/frontend-dist/schema/config.schema.json +393 -5
- {boneio-1.3.1.dev1 → boneio-1.4.0.dev1}/boneio/webui/frontend-dist/schema/event.schema.json +67 -2
- {boneio-1.3.1.dev1/boneio/webui → boneio-1.4.0.dev1/boneio/webui/frontend-dist}/schema/remote_devices.schema.json +0 -1
- boneio-1.4.0.dev1/boneio/webui/frontend-dist/schema/remote_inputs.schema.json +197 -0
- boneio-1.4.0.dev1/boneio/webui/frontend-dist/schema/remote_outputs.schema.json +114 -0
- {boneio-1.3.1.dev1 → boneio-1.4.0.dev1}/boneio/webui/frontend-dist/sw.js +1 -1
- {boneio-1.3.1.dev1 → boneio-1.4.0.dev1}/boneio/webui/routes/caddy.py +4 -4
- {boneio-1.3.1.dev1 → boneio-1.4.0.dev1}/boneio/webui/routes/can.py +15 -16
- {boneio-1.3.1.dev1 → boneio-1.4.0.dev1}/boneio/webui/routes/config.py +57 -18
- {boneio-1.3.1.dev1 → boneio-1.4.0.dev1}/boneio/webui/routes/modbus.py +54 -0
- {boneio-1.3.1.dev1 → boneio-1.4.0.dev1}/boneio/webui/routes/outputs.py +41 -1
- {boneio-1.3.1.dev1 → boneio-1.4.0.dev1}/boneio/webui/routes/remote_devices.py +4 -3
- {boneio-1.3.1.dev1 → boneio-1.4.0.dev1}/boneio/webui/routes/timezone_sudoers.py +2 -3
- {boneio-1.3.1.dev1 → boneio-1.4.0.dev1}/boneio/webui/routes/tools.py +4 -4
- {boneio-1.3.1.dev1/boneio/webui/frontend-dist → boneio-1.4.0.dev1/boneio/webui}/schema/binary_sensor.schema.json +27 -2
- {boneio-1.3.1.dev1 → boneio-1.4.0.dev1}/boneio/webui/schema/config.schema.json +393 -5
- {boneio-1.3.1.dev1 → boneio-1.4.0.dev1}/boneio/webui/schema/event.schema.json +67 -2
- {boneio-1.3.1.dev1/boneio/webui/frontend-dist → boneio-1.4.0.dev1/boneio/webui}/schema/remote_devices.schema.json +0 -1
- boneio-1.4.0.dev1/boneio/webui/schema/remote_inputs.schema.json +197 -0
- boneio-1.4.0.dev1/boneio/webui/schema/remote_outputs.schema.json +114 -0
- {boneio-1.3.1.dev1 → boneio-1.4.0.dev1}/boneio/webui/services/logs.py +2 -3
- {boneio-1.3.1.dev1 → boneio-1.4.0.dev1}/boneio/webui/web_server.py +9 -5
- {boneio-1.3.1.dev1 → boneio-1.4.0.dev1}/boneio/webui/websocket_manager.py +11 -13
- {boneio-1.3.1.dev1 → boneio-1.4.0.dev1/boneio.egg-info}/PKG-INFO +1 -1
- {boneio-1.3.1.dev1 → boneio-1.4.0.dev1}/boneio.egg-info/SOURCES.txt +18 -6
- boneio-1.3.1.dev1/boneio/boards/0.2/input.yaml +0 -119
- boneio-1.3.1.dev1/boneio/boards/0.3/input.yaml +0 -119
- boneio-1.3.1.dev1/boneio/version.py +0 -2
- boneio-1.3.1.dev1/boneio/webui/frontend-dist/assets/ConfigEditor-DcU5XNy1.js +0 -1
- boneio-1.3.1.dev1/boneio/webui/frontend-dist/assets/aiWizardPrompt-CmumVq54.js +0 -2
- boneio-1.3.1.dev1/boneio/webui/frontend-dist/assets/index-BoLwm6vF.js +0 -44
- boneio-1.3.1.dev1/boneio/webui/frontend-dist/assets/index-C_S5rhz7.css +0 -2
- boneio-1.3.1.dev1/boneio/webui/frontend-dist/assets/useTranslation-Dwuk-AFr.js +0 -13
- {boneio-1.3.1.dev1 → boneio-1.4.0.dev1}/LICENSE +0 -0
- {boneio-1.3.1.dev1 → boneio-1.4.0.dev1}/MANIFEST.in +0 -0
- {boneio-1.3.1.dev1 → boneio-1.4.0.dev1}/README.md +0 -0
- {boneio-1.3.1.dev1 → boneio-1.4.0.dev1}/boneio/__init__.py +0 -0
- {boneio-1.3.1.dev1 → boneio-1.4.0.dev1}/boneio/boards/0.2/output_24_16.yaml +0 -0
- {boneio-1.3.1.dev1 → boneio-1.4.0.dev1}/boneio/boards/0.2/output_32_10.yaml +0 -0
- {boneio-1.3.1.dev1 → boneio-1.4.0.dev1}/boneio/boards/0.2/output_32_5.yaml +0 -0
- {boneio-1.3.1.dev1 → boneio-1.4.0.dev1}/boneio/boards/0.2/output_cover.yaml +0 -0
- {boneio-1.3.1.dev1 → boneio-1.4.0.dev1}/boneio/boards/0.2/output_cover_mix.yaml +0 -0
- {boneio-1.3.1.dev1 → boneio-1.4.0.dev1}/boneio/boards/0.3/output_24_16.yaml +0 -0
- {boneio-1.3.1.dev1 → boneio-1.4.0.dev1}/boneio/boards/0.3/output_32_10.yaml +0 -0
- {boneio-1.3.1.dev1 → boneio-1.4.0.dev1}/boneio/boards/0.3/output_32_5.yaml +0 -0
- {boneio-1.3.1.dev1 → boneio-1.4.0.dev1}/boneio/boards/0.3/output_cover.yaml +0 -0
- {boneio-1.3.1.dev1 → boneio-1.4.0.dev1}/boneio/boards/0.3/output_cover_mix.yaml +0 -0
- {boneio-1.3.1.dev1 → boneio-1.4.0.dev1}/boneio/boards/0.4/output_24_16.yaml +0 -0
- {boneio-1.3.1.dev1 → boneio-1.4.0.dev1}/boneio/boards/0.4/output_32_10.yaml +0 -0
- {boneio-1.3.1.dev1 → boneio-1.4.0.dev1}/boneio/boards/0.4/output_32_5.yaml +0 -0
- {boneio-1.3.1.dev1 → boneio-1.4.0.dev1}/boneio/boards/0.4/output_cover.yaml +0 -0
- {boneio-1.3.1.dev1 → boneio-1.4.0.dev1}/boneio/boards/0.4/output_cover_mix.yaml +0 -0
- {boneio-1.3.1.dev1 → boneio-1.4.0.dev1}/boneio/boards/0.5/output_24_16.yaml +0 -0
- {boneio-1.3.1.dev1 → boneio-1.4.0.dev1}/boneio/boards/0.5/output_32_10.yaml +0 -0
- {boneio-1.3.1.dev1 → boneio-1.4.0.dev1}/boneio/boards/0.5/output_cover.yaml +0 -0
- {boneio-1.3.1.dev1 → boneio-1.4.0.dev1}/boneio/boards/0.5/output_cover_mix.yaml +0 -0
- {boneio-1.3.1.dev1 → boneio-1.4.0.dev1}/boneio/boards/0.6/output_24_16.yaml +0 -0
- {boneio-1.3.1.dev1 → boneio-1.4.0.dev1}/boneio/boards/0.6/output_32_10.yaml +0 -0
- {boneio-1.3.1.dev1 → boneio-1.4.0.dev1}/boneio/boards/0.6/output_cover.yaml +0 -0
- {boneio-1.3.1.dev1 → boneio-1.4.0.dev1}/boneio/boards/0.6/output_cover_mix.yaml +0 -0
- {boneio-1.3.1.dev1 → boneio-1.4.0.dev1}/boneio/boards/0.7/output_24_16.yaml +0 -0
- {boneio-1.3.1.dev1 → boneio-1.4.0.dev1}/boneio/boards/0.7/output_32_10.yaml +0 -0
- {boneio-1.3.1.dev1 → boneio-1.4.0.dev1}/boneio/boards/0.7/output_48_4.yaml +0 -0
- {boneio-1.3.1.dev1 → boneio-1.4.0.dev1}/boneio/boards/0.7/output_cover.yaml +0 -0
- {boneio-1.3.1.dev1 → boneio-1.4.0.dev1}/boneio/boards/0.7/output_cover_mix.yaml +0 -0
- {boneio-1.3.1.dev1 → boneio-1.4.0.dev1}/boneio/boards/0.8/output_24_16.yaml +0 -0
- {boneio-1.3.1.dev1 → boneio-1.4.0.dev1}/boneio/boards/0.8/output_32_10.yaml +0 -0
- {boneio-1.3.1.dev1 → boneio-1.4.0.dev1}/boneio/boards/0.8/output_48_4.yaml +0 -0
- {boneio-1.3.1.dev1 → boneio-1.4.0.dev1}/boneio/boards/0.8/output_cover.yaml +0 -0
- {boneio-1.3.1.dev1 → boneio-1.4.0.dev1}/boneio/boards/0.8/output_cover_mix.yaml +0 -0
- {boneio-1.3.1.dev1 → boneio-1.4.0.dev1}/boneio/bonecli.py +0 -0
- {boneio-1.3.1.dev1 → boneio-1.4.0.dev1}/boneio/components/__init__.py +0 -0
- {boneio-1.3.1.dev1 → boneio-1.4.0.dev1}/boneio/components/cover/__init__.py +0 -0
- {boneio-1.3.1.dev1 → boneio-1.4.0.dev1}/boneio/components/group/__init__.py +0 -0
- {boneio-1.3.1.dev1 → boneio-1.4.0.dev1}/boneio/components/input/binary_sensor.py +0 -0
- {boneio-1.3.1.dev1 → boneio-1.4.0.dev1}/boneio/components/input/event.py +0 -0
- {boneio-1.3.1.dev1 → boneio-1.4.0.dev1}/boneio/components/irrigation/__init__.py +0 -0
- {boneio-1.3.1.dev1 → boneio-1.4.0.dev1}/boneio/components/irrigation/water_source.py +0 -0
- {boneio-1.3.1.dev1 → boneio-1.4.0.dev1}/boneio/components/output/__init__.py +0 -0
- {boneio-1.3.1.dev1 → boneio-1.4.0.dev1}/boneio/components/output/pca.py +0 -0
- {boneio-1.3.1.dev1 → boneio-1.4.0.dev1}/boneio/components/output/pcf.py +0 -0
- {boneio-1.3.1.dev1 → boneio-1.4.0.dev1}/boneio/components/sensor/__init__.py +0 -0
- {boneio-1.3.1.dev1 → boneio-1.4.0.dev1}/boneio/components/sensor/virtual_energy.py +0 -0
- {boneio-1.3.1.dev1 → boneio-1.4.0.dev1}/boneio/components/template/__init__.py +0 -0
- {boneio-1.3.1.dev1 → boneio-1.4.0.dev1}/boneio/const.py +0 -0
- {boneio-1.3.1.dev1 → boneio-1.4.0.dev1}/boneio/core/__init__.py +0 -0
- {boneio-1.3.1.dev1 → boneio-1.4.0.dev1}/boneio/core/cloud/__init__.py +0 -0
- {boneio-1.3.1.dev1 → boneio-1.4.0.dev1}/boneio/core/cloud/data/__init__.py +0 -0
- {boneio-1.3.1.dev1 → boneio-1.4.0.dev1}/boneio/core/cloud/data/docker-compose-cloud.yaml +0 -0
- {boneio-1.3.1.dev1 → boneio-1.4.0.dev1}/boneio/core/cloud/data/docker-compose.yaml +0 -0
- {boneio-1.3.1.dev1 → boneio-1.4.0.dev1}/boneio/core/cloud/data/init-certs-cloud.sh +0 -0
- {boneio-1.3.1.dev1 → boneio-1.4.0.dev1}/boneio/core/cloud/secrets.py +0 -0
- {boneio-1.3.1.dev1 → boneio-1.4.0.dev1}/boneio/core/config/__init__.py +0 -0
- {boneio-1.3.1.dev1 → boneio-1.4.0.dev1}/boneio/core/config/config_helper.py +0 -0
- {boneio-1.3.1.dev1 → boneio-1.4.0.dev1}/boneio/core/config/migrations/__init__.py +0 -0
- {boneio-1.3.1.dev1 → boneio-1.4.0.dev1}/boneio/core/config/migrations/v2_transition.py +0 -0
- {boneio-1.3.1.dev1 → boneio-1.4.0.dev1}/boneio/core/config/package-lock.json +0 -0
- {boneio-1.3.1.dev1 → boneio-1.4.0.dev1}/boneio/core/config/package.json +0 -0
- {boneio-1.3.1.dev1 → boneio-1.4.0.dev1}/boneio/core/config/yaml_util.py +0 -0
- {boneio-1.3.1.dev1 → boneio-1.4.0.dev1}/boneio/core/discovery.py +0 -0
- {boneio-1.3.1.dev1 → boneio-1.4.0.dev1}/boneio/core/events/__init__.py +0 -0
- {boneio-1.3.1.dev1 → boneio-1.4.0.dev1}/boneio/core/events/bus.py +0 -0
- {boneio-1.3.1.dev1 → boneio-1.4.0.dev1}/boneio/core/manager/__init__.py +0 -0
- {boneio-1.3.1.dev1 → boneio-1.4.0.dev1}/boneio/core/manager/display.py +0 -0
- {boneio-1.3.1.dev1 → boneio-1.4.0.dev1}/boneio/core/manager/modbus.py +0 -0
- {boneio-1.3.1.dev1 → boneio-1.4.0.dev1}/boneio/core/manager/outputs.py +0 -0
- {boneio-1.3.1.dev1 → boneio-1.4.0.dev1}/boneio/core/manager/sensors.py +0 -0
- {boneio-1.3.1.dev1 → boneio-1.4.0.dev1}/boneio/core/manager/templates/__init__.py +0 -0
- {boneio-1.3.1.dev1 → boneio-1.4.0.dev1}/boneio/core/manager/templates/gate_cover.py +0 -0
- {boneio-1.3.1.dev1 → boneio-1.4.0.dev1}/boneio/core/manager/templates/thermostat.py +0 -0
- {boneio-1.3.1.dev1 → boneio-1.4.0.dev1}/boneio/core/manager/templates.py +0 -0
- {boneio-1.3.1.dev1 → boneio-1.4.0.dev1}/boneio/core/messaging/__init__.py +0 -0
- {boneio-1.3.1.dev1 → boneio-1.4.0.dev1}/boneio/core/messaging/basic.py +0 -0
- {boneio-1.3.1.dev1 → boneio-1.4.0.dev1}/boneio/core/messaging/basic_mqtt.py +0 -0
- {boneio-1.3.1.dev1 → boneio-1.4.0.dev1}/boneio/core/messaging/composite.py +0 -0
- {boneio-1.3.1.dev1 → boneio-1.4.0.dev1}/boneio/core/messaging/local.py +0 -0
- {boneio-1.3.1.dev1 → boneio-1.4.0.dev1}/boneio/core/messaging/lox.py +0 -0
- {boneio-1.3.1.dev1 → boneio-1.4.0.dev1}/boneio/core/messaging/loxone.py +0 -0
- {boneio-1.3.1.dev1 → boneio-1.4.0.dev1}/boneio/core/messaging/mqtt.py +0 -0
- {boneio-1.3.1.dev1 → boneio-1.4.0.dev1}/boneio/core/messaging/queue.py +0 -0
- {boneio-1.3.1.dev1 → boneio-1.4.0.dev1}/boneio/core/remote/__init__.py +0 -0
- {boneio-1.3.1.dev1 → boneio-1.4.0.dev1}/boneio/core/remote/can.py +0 -0
- {boneio-1.3.1.dev1 → boneio-1.4.0.dev1}/boneio/core/remote/mqtt.py +0 -0
- {boneio-1.3.1.dev1 → boneio-1.4.0.dev1}/boneio/core/sensor/__init__.py +0 -0
- {boneio-1.3.1.dev1 → boneio-1.4.0.dev1}/boneio/core/sensor/base.py +0 -0
- {boneio-1.3.1.dev1 → boneio-1.4.0.dev1}/boneio/core/sensor/system.py +0 -0
- {boneio-1.3.1.dev1 → boneio-1.4.0.dev1}/boneio/core/state/__init__.py +0 -0
- {boneio-1.3.1.dev1 → boneio-1.4.0.dev1}/boneio/core/state/manager.py +0 -0
- {boneio-1.3.1.dev1 → boneio-1.4.0.dev1}/boneio/core/system/__init__.py +0 -0
- {boneio-1.3.1.dev1 → boneio-1.4.0.dev1}/boneio/core/system/monitor.py +0 -0
- {boneio-1.3.1.dev1 → boneio-1.4.0.dev1}/boneio/core/utils/__init__.py +0 -0
- {boneio-1.3.1.dev1 → boneio-1.4.0.dev1}/boneio/core/utils/conditions.py +0 -0
- {boneio-1.3.1.dev1 → boneio-1.4.0.dev1}/boneio/core/utils/filter.py +0 -0
- {boneio-1.3.1.dev1 → boneio-1.4.0.dev1}/boneio/core/utils/font_util.py +0 -0
- {boneio-1.3.1.dev1 → boneio-1.4.0.dev1}/boneio/core/utils/logger.py +0 -0
- {boneio-1.3.1.dev1 → boneio-1.4.0.dev1}/boneio/core/utils/timeperiod.py +0 -0
- {boneio-1.3.1.dev1 → boneio-1.4.0.dev1}/boneio/example_config/24x16/adc.yaml +0 -0
- {boneio-1.3.1.dev1 → boneio-1.4.0.dev1}/boneio/example_config/24x16/binary_sensor.yaml +0 -0
- {boneio-1.3.1.dev1 → boneio-1.4.0.dev1}/boneio/example_config/24x16/config.yaml +0 -0
- {boneio-1.3.1.dev1 → boneio-1.4.0.dev1}/boneio/example_config/24x16/event.yaml +0 -0
- {boneio-1.3.1.dev1 → boneio-1.4.0.dev1}/boneio/example_config/24x16/mqtt.yaml +0 -0
- {boneio-1.3.1.dev1 → boneio-1.4.0.dev1}/boneio/example_config/24x16/output24x16A.yaml +0 -0
- {boneio-1.3.1.dev1 → boneio-1.4.0.dev1}/boneio/example_config/32x10/adc.yaml +0 -0
- {boneio-1.3.1.dev1 → boneio-1.4.0.dev1}/boneio/example_config/32x10/binary_sensor.yaml +0 -0
- {boneio-1.3.1.dev1 → boneio-1.4.0.dev1}/boneio/example_config/32x10/config.yaml +0 -0
- {boneio-1.3.1.dev1 → boneio-1.4.0.dev1}/boneio/example_config/32x10/event.yaml +0 -0
- {boneio-1.3.1.dev1 → boneio-1.4.0.dev1}/boneio/example_config/32x10/mqtt.yaml +0 -0
- {boneio-1.3.1.dev1 → boneio-1.4.0.dev1}/boneio/example_config/32x10/output32x10A.yaml +0 -0
- {boneio-1.3.1.dev1 → boneio-1.4.0.dev1}/boneio/example_config/48x4/adc.yaml +0 -0
- {boneio-1.3.1.dev1 → boneio-1.4.0.dev1}/boneio/example_config/48x4/binary_sensor.yaml +0 -0
- {boneio-1.3.1.dev1 → boneio-1.4.0.dev1}/boneio/example_config/48x4/config.yaml +0 -0
- {boneio-1.3.1.dev1 → boneio-1.4.0.dev1}/boneio/example_config/48x4/event.yaml +0 -0
- {boneio-1.3.1.dev1 → boneio-1.4.0.dev1}/boneio/example_config/48x4/mqtt.yaml +0 -0
- {boneio-1.3.1.dev1 → boneio-1.4.0.dev1}/boneio/example_config/48x4/output48x4A.yaml +0 -0
- {boneio-1.3.1.dev1 → boneio-1.4.0.dev1}/boneio/example_config/__init__.py +0 -0
- {boneio-1.3.1.dev1 → boneio-1.4.0.dev1}/boneio/example_config/can_master.yaml +0 -0
- {boneio-1.3.1.dev1 → boneio-1.4.0.dev1}/boneio/example_config/can_slave.yaml +0 -0
- {boneio-1.3.1.dev1 → boneio-1.4.0.dev1}/boneio/example_config/cover/adc.yaml +0 -0
- {boneio-1.3.1.dev1 → boneio-1.4.0.dev1}/boneio/example_config/cover/binary_sensor.yaml +0 -0
- {boneio-1.3.1.dev1 → boneio-1.4.0.dev1}/boneio/example_config/cover/config.yaml +0 -0
- {boneio-1.3.1.dev1 → boneio-1.4.0.dev1}/boneio/example_config/cover/cover.yaml +0 -0
- {boneio-1.3.1.dev1 → boneio-1.4.0.dev1}/boneio/example_config/cover/event.yaml +0 -0
- {boneio-1.3.1.dev1 → boneio-1.4.0.dev1}/boneio/example_config/cover/mqtt.yaml +0 -0
- {boneio-1.3.1.dev1 → boneio-1.4.0.dev1}/boneio/example_config/cover/outputCover.yaml +0 -0
- {boneio-1.3.1.dev1 → boneio-1.4.0.dev1}/boneio/example_config/cover_mix/adc.yaml +0 -0
- {boneio-1.3.1.dev1 → boneio-1.4.0.dev1}/boneio/example_config/cover_mix/binary_sensor.yaml +0 -0
- {boneio-1.3.1.dev1 → boneio-1.4.0.dev1}/boneio/example_config/cover_mix/config.yaml +0 -0
- {boneio-1.3.1.dev1 → boneio-1.4.0.dev1}/boneio/example_config/cover_mix/cover.yaml +0 -0
- {boneio-1.3.1.dev1 → boneio-1.4.0.dev1}/boneio/example_config/cover_mix/event.yaml +0 -0
- {boneio-1.3.1.dev1 → boneio-1.4.0.dev1}/boneio/example_config/cover_mix/mqtt.yaml +0 -0
- {boneio-1.3.1.dev1 → boneio-1.4.0.dev1}/boneio/example_config/cover_mix/outputCoverMix.yaml +0 -0
- {boneio-1.3.1.dev1 → boneio-1.4.0.dev1}/boneio/example_config/different_configs/adc.yaml +0 -0
- {boneio-1.3.1.dev1 → boneio-1.4.0.dev1}/boneio/example_config/different_configs/all_binary_sensor.yaml +0 -0
- {boneio-1.3.1.dev1 → boneio-1.4.0.dev1}/boneio/example_config/different_configs/binary_sensor.yaml +0 -0
- {boneio-1.3.1.dev1 → boneio-1.4.0.dev1}/boneio/example_config/different_configs/binary_sensor_v_0_7.yaml +0 -0
- {boneio-1.3.1.dev1 → boneio-1.4.0.dev1}/boneio/example_config/different_configs/config_24_16.yaml +0 -0
- {boneio-1.3.1.dev1 → boneio-1.4.0.dev1}/boneio/example_config/different_configs/event_all.yaml +0 -0
- {boneio-1.3.1.dev1 → boneio-1.4.0.dev1}/boneio/example_config/different_configs/event_v_0_7.yaml +0 -0
- {boneio-1.3.1.dev1 → boneio-1.4.0.dev1}/boneio/example_config/different_configs/led32x4A.yaml +0 -0
- {boneio-1.3.1.dev1 → boneio-1.4.0.dev1}/boneio/example_config/different_configs/output24x16A.yaml +0 -0
- {boneio-1.3.1.dev1 → boneio-1.4.0.dev1}/boneio/example_config/different_configs/output24x16A_v0.3.yaml +0 -0
- {boneio-1.3.1.dev1 → boneio-1.4.0.dev1}/boneio/example_config/different_configs/output32x10A.yaml +0 -0
- {boneio-1.3.1.dev1 → boneio-1.4.0.dev1}/boneio/example_config/different_configs/output32x5A.yaml +0 -0
- {boneio-1.3.1.dev1 → boneio-1.4.0.dev1}/boneio/exceptions.py +0 -0
- {boneio-1.3.1.dev1 → boneio-1.4.0.dev1}/boneio/hardware/__init__.py +0 -0
- {boneio-1.3.1.dev1 → boneio-1.4.0.dev1}/boneio/hardware/analog/__init__.py +0 -0
- {boneio-1.3.1.dev1 → boneio-1.4.0.dev1}/boneio/hardware/analog/adc.py +0 -0
- {boneio-1.3.1.dev1 → boneio-1.4.0.dev1}/boneio/hardware/can/__init__.py +0 -0
- {boneio-1.3.1.dev1 → boneio-1.4.0.dev1}/boneio/hardware/can/bridge.py +0 -0
- {boneio-1.3.1.dev1 → boneio-1.4.0.dev1}/boneio/hardware/can/client.py +0 -0
- {boneio-1.3.1.dev1 → boneio-1.4.0.dev1}/boneio/hardware/can/interface.py +0 -0
- {boneio-1.3.1.dev1 → boneio-1.4.0.dev1}/boneio/hardware/can/node.py +0 -0
- {boneio-1.3.1.dev1 → boneio-1.4.0.dev1}/boneio/hardware/can/node_id.py +0 -0
- {boneio-1.3.1.dev1 → boneio-1.4.0.dev1}/boneio/hardware/can/test_od.py +0 -0
- {boneio-1.3.1.dev1 → boneio-1.4.0.dev1}/boneio/hardware/display/__init__.py +0 -0
- {boneio-1.3.1.dev1 → boneio-1.4.0.dev1}/boneio/hardware/display/fonts/danube__.ttf +0 -0
- {boneio-1.3.1.dev1 → boneio-1.4.0.dev1}/boneio/hardware/gpio/__init__.py +0 -0
- {boneio-1.3.1.dev1 → boneio-1.4.0.dev1}/boneio/hardware/gpio/expanders/__init__.py +0 -0
- {boneio-1.3.1.dev1 → boneio-1.4.0.dev1}/boneio/hardware/gpio/expanders/pca9685.py +0 -0
- {boneio-1.3.1.dev1 → boneio-1.4.0.dev1}/boneio/hardware/gpio/expanders/pcf8575.py +0 -0
- {boneio-1.3.1.dev1 → boneio-1.4.0.dev1}/boneio/hardware/gpio/input/__init__.py +0 -0
- {boneio-1.3.1.dev1 → boneio-1.4.0.dev1}/boneio/hardware/i2c/__init__.py +0 -0
- {boneio-1.3.1.dev1 → boneio-1.4.0.dev1}/boneio/hardware/i2c/ina219_driver.py +0 -0
- {boneio-1.3.1.dev1 → boneio-1.4.0.dev1}/boneio/hardware/i2c/pct2075.py +0 -0
- {boneio-1.3.1.dev1 → boneio-1.4.0.dev1}/boneio/hardware/onewire/__init__.py +0 -0
- {boneio-1.3.1.dev1 → boneio-1.4.0.dev1}/boneio/hardware/onewire/bus.py +0 -0
- {boneio-1.3.1.dev1 → boneio-1.4.0.dev1}/boneio/hardware/onewire/ds2482.py +0 -0
- {boneio-1.3.1.dev1 → boneio-1.4.0.dev1}/boneio/hardware/sensor/__init__.py +0 -0
- {boneio-1.3.1.dev1 → boneio-1.4.0.dev1}/boneio/hardware/sensor/temperature/__init__.py +0 -0
- {boneio-1.3.1.dev1 → boneio-1.4.0.dev1}/boneio/hardware/sensor/temperature/mcp9808.py +0 -0
- {boneio-1.3.1.dev1 → boneio-1.4.0.dev1}/boneio/hardware/sensor/temperature/pct2075.py +0 -0
- {boneio-1.3.1.dev1 → boneio-1.4.0.dev1}/boneio/integration/__init__.py +0 -0
- {boneio-1.3.1.dev1 → boneio-1.4.0.dev1}/boneio/integration/interlock.py +0 -0
- {boneio-1.3.1.dev1 → boneio-1.4.0.dev1}/boneio/integration/lox_template.py +0 -0
- {boneio-1.3.1.dev1 → boneio-1.4.0.dev1}/boneio/migrations/__init__.py +0 -0
- {boneio-1.3.1.dev1 → boneio-1.4.0.dev1}/boneio/migrations/assets/docker/daemon.json +0 -0
- {boneio-1.3.1.dev1 → boneio-1.4.0.dev1}/boneio/migrations/assets/docker/nodered/docker-compose.yaml +0 -0
- {boneio-1.3.1.dev1 → boneio-1.4.0.dev1}/boneio/migrations/assets/docker/nodered/nginx/default.conf +0 -0
- {boneio-1.3.1.dev1 → boneio-1.4.0.dev1}/boneio/migrations/assets/docker/nodered/node-red/settings.js +0 -0
- {boneio-1.3.1.dev1 → boneio-1.4.0.dev1}/boneio/migrations/assets/journald/journald.conf +0 -0
- {boneio-1.3.1.dev1 → boneio-1.4.0.dev1}/boneio/migrations/assets/mosquitto/boneio.conf +0 -0
- {boneio-1.3.1.dev1 → boneio-1.4.0.dev1}/boneio/migrations/assets/systemd/boneio-oled-boot.service +0 -0
- {boneio-1.3.1.dev1 → boneio-1.4.0.dev1}/boneio/migrations/assets/systemd/boneio.service +0 -0
- {boneio-1.3.1.dev1 → boneio-1.4.0.dev1}/boneio/migrations/assets/systemd/set-hostname-once.service +0 -0
- {boneio-1.3.1.dev1 → boneio-1.4.0.dev1}/boneio/migrations/assets/usr-local-bin/set-hostname-once.sh +0 -0
- {boneio-1.3.1.dev1 → boneio-1.4.0.dev1}/boneio/migrations/assets/usr-sbin/oled_boot_splash.py +0 -0
- {boneio-1.3.1.dev1 → boneio-1.4.0.dev1}/boneio/migrations/assets/usr-sbin/oled_boot_splash.sh +0 -0
- {boneio-1.3.1.dev1 → boneio-1.4.0.dev1}/boneio/migrations/assets/usr-sbin/oled_msg.py +0 -0
- {boneio-1.3.1.dev1 → boneio-1.4.0.dev1}/boneio/migrations/assets/usr-sbin/oled_msg.sh +0 -0
- {boneio-1.3.1.dev1 → boneio-1.4.0.dev1}/boneio/migrations/bootstrap/boneio-migrate +0 -0
- {boneio-1.3.1.dev1 → boneio-1.4.0.dev1}/boneio/migrations/bootstrap/install-helper.sh +0 -0
- {boneio-1.3.1.dev1 → boneio-1.4.0.dev1}/boneio/migrations/bootstrap/sudoers-migrate +0 -0
- {boneio-1.3.1.dev1 → boneio-1.4.0.dev1}/boneio/migrations/versions/__init__.py +0 -0
- {boneio-1.3.1.dev1 → boneio-1.4.0.dev1}/boneio/migrations/versions/v1_3_0_baseline.py +0 -0
- {boneio-1.3.1.dev1 → boneio-1.4.0.dev1}/boneio/migrations/versions/v1_3_1_fix_oled_boot.py +0 -0
- {boneio-1.3.1.dev1 → boneio-1.4.0.dev1}/boneio/migrations/versions/v1_3_2_cleanup_can_sudoers.py +0 -0
- {boneio-1.3.1.dev1 → boneio-1.4.0.dev1}/boneio/modbus/__init__.py +0 -0
- {boneio-1.3.1.dev1 → boneio-1.4.0.dev1}/boneio/modbus/devices/__init__.py +0 -0
- {boneio-1.3.1.dev1 → boneio-1.4.0.dev1}/boneio/modbus/devices/energy_meters/le-03mw.json +0 -0
- {boneio-1.3.1.dev1 → boneio-1.4.0.dev1}/boneio/modbus/devices/energy_meters/le-03mwct.json +0 -0
- {boneio-1.3.1.dev1 → boneio-1.4.0.dev1}/boneio/modbus/devices/energy_meters/orno-or-we-517.json +0 -0
- {boneio-1.3.1.dev1 → boneio-1.4.0.dev1}/boneio/modbus/devices/energy_meters/sdm120.json +0 -0
- {boneio-1.3.1.dev1 → boneio-1.4.0.dev1}/boneio/modbus/devices/energy_meters/sdm630.json +0 -0
- {boneio-1.3.1.dev1 → boneio-1.4.0.dev1}/boneio/modbus/devices/energy_meters/socomec_e03.json +0 -0
- {boneio-1.3.1.dev1 → boneio-1.4.0.dev1}/boneio/modbus/devices/energy_meters/socomec_e23.json +0 -0
- {boneio-1.3.1.dev1 → boneio-1.4.0.dev1}/boneio/modbus/devices/hvac/fujitsu-ac.json +0 -0
- {boneio-1.3.1.dev1 → boneio-1.4.0.dev1}/boneio/modbus/devices/hvac/ventclear.json +0 -0
- {boneio-1.3.1.dev1 → boneio-1.4.0.dev1}/boneio/modbus/devices/inverters/sofar.json +0 -0
- {boneio-1.3.1.dev1 → boneio-1.4.0.dev1}/boneio/modbus/devices/inverters/thessla.json +0 -0
- {boneio-1.3.1.dev1 → boneio-1.4.0.dev1}/boneio/modbus/devices/other/esp32_relay_x4_modbus.json +0 -0
- {boneio-1.3.1.dev1 → boneio-1.4.0.dev1}/boneio/modbus/devices/other/n4dsc08.json +0 -0
- {boneio-1.3.1.dev1 → boneio-1.4.0.dev1}/boneio/modbus/devices/other/r4dcb08.json +0 -0
- {boneio-1.3.1.dev1 → boneio-1.4.0.dev1}/boneio/modbus/devices/other/wanas415.json +0 -0
- {boneio-1.3.1.dev1 → boneio-1.4.0.dev1}/boneio/modbus/devices/sensors/boneio-edge-temp.json +0 -0
- {boneio-1.3.1.dev1 → boneio-1.4.0.dev1}/boneio/modbus/devices/sensors/cwt.json +0 -0
- {boneio-1.3.1.dev1 → boneio-1.4.0.dev1}/boneio/modbus/devices/sensors/dts1964_3f.json +0 -0
- {boneio-1.3.1.dev1 → boneio-1.4.0.dev1}/boneio/modbus/devices/sensors/dyp-a12-ultrasonic.json +0 -0
- {boneio-1.3.1.dev1 → boneio-1.4.0.dev1}/boneio/modbus/devices/sensors/gdfs.json +0 -0
- {boneio-1.3.1.dev1 → boneio-1.4.0.dev1}/boneio/modbus/devices/sensors/gdfx.json +0 -0
- {boneio-1.3.1.dev1 → boneio-1.4.0.dev1}/boneio/modbus/devices/sensors/liquid-sensor.json +0 -0
- {boneio-1.3.1.dev1 → boneio-1.4.0.dev1}/boneio/modbus/devices/sensors/pt100.json +0 -0
- {boneio-1.3.1.dev1 → boneio-1.4.0.dev1}/boneio/modbus/devices/sensors/sht20.json +0 -0
- {boneio-1.3.1.dev1 → boneio-1.4.0.dev1}/boneio/modbus/devices/sensors/sht30.json +0 -0
- {boneio-1.3.1.dev1 → boneio-1.4.0.dev1}/boneio/modbus/entities/__init__.py +0 -0
- {boneio-1.3.1.dev1 → boneio-1.4.0.dev1}/boneio/modbus/entities/derived/__init__.py +0 -0
- {boneio-1.3.1.dev1 → boneio-1.4.0.dev1}/boneio/modbus/entities/derived/select.py +0 -0
- {boneio-1.3.1.dev1 → boneio-1.4.0.dev1}/boneio/modbus/entities/derived/switch.py +0 -0
- {boneio-1.3.1.dev1 → boneio-1.4.0.dev1}/boneio/modbus/entities/derived/text.py +0 -0
- {boneio-1.3.1.dev1 → boneio-1.4.0.dev1}/boneio/modbus/entities/sensor/__init__.py +0 -0
- {boneio-1.3.1.dev1 → boneio-1.4.0.dev1}/boneio/modbus/entities/sensor/binary.py +0 -0
- {boneio-1.3.1.dev1 → boneio-1.4.0.dev1}/boneio/modbus/entities/writeable/__init__.py +0 -0
- {boneio-1.3.1.dev1 → boneio-1.4.0.dev1}/boneio/modbus/utils.py +0 -0
- {boneio-1.3.1.dev1 → boneio-1.4.0.dev1}/boneio/models/actions.py +0 -0
- {boneio-1.3.1.dev1 → boneio-1.4.0.dev1}/boneio/models/events.py +0 -0
- {boneio-1.3.1.dev1 → boneio-1.4.0.dev1}/boneio/models/files.py +0 -0
- {boneio-1.3.1.dev1 → boneio-1.4.0.dev1}/boneio/models/logs.py +0 -0
- {boneio-1.3.1.dev1 → boneio-1.4.0.dev1}/boneio/models/mqtt.py +0 -0
- {boneio-1.3.1.dev1 → boneio-1.4.0.dev1}/boneio/schema/actions_sensor.yaml +0 -0
- {boneio-1.3.1.dev1 → boneio-1.4.0.dev1}/boneio/schema/actions_switch.yaml +0 -0
- {boneio-1.3.1.dev1 → boneio-1.4.0.dev1}/boneio/schema/condition.yaml +0 -0
- {boneio-1.3.1.dev1 → boneio-1.4.0.dev1}/boneio/schema/filters.yaml +0 -0
- {boneio-1.3.1.dev1 → boneio-1.4.0.dev1}/boneio/schema/filters_adc.yaml +0 -0
- {boneio-1.3.1.dev1 → boneio-1.4.0.dev1}/boneio/schema/id.yaml +0 -0
- {boneio-1.3.1.dev1 → boneio-1.4.0.dev1}/boneio/schema/temp_unit.yaml +0 -0
- {boneio-1.3.1.dev1 → boneio-1.4.0.dev1}/boneio/schema/update_interval.yaml +0 -0
- {boneio-1.3.1.dev1 → boneio-1.4.0.dev1}/boneio/webui/frontend-dist/assets/codicon-DCmgc-ay.ttf +0 -0
- {boneio-1.3.1.dev1 → boneio-1.4.0.dev1}/boneio/webui/frontend-dist/assets/editor.worker-BVjSvWeP.js +0 -0
- {boneio-1.3.1.dev1 → boneio-1.4.0.dev1}/boneio/webui/frontend-dist/assets/json.worker-CqOJL4FD.js +0 -0
- {boneio-1.3.1.dev1 → boneio-1.4.0.dev1}/boneio/webui/frontend-dist/assets/monaco-B9WiNxkw.css +0 -0
- {boneio-1.3.1.dev1 → boneio-1.4.0.dev1}/boneio/webui/frontend-dist/assets/monaco-CAZoGZNF.js +0 -0
- {boneio-1.3.1.dev1 → boneio-1.4.0.dev1}/boneio/webui/frontend-dist/assets/rolldown-runtime-Dw2cE7zH.js +0 -0
- {boneio-1.3.1.dev1 → boneio-1.4.0.dev1}/boneio/webui/frontend-dist/assets/vendor-BD5Ml_Uz.js +0 -0
- {boneio-1.3.1.dev1 → boneio-1.4.0.dev1}/boneio/webui/frontend-dist/assets/workbox-window.prod.es5-BJd1pjeW.js +0 -0
- {boneio-1.3.1.dev1 → boneio-1.4.0.dev1}/boneio/webui/frontend-dist/assets/yaml.worker-nZQZSRZ7.js +0 -0
- {boneio-1.3.1.dev1 → boneio-1.4.0.dev1}/boneio/webui/frontend-dist/boneio-192.png +0 -0
- {boneio-1.3.1.dev1 → boneio-1.4.0.dev1}/boneio/webui/frontend-dist/boneio-512.png +0 -0
- {boneio-1.3.1.dev1 → boneio-1.4.0.dev1}/boneio/webui/frontend-dist/boneio.svg +0 -0
- {boneio-1.3.1.dev1 → boneio-1.4.0.dev1}/boneio/webui/frontend-dist/boneio_fav.svg +0 -0
- {boneio-1.3.1.dev1 → boneio-1.4.0.dev1}/boneio/webui/frontend-dist/schema/adc.schema.json +0 -0
- {boneio-1.3.1.dev1 → boneio-1.4.0.dev1}/boneio/webui/frontend-dist/schema/areas.schema.json +0 -0
- {boneio-1.3.1.dev1 → boneio-1.4.0.dev1}/boneio/webui/frontend-dist/schema/boneio.schema.json +0 -0
- {boneio-1.3.1.dev1 → boneio-1.4.0.dev1}/boneio/webui/frontend-dist/schema/can.schema.json +0 -0
- {boneio-1.3.1.dev1 → boneio-1.4.0.dev1}/boneio/webui/frontend-dist/schema/cover.schema.json +0 -0
- {boneio-1.3.1.dev1 → boneio-1.4.0.dev1}/boneio/webui/frontend-dist/schema/dallas.schema.json +0 -0
- {boneio-1.3.1.dev1 → boneio-1.4.0.dev1}/boneio/webui/frontend-dist/schema/ds2482.schema.json +0 -0
- {boneio-1.3.1.dev1 → boneio-1.4.0.dev1}/boneio/webui/frontend-dist/schema/ina219.schema.json +0 -0
- {boneio-1.3.1.dev1 → boneio-1.4.0.dev1}/boneio/webui/frontend-dist/schema/irrigation.schema.json +0 -0
- {boneio-1.3.1.dev1 → boneio-1.4.0.dev1}/boneio/webui/frontend-dist/schema/lm75.schema.json +0 -0
- {boneio-1.3.1.dev1 → boneio-1.4.0.dev1}/boneio/webui/frontend-dist/schema/logger.schema.json +0 -0
- {boneio-1.3.1.dev1 → boneio-1.4.0.dev1}/boneio/webui/frontend-dist/schema/lox_udp.schema.json +0 -0
- {boneio-1.3.1.dev1 → boneio-1.4.0.dev1}/boneio/webui/frontend-dist/schema/mcp23017.schema.json +0 -0
- {boneio-1.3.1.dev1 → boneio-1.4.0.dev1}/boneio/webui/frontend-dist/schema/mcp9808.schema.json +0 -0
- {boneio-1.3.1.dev1 → boneio-1.4.0.dev1}/boneio/webui/frontend-dist/schema/modbus.schema.json +0 -0
- {boneio-1.3.1.dev1 → boneio-1.4.0.dev1}/boneio/webui/frontend-dist/schema/modbus_devices.schema.json +0 -0
- {boneio-1.3.1.dev1 → boneio-1.4.0.dev1}/boneio/webui/frontend-dist/schema/mqtt.schema.json +0 -0
- {boneio-1.3.1.dev1 → boneio-1.4.0.dev1}/boneio/webui/frontend-dist/schema/oled.schema.json +0 -0
- {boneio-1.3.1.dev1 → boneio-1.4.0.dev1}/boneio/webui/frontend-dist/schema/output.schema.json +0 -0
- {boneio-1.3.1.dev1 → boneio-1.4.0.dev1}/boneio/webui/frontend-dist/schema/output_group.schema.json +0 -0
- {boneio-1.3.1.dev1 → boneio-1.4.0.dev1}/boneio/webui/frontend-dist/schema/pca9685.schema.json +0 -0
- {boneio-1.3.1.dev1 → boneio-1.4.0.dev1}/boneio/webui/frontend-dist/schema/pcf8575.schema.json +0 -0
- {boneio-1.3.1.dev1 → boneio-1.4.0.dev1}/boneio/webui/frontend-dist/schema/sensor.schema.json +0 -0
- {boneio-1.3.1.dev1 → boneio-1.4.0.dev1}/boneio/webui/frontend-dist/schema/template.schema.json +0 -0
- {boneio-1.3.1.dev1 → boneio-1.4.0.dev1}/boneio/webui/frontend-dist/schema/virtual_energy_sensor.schema.json +0 -0
- {boneio-1.3.1.dev1 → boneio-1.4.0.dev1}/boneio/webui/frontend-dist/schema/web.schema.json +0 -0
- {boneio-1.3.1.dev1 → boneio-1.4.0.dev1}/boneio/webui/frontend-dist/workbox-4eca85ba.js +0 -0
- {boneio-1.3.1.dev1 → boneio-1.4.0.dev1}/boneio/webui/middleware/__init__.py +0 -0
- {boneio-1.3.1.dev1 → boneio-1.4.0.dev1}/boneio/webui/middleware/auth.py +0 -0
- {boneio-1.3.1.dev1 → boneio-1.4.0.dev1}/boneio/webui/routes/__init__.py +1 -1
- {boneio-1.3.1.dev1 → boneio-1.4.0.dev1}/boneio/webui/routes/auth.py +0 -0
- {boneio-1.3.1.dev1 → boneio-1.4.0.dev1}/boneio/webui/routes/covers.py +0 -0
- {boneio-1.3.1.dev1 → boneio-1.4.0.dev1}/boneio/webui/routes/irrigation.py +0 -0
- {boneio-1.3.1.dev1 → boneio-1.4.0.dev1}/boneio/webui/routes/migrations.py +0 -0
- {boneio-1.3.1.dev1 → boneio-1.4.0.dev1}/boneio/webui/routes/sensors.py +0 -0
- {boneio-1.3.1.dev1 → boneio-1.4.0.dev1}/boneio/webui/routes/system.py +0 -0
- {boneio-1.3.1.dev1 → boneio-1.4.0.dev1}/boneio/webui/routes/templates.py +0 -0
- {boneio-1.3.1.dev1 → boneio-1.4.0.dev1}/boneio/webui/routes/update.py +0 -0
- {boneio-1.3.1.dev1 → boneio-1.4.0.dev1}/boneio/webui/schema/adc.schema.json +0 -0
- {boneio-1.3.1.dev1 → boneio-1.4.0.dev1}/boneio/webui/schema/areas.schema.json +0 -0
- {boneio-1.3.1.dev1 → boneio-1.4.0.dev1}/boneio/webui/schema/boneio.schema.json +0 -0
- {boneio-1.3.1.dev1 → boneio-1.4.0.dev1}/boneio/webui/schema/can.schema.json +0 -0
- {boneio-1.3.1.dev1 → boneio-1.4.0.dev1}/boneio/webui/schema/cover.schema.json +0 -0
- {boneio-1.3.1.dev1 → boneio-1.4.0.dev1}/boneio/webui/schema/dallas.schema.json +0 -0
- {boneio-1.3.1.dev1 → boneio-1.4.0.dev1}/boneio/webui/schema/ds2482.schema.json +0 -0
- {boneio-1.3.1.dev1 → boneio-1.4.0.dev1}/boneio/webui/schema/ina219.schema.json +0 -0
- {boneio-1.3.1.dev1 → boneio-1.4.0.dev1}/boneio/webui/schema/irrigation.schema.json +0 -0
- {boneio-1.3.1.dev1 → boneio-1.4.0.dev1}/boneio/webui/schema/lm75.schema.json +0 -0
- {boneio-1.3.1.dev1 → boneio-1.4.0.dev1}/boneio/webui/schema/logger.schema.json +0 -0
- {boneio-1.3.1.dev1 → boneio-1.4.0.dev1}/boneio/webui/schema/lox_udp.schema.json +0 -0
- {boneio-1.3.1.dev1 → boneio-1.4.0.dev1}/boneio/webui/schema/mcp23017.schema.json +0 -0
- {boneio-1.3.1.dev1 → boneio-1.4.0.dev1}/boneio/webui/schema/mcp9808.schema.json +0 -0
- {boneio-1.3.1.dev1 → boneio-1.4.0.dev1}/boneio/webui/schema/modbus.schema.json +0 -0
- {boneio-1.3.1.dev1 → boneio-1.4.0.dev1}/boneio/webui/schema/modbus_devices.schema.json +0 -0
- {boneio-1.3.1.dev1 → boneio-1.4.0.dev1}/boneio/webui/schema/mqtt.schema.json +0 -0
- {boneio-1.3.1.dev1 → boneio-1.4.0.dev1}/boneio/webui/schema/oled.schema.json +0 -0
- {boneio-1.3.1.dev1 → boneio-1.4.0.dev1}/boneio/webui/schema/output.schema.json +0 -0
- {boneio-1.3.1.dev1 → boneio-1.4.0.dev1}/boneio/webui/schema/output_group.schema.json +0 -0
- {boneio-1.3.1.dev1 → boneio-1.4.0.dev1}/boneio/webui/schema/pca9685.schema.json +0 -0
- {boneio-1.3.1.dev1 → boneio-1.4.0.dev1}/boneio/webui/schema/pcf8575.schema.json +0 -0
- {boneio-1.3.1.dev1 → boneio-1.4.0.dev1}/boneio/webui/schema/sensor.schema.json +0 -0
- {boneio-1.3.1.dev1 → boneio-1.4.0.dev1}/boneio/webui/schema/template.schema.json +0 -0
- {boneio-1.3.1.dev1 → boneio-1.4.0.dev1}/boneio/webui/schema/virtual_energy_sensor.schema.json +0 -0
- {boneio-1.3.1.dev1 → boneio-1.4.0.dev1}/boneio/webui/schema/web.schema.json +0 -0
- {boneio-1.3.1.dev1 → boneio-1.4.0.dev1}/boneio/webui/services/__init__.py +0 -0
- {boneio-1.3.1.dev1 → boneio-1.4.0.dev1}/boneio.egg-info/dependency_links.txt +0 -0
- {boneio-1.3.1.dev1 → boneio-1.4.0.dev1}/boneio.egg-info/entry_points.txt +0 -0
- {boneio-1.3.1.dev1 → boneio-1.4.0.dev1}/boneio.egg-info/requires.txt +0 -0
- {boneio-1.3.1.dev1 → boneio-1.4.0.dev1}/boneio.egg-info/top_level.txt +0 -0
- {boneio-1.3.1.dev1 → boneio-1.4.0.dev1}/pyproject.toml +0 -0
- {boneio-1.3.1.dev1 → boneio-1.4.0.dev1}/setup.cfg +0 -0
- {boneio-1.3.1.dev1 → boneio-1.4.0.dev1}/setup.py +0 -0
- {boneio-1.3.1.dev1 → boneio-1.4.0.dev1}/tests/test_py313_compatibility.py +0 -0
|
@@ -1,10 +1,8 @@
|
|
|
1
1
|
input_mapping:
|
|
2
2
|
in_01:
|
|
3
3
|
pin: P8_37
|
|
4
|
-
gpio_mode: gpio_pu
|
|
5
4
|
in_02:
|
|
6
5
|
pin: P8_38
|
|
7
|
-
gpio_mode: gpio_pu
|
|
8
6
|
in_03:
|
|
9
7
|
pin: P8_39
|
|
10
8
|
in_04:
|
|
@@ -19,10 +17,8 @@ input_mapping:
|
|
|
19
17
|
pin: P8_44
|
|
20
18
|
in_09:
|
|
21
19
|
pin: P8_45
|
|
22
|
-
gpio_mode: gpio_pu
|
|
23
20
|
in_10:
|
|
24
21
|
pin: P8_46
|
|
25
|
-
gpio_mode: gpio_pu
|
|
26
22
|
in_11:
|
|
27
23
|
pin: P9_42
|
|
28
24
|
in_12:
|
|
@@ -41,10 +37,8 @@ input_mapping:
|
|
|
41
37
|
pin: P9_23
|
|
42
38
|
in_19:
|
|
43
39
|
pin: P9_22
|
|
44
|
-
gpio_mode: gpio_pu
|
|
45
40
|
in_20:
|
|
46
41
|
pin: P9_21
|
|
47
|
-
gpio_mode: gpio_pu
|
|
48
42
|
in_21:
|
|
49
43
|
pin: P9_18
|
|
50
44
|
in_22:
|
|
@@ -59,28 +53,20 @@ input_mapping:
|
|
|
59
53
|
pin: P9_13
|
|
60
54
|
in_27:
|
|
61
55
|
pin: P9_12
|
|
62
|
-
gpio_mode: gpio_pu
|
|
63
56
|
in_28:
|
|
64
57
|
pin: P9_11
|
|
65
|
-
gpio_mode: gpio_pu
|
|
66
58
|
in_29:
|
|
67
59
|
pin: P8_36
|
|
68
|
-
gpio_mode: gpio_pu
|
|
69
60
|
in_30:
|
|
70
61
|
pin: P8_35
|
|
71
|
-
gpio_mode: gpio_pu
|
|
72
62
|
in_31:
|
|
73
63
|
pin: P8_34
|
|
74
|
-
gpio_mode: gpio_pu
|
|
75
64
|
in_32:
|
|
76
65
|
pin: P8_33
|
|
77
|
-
gpio_mode: gpio_pu
|
|
78
66
|
in_33:
|
|
79
67
|
pin: P8_32
|
|
80
|
-
gpio_mode: gpio_pu
|
|
81
68
|
in_34:
|
|
82
69
|
pin: P8_31
|
|
83
|
-
gpio_mode: gpio_pu
|
|
84
70
|
in_35:
|
|
85
71
|
pin: P8_30
|
|
86
72
|
in_36:
|
|
@@ -0,0 +1,105 @@
|
|
|
1
|
+
input_mapping:
|
|
2
|
+
in_01:
|
|
3
|
+
pin: P8_37
|
|
4
|
+
in_02:
|
|
5
|
+
pin: P8_38
|
|
6
|
+
in_03:
|
|
7
|
+
pin: P8_39
|
|
8
|
+
in_04:
|
|
9
|
+
pin: P8_40
|
|
10
|
+
in_05:
|
|
11
|
+
pin: P8_41
|
|
12
|
+
in_06:
|
|
13
|
+
pin: P8_42
|
|
14
|
+
in_07:
|
|
15
|
+
pin: P8_43
|
|
16
|
+
in_08:
|
|
17
|
+
pin: P8_44
|
|
18
|
+
in_09:
|
|
19
|
+
pin: P8_45
|
|
20
|
+
in_10:
|
|
21
|
+
pin: P8_46
|
|
22
|
+
in_11:
|
|
23
|
+
pin: P9_42
|
|
24
|
+
in_12:
|
|
25
|
+
pin: P9_31
|
|
26
|
+
in_13:
|
|
27
|
+
pin: P9_30
|
|
28
|
+
in_14:
|
|
29
|
+
pin: P9_29
|
|
30
|
+
in_15:
|
|
31
|
+
pin: P9_28
|
|
32
|
+
in_16:
|
|
33
|
+
pin: P9_27
|
|
34
|
+
in_17:
|
|
35
|
+
pin: P9_25
|
|
36
|
+
in_18:
|
|
37
|
+
pin: P9_23
|
|
38
|
+
in_19:
|
|
39
|
+
pin: P9_22
|
|
40
|
+
in_20:
|
|
41
|
+
pin: P9_21
|
|
42
|
+
in_21:
|
|
43
|
+
pin: P9_18
|
|
44
|
+
in_22:
|
|
45
|
+
pin: P9_17
|
|
46
|
+
in_23:
|
|
47
|
+
pin: P9_16
|
|
48
|
+
in_24:
|
|
49
|
+
pin: P9_15
|
|
50
|
+
in_25:
|
|
51
|
+
pin: P9_14
|
|
52
|
+
in_26:
|
|
53
|
+
pin: P9_13
|
|
54
|
+
in_27:
|
|
55
|
+
pin: P9_12
|
|
56
|
+
in_28:
|
|
57
|
+
pin: P9_11
|
|
58
|
+
in_29:
|
|
59
|
+
pin: P8_36
|
|
60
|
+
in_30:
|
|
61
|
+
pin: P8_35
|
|
62
|
+
in_31:
|
|
63
|
+
pin: P8_34
|
|
64
|
+
in_32:
|
|
65
|
+
pin: P8_33
|
|
66
|
+
in_33:
|
|
67
|
+
pin: P8_32
|
|
68
|
+
in_34:
|
|
69
|
+
pin: P8_31
|
|
70
|
+
in_35:
|
|
71
|
+
pin: P8_30
|
|
72
|
+
in_36:
|
|
73
|
+
pin: P8_29
|
|
74
|
+
in_37:
|
|
75
|
+
pin: P8_28
|
|
76
|
+
in_38:
|
|
77
|
+
pin: P8_27
|
|
78
|
+
in_39:
|
|
79
|
+
pin: P8_26
|
|
80
|
+
in_40:
|
|
81
|
+
pin: P8_19
|
|
82
|
+
in_41:
|
|
83
|
+
pin: P8_18
|
|
84
|
+
in_42:
|
|
85
|
+
pin: P8_17
|
|
86
|
+
in_43:
|
|
87
|
+
pin: P8_16
|
|
88
|
+
in_44:
|
|
89
|
+
pin: P8_15
|
|
90
|
+
in_45:
|
|
91
|
+
pin: P8_14
|
|
92
|
+
in_46:
|
|
93
|
+
pin: P8_13
|
|
94
|
+
in_47:
|
|
95
|
+
pin: P8_12
|
|
96
|
+
in_48:
|
|
97
|
+
pin: P8_11
|
|
98
|
+
in_49:
|
|
99
|
+
pin: P8_10
|
|
100
|
+
in_50:
|
|
101
|
+
pin: P8_9
|
|
102
|
+
in_51:
|
|
103
|
+
pin: P8_8
|
|
104
|
+
in_52:
|
|
105
|
+
pin: P8_7
|
|
@@ -0,0 +1,105 @@
|
|
|
1
|
+
input_mapping:
|
|
2
|
+
in_01:
|
|
3
|
+
pin: P8_37
|
|
4
|
+
in_02:
|
|
5
|
+
pin: P8_38
|
|
6
|
+
in_03:
|
|
7
|
+
pin: P8_39
|
|
8
|
+
in_04:
|
|
9
|
+
pin: P8_40
|
|
10
|
+
in_05:
|
|
11
|
+
pin: P8_41
|
|
12
|
+
in_06:
|
|
13
|
+
pin: P8_42
|
|
14
|
+
in_07:
|
|
15
|
+
pin: P8_43
|
|
16
|
+
in_08:
|
|
17
|
+
pin: P8_44
|
|
18
|
+
in_09:
|
|
19
|
+
pin: P8_45
|
|
20
|
+
in_10:
|
|
21
|
+
pin: P8_46
|
|
22
|
+
in_11:
|
|
23
|
+
pin: P9_42
|
|
24
|
+
in_12:
|
|
25
|
+
pin: P9_31
|
|
26
|
+
in_13:
|
|
27
|
+
pin: P9_30
|
|
28
|
+
in_14:
|
|
29
|
+
pin: P9_29
|
|
30
|
+
in_15:
|
|
31
|
+
pin: P9_28
|
|
32
|
+
in_16:
|
|
33
|
+
pin: P9_27
|
|
34
|
+
in_17:
|
|
35
|
+
pin: P9_25
|
|
36
|
+
in_18:
|
|
37
|
+
pin: P9_23
|
|
38
|
+
in_19:
|
|
39
|
+
pin: P9_22
|
|
40
|
+
in_20:
|
|
41
|
+
pin: P9_21
|
|
42
|
+
in_21:
|
|
43
|
+
pin: P9_18
|
|
44
|
+
in_22:
|
|
45
|
+
pin: P9_17
|
|
46
|
+
in_23:
|
|
47
|
+
pin: P9_16
|
|
48
|
+
in_24:
|
|
49
|
+
pin: P9_15
|
|
50
|
+
in_25:
|
|
51
|
+
pin: P9_14
|
|
52
|
+
in_26:
|
|
53
|
+
pin: P9_13
|
|
54
|
+
in_27:
|
|
55
|
+
pin: P9_12
|
|
56
|
+
in_28:
|
|
57
|
+
pin: P9_11
|
|
58
|
+
in_29:
|
|
59
|
+
pin: P8_36
|
|
60
|
+
in_30:
|
|
61
|
+
pin: P8_35
|
|
62
|
+
in_31:
|
|
63
|
+
pin: P8_34
|
|
64
|
+
in_32:
|
|
65
|
+
pin: P8_33
|
|
66
|
+
in_33:
|
|
67
|
+
pin: P8_32
|
|
68
|
+
in_34:
|
|
69
|
+
pin: P8_31
|
|
70
|
+
in_35:
|
|
71
|
+
pin: P8_30
|
|
72
|
+
in_36:
|
|
73
|
+
pin: P8_29
|
|
74
|
+
in_37:
|
|
75
|
+
pin: P8_28
|
|
76
|
+
in_38:
|
|
77
|
+
pin: P8_27
|
|
78
|
+
in_39:
|
|
79
|
+
pin: P8_26
|
|
80
|
+
in_40:
|
|
81
|
+
pin: P8_19
|
|
82
|
+
in_41:
|
|
83
|
+
pin: P8_18
|
|
84
|
+
in_42:
|
|
85
|
+
pin: P8_17
|
|
86
|
+
in_43:
|
|
87
|
+
pin: P8_16
|
|
88
|
+
in_44:
|
|
89
|
+
pin: P8_15
|
|
90
|
+
in_45:
|
|
91
|
+
pin: P8_14
|
|
92
|
+
in_46:
|
|
93
|
+
pin: P8_13
|
|
94
|
+
in_47:
|
|
95
|
+
pin: P8_12
|
|
96
|
+
in_48:
|
|
97
|
+
pin: P8_11
|
|
98
|
+
in_49:
|
|
99
|
+
pin: P8_10
|
|
100
|
+
in_50:
|
|
101
|
+
pin: P8_9
|
|
102
|
+
in_51:
|
|
103
|
+
pin: P8_8
|
|
104
|
+
in_52:
|
|
105
|
+
pin: P8_7
|
|
@@ -1,10 +1,8 @@
|
|
|
1
1
|
input_mapping:
|
|
2
2
|
in_01:
|
|
3
3
|
pin: P8_37
|
|
4
|
-
gpio_mode: gpio_pu
|
|
5
4
|
in_02:
|
|
6
5
|
pin: P8_38
|
|
7
|
-
gpio_mode: gpio_pu
|
|
8
6
|
in_03:
|
|
9
7
|
pin: P8_39
|
|
10
8
|
in_04:
|
|
@@ -19,10 +17,8 @@ input_mapping:
|
|
|
19
17
|
pin: P8_44
|
|
20
18
|
in_09:
|
|
21
19
|
pin: P8_45
|
|
22
|
-
gpio_mode: gpio_pu
|
|
23
20
|
in_10:
|
|
24
21
|
pin: P8_46
|
|
25
|
-
gpio_mode: gpio_pu
|
|
26
22
|
in_11:
|
|
27
23
|
pin: P9_42
|
|
28
24
|
in_12:
|
|
@@ -41,10 +37,8 @@ input_mapping:
|
|
|
41
37
|
pin: P9_23
|
|
42
38
|
in_19:
|
|
43
39
|
pin: P9_22
|
|
44
|
-
gpio_mode: gpio_pu
|
|
45
40
|
in_20:
|
|
46
41
|
pin: P9_21
|
|
47
|
-
gpio_mode: gpio_pu
|
|
48
42
|
in_21:
|
|
49
43
|
pin: P9_18
|
|
50
44
|
in_22:
|
|
@@ -63,22 +57,16 @@ input_mapping:
|
|
|
63
57
|
pin: P8_9
|
|
64
58
|
in_29:
|
|
65
59
|
pin: P8_36
|
|
66
|
-
gpio_mode: gpio_pu
|
|
67
60
|
in_30:
|
|
68
61
|
pin: P8_35
|
|
69
|
-
gpio_mode: gpio_pu
|
|
70
62
|
in_31:
|
|
71
63
|
pin: P8_34
|
|
72
|
-
gpio_mode: gpio_pu
|
|
73
64
|
in_32:
|
|
74
65
|
pin: P8_33
|
|
75
|
-
gpio_mode: gpio_pu
|
|
76
66
|
in_33:
|
|
77
67
|
pin: P8_32
|
|
78
|
-
gpio_mode: gpio_pu
|
|
79
68
|
in_34:
|
|
80
69
|
pin: P8_31
|
|
81
|
-
gpio_mode: gpio_pu
|
|
82
70
|
in_35:
|
|
83
71
|
pin: P8_30
|
|
84
72
|
in_36:
|
|
@@ -1,10 +1,8 @@
|
|
|
1
1
|
input_mapping:
|
|
2
2
|
in_01:
|
|
3
3
|
pin: P8_37
|
|
4
|
-
gpio_mode: gpio_pu
|
|
5
4
|
in_02:
|
|
6
5
|
pin: P8_38
|
|
7
|
-
gpio_mode: gpio_pu
|
|
8
6
|
in_03:
|
|
9
7
|
pin: P8_39
|
|
10
8
|
in_04:
|
|
@@ -19,10 +17,8 @@ input_mapping:
|
|
|
19
17
|
pin: P8_44
|
|
20
18
|
in_09:
|
|
21
19
|
pin: P8_45
|
|
22
|
-
gpio_mode: gpio_pu
|
|
23
20
|
in_10:
|
|
24
21
|
pin: P8_46
|
|
25
|
-
gpio_mode: gpio_pu
|
|
26
22
|
in_11:
|
|
27
23
|
pin: P9_42
|
|
28
24
|
in_12:
|
|
@@ -41,10 +37,8 @@ input_mapping:
|
|
|
41
37
|
pin: P9_23
|
|
42
38
|
in_19:
|
|
43
39
|
pin: P9_22
|
|
44
|
-
gpio_mode: gpio_pu
|
|
45
40
|
in_20:
|
|
46
41
|
pin: P9_21
|
|
47
|
-
gpio_mode: gpio_pu
|
|
48
42
|
in_21:
|
|
49
43
|
pin: P9_18
|
|
50
44
|
in_22:
|
|
@@ -63,22 +57,16 @@ input_mapping:
|
|
|
63
57
|
pin: P8_9
|
|
64
58
|
in_29:
|
|
65
59
|
pin: P8_36
|
|
66
|
-
gpio_mode: gpio_pu
|
|
67
60
|
in_30:
|
|
68
61
|
pin: P8_35
|
|
69
|
-
gpio_mode: gpio_pu
|
|
70
62
|
in_31:
|
|
71
63
|
pin: P8_34
|
|
72
|
-
gpio_mode: gpio_pu
|
|
73
64
|
in_32:
|
|
74
65
|
pin: P8_33
|
|
75
|
-
gpio_mode: gpio_pu
|
|
76
66
|
in_33:
|
|
77
67
|
pin: P8_32
|
|
78
|
-
gpio_mode: gpio_pu
|
|
79
68
|
in_34:
|
|
80
69
|
pin: P8_31
|
|
81
|
-
gpio_mode: gpio_pu
|
|
82
70
|
in_35:
|
|
83
71
|
pin: P8_30
|
|
84
72
|
in_36:
|
|
@@ -1,10 +1,8 @@
|
|
|
1
1
|
input_mapping:
|
|
2
2
|
in_01:
|
|
3
3
|
pin: P8_37
|
|
4
|
-
gpio_mode: gpio_pu
|
|
5
4
|
in_02:
|
|
6
5
|
pin: P8_38
|
|
7
|
-
gpio_mode: gpio_pu
|
|
8
6
|
in_03:
|
|
9
7
|
pin: P8_39
|
|
10
8
|
in_04:
|
|
@@ -19,10 +17,8 @@ input_mapping:
|
|
|
19
17
|
pin: P8_44
|
|
20
18
|
in_09:
|
|
21
19
|
pin: P8_45
|
|
22
|
-
gpio_mode: gpio_pu
|
|
23
20
|
in_10:
|
|
24
21
|
pin: P8_46
|
|
25
|
-
gpio_mode: gpio_pu
|
|
26
22
|
in_11:
|
|
27
23
|
pin: P9_42
|
|
28
24
|
in_12:
|
|
@@ -41,10 +37,8 @@ input_mapping:
|
|
|
41
37
|
pin: P9_23
|
|
42
38
|
in_19:
|
|
43
39
|
pin: P9_22
|
|
44
|
-
gpio_mode: gpio_pu
|
|
45
40
|
in_20:
|
|
46
41
|
pin: P9_21
|
|
47
|
-
gpio_mode: gpio_pu
|
|
48
42
|
in_21:
|
|
49
43
|
pin: P9_18
|
|
50
44
|
in_22:
|
|
@@ -63,22 +57,16 @@ input_mapping:
|
|
|
63
57
|
pin: P8_9
|
|
64
58
|
in_29:
|
|
65
59
|
pin: P8_36
|
|
66
|
-
gpio_mode: gpio_pu
|
|
67
60
|
in_30:
|
|
68
61
|
pin: P8_35
|
|
69
|
-
gpio_mode: gpio_pu
|
|
70
62
|
in_31:
|
|
71
63
|
pin: P8_34
|
|
72
|
-
gpio_mode: gpio_pu
|
|
73
64
|
in_32:
|
|
74
65
|
pin: P8_33
|
|
75
|
-
gpio_mode: gpio_pu
|
|
76
66
|
in_33:
|
|
77
67
|
pin: P8_32
|
|
78
|
-
gpio_mode: gpio_pu
|
|
79
68
|
in_34:
|
|
80
69
|
pin: P8_31
|
|
81
|
-
gpio_mode: gpio_pu
|
|
82
70
|
in_35:
|
|
83
71
|
pin: P8_30
|
|
84
72
|
in_36:
|
|
@@ -1,12 +1,10 @@
|
|
|
1
1
|
input_mapping:
|
|
2
2
|
in_01:
|
|
3
3
|
pin: P8_37
|
|
4
|
-
gpio_mode: gpio_pu
|
|
5
4
|
gpiochip: 1
|
|
6
5
|
line: 14
|
|
7
6
|
in_02:
|
|
8
7
|
pin: P8_38
|
|
9
|
-
gpio_mode: gpio_pu
|
|
10
8
|
gpiochip: 1
|
|
11
9
|
line: 15
|
|
12
10
|
in_03:
|
|
@@ -38,12 +36,10 @@ input_mapping:
|
|
|
38
36
|
line: 9
|
|
39
37
|
in_09:
|
|
40
38
|
pin: P8_45
|
|
41
|
-
gpio_mode: gpio_pu
|
|
42
39
|
gpiochip: 1
|
|
43
40
|
line: 6
|
|
44
41
|
in_10:
|
|
45
42
|
pin: P8_46
|
|
46
|
-
gpio_mode: gpio_pu
|
|
47
43
|
gpiochip: 1
|
|
48
44
|
line: 7
|
|
49
45
|
in_11:
|
|
@@ -80,12 +76,10 @@ input_mapping:
|
|
|
80
76
|
line: 17
|
|
81
77
|
in_19:
|
|
82
78
|
pin: P9_22
|
|
83
|
-
gpio_mode: gpio_pu
|
|
84
79
|
gpiochip: 3
|
|
85
80
|
line: 2
|
|
86
81
|
in_20:
|
|
87
82
|
pin: P9_21
|
|
88
|
-
gpio_mode: gpio_pu
|
|
89
83
|
gpiochip: 3
|
|
90
84
|
line: 3
|
|
91
85
|
in_21:
|
|
@@ -122,32 +116,26 @@ input_mapping:
|
|
|
122
116
|
line: 5
|
|
123
117
|
in_29:
|
|
124
118
|
pin: P8_36
|
|
125
|
-
gpio_mode: gpio_pu
|
|
126
119
|
gpiochip: 1
|
|
127
120
|
line: 16
|
|
128
121
|
in_30:
|
|
129
122
|
pin: P8_35
|
|
130
|
-
gpio_mode: gpio_pu
|
|
131
123
|
gpiochip: 3
|
|
132
124
|
line: 8
|
|
133
125
|
in_31:
|
|
134
126
|
pin: P8_34
|
|
135
|
-
gpio_mode: gpio_pu
|
|
136
127
|
gpiochip: 1
|
|
137
128
|
line: 17
|
|
138
129
|
in_32:
|
|
139
130
|
pin: P8_33
|
|
140
|
-
gpio_mode: gpio_pu
|
|
141
131
|
gpiochip: 3
|
|
142
132
|
line: 9
|
|
143
133
|
in_33:
|
|
144
134
|
pin: P8_32
|
|
145
|
-
gpio_mode: gpio_pu
|
|
146
135
|
gpiochip: 3
|
|
147
136
|
line: 11
|
|
148
137
|
in_34:
|
|
149
138
|
pin: P8_31
|
|
150
|
-
gpio_mode: gpio_pu
|
|
151
139
|
gpiochip: 3
|
|
152
140
|
line: 10
|
|
153
141
|
in_35:
|