boneio 1.3.0.dev1__tar.gz → 1.3.0.dev3__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.0.dev1/boneio.egg-info → boneio-1.3.0.dev3}/PKG-INFO +1 -1
- boneio-1.3.0.dev3/boneio/boards/0.7/output_48_4.yaml +250 -0
- boneio-1.3.0.dev3/boneio/boards/0.8/output_48_4.yaml +250 -0
- {boneio-1.3.0.dev1 → boneio-1.3.0.dev3}/boneio/bonecli.py +43 -15
- {boneio-1.3.0.dev1 → boneio-1.3.0.dev3}/boneio/core/cloud/registration.py +41 -31
- {boneio-1.3.0.dev1 → boneio-1.3.0.dev3}/boneio/core/config/migrations/__init__.py +8 -0
- {boneio-1.3.0.dev1 → boneio-1.3.0.dev3}/boneio/core/config/yaml_util.py +223 -12
- {boneio-1.3.0.dev1 → boneio-1.3.0.dev3}/boneio/core/manager/canopen.py +224 -78
- {boneio-1.3.0.dev1 → boneio-1.3.0.dev3}/boneio/core/manager/display.py +12 -3
- {boneio-1.3.0.dev1 → boneio-1.3.0.dev3}/boneio/core/manager/manager.py +85 -2
- {boneio-1.3.0.dev1 → boneio-1.3.0.dev3}/boneio/core/manager/outputs.py +24 -4
- {boneio-1.3.0.dev1 → boneio-1.3.0.dev3}/boneio/core/manager/remote.py +41 -33
- {boneio-1.3.0.dev1 → boneio-1.3.0.dev3}/boneio/core/manager/sensors.py +149 -5
- boneio-1.3.0.dev3/boneio/core/remote/__init__.py +9 -0
- {boneio-1.3.0.dev1 → boneio-1.3.0.dev3}/boneio/core/remote/can.py +39 -6
- {boneio-1.3.0.dev1 → boneio-1.3.0.dev3}/boneio/core/remote/esphome.py +5 -6
- boneio-1.3.0.dev3/boneio/core/utils/conditions.py +309 -0
- boneio-1.3.0.dev3/boneio/example_config/48x4/binary_sensor.yaml +17 -0
- boneio-1.3.0.dev3/boneio/example_config/48x4/config.yaml +41 -0
- boneio-1.3.0.dev3/boneio/example_config/48x4/event.yaml +300 -0
- boneio-1.3.0.dev3/boneio/example_config/48x4/output48x4A.yaml +192 -0
- {boneio-1.3.0.dev1 → boneio-1.3.0.dev3}/boneio/example_config/can_master.yaml +1 -0
- boneio-1.3.0.dev3/boneio/example_config/cover_mix/mqtt.yaml +6 -0
- boneio-1.3.0.dev3/boneio/example_config/different_configs/adc.yaml +14 -0
- {boneio-1.3.0.dev1 → boneio-1.3.0.dev3}/boneio/hardware/analog/adc.py +27 -2
- {boneio-1.3.0.dev1 → boneio-1.3.0.dev3}/boneio/hardware/can/client.py +191 -62
- {boneio-1.3.0.dev1 → boneio-1.3.0.dev3}/boneio/hardware/can/node_id.py +27 -19
- boneio-1.3.0.dev3/boneio/hardware/can/test_od.py +10 -0
- {boneio-1.3.0.dev1 → boneio-1.3.0.dev3}/boneio/hardware/display/oled.py +14 -9
- {boneio-1.3.0.dev1 → boneio-1.3.0.dev3}/boneio/integration/homeassistant.py +17 -7
- {boneio-1.3.0.dev1 → boneio-1.3.0.dev3}/boneio/modbus/coordinator.py +16 -1
- {boneio-1.3.0.dev1 → boneio-1.3.0.dev3}/boneio/modbus/devices/sensors/boneio-edge-temp.json +44 -4
- {boneio-1.3.0.dev1 → boneio-1.3.0.dev3}/boneio/modbus/entities/base.py +11 -3
- {boneio-1.3.0.dev1 → boneio-1.3.0.dev3}/boneio/modbus/entities/derived/numeric.py +5 -3
- {boneio-1.3.0.dev1 → boneio-1.3.0.dev3}/boneio/modbus/entities/derived/select.py +19 -0
- {boneio-1.3.0.dev1 → boneio-1.3.0.dev3}/boneio/modbus/entities/derived/switch.py +16 -0
- {boneio-1.3.0.dev1 → boneio-1.3.0.dev3}/boneio/modbus/entities/derived/text.py +2 -0
- {boneio-1.3.0.dev1 → boneio-1.3.0.dev3}/boneio/modbus/entities/sensor/numeric.py +6 -4
- {boneio-1.3.0.dev1 → boneio-1.3.0.dev3}/boneio/modbus/entities/sensor/text.py +6 -4
- {boneio-1.3.0.dev1 → boneio-1.3.0.dev3}/boneio/modbus/entities/writeable/numeric.py +8 -1
- {boneio-1.3.0.dev1 → boneio-1.3.0.dev3}/boneio/runner.py +131 -34
- {boneio-1.3.0.dev1 → boneio-1.3.0.dev3}/boneio/schema/actions.yaml +27 -0
- boneio-1.3.0.dev3/boneio/schema/condition.yaml +75 -0
- {boneio-1.3.0.dev1 → boneio-1.3.0.dev3}/boneio/schema/schema.yaml +18 -5
- boneio-1.3.0.dev3/boneio/version.py +2 -0
- boneio-1.3.0.dev3/boneio/webui/action_validation.py +205 -0
- {boneio-1.3.0.dev1 → boneio-1.3.0.dev3}/boneio/webui/app.py +148 -59
- boneio-1.3.0.dev3/boneio/webui/frontend-dist/assets/ConfigEditor-DCabX5qK.js +1 -0
- boneio-1.3.0.dev3/boneio/webui/frontend-dist/assets/aiWizardPrompt-B5y1tw6O.js +2 -0
- boneio-1.3.0.dev3/boneio/webui/frontend-dist/assets/cssMode-DShylJqh.js +4 -0
- boneio-1.3.0.dev1/boneio/webui/frontend-dist/assets/freemarker2-Bemoup4X.js → boneio-1.3.0.dev3/boneio/webui/frontend-dist/assets/freemarker2-CdX7KyE5.js +1 -1
- boneio-1.3.0.dev3/boneio/webui/frontend-dist/assets/handlebars-C3LDizRo.js +1 -0
- boneio-1.3.0.dev3/boneio/webui/frontend-dist/assets/html-z-YV0Mzh.js +1 -0
- boneio-1.3.0.dev3/boneio/webui/frontend-dist/assets/htmlMode-D7IIR2va.js +4 -0
- boneio-1.3.0.dev3/boneio/webui/frontend-dist/assets/index-CYk12kJk.js +105 -0
- boneio-1.3.0.dev3/boneio/webui/frontend-dist/assets/index-CmBl6pFS.css +1 -0
- boneio-1.3.0.dev3/boneio/webui/frontend-dist/assets/javascript-CH6jkTQ0.js +1 -0
- boneio-1.3.0.dev1/boneio/webui/frontend-dist/assets/jsonMode-B_TKboJF.js → boneio-1.3.0.dev3/boneio/webui/frontend-dist/assets/jsonMode-CLzeI5HJ.js +1 -1
- boneio-1.3.0.dev3/boneio/webui/frontend-dist/assets/liquid-DuoI_Tv0.js +1 -0
- boneio-1.3.0.dev3/boneio/webui/frontend-dist/assets/mdx-C2KSoPE6.js +1 -0
- boneio-1.3.0.dev3/boneio/webui/frontend-dist/assets/monaco-DVn9mNSL.js +739 -0
- boneio-1.3.0.dev3/boneio/webui/frontend-dist/assets/monaco-xnhJeWAr.css +1 -0
- boneio-1.3.0.dev3/boneio/webui/frontend-dist/assets/python-Dh7Kzq6D.js +1 -0
- boneio-1.3.0.dev3/boneio/webui/frontend-dist/assets/razor-CJwYmOfy.js +1 -0
- boneio-1.3.0.dev1/boneio/webui/frontend-dist/assets/tsMode-Deid1skj.js → boneio-1.3.0.dev3/boneio/webui/frontend-dist/assets/tsMode-VSMpyycN.js +1 -1
- boneio-1.3.0.dev3/boneio/webui/frontend-dist/assets/typescript-C4HjhnfC.js +1 -0
- boneio-1.3.0.dev3/boneio/webui/frontend-dist/assets/vendor-8TE4Uyqi.js +3 -0
- boneio-1.3.0.dev3/boneio/webui/frontend-dist/assets/xml-ByUHJiRO.js +1 -0
- boneio-1.3.0.dev3/boneio/webui/frontend-dist/assets/yaml-CTy8Ej0Q.js +1 -0
- {boneio-1.3.0.dev1 → boneio-1.3.0.dev3}/boneio/webui/frontend-dist/index.html +5 -2
- {boneio-1.3.0.dev1 → boneio-1.3.0.dev3}/boneio/webui/frontend-dist/schema/adc.schema.json +11 -1
- {boneio-1.3.0.dev1/boneio/webui → boneio-1.3.0.dev3/boneio/webui/frontend-dist}/schema/binary_sensor.schema.json +332 -0
- {boneio-1.3.0.dev1/boneio/webui → boneio-1.3.0.dev3/boneio/webui/frontend-dist}/schema/boneio.schema.json +6 -0
- {boneio-1.3.0.dev1/boneio/webui → boneio-1.3.0.dev3/boneio/webui/frontend-dist}/schema/config.schema.json +1514 -4
- {boneio-1.3.0.dev1/boneio/webui → boneio-1.3.0.dev3/boneio/webui/frontend-dist}/schema/event.schema.json +1162 -0
- {boneio-1.3.0.dev1 → boneio-1.3.0.dev3}/boneio/webui/frontend-dist/schema/ina219.schema.json +3 -3
- boneio-1.3.0.dev3/boneio/webui/frontend-dist/sw.js +1 -0
- {boneio-1.3.0.dev1 → boneio-1.3.0.dev3}/boneio/webui/routes/can.py +136 -14
- {boneio-1.3.0.dev1 → boneio-1.3.0.dev3}/boneio/webui/routes/config.py +141 -14
- {boneio-1.3.0.dev1 → boneio-1.3.0.dev3}/boneio/webui/routes/update.py +82 -2
- {boneio-1.3.0.dev1 → boneio-1.3.0.dev3}/boneio/webui/schema/adc.schema.json +11 -1
- {boneio-1.3.0.dev1/boneio/webui/frontend-dist → boneio-1.3.0.dev3/boneio/webui}/schema/binary_sensor.schema.json +332 -0
- {boneio-1.3.0.dev1/boneio/webui/frontend-dist → boneio-1.3.0.dev3/boneio/webui}/schema/boneio.schema.json +6 -0
- {boneio-1.3.0.dev1/boneio/webui/frontend-dist → boneio-1.3.0.dev3/boneio/webui}/schema/config.schema.json +1514 -4
- {boneio-1.3.0.dev1/boneio/webui/frontend-dist → boneio-1.3.0.dev3/boneio/webui}/schema/event.schema.json +1162 -0
- {boneio-1.3.0.dev1 → boneio-1.3.0.dev3}/boneio/webui/schema/ina219.schema.json +3 -3
- {boneio-1.3.0.dev1 → boneio-1.3.0.dev3}/boneio/webui/web_server.py +87 -8
- {boneio-1.3.0.dev1 → boneio-1.3.0.dev3/boneio.egg-info}/PKG-INFO +1 -1
- {boneio-1.3.0.dev1 → boneio-1.3.0.dev3}/boneio.egg-info/SOURCES.txt +34 -17
- boneio-1.3.0.dev1/boneio/core/remote/__init__.py +0 -40
- boneio-1.3.0.dev1/boneio/version.py +0 -2
- boneio-1.3.0.dev1/boneio/webui/frontend-dist/assets/cssMode-DYzYCxj1.js +0 -4
- boneio-1.3.0.dev1/boneio/webui/frontend-dist/assets/handlebars-3t5vS37H.js +0 -1
- boneio-1.3.0.dev1/boneio/webui/frontend-dist/assets/html-Cq68Vj92.js +0 -1
- boneio-1.3.0.dev1/boneio/webui/frontend-dist/assets/htmlMode-zRg51dux.js +0 -4
- boneio-1.3.0.dev1/boneio/webui/frontend-dist/assets/index-CedvLek6.js +0 -836
- boneio-1.3.0.dev1/boneio/webui/frontend-dist/assets/index-yfVmKD9N.css +0 -1
- boneio-1.3.0.dev1/boneio/webui/frontend-dist/assets/javascript-BeqHop1l.js +0 -1
- boneio-1.3.0.dev1/boneio/webui/frontend-dist/assets/liquid-BK7PsOyv.js +0 -1
- boneio-1.3.0.dev1/boneio/webui/frontend-dist/assets/mdx-Ckb8-VUx.js +0 -1
- boneio-1.3.0.dev1/boneio/webui/frontend-dist/assets/python-CO1-gBqF.js +0 -1
- boneio-1.3.0.dev1/boneio/webui/frontend-dist/assets/razor-Dx6x9ypa.js +0 -1
- boneio-1.3.0.dev1/boneio/webui/frontend-dist/assets/typescript-JSH4I7cf.js +0 -1
- boneio-1.3.0.dev1/boneio/webui/frontend-dist/assets/xml-BX_Opm8D.js +0 -1
- boneio-1.3.0.dev1/boneio/webui/frontend-dist/assets/yaml-BRsnPpO3.js +0 -1
- boneio-1.3.0.dev1/boneio/webui/frontend-dist/sw.js +0 -1
- {boneio-1.3.0.dev1 → boneio-1.3.0.dev3}/LICENSE +0 -0
- {boneio-1.3.0.dev1 → boneio-1.3.0.dev3}/MANIFEST.in +0 -0
- {boneio-1.3.0.dev1 → boneio-1.3.0.dev3}/README.md +0 -0
- {boneio-1.3.0.dev1 → boneio-1.3.0.dev3}/boneio/__init__.py +0 -0
- {boneio-1.3.0.dev1 → boneio-1.3.0.dev3}/boneio/boards/0.2/input.yaml +0 -0
- {boneio-1.3.0.dev1 → boneio-1.3.0.dev3}/boneio/boards/0.2/output_24_16.yaml +0 -0
- {boneio-1.3.0.dev1 → boneio-1.3.0.dev3}/boneio/boards/0.2/output_32_10.yaml +0 -0
- {boneio-1.3.0.dev1 → boneio-1.3.0.dev3}/boneio/boards/0.2/output_32_5.yaml +0 -0
- {boneio-1.3.0.dev1 → boneio-1.3.0.dev3}/boneio/boards/0.2/output_cover.yaml +0 -0
- {boneio-1.3.0.dev1 → boneio-1.3.0.dev3}/boneio/boards/0.2/output_cover_mix.yaml +0 -0
- {boneio-1.3.0.dev1 → boneio-1.3.0.dev3}/boneio/boards/0.3/input.yaml +0 -0
- {boneio-1.3.0.dev1 → boneio-1.3.0.dev3}/boneio/boards/0.3/output_24_16.yaml +0 -0
- {boneio-1.3.0.dev1 → boneio-1.3.0.dev3}/boneio/boards/0.3/output_32_10.yaml +0 -0
- {boneio-1.3.0.dev1 → boneio-1.3.0.dev3}/boneio/boards/0.3/output_32_5.yaml +0 -0
- {boneio-1.3.0.dev1 → boneio-1.3.0.dev3}/boneio/boards/0.3/output_cover.yaml +0 -0
- {boneio-1.3.0.dev1 → boneio-1.3.0.dev3}/boneio/boards/0.3/output_cover_mix.yaml +0 -0
- {boneio-1.3.0.dev1 → boneio-1.3.0.dev3}/boneio/boards/0.4/input.yaml +0 -0
- {boneio-1.3.0.dev1 → boneio-1.3.0.dev3}/boneio/boards/0.4/output_24_16.yaml +0 -0
- {boneio-1.3.0.dev1 → boneio-1.3.0.dev3}/boneio/boards/0.4/output_32_10.yaml +0 -0
- {boneio-1.3.0.dev1 → boneio-1.3.0.dev3}/boneio/boards/0.4/output_32_5.yaml +0 -0
- {boneio-1.3.0.dev1 → boneio-1.3.0.dev3}/boneio/boards/0.4/output_cover.yaml +0 -0
- {boneio-1.3.0.dev1 → boneio-1.3.0.dev3}/boneio/boards/0.4/output_cover_mix.yaml +0 -0
- {boneio-1.3.0.dev1 → boneio-1.3.0.dev3}/boneio/boards/0.5/input.yaml +0 -0
- {boneio-1.3.0.dev1 → boneio-1.3.0.dev3}/boneio/boards/0.5/output_24_16.yaml +0 -0
- {boneio-1.3.0.dev1 → boneio-1.3.0.dev3}/boneio/boards/0.5/output_32_10.yaml +0 -0
- {boneio-1.3.0.dev1 → boneio-1.3.0.dev3}/boneio/boards/0.5/output_cover.yaml +0 -0
- {boneio-1.3.0.dev1 → boneio-1.3.0.dev3}/boneio/boards/0.5/output_cover_mix.yaml +0 -0
- {boneio-1.3.0.dev1 → boneio-1.3.0.dev3}/boneio/boards/0.6/input.yaml +0 -0
- {boneio-1.3.0.dev1 → boneio-1.3.0.dev3}/boneio/boards/0.6/output_24_16.yaml +0 -0
- {boneio-1.3.0.dev1 → boneio-1.3.0.dev3}/boneio/boards/0.6/output_32_10.yaml +0 -0
- {boneio-1.3.0.dev1 → boneio-1.3.0.dev3}/boneio/boards/0.6/output_cover.yaml +0 -0
- {boneio-1.3.0.dev1 → boneio-1.3.0.dev3}/boneio/boards/0.6/output_cover_mix.yaml +0 -0
- {boneio-1.3.0.dev1 → boneio-1.3.0.dev3}/boneio/boards/0.7/input.yaml +0 -0
- {boneio-1.3.0.dev1 → boneio-1.3.0.dev3}/boneio/boards/0.7/output_24_16.yaml +0 -0
- {boneio-1.3.0.dev1 → boneio-1.3.0.dev3}/boneio/boards/0.7/output_32_10.yaml +0 -0
- {boneio-1.3.0.dev1 → boneio-1.3.0.dev3}/boneio/boards/0.7/output_cover.yaml +0 -0
- {boneio-1.3.0.dev1 → boneio-1.3.0.dev3}/boneio/boards/0.7/output_cover_mix.yaml +0 -0
- {boneio-1.3.0.dev1 → boneio-1.3.0.dev3}/boneio/boards/0.8/input.yaml +0 -0
- {boneio-1.3.0.dev1 → boneio-1.3.0.dev3}/boneio/boards/0.8/output_24_16.yaml +0 -0
- {boneio-1.3.0.dev1 → boneio-1.3.0.dev3}/boneio/boards/0.8/output_32_10.yaml +0 -0
- {boneio-1.3.0.dev1 → boneio-1.3.0.dev3}/boneio/boards/0.8/output_cover.yaml +0 -0
- {boneio-1.3.0.dev1 → boneio-1.3.0.dev3}/boneio/boards/0.8/output_cover_mix.yaml +0 -0
- {boneio-1.3.0.dev1 → boneio-1.3.0.dev3}/boneio/components/__init__.py +0 -0
- {boneio-1.3.0.dev1 → boneio-1.3.0.dev3}/boneio/components/cover/__init__.py +0 -0
- {boneio-1.3.0.dev1 → boneio-1.3.0.dev3}/boneio/components/cover/cover.py +0 -0
- {boneio-1.3.0.dev1 → boneio-1.3.0.dev3}/boneio/components/cover/time_based.py +0 -0
- {boneio-1.3.0.dev1 → boneio-1.3.0.dev3}/boneio/components/cover/venetian.py +0 -0
- {boneio-1.3.0.dev1 → boneio-1.3.0.dev3}/boneio/components/group/__init__.py +0 -0
- {boneio-1.3.0.dev1 → boneio-1.3.0.dev3}/boneio/components/group/output_group.py +0 -0
- {boneio-1.3.0.dev1 → boneio-1.3.0.dev3}/boneio/components/input/__init__.py +0 -0
- {boneio-1.3.0.dev1 → boneio-1.3.0.dev3}/boneio/components/input/binary_sensor.py +0 -0
- {boneio-1.3.0.dev1 → boneio-1.3.0.dev3}/boneio/components/input/detectors.py +0 -0
- {boneio-1.3.0.dev1 → boneio-1.3.0.dev3}/boneio/components/input/event.py +0 -0
- {boneio-1.3.0.dev1 → boneio-1.3.0.dev3}/boneio/components/output/__init__.py +0 -0
- {boneio-1.3.0.dev1 → boneio-1.3.0.dev3}/boneio/components/output/basic.py +0 -0
- {boneio-1.3.0.dev1 → boneio-1.3.0.dev3}/boneio/components/output/mcp.py +0 -0
- {boneio-1.3.0.dev1 → boneio-1.3.0.dev3}/boneio/components/output/pca.py +0 -0
- {boneio-1.3.0.dev1 → boneio-1.3.0.dev3}/boneio/components/output/pcf.py +0 -0
- {boneio-1.3.0.dev1 → boneio-1.3.0.dev3}/boneio/components/sensor/__init__.py +0 -0
- {boneio-1.3.0.dev1 → boneio-1.3.0.dev3}/boneio/components/sensor/virtual_energy.py +0 -0
- {boneio-1.3.0.dev1 → boneio-1.3.0.dev3}/boneio/components/template/__init__.py +0 -0
- {boneio-1.3.0.dev1 → boneio-1.3.0.dev3}/boneio/components/template/alarm_panel.py +0 -0
- {boneio-1.3.0.dev1 → boneio-1.3.0.dev3}/boneio/components/template/gate_cover.py +0 -0
- {boneio-1.3.0.dev1 → boneio-1.3.0.dev3}/boneio/components/template/thermostat.py +0 -0
- {boneio-1.3.0.dev1 → boneio-1.3.0.dev3}/boneio/const.py +0 -0
- {boneio-1.3.0.dev1 → boneio-1.3.0.dev3}/boneio/core/__init__.py +0 -0
- {boneio-1.3.0.dev1 → boneio-1.3.0.dev3}/boneio/core/cloud/__init__.py +0 -0
- {boneio-1.3.0.dev1 → boneio-1.3.0.dev3}/boneio/core/cloud/data/__init__.py +0 -0
- {boneio-1.3.0.dev1 → boneio-1.3.0.dev3}/boneio/core/cloud/data/docker-compose-cloud.yaml +0 -0
- {boneio-1.3.0.dev1 → boneio-1.3.0.dev3}/boneio/core/cloud/data/docker-compose.yaml +0 -0
- {boneio-1.3.0.dev1 → boneio-1.3.0.dev3}/boneio/core/cloud/data/init-certs-cloud.sh +0 -0
- {boneio-1.3.0.dev1 → boneio-1.3.0.dev3}/boneio/core/cloud/secrets.py +0 -0
- {boneio-1.3.0.dev1 → boneio-1.3.0.dev3}/boneio/core/config/__init__.py +0 -0
- {boneio-1.3.0.dev1 → boneio-1.3.0.dev3}/boneio/core/config/config_helper.py +0 -0
- {boneio-1.3.0.dev1 → boneio-1.3.0.dev3}/boneio/core/config/migrations/v1_proxy_port.py +0 -0
- {boneio-1.3.0.dev1 → boneio-1.3.0.dev3}/boneio/core/config/migrations/v2_transition.py +0 -0
- {boneio-1.3.0.dev1 → boneio-1.3.0.dev3}/boneio/core/config/package-lock.json +0 -0
- {boneio-1.3.0.dev1 → boneio-1.3.0.dev3}/boneio/core/config/package.json +0 -0
- {boneio-1.3.0.dev1 → boneio-1.3.0.dev3}/boneio/core/config/schema_converter.py +0 -0
- {boneio-1.3.0.dev1 → boneio-1.3.0.dev3}/boneio/core/discovery.py +0 -0
- {boneio-1.3.0.dev1 → boneio-1.3.0.dev3}/boneio/core/events/__init__.py +0 -0
- {boneio-1.3.0.dev1 → boneio-1.3.0.dev3}/boneio/core/events/bus.py +0 -0
- {boneio-1.3.0.dev1 → boneio-1.3.0.dev3}/boneio/core/manager/__init__.py +0 -0
- {boneio-1.3.0.dev1 → boneio-1.3.0.dev3}/boneio/core/manager/covers.py +0 -0
- {boneio-1.3.0.dev1 → boneio-1.3.0.dev3}/boneio/core/manager/inputs.py +0 -0
- {boneio-1.3.0.dev1 → boneio-1.3.0.dev3}/boneio/core/manager/modbus.py +0 -0
- {boneio-1.3.0.dev1 → boneio-1.3.0.dev3}/boneio/core/manager/templates/__init__.py +0 -0
- {boneio-1.3.0.dev1 → boneio-1.3.0.dev3}/boneio/core/manager/templates/alarm.py +0 -0
- {boneio-1.3.0.dev1 → boneio-1.3.0.dev3}/boneio/core/manager/templates/gate_cover.py +0 -0
- {boneio-1.3.0.dev1 → boneio-1.3.0.dev3}/boneio/core/manager/templates/thermostat.py +0 -0
- {boneio-1.3.0.dev1 → boneio-1.3.0.dev3}/boneio/core/manager/templates.py +0 -0
- {boneio-1.3.0.dev1 → boneio-1.3.0.dev3}/boneio/core/manager/update.py +0 -0
- {boneio-1.3.0.dev1 → boneio-1.3.0.dev3}/boneio/core/messaging/__init__.py +0 -0
- {boneio-1.3.0.dev1 → boneio-1.3.0.dev3}/boneio/core/messaging/basic.py +0 -0
- {boneio-1.3.0.dev1 → boneio-1.3.0.dev3}/boneio/core/messaging/basic_mqtt.py +0 -0
- {boneio-1.3.0.dev1 → boneio-1.3.0.dev3}/boneio/core/messaging/local.py +0 -0
- {boneio-1.3.0.dev1 → boneio-1.3.0.dev3}/boneio/core/messaging/mqtt.py +0 -0
- {boneio-1.3.0.dev1 → boneio-1.3.0.dev3}/boneio/core/messaging/queue.py +0 -0
- {boneio-1.3.0.dev1 → boneio-1.3.0.dev3}/boneio/core/remote/base.py +0 -0
- {boneio-1.3.0.dev1 → boneio-1.3.0.dev3}/boneio/core/remote/mqtt.py +0 -0
- {boneio-1.3.0.dev1 → boneio-1.3.0.dev3}/boneio/core/remote/wled.py +0 -0
- {boneio-1.3.0.dev1 → boneio-1.3.0.dev3}/boneio/core/sensor/__init__.py +0 -0
- {boneio-1.3.0.dev1 → boneio-1.3.0.dev3}/boneio/core/sensor/base.py +0 -0
- {boneio-1.3.0.dev1 → boneio-1.3.0.dev3}/boneio/core/sensor/system.py +0 -0
- {boneio-1.3.0.dev1 → boneio-1.3.0.dev3}/boneio/core/state/__init__.py +0 -0
- {boneio-1.3.0.dev1 → boneio-1.3.0.dev3}/boneio/core/state/manager.py +0 -0
- {boneio-1.3.0.dev1 → boneio-1.3.0.dev3}/boneio/core/system/__init__.py +0 -0
- {boneio-1.3.0.dev1 → boneio-1.3.0.dev3}/boneio/core/system/host_data.py +0 -0
- {boneio-1.3.0.dev1 → boneio-1.3.0.dev3}/boneio/core/system/monitor.py +0 -0
- {boneio-1.3.0.dev1 → boneio-1.3.0.dev3}/boneio/core/utils/__init__.py +0 -0
- {boneio-1.3.0.dev1 → boneio-1.3.0.dev3}/boneio/core/utils/async_updater.py +0 -0
- {boneio-1.3.0.dev1 → boneio-1.3.0.dev3}/boneio/core/utils/filter.py +0 -0
- {boneio-1.3.0.dev1 → boneio-1.3.0.dev3}/boneio/core/utils/font_util.py +0 -0
- {boneio-1.3.0.dev1 → boneio-1.3.0.dev3}/boneio/core/utils/logger.py +0 -0
- {boneio-1.3.0.dev1 → boneio-1.3.0.dev3}/boneio/core/utils/timeperiod.py +0 -0
- {boneio-1.3.0.dev1 → boneio-1.3.0.dev3}/boneio/core/utils/util.py +0 -0
- {boneio-1.3.0.dev1 → boneio-1.3.0.dev3}/boneio/example_config/24x16/adc.yaml +0 -0
- {boneio-1.3.0.dev1 → boneio-1.3.0.dev3}/boneio/example_config/24x16/binary_sensor.yaml +0 -0
- {boneio-1.3.0.dev1 → boneio-1.3.0.dev3}/boneio/example_config/24x16/config.yaml +0 -0
- {boneio-1.3.0.dev1 → boneio-1.3.0.dev3}/boneio/example_config/24x16/event.yaml +0 -0
- {boneio-1.3.0.dev1 → boneio-1.3.0.dev3}/boneio/example_config/24x16/mqtt.yaml +0 -0
- {boneio-1.3.0.dev1 → boneio-1.3.0.dev3}/boneio/example_config/24x16/output24x16A.yaml +0 -0
- {boneio-1.3.0.dev1 → boneio-1.3.0.dev3}/boneio/example_config/32x10/adc.yaml +0 -0
- {boneio-1.3.0.dev1 → boneio-1.3.0.dev3}/boneio/example_config/32x10/binary_sensor.yaml +0 -0
- {boneio-1.3.0.dev1 → boneio-1.3.0.dev3}/boneio/example_config/32x10/config.yaml +0 -0
- {boneio-1.3.0.dev1 → boneio-1.3.0.dev3}/boneio/example_config/32x10/event.yaml +0 -0
- {boneio-1.3.0.dev1 → boneio-1.3.0.dev3}/boneio/example_config/32x10/mqtt.yaml +0 -0
- {boneio-1.3.0.dev1 → boneio-1.3.0.dev3}/boneio/example_config/32x10/output32x10A.yaml +0 -0
- {boneio-1.3.0.dev1/boneio/example_config/cover → boneio-1.3.0.dev3/boneio/example_config/48x4}/adc.yaml +0 -0
- {boneio-1.3.0.dev1/boneio/example_config/cover → boneio-1.3.0.dev3/boneio/example_config/48x4}/mqtt.yaml +0 -0
- {boneio-1.3.0.dev1 → boneio-1.3.0.dev3}/boneio/example_config/__init__.py +0 -0
- {boneio-1.3.0.dev1 → boneio-1.3.0.dev3}/boneio/example_config/can_slave.yaml +0 -0
- {boneio-1.3.0.dev1/boneio/example_config/cover_mix → boneio-1.3.0.dev3/boneio/example_config/cover}/adc.yaml +0 -0
- {boneio-1.3.0.dev1 → boneio-1.3.0.dev3}/boneio/example_config/cover/binary_sensor.yaml +0 -0
- {boneio-1.3.0.dev1 → boneio-1.3.0.dev3}/boneio/example_config/cover/config.yaml +0 -0
- {boneio-1.3.0.dev1 → boneio-1.3.0.dev3}/boneio/example_config/cover/cover.yaml +0 -0
- {boneio-1.3.0.dev1 → boneio-1.3.0.dev3}/boneio/example_config/cover/event.yaml +0 -0
- {boneio-1.3.0.dev1/boneio/example_config/cover_mix → boneio-1.3.0.dev3/boneio/example_config/cover}/mqtt.yaml +0 -0
- {boneio-1.3.0.dev1 → boneio-1.3.0.dev3}/boneio/example_config/cover/outputCover.yaml +0 -0
- {boneio-1.3.0.dev1/boneio/example_config/different_configs → boneio-1.3.0.dev3/boneio/example_config/cover_mix}/adc.yaml +0 -0
- {boneio-1.3.0.dev1 → boneio-1.3.0.dev3}/boneio/example_config/cover_mix/binary_sensor.yaml +0 -0
- {boneio-1.3.0.dev1 → boneio-1.3.0.dev3}/boneio/example_config/cover_mix/config.yaml +0 -0
- {boneio-1.3.0.dev1 → boneio-1.3.0.dev3}/boneio/example_config/cover_mix/cover.yaml +0 -0
- {boneio-1.3.0.dev1 → boneio-1.3.0.dev3}/boneio/example_config/cover_mix/event.yaml +0 -0
- {boneio-1.3.0.dev1 → boneio-1.3.0.dev3}/boneio/example_config/cover_mix/outputCoverMix.yaml +0 -0
- {boneio-1.3.0.dev1 → boneio-1.3.0.dev3}/boneio/example_config/different_configs/all_binary_sensor.yaml +0 -0
- {boneio-1.3.0.dev1 → boneio-1.3.0.dev3}/boneio/example_config/different_configs/binary_sensor.yaml +0 -0
- {boneio-1.3.0.dev1 → boneio-1.3.0.dev3}/boneio/example_config/different_configs/binary_sensor_v_0_7.yaml +0 -0
- {boneio-1.3.0.dev1 → boneio-1.3.0.dev3}/boneio/example_config/different_configs/config_24_16.yaml +0 -0
- {boneio-1.3.0.dev1 → boneio-1.3.0.dev3}/boneio/example_config/different_configs/event_all.yaml +0 -0
- {boneio-1.3.0.dev1 → boneio-1.3.0.dev3}/boneio/example_config/different_configs/event_v_0_7.yaml +0 -0
- {boneio-1.3.0.dev1 → boneio-1.3.0.dev3}/boneio/example_config/different_configs/led32x4A.yaml +0 -0
- {boneio-1.3.0.dev1 → boneio-1.3.0.dev3}/boneio/example_config/different_configs/output24x16A.yaml +0 -0
- {boneio-1.3.0.dev1 → boneio-1.3.0.dev3}/boneio/example_config/different_configs/output24x16A_v0.3.yaml +0 -0
- {boneio-1.3.0.dev1 → boneio-1.3.0.dev3}/boneio/example_config/different_configs/output32x10A.yaml +0 -0
- {boneio-1.3.0.dev1 → boneio-1.3.0.dev3}/boneio/example_config/different_configs/output32x5A.yaml +0 -0
- {boneio-1.3.0.dev1 → boneio-1.3.0.dev3}/boneio/exceptions.py +0 -0
- {boneio-1.3.0.dev1 → boneio-1.3.0.dev3}/boneio/hardware/__init__.py +0 -0
- {boneio-1.3.0.dev1 → boneio-1.3.0.dev3}/boneio/hardware/analog/__init__.py +0 -0
- {boneio-1.3.0.dev1 → boneio-1.3.0.dev3}/boneio/hardware/can/__init__.py +0 -0
- {boneio-1.3.0.dev1 → boneio-1.3.0.dev3}/boneio/hardware/can/bridge.py +0 -0
- {boneio-1.3.0.dev1 → boneio-1.3.0.dev3}/boneio/hardware/can/interface.py +0 -0
- {boneio-1.3.0.dev1 → boneio-1.3.0.dev3}/boneio/hardware/can/node.py +0 -0
- {boneio-1.3.0.dev1 → boneio-1.3.0.dev3}/boneio/hardware/display/__init__.py +0 -0
- {boneio-1.3.0.dev1 → boneio-1.3.0.dev3}/boneio/hardware/display/fonts/danube__.ttf +0 -0
- {boneio-1.3.0.dev1 → boneio-1.3.0.dev3}/boneio/hardware/gpio/__init__.py +0 -0
- {boneio-1.3.0.dev1 → boneio-1.3.0.dev3}/boneio/hardware/gpio/expanders/__init__.py +0 -0
- {boneio-1.3.0.dev1 → boneio-1.3.0.dev3}/boneio/hardware/gpio/expanders/mcp23017.py +0 -0
- {boneio-1.3.0.dev1 → boneio-1.3.0.dev3}/boneio/hardware/gpio/expanders/pca9685.py +0 -0
- {boneio-1.3.0.dev1 → boneio-1.3.0.dev3}/boneio/hardware/gpio/expanders/pcf8575.py +0 -0
- {boneio-1.3.0.dev1 → boneio-1.3.0.dev3}/boneio/hardware/gpio/input/__init__.py +0 -0
- {boneio-1.3.0.dev1 → boneio-1.3.0.dev3}/boneio/hardware/gpio/input/base.py +0 -0
- {boneio-1.3.0.dev1 → boneio-1.3.0.dev3}/boneio/hardware/gpio/input/manager.py +0 -0
- {boneio-1.3.0.dev1 → boneio-1.3.0.dev3}/boneio/hardware/i2c/__init__.py +0 -0
- {boneio-1.3.0.dev1 → boneio-1.3.0.dev3}/boneio/hardware/i2c/bus.py +0 -0
- {boneio-1.3.0.dev1 → boneio-1.3.0.dev3}/boneio/hardware/i2c/ina219.py +0 -0
- {boneio-1.3.0.dev1 → boneio-1.3.0.dev3}/boneio/hardware/i2c/ina219_driver.py +0 -0
- {boneio-1.3.0.dev1 → boneio-1.3.0.dev3}/boneio/hardware/i2c/mcp9808.py +0 -0
- {boneio-1.3.0.dev1 → boneio-1.3.0.dev3}/boneio/hardware/i2c/pct2075.py +0 -0
- {boneio-1.3.0.dev1 → boneio-1.3.0.dev3}/boneio/hardware/onewire/__init__.py +0 -0
- {boneio-1.3.0.dev1 → boneio-1.3.0.dev3}/boneio/hardware/onewire/bus.py +0 -0
- {boneio-1.3.0.dev1 → boneio-1.3.0.dev3}/boneio/hardware/onewire/dallas.py +0 -0
- {boneio-1.3.0.dev1 → boneio-1.3.0.dev3}/boneio/hardware/onewire/ds2482.py +0 -0
- {boneio-1.3.0.dev1 → boneio-1.3.0.dev3}/boneio/hardware/sensor/__init__.py +0 -0
- {boneio-1.3.0.dev1 → boneio-1.3.0.dev3}/boneio/hardware/sensor/temperature/__init__.py +0 -0
- {boneio-1.3.0.dev1 → boneio-1.3.0.dev3}/boneio/hardware/sensor/temperature/base.py +0 -0
- {boneio-1.3.0.dev1 → boneio-1.3.0.dev3}/boneio/hardware/sensor/temperature/mcp9808.py +0 -0
- {boneio-1.3.0.dev1 → boneio-1.3.0.dev3}/boneio/hardware/sensor/temperature/pct2075.py +0 -0
- {boneio-1.3.0.dev1 → boneio-1.3.0.dev3}/boneio/integration/__init__.py +0 -0
- {boneio-1.3.0.dev1 → boneio-1.3.0.dev3}/boneio/integration/interlock.py +0 -0
- {boneio-1.3.0.dev1 → boneio-1.3.0.dev3}/boneio/modbus/__init__.py +0 -0
- {boneio-1.3.0.dev1 → boneio-1.3.0.dev3}/boneio/modbus/cli.py +0 -0
- {boneio-1.3.0.dev1 → boneio-1.3.0.dev3}/boneio/modbus/client.py +0 -0
- {boneio-1.3.0.dev1 → boneio-1.3.0.dev3}/boneio/modbus/devices/__init__.py +0 -0
- {boneio-1.3.0.dev1 → boneio-1.3.0.dev3}/boneio/modbus/devices/energy_meters/le-03mw.json +0 -0
- {boneio-1.3.0.dev1 → boneio-1.3.0.dev3}/boneio/modbus/devices/energy_meters/le-03mwct.json +0 -0
- {boneio-1.3.0.dev1 → boneio-1.3.0.dev3}/boneio/modbus/devices/energy_meters/orno-or-we-517.json +0 -0
- {boneio-1.3.0.dev1 → boneio-1.3.0.dev3}/boneio/modbus/devices/energy_meters/sdm120.json +0 -0
- {boneio-1.3.0.dev1 → boneio-1.3.0.dev3}/boneio/modbus/devices/energy_meters/sdm630.json +0 -0
- {boneio-1.3.0.dev1 → boneio-1.3.0.dev3}/boneio/modbus/devices/energy_meters/socomec_e03.json +0 -0
- {boneio-1.3.0.dev1 → boneio-1.3.0.dev3}/boneio/modbus/devices/energy_meters/socomec_e23.json +0 -0
- {boneio-1.3.0.dev1 → boneio-1.3.0.dev3}/boneio/modbus/devices/hvac/fujitsu-ac.json +0 -0
- {boneio-1.3.0.dev1 → boneio-1.3.0.dev3}/boneio/modbus/devices/hvac/ventclear.json +0 -0
- {boneio-1.3.0.dev1 → boneio-1.3.0.dev3}/boneio/modbus/devices/inverters/sofar.json +0 -0
- {boneio-1.3.0.dev1 → boneio-1.3.0.dev3}/boneio/modbus/devices/inverters/thessla.json +0 -0
- {boneio-1.3.0.dev1 → boneio-1.3.0.dev3}/boneio/modbus/devices/other/n4dsc08.json +0 -0
- {boneio-1.3.0.dev1 → boneio-1.3.0.dev3}/boneio/modbus/devices/other/r4dcb08.json +0 -0
- {boneio-1.3.0.dev1 → boneio-1.3.0.dev3}/boneio/modbus/devices/other/wanas415.json +0 -0
- {boneio-1.3.0.dev1 → boneio-1.3.0.dev3}/boneio/modbus/devices/sensors/cwt.json +0 -0
- {boneio-1.3.0.dev1 → boneio-1.3.0.dev3}/boneio/modbus/devices/sensors/dts1964_3f.json +0 -0
- {boneio-1.3.0.dev1 → boneio-1.3.0.dev3}/boneio/modbus/devices/sensors/dyp-a12-ultrasonic.json +0 -0
- {boneio-1.3.0.dev1 → boneio-1.3.0.dev3}/boneio/modbus/devices/sensors/gdfs.json +0 -0
- {boneio-1.3.0.dev1 → boneio-1.3.0.dev3}/boneio/modbus/devices/sensors/gdfx.json +0 -0
- {boneio-1.3.0.dev1 → boneio-1.3.0.dev3}/boneio/modbus/devices/sensors/liquid-sensor.json +0 -0
- {boneio-1.3.0.dev1 → boneio-1.3.0.dev3}/boneio/modbus/devices/sensors/pt100.json +0 -0
- {boneio-1.3.0.dev1 → boneio-1.3.0.dev3}/boneio/modbus/devices/sensors/sht20.json +0 -0
- {boneio-1.3.0.dev1 → boneio-1.3.0.dev3}/boneio/modbus/devices/sensors/sht30.json +0 -0
- {boneio-1.3.0.dev1 → boneio-1.3.0.dev3}/boneio/modbus/entities/__init__.py +0 -0
- {boneio-1.3.0.dev1 → boneio-1.3.0.dev3}/boneio/modbus/entities/derived/__init__.py +0 -0
- {boneio-1.3.0.dev1 → boneio-1.3.0.dev3}/boneio/modbus/entities/sensor/__init__.py +0 -0
- {boneio-1.3.0.dev1 → boneio-1.3.0.dev3}/boneio/modbus/entities/sensor/binary.py +0 -0
- {boneio-1.3.0.dev1 → boneio-1.3.0.dev3}/boneio/modbus/entities/writeable/__init__.py +0 -0
- {boneio-1.3.0.dev1 → boneio-1.3.0.dev3}/boneio/modbus/entities/writeable/binary.py +0 -0
- {boneio-1.3.0.dev1 → boneio-1.3.0.dev3}/boneio/modbus/utils.py +0 -0
- {boneio-1.3.0.dev1 → boneio-1.3.0.dev3}/boneio/models/__init__.py +0 -0
- {boneio-1.3.0.dev1 → boneio-1.3.0.dev3}/boneio/models/actions.py +0 -0
- {boneio-1.3.0.dev1 → boneio-1.3.0.dev3}/boneio/models/events.py +0 -0
- {boneio-1.3.0.dev1 → boneio-1.3.0.dev3}/boneio/models/files.py +0 -0
- {boneio-1.3.0.dev1 → boneio-1.3.0.dev3}/boneio/models/logs.py +0 -0
- {boneio-1.3.0.dev1 → boneio-1.3.0.dev3}/boneio/models/mqtt.py +0 -0
- {boneio-1.3.0.dev1 → boneio-1.3.0.dev3}/boneio/models/state.py +0 -0
- {boneio-1.3.0.dev1 → boneio-1.3.0.dev3}/boneio/schema/actions_sensor.yaml +0 -0
- {boneio-1.3.0.dev1 → boneio-1.3.0.dev3}/boneio/schema/actions_switch.yaml +0 -0
- {boneio-1.3.0.dev1 → boneio-1.3.0.dev3}/boneio/schema/filters.yaml +0 -0
- {boneio-1.3.0.dev1 → boneio-1.3.0.dev3}/boneio/schema/filters_adc.yaml +0 -0
- {boneio-1.3.0.dev1 → boneio-1.3.0.dev3}/boneio/schema/id.yaml +0 -0
- {boneio-1.3.0.dev1 → boneio-1.3.0.dev3}/boneio/schema/remote_devices.yaml +0 -0
- {boneio-1.3.0.dev1 → boneio-1.3.0.dev3}/boneio/schema/temp_unit.yaml +0 -0
- {boneio-1.3.0.dev1 → boneio-1.3.0.dev3}/boneio/schema/update_interval.yaml +0 -0
- {boneio-1.3.0.dev1 → boneio-1.3.0.dev3}/boneio/webui/frontend-dist/assets/abap-CRCWOmpq.js +0 -0
- {boneio-1.3.0.dev1 → boneio-1.3.0.dev3}/boneio/webui/frontend-dist/assets/apex-DnsZk_dE.js +0 -0
- {boneio-1.3.0.dev1 → boneio-1.3.0.dev3}/boneio/webui/frontend-dist/assets/azcli-1IWB1ccx.js +0 -0
- {boneio-1.3.0.dev1 → boneio-1.3.0.dev3}/boneio/webui/frontend-dist/assets/bat-DPkNLes8.js +0 -0
- {boneio-1.3.0.dev1 → boneio-1.3.0.dev3}/boneio/webui/frontend-dist/assets/bicep-Corcdgou.js +0 -0
- {boneio-1.3.0.dev1 → boneio-1.3.0.dev3}/boneio/webui/frontend-dist/assets/cameligo-CGrWLZr3.js +0 -0
- {boneio-1.3.0.dev1 → boneio-1.3.0.dev3}/boneio/webui/frontend-dist/assets/clojure-D9WOWImG.js +0 -0
- {boneio-1.3.0.dev1 → boneio-1.3.0.dev3}/boneio/webui/frontend-dist/assets/codicon-DCmgc-ay.ttf +0 -0
- {boneio-1.3.0.dev1 → boneio-1.3.0.dev3}/boneio/webui/frontend-dist/assets/coffee-B7EJu28W.js +0 -0
- {boneio-1.3.0.dev1 → boneio-1.3.0.dev3}/boneio/webui/frontend-dist/assets/cpp-SEyurbux.js +0 -0
- {boneio-1.3.0.dev1 → boneio-1.3.0.dev3}/boneio/webui/frontend-dist/assets/csharp-BoL64M5l.js +0 -0
- {boneio-1.3.0.dev1 → boneio-1.3.0.dev3}/boneio/webui/frontend-dist/assets/csp-C46ZqvIl.js +0 -0
- {boneio-1.3.0.dev1 → boneio-1.3.0.dev3}/boneio/webui/frontend-dist/assets/css-DQU6DXDx.js +0 -0
- {boneio-1.3.0.dev1 → boneio-1.3.0.dev3}/boneio/webui/frontend-dist/assets/cypher-D84EuPTj.js +0 -0
- {boneio-1.3.0.dev1 → boneio-1.3.0.dev3}/boneio/webui/frontend-dist/assets/dart-D8lhlL1r.js +0 -0
- {boneio-1.3.0.dev1 → boneio-1.3.0.dev3}/boneio/webui/frontend-dist/assets/dockerfile-DLk6rpji.js +0 -0
- {boneio-1.3.0.dev1 → boneio-1.3.0.dev3}/boneio/webui/frontend-dist/assets/ecl-BO6FnfXk.js +0 -0
- {boneio-1.3.0.dev1 → boneio-1.3.0.dev3}/boneio/webui/frontend-dist/assets/editor.worker-B4pQIWZD.js +0 -0
- {boneio-1.3.0.dev1 → boneio-1.3.0.dev3}/boneio/webui/frontend-dist/assets/elixir-BRjLKONM.js +0 -0
- {boneio-1.3.0.dev1 → boneio-1.3.0.dev3}/boneio/webui/frontend-dist/assets/flow9-Cac8vKd7.js +0 -0
- {boneio-1.3.0.dev1 → boneio-1.3.0.dev3}/boneio/webui/frontend-dist/assets/fsharp-fd1GTHhf.js +0 -0
- {boneio-1.3.0.dev1 → boneio-1.3.0.dev3}/boneio/webui/frontend-dist/assets/go-O9LJTZXk.js +0 -0
- {boneio-1.3.0.dev1 → boneio-1.3.0.dev3}/boneio/webui/frontend-dist/assets/graphql-LQdxqEYJ.js +0 -0
- {boneio-1.3.0.dev1 → boneio-1.3.0.dev3}/boneio/webui/frontend-dist/assets/hcl-DxDQ3s82.js +0 -0
- {boneio-1.3.0.dev1 → boneio-1.3.0.dev3}/boneio/webui/frontend-dist/assets/ini-BvajGCUy.js +0 -0
- {boneio-1.3.0.dev1 → boneio-1.3.0.dev3}/boneio/webui/frontend-dist/assets/java-SYsfObOQ.js +0 -0
- {boneio-1.3.0.dev1 → boneio-1.3.0.dev3}/boneio/webui/frontend-dist/assets/json.worker-aFakAbRR.js +0 -0
- {boneio-1.3.0.dev1 → boneio-1.3.0.dev3}/boneio/webui/frontend-dist/assets/julia-DQXNmw_w.js +0 -0
- {boneio-1.3.0.dev1 → boneio-1.3.0.dev3}/boneio/webui/frontend-dist/assets/kotlin-qQ0MG-9I.js +0 -0
- {boneio-1.3.0.dev1 → boneio-1.3.0.dev3}/boneio/webui/frontend-dist/assets/less-GGFNNJHn.js +0 -0
- {boneio-1.3.0.dev1 → boneio-1.3.0.dev3}/boneio/webui/frontend-dist/assets/lexon-Canl7DCW.js +0 -0
- {boneio-1.3.0.dev1 → boneio-1.3.0.dev3}/boneio/webui/frontend-dist/assets/lua-D28Ae8-K.js +0 -0
- {boneio-1.3.0.dev1 → boneio-1.3.0.dev3}/boneio/webui/frontend-dist/assets/m3-DPitgjJI.js +0 -0
- {boneio-1.3.0.dev1 → boneio-1.3.0.dev3}/boneio/webui/frontend-dist/assets/markdown-B811l8j2.js +0 -0
- {boneio-1.3.0.dev1 → boneio-1.3.0.dev3}/boneio/webui/frontend-dist/assets/mips-CdjsipkG.js +0 -0
- {boneio-1.3.0.dev1 → boneio-1.3.0.dev3}/boneio/webui/frontend-dist/assets/msdax-CYqgjx_P.js +0 -0
- {boneio-1.3.0.dev1 → boneio-1.3.0.dev3}/boneio/webui/frontend-dist/assets/mysql-BHd6q0vd.js +0 -0
- {boneio-1.3.0.dev1 → boneio-1.3.0.dev3}/boneio/webui/frontend-dist/assets/objective-c-B1aVtJYH.js +0 -0
- {boneio-1.3.0.dev1 → boneio-1.3.0.dev3}/boneio/webui/frontend-dist/assets/pascal-BhNW15KB.js +0 -0
- {boneio-1.3.0.dev1 → boneio-1.3.0.dev3}/boneio/webui/frontend-dist/assets/pascaligo-5jv8CcQD.js +0 -0
- {boneio-1.3.0.dev1 → boneio-1.3.0.dev3}/boneio/webui/frontend-dist/assets/perl-DlYyT36c.js +0 -0
- {boneio-1.3.0.dev1 → boneio-1.3.0.dev3}/boneio/webui/frontend-dist/assets/pgsql-Dy0bjov7.js +0 -0
- {boneio-1.3.0.dev1 → boneio-1.3.0.dev3}/boneio/webui/frontend-dist/assets/php-120yhfDK.js +0 -0
- {boneio-1.3.0.dev1 → boneio-1.3.0.dev3}/boneio/webui/frontend-dist/assets/pla-CjnFlu4u.js +0 -0
- {boneio-1.3.0.dev1 → boneio-1.3.0.dev3}/boneio/webui/frontend-dist/assets/postiats-CQpG440k.js +0 -0
- {boneio-1.3.0.dev1 → boneio-1.3.0.dev3}/boneio/webui/frontend-dist/assets/powerquery-DdJtto1Z.js +0 -0
- {boneio-1.3.0.dev1 → boneio-1.3.0.dev3}/boneio/webui/frontend-dist/assets/powershell-Bu_VLpJB.js +0 -0
- {boneio-1.3.0.dev1 → boneio-1.3.0.dev3}/boneio/webui/frontend-dist/assets/protobuf-IBS6jZEB.js +0 -0
- {boneio-1.3.0.dev1 → boneio-1.3.0.dev3}/boneio/webui/frontend-dist/assets/pug-kFxLfcjb.js +0 -0
- {boneio-1.3.0.dev1 → boneio-1.3.0.dev3}/boneio/webui/frontend-dist/assets/qsharp-q7JyzKFN.js +0 -0
- {boneio-1.3.0.dev1 → boneio-1.3.0.dev3}/boneio/webui/frontend-dist/assets/r-BIFz-_sK.js +0 -0
- {boneio-1.3.0.dev1 → boneio-1.3.0.dev3}/boneio/webui/frontend-dist/assets/redis-CHOsPHWR.js +0 -0
- {boneio-1.3.0.dev1 → boneio-1.3.0.dev3}/boneio/webui/frontend-dist/assets/redshift-CBifECDb.js +0 -0
- {boneio-1.3.0.dev1 → boneio-1.3.0.dev3}/boneio/webui/frontend-dist/assets/restructuredtext-CghPJEOS.js +0 -0
- {boneio-1.3.0.dev1 → boneio-1.3.0.dev3}/boneio/webui/frontend-dist/assets/ruby-CYWGW-b1.js +0 -0
- {boneio-1.3.0.dev1 → boneio-1.3.0.dev3}/boneio/webui/frontend-dist/assets/rust-DMDD0SHb.js +0 -0
- {boneio-1.3.0.dev1 → boneio-1.3.0.dev3}/boneio/webui/frontend-dist/assets/sb-BYAiYHFx.js +0 -0
- {boneio-1.3.0.dev1 → boneio-1.3.0.dev3}/boneio/webui/frontend-dist/assets/scala-Bqvq8jcR.js +0 -0
- {boneio-1.3.0.dev1 → boneio-1.3.0.dev3}/boneio/webui/frontend-dist/assets/scheme-Dhb-2j9p.js +0 -0
- {boneio-1.3.0.dev1 → boneio-1.3.0.dev3}/boneio/webui/frontend-dist/assets/scss-CTwUZ5N7.js +0 -0
- {boneio-1.3.0.dev1 → boneio-1.3.0.dev3}/boneio/webui/frontend-dist/assets/shell-CsDZo4DB.js +0 -0
- {boneio-1.3.0.dev1 → boneio-1.3.0.dev3}/boneio/webui/frontend-dist/assets/solidity-CME5AdoB.js +0 -0
- {boneio-1.3.0.dev1 → boneio-1.3.0.dev3}/boneio/webui/frontend-dist/assets/sophia-RYC1BQQz.js +0 -0
- {boneio-1.3.0.dev1 → boneio-1.3.0.dev3}/boneio/webui/frontend-dist/assets/sparql-KEyrF7De.js +0 -0
- {boneio-1.3.0.dev1 → boneio-1.3.0.dev3}/boneio/webui/frontend-dist/assets/sql-BdTr02Mf.js +0 -0
- {boneio-1.3.0.dev1 → boneio-1.3.0.dev3}/boneio/webui/frontend-dist/assets/st-C7iG7M4S.js +0 -0
- {boneio-1.3.0.dev1 → boneio-1.3.0.dev3}/boneio/webui/frontend-dist/assets/swift-D7IUmUK8.js +0 -0
- {boneio-1.3.0.dev1 → boneio-1.3.0.dev3}/boneio/webui/frontend-dist/assets/systemverilog-DgMryOEJ.js +0 -0
- {boneio-1.3.0.dev1 → boneio-1.3.0.dev3}/boneio/webui/frontend-dist/assets/tcl-PloMZuKG.js +0 -0
- {boneio-1.3.0.dev1 → boneio-1.3.0.dev3}/boneio/webui/frontend-dist/assets/twig-BfRIq3la.js +0 -0
- {boneio-1.3.0.dev1 → boneio-1.3.0.dev3}/boneio/webui/frontend-dist/assets/typespec-CzxlYoT_.js +0 -0
- {boneio-1.3.0.dev1 → boneio-1.3.0.dev3}/boneio/webui/frontend-dist/assets/vb-BwAE3J76.js +0 -0
- {boneio-1.3.0.dev1 → boneio-1.3.0.dev3}/boneio/webui/frontend-dist/assets/wgsl-B_1kOXbF.js +0 -0
- {boneio-1.3.0.dev1 → boneio-1.3.0.dev3}/boneio/webui/frontend-dist/assets/workbox-window.prod.es5-BIl4cyR9.js +0 -0
- {boneio-1.3.0.dev1 → boneio-1.3.0.dev3}/boneio/webui/frontend-dist/assets/yaml.worker-DBeHcBRc.js +0 -0
- {boneio-1.3.0.dev1 → boneio-1.3.0.dev3}/boneio/webui/frontend-dist/boneio-192.png +0 -0
- {boneio-1.3.0.dev1 → boneio-1.3.0.dev3}/boneio/webui/frontend-dist/boneio-512.png +0 -0
- {boneio-1.3.0.dev1 → boneio-1.3.0.dev3}/boneio/webui/frontend-dist/boneio.svg +0 -0
- {boneio-1.3.0.dev1 → boneio-1.3.0.dev3}/boneio/webui/frontend-dist/boneio_fav.svg +0 -0
- {boneio-1.3.0.dev1 → boneio-1.3.0.dev3}/boneio/webui/frontend-dist/schema/areas.schema.json +0 -0
- {boneio-1.3.0.dev1 → boneio-1.3.0.dev3}/boneio/webui/frontend-dist/schema/can.schema.json +0 -0
- {boneio-1.3.0.dev1 → boneio-1.3.0.dev3}/boneio/webui/frontend-dist/schema/cover.schema.json +0 -0
- {boneio-1.3.0.dev1 → boneio-1.3.0.dev3}/boneio/webui/frontend-dist/schema/dallas.schema.json +0 -0
- {boneio-1.3.0.dev1 → boneio-1.3.0.dev3}/boneio/webui/frontend-dist/schema/ds2482.schema.json +0 -0
- {boneio-1.3.0.dev1 → boneio-1.3.0.dev3}/boneio/webui/frontend-dist/schema/lm75.schema.json +0 -0
- {boneio-1.3.0.dev1 → boneio-1.3.0.dev3}/boneio/webui/frontend-dist/schema/logger.schema.json +0 -0
- {boneio-1.3.0.dev1 → boneio-1.3.0.dev3}/boneio/webui/frontend-dist/schema/mcp23017.schema.json +0 -0
- {boneio-1.3.0.dev1 → boneio-1.3.0.dev3}/boneio/webui/frontend-dist/schema/mcp9808.schema.json +0 -0
- {boneio-1.3.0.dev1 → boneio-1.3.0.dev3}/boneio/webui/frontend-dist/schema/modbus.schema.json +0 -0
- {boneio-1.3.0.dev1 → boneio-1.3.0.dev3}/boneio/webui/frontend-dist/schema/modbus_devices.schema.json +0 -0
- {boneio-1.3.0.dev1 → boneio-1.3.0.dev3}/boneio/webui/frontend-dist/schema/mqtt.schema.json +0 -0
- {boneio-1.3.0.dev1 → boneio-1.3.0.dev3}/boneio/webui/frontend-dist/schema/oled.schema.json +0 -0
- {boneio-1.3.0.dev1 → boneio-1.3.0.dev3}/boneio/webui/frontend-dist/schema/output.schema.json +0 -0
- {boneio-1.3.0.dev1 → boneio-1.3.0.dev3}/boneio/webui/frontend-dist/schema/output_group.schema.json +0 -0
- {boneio-1.3.0.dev1 → boneio-1.3.0.dev3}/boneio/webui/frontend-dist/schema/pca9685.schema.json +0 -0
- {boneio-1.3.0.dev1 → boneio-1.3.0.dev3}/boneio/webui/frontend-dist/schema/pcf8575.schema.json +0 -0
- {boneio-1.3.0.dev1 → boneio-1.3.0.dev3}/boneio/webui/frontend-dist/schema/remote_devices.schema.json +0 -0
- {boneio-1.3.0.dev1 → boneio-1.3.0.dev3}/boneio/webui/frontend-dist/schema/sensor.schema.json +0 -0
- {boneio-1.3.0.dev1 → boneio-1.3.0.dev3}/boneio/webui/frontend-dist/schema/template.schema.json +0 -0
- {boneio-1.3.0.dev1 → boneio-1.3.0.dev3}/boneio/webui/frontend-dist/schema/virtual_energy_sensor.schema.json +0 -0
- {boneio-1.3.0.dev1 → boneio-1.3.0.dev3}/boneio/webui/frontend-dist/schema/web.schema.json +0 -0
- {boneio-1.3.0.dev1 → boneio-1.3.0.dev3}/boneio/webui/frontend-dist/workbox-226dbdbf.js +0 -0
- {boneio-1.3.0.dev1 → boneio-1.3.0.dev3}/boneio/webui/middleware/__init__.py +0 -0
- {boneio-1.3.0.dev1 → boneio-1.3.0.dev3}/boneio/webui/middleware/auth.py +0 -0
- {boneio-1.3.0.dev1 → boneio-1.3.0.dev3}/boneio/webui/routes/__init__.py +0 -0
- {boneio-1.3.0.dev1 → boneio-1.3.0.dev3}/boneio/webui/routes/auth.py +0 -0
- {boneio-1.3.0.dev1 → boneio-1.3.0.dev3}/boneio/webui/routes/caddy.py +0 -0
- {boneio-1.3.0.dev1 → boneio-1.3.0.dev3}/boneio/webui/routes/covers.py +0 -0
- {boneio-1.3.0.dev1 → boneio-1.3.0.dev3}/boneio/webui/routes/modbus.py +0 -0
- {boneio-1.3.0.dev1 → boneio-1.3.0.dev3}/boneio/webui/routes/outputs.py +0 -0
- {boneio-1.3.0.dev1 → boneio-1.3.0.dev3}/boneio/webui/routes/remote_devices.py +0 -0
- {boneio-1.3.0.dev1 → boneio-1.3.0.dev3}/boneio/webui/routes/sensors.py +0 -0
- {boneio-1.3.0.dev1 → boneio-1.3.0.dev3}/boneio/webui/routes/system.py +0 -0
- {boneio-1.3.0.dev1 → boneio-1.3.0.dev3}/boneio/webui/routes/templates.py +0 -0
- {boneio-1.3.0.dev1 → boneio-1.3.0.dev3}/boneio/webui/routes/tools.py +0 -0
- {boneio-1.3.0.dev1 → boneio-1.3.0.dev3}/boneio/webui/schema/areas.schema.json +0 -0
- {boneio-1.3.0.dev1 → boneio-1.3.0.dev3}/boneio/webui/schema/can.schema.json +0 -0
- {boneio-1.3.0.dev1 → boneio-1.3.0.dev3}/boneio/webui/schema/cover.schema.json +0 -0
- {boneio-1.3.0.dev1 → boneio-1.3.0.dev3}/boneio/webui/schema/dallas.schema.json +0 -0
- {boneio-1.3.0.dev1 → boneio-1.3.0.dev3}/boneio/webui/schema/ds2482.schema.json +0 -0
- {boneio-1.3.0.dev1 → boneio-1.3.0.dev3}/boneio/webui/schema/lm75.schema.json +0 -0
- {boneio-1.3.0.dev1 → boneio-1.3.0.dev3}/boneio/webui/schema/logger.schema.json +0 -0
- {boneio-1.3.0.dev1 → boneio-1.3.0.dev3}/boneio/webui/schema/mcp23017.schema.json +0 -0
- {boneio-1.3.0.dev1 → boneio-1.3.0.dev3}/boneio/webui/schema/mcp9808.schema.json +0 -0
- {boneio-1.3.0.dev1 → boneio-1.3.0.dev3}/boneio/webui/schema/modbus.schema.json +0 -0
- {boneio-1.3.0.dev1 → boneio-1.3.0.dev3}/boneio/webui/schema/modbus_devices.schema.json +0 -0
- {boneio-1.3.0.dev1 → boneio-1.3.0.dev3}/boneio/webui/schema/mqtt.schema.json +0 -0
- {boneio-1.3.0.dev1 → boneio-1.3.0.dev3}/boneio/webui/schema/oled.schema.json +0 -0
- {boneio-1.3.0.dev1 → boneio-1.3.0.dev3}/boneio/webui/schema/output.schema.json +0 -0
- {boneio-1.3.0.dev1 → boneio-1.3.0.dev3}/boneio/webui/schema/output_group.schema.json +0 -0
- {boneio-1.3.0.dev1 → boneio-1.3.0.dev3}/boneio/webui/schema/pca9685.schema.json +0 -0
- {boneio-1.3.0.dev1 → boneio-1.3.0.dev3}/boneio/webui/schema/pcf8575.schema.json +0 -0
- {boneio-1.3.0.dev1 → boneio-1.3.0.dev3}/boneio/webui/schema/remote_devices.schema.json +0 -0
- {boneio-1.3.0.dev1 → boneio-1.3.0.dev3}/boneio/webui/schema/sensor.schema.json +0 -0
- {boneio-1.3.0.dev1 → boneio-1.3.0.dev3}/boneio/webui/schema/template.schema.json +0 -0
- {boneio-1.3.0.dev1 → boneio-1.3.0.dev3}/boneio/webui/schema/virtual_energy_sensor.schema.json +0 -0
- {boneio-1.3.0.dev1 → boneio-1.3.0.dev3}/boneio/webui/schema/web.schema.json +0 -0
- {boneio-1.3.0.dev1 → boneio-1.3.0.dev3}/boneio/webui/services/__init__.py +0 -0
- {boneio-1.3.0.dev1 → boneio-1.3.0.dev3}/boneio/webui/services/logs.py +0 -0
- {boneio-1.3.0.dev1 → boneio-1.3.0.dev3}/boneio/webui/websocket_manager.py +0 -0
- {boneio-1.3.0.dev1 → boneio-1.3.0.dev3}/boneio.egg-info/dependency_links.txt +0 -0
- {boneio-1.3.0.dev1 → boneio-1.3.0.dev3}/boneio.egg-info/entry_points.txt +0 -0
- {boneio-1.3.0.dev1 → boneio-1.3.0.dev3}/boneio.egg-info/requires.txt +0 -0
- {boneio-1.3.0.dev1 → boneio-1.3.0.dev3}/boneio.egg-info/top_level.txt +0 -0
- {boneio-1.3.0.dev1 → boneio-1.3.0.dev3}/pyproject.toml +0 -0
- {boneio-1.3.0.dev1 → boneio-1.3.0.dev3}/setup.cfg +0 -0
- {boneio-1.3.0.dev1 → boneio-1.3.0.dev3}/setup.py +0 -0
- {boneio-1.3.0.dev1 → boneio-1.3.0.dev3}/tests/test_py313_compatibility.py +0 -0
|
@@ -0,0 +1,250 @@
|
|
|
1
|
+
# Relay board 48x4A v0.7 - DISCONTINUED
|
|
2
|
+
mcp23017:
|
|
3
|
+
- id: mcp_left
|
|
4
|
+
address: 0x20
|
|
5
|
+
- id: mcp_middle
|
|
6
|
+
address: 0x21
|
|
7
|
+
- id: mcp_right
|
|
8
|
+
address: 0x22
|
|
9
|
+
|
|
10
|
+
output_mapping:
|
|
11
|
+
out_01:
|
|
12
|
+
kind: mcp
|
|
13
|
+
mcp_id: mcp_left
|
|
14
|
+
pin: 7
|
|
15
|
+
output_type: light
|
|
16
|
+
out_02:
|
|
17
|
+
kind: mcp
|
|
18
|
+
mcp_id: mcp_left
|
|
19
|
+
pin: 6
|
|
20
|
+
output_type: light
|
|
21
|
+
out_03:
|
|
22
|
+
kind: mcp
|
|
23
|
+
mcp_id: mcp_left
|
|
24
|
+
pin: 5
|
|
25
|
+
output_type: light
|
|
26
|
+
out_04:
|
|
27
|
+
kind: mcp
|
|
28
|
+
mcp_id: mcp_left
|
|
29
|
+
pin: 4
|
|
30
|
+
output_type: light
|
|
31
|
+
out_05:
|
|
32
|
+
kind: mcp
|
|
33
|
+
mcp_id: mcp_left
|
|
34
|
+
pin: 3
|
|
35
|
+
output_type: light
|
|
36
|
+
out_06:
|
|
37
|
+
kind: mcp
|
|
38
|
+
mcp_id: mcp_left
|
|
39
|
+
pin: 2
|
|
40
|
+
output_type: light
|
|
41
|
+
out_07:
|
|
42
|
+
kind: mcp
|
|
43
|
+
mcp_id: mcp_left
|
|
44
|
+
pin: 1
|
|
45
|
+
output_type: light
|
|
46
|
+
out_08:
|
|
47
|
+
kind: mcp
|
|
48
|
+
mcp_id: mcp_left
|
|
49
|
+
pin: 0
|
|
50
|
+
output_type: light
|
|
51
|
+
out_09:
|
|
52
|
+
kind: mcp
|
|
53
|
+
mcp_id: mcp_middle
|
|
54
|
+
pin: 7
|
|
55
|
+
output_type: light
|
|
56
|
+
out_10:
|
|
57
|
+
kind: mcp
|
|
58
|
+
mcp_id: mcp_middle
|
|
59
|
+
pin: 6
|
|
60
|
+
output_type: light
|
|
61
|
+
out_11:
|
|
62
|
+
kind: mcp
|
|
63
|
+
mcp_id: mcp_middle
|
|
64
|
+
pin: 5
|
|
65
|
+
output_type: light
|
|
66
|
+
out_12:
|
|
67
|
+
kind: mcp
|
|
68
|
+
mcp_id: mcp_middle
|
|
69
|
+
pin: 4
|
|
70
|
+
output_type: light
|
|
71
|
+
out_13:
|
|
72
|
+
kind: mcp
|
|
73
|
+
mcp_id: mcp_middle
|
|
74
|
+
pin: 3
|
|
75
|
+
output_type: light
|
|
76
|
+
out_14:
|
|
77
|
+
kind: mcp
|
|
78
|
+
mcp_id: mcp_middle
|
|
79
|
+
pin: 2
|
|
80
|
+
output_type: light
|
|
81
|
+
out_15:
|
|
82
|
+
kind: mcp
|
|
83
|
+
mcp_id: mcp_middle
|
|
84
|
+
pin: 1
|
|
85
|
+
output_type: light
|
|
86
|
+
out_16:
|
|
87
|
+
kind: mcp
|
|
88
|
+
mcp_id: mcp_middle
|
|
89
|
+
pin: 0
|
|
90
|
+
output_type: light
|
|
91
|
+
out_17:
|
|
92
|
+
kind: mcp
|
|
93
|
+
mcp_id: mcp_right
|
|
94
|
+
pin: 7
|
|
95
|
+
output_type: light
|
|
96
|
+
out_18:
|
|
97
|
+
kind: mcp
|
|
98
|
+
mcp_id: mcp_right
|
|
99
|
+
pin: 6
|
|
100
|
+
output_type: light
|
|
101
|
+
out_19:
|
|
102
|
+
kind: mcp
|
|
103
|
+
mcp_id: mcp_right
|
|
104
|
+
pin: 5
|
|
105
|
+
output_type: light
|
|
106
|
+
out_20:
|
|
107
|
+
kind: mcp
|
|
108
|
+
mcp_id: mcp_right
|
|
109
|
+
pin: 4
|
|
110
|
+
output_type: light
|
|
111
|
+
out_21:
|
|
112
|
+
kind: mcp
|
|
113
|
+
mcp_id: mcp_right
|
|
114
|
+
pin: 3
|
|
115
|
+
output_type: light
|
|
116
|
+
out_22:
|
|
117
|
+
kind: mcp
|
|
118
|
+
mcp_id: mcp_right
|
|
119
|
+
pin: 2
|
|
120
|
+
output_type: light
|
|
121
|
+
out_23:
|
|
122
|
+
kind: mcp
|
|
123
|
+
mcp_id: mcp_right
|
|
124
|
+
pin: 1
|
|
125
|
+
output_type: light
|
|
126
|
+
out_24:
|
|
127
|
+
kind: mcp
|
|
128
|
+
mcp_id: mcp_right
|
|
129
|
+
pin: 0
|
|
130
|
+
output_type: light
|
|
131
|
+
out_25:
|
|
132
|
+
kind: mcp
|
|
133
|
+
mcp_id: mcp_left
|
|
134
|
+
pin: 8
|
|
135
|
+
output_type: light
|
|
136
|
+
out_26:
|
|
137
|
+
kind: mcp
|
|
138
|
+
mcp_id: mcp_left
|
|
139
|
+
pin: 9
|
|
140
|
+
output_type: light
|
|
141
|
+
out_27:
|
|
142
|
+
kind: mcp
|
|
143
|
+
mcp_id: mcp_left
|
|
144
|
+
pin: 10
|
|
145
|
+
output_type: light
|
|
146
|
+
out_28:
|
|
147
|
+
kind: mcp
|
|
148
|
+
mcp_id: mcp_left
|
|
149
|
+
pin: 11
|
|
150
|
+
output_type: light
|
|
151
|
+
out_29:
|
|
152
|
+
kind: mcp
|
|
153
|
+
mcp_id: mcp_left
|
|
154
|
+
pin: 12
|
|
155
|
+
output_type: light
|
|
156
|
+
out_30:
|
|
157
|
+
kind: mcp
|
|
158
|
+
mcp_id: mcp_left
|
|
159
|
+
pin: 13
|
|
160
|
+
output_type: light
|
|
161
|
+
out_31:
|
|
162
|
+
kind: mcp
|
|
163
|
+
mcp_id: mcp_left
|
|
164
|
+
pin: 14
|
|
165
|
+
output_type: light
|
|
166
|
+
out_32:
|
|
167
|
+
kind: mcp
|
|
168
|
+
mcp_id: mcp_left
|
|
169
|
+
pin: 15
|
|
170
|
+
output_type: light
|
|
171
|
+
out_33:
|
|
172
|
+
kind: mcp
|
|
173
|
+
mcp_id: mcp_middle
|
|
174
|
+
pin: 8
|
|
175
|
+
output_type: light
|
|
176
|
+
out_34:
|
|
177
|
+
kind: mcp
|
|
178
|
+
mcp_id: mcp_middle
|
|
179
|
+
pin: 9
|
|
180
|
+
output_type: light
|
|
181
|
+
out_35:
|
|
182
|
+
kind: mcp
|
|
183
|
+
mcp_id: mcp_middle
|
|
184
|
+
pin: 10
|
|
185
|
+
output_type: light
|
|
186
|
+
out_36:
|
|
187
|
+
kind: mcp
|
|
188
|
+
mcp_id: mcp_middle
|
|
189
|
+
pin: 11
|
|
190
|
+
output_type: light
|
|
191
|
+
out_37:
|
|
192
|
+
kind: mcp
|
|
193
|
+
mcp_id: mcp_middle
|
|
194
|
+
pin: 12
|
|
195
|
+
output_type: light
|
|
196
|
+
out_38:
|
|
197
|
+
kind: mcp
|
|
198
|
+
mcp_id: mcp_middle
|
|
199
|
+
pin: 13
|
|
200
|
+
output_type: light
|
|
201
|
+
out_39:
|
|
202
|
+
kind: mcp
|
|
203
|
+
mcp_id: mcp_middle
|
|
204
|
+
pin: 14
|
|
205
|
+
output_type: light
|
|
206
|
+
out_40:
|
|
207
|
+
kind: mcp
|
|
208
|
+
mcp_id: mcp_middle
|
|
209
|
+
pin: 15
|
|
210
|
+
output_type: light
|
|
211
|
+
out_41:
|
|
212
|
+
kind: mcp
|
|
213
|
+
mcp_id: mcp_right
|
|
214
|
+
pin: 8
|
|
215
|
+
output_type: light
|
|
216
|
+
out_42:
|
|
217
|
+
kind: mcp
|
|
218
|
+
mcp_id: mcp_right
|
|
219
|
+
pin: 9
|
|
220
|
+
output_type: light
|
|
221
|
+
out_43:
|
|
222
|
+
kind: mcp
|
|
223
|
+
mcp_id: mcp_right
|
|
224
|
+
pin: 10
|
|
225
|
+
output_type: light
|
|
226
|
+
out_44:
|
|
227
|
+
kind: mcp
|
|
228
|
+
mcp_id: mcp_right
|
|
229
|
+
pin: 11
|
|
230
|
+
output_type: light
|
|
231
|
+
out_45:
|
|
232
|
+
kind: mcp
|
|
233
|
+
mcp_id: mcp_right
|
|
234
|
+
pin: 12
|
|
235
|
+
output_type: light
|
|
236
|
+
out_46:
|
|
237
|
+
kind: mcp
|
|
238
|
+
mcp_id: mcp_right
|
|
239
|
+
pin: 13
|
|
240
|
+
output_type: light
|
|
241
|
+
out_47:
|
|
242
|
+
kind: mcp
|
|
243
|
+
mcp_id: mcp_right
|
|
244
|
+
pin: 14
|
|
245
|
+
output_type: light
|
|
246
|
+
out_48:
|
|
247
|
+
kind: mcp
|
|
248
|
+
mcp_id: mcp_right
|
|
249
|
+
pin: 15
|
|
250
|
+
output_type: light
|
|
@@ -0,0 +1,250 @@
|
|
|
1
|
+
# Relay board 48x4A v0.8 - DISCONTINUED
|
|
2
|
+
mcp23017:
|
|
3
|
+
- id: mcp_left
|
|
4
|
+
address: 0x23
|
|
5
|
+
- id: mcp_middle
|
|
6
|
+
address: 0x24
|
|
7
|
+
- id: mcp_right
|
|
8
|
+
address: 0x25
|
|
9
|
+
|
|
10
|
+
output_mapping:
|
|
11
|
+
out_01:
|
|
12
|
+
kind: mcp
|
|
13
|
+
mcp_id: mcp_left
|
|
14
|
+
pin: 7
|
|
15
|
+
output_type: light
|
|
16
|
+
out_02:
|
|
17
|
+
kind: mcp
|
|
18
|
+
mcp_id: mcp_left
|
|
19
|
+
pin: 6
|
|
20
|
+
output_type: light
|
|
21
|
+
out_03:
|
|
22
|
+
kind: mcp
|
|
23
|
+
mcp_id: mcp_left
|
|
24
|
+
pin: 5
|
|
25
|
+
output_type: light
|
|
26
|
+
out_04:
|
|
27
|
+
kind: mcp
|
|
28
|
+
mcp_id: mcp_left
|
|
29
|
+
pin: 4
|
|
30
|
+
output_type: light
|
|
31
|
+
out_05:
|
|
32
|
+
kind: mcp
|
|
33
|
+
mcp_id: mcp_left
|
|
34
|
+
pin: 3
|
|
35
|
+
output_type: light
|
|
36
|
+
out_06:
|
|
37
|
+
kind: mcp
|
|
38
|
+
mcp_id: mcp_left
|
|
39
|
+
pin: 2
|
|
40
|
+
output_type: light
|
|
41
|
+
out_07:
|
|
42
|
+
kind: mcp
|
|
43
|
+
mcp_id: mcp_left
|
|
44
|
+
pin: 1
|
|
45
|
+
output_type: light
|
|
46
|
+
out_08:
|
|
47
|
+
kind: mcp
|
|
48
|
+
mcp_id: mcp_left
|
|
49
|
+
pin: 0
|
|
50
|
+
output_type: light
|
|
51
|
+
out_09:
|
|
52
|
+
kind: mcp
|
|
53
|
+
mcp_id: mcp_middle
|
|
54
|
+
pin: 7
|
|
55
|
+
output_type: light
|
|
56
|
+
out_10:
|
|
57
|
+
kind: mcp
|
|
58
|
+
mcp_id: mcp_middle
|
|
59
|
+
pin: 6
|
|
60
|
+
output_type: light
|
|
61
|
+
out_11:
|
|
62
|
+
kind: mcp
|
|
63
|
+
mcp_id: mcp_middle
|
|
64
|
+
pin: 5
|
|
65
|
+
output_type: light
|
|
66
|
+
out_12:
|
|
67
|
+
kind: mcp
|
|
68
|
+
mcp_id: mcp_middle
|
|
69
|
+
pin: 4
|
|
70
|
+
output_type: light
|
|
71
|
+
out_13:
|
|
72
|
+
kind: mcp
|
|
73
|
+
mcp_id: mcp_middle
|
|
74
|
+
pin: 3
|
|
75
|
+
output_type: light
|
|
76
|
+
out_14:
|
|
77
|
+
kind: mcp
|
|
78
|
+
mcp_id: mcp_middle
|
|
79
|
+
pin: 2
|
|
80
|
+
output_type: light
|
|
81
|
+
out_15:
|
|
82
|
+
kind: mcp
|
|
83
|
+
mcp_id: mcp_middle
|
|
84
|
+
pin: 1
|
|
85
|
+
output_type: light
|
|
86
|
+
out_16:
|
|
87
|
+
kind: mcp
|
|
88
|
+
mcp_id: mcp_middle
|
|
89
|
+
pin: 0
|
|
90
|
+
output_type: light
|
|
91
|
+
out_17:
|
|
92
|
+
kind: mcp
|
|
93
|
+
mcp_id: mcp_right
|
|
94
|
+
pin: 7
|
|
95
|
+
output_type: light
|
|
96
|
+
out_18:
|
|
97
|
+
kind: mcp
|
|
98
|
+
mcp_id: mcp_right
|
|
99
|
+
pin: 6
|
|
100
|
+
output_type: light
|
|
101
|
+
out_19:
|
|
102
|
+
kind: mcp
|
|
103
|
+
mcp_id: mcp_right
|
|
104
|
+
pin: 5
|
|
105
|
+
output_type: light
|
|
106
|
+
out_20:
|
|
107
|
+
kind: mcp
|
|
108
|
+
mcp_id: mcp_right
|
|
109
|
+
pin: 4
|
|
110
|
+
output_type: light
|
|
111
|
+
out_21:
|
|
112
|
+
kind: mcp
|
|
113
|
+
mcp_id: mcp_right
|
|
114
|
+
pin: 3
|
|
115
|
+
output_type: light
|
|
116
|
+
out_22:
|
|
117
|
+
kind: mcp
|
|
118
|
+
mcp_id: mcp_right
|
|
119
|
+
pin: 2
|
|
120
|
+
output_type: light
|
|
121
|
+
out_23:
|
|
122
|
+
kind: mcp
|
|
123
|
+
mcp_id: mcp_right
|
|
124
|
+
pin: 1
|
|
125
|
+
output_type: light
|
|
126
|
+
out_24:
|
|
127
|
+
kind: mcp
|
|
128
|
+
mcp_id: mcp_right
|
|
129
|
+
pin: 0
|
|
130
|
+
output_type: light
|
|
131
|
+
out_25:
|
|
132
|
+
kind: mcp
|
|
133
|
+
mcp_id: mcp_left
|
|
134
|
+
pin: 8
|
|
135
|
+
output_type: light
|
|
136
|
+
out_26:
|
|
137
|
+
kind: mcp
|
|
138
|
+
mcp_id: mcp_left
|
|
139
|
+
pin: 9
|
|
140
|
+
output_type: light
|
|
141
|
+
out_27:
|
|
142
|
+
kind: mcp
|
|
143
|
+
mcp_id: mcp_left
|
|
144
|
+
pin: 10
|
|
145
|
+
output_type: light
|
|
146
|
+
out_28:
|
|
147
|
+
kind: mcp
|
|
148
|
+
mcp_id: mcp_left
|
|
149
|
+
pin: 11
|
|
150
|
+
output_type: light
|
|
151
|
+
out_29:
|
|
152
|
+
kind: mcp
|
|
153
|
+
mcp_id: mcp_left
|
|
154
|
+
pin: 12
|
|
155
|
+
output_type: light
|
|
156
|
+
out_30:
|
|
157
|
+
kind: mcp
|
|
158
|
+
mcp_id: mcp_left
|
|
159
|
+
pin: 13
|
|
160
|
+
output_type: light
|
|
161
|
+
out_31:
|
|
162
|
+
kind: mcp
|
|
163
|
+
mcp_id: mcp_left
|
|
164
|
+
pin: 14
|
|
165
|
+
output_type: light
|
|
166
|
+
out_32:
|
|
167
|
+
kind: mcp
|
|
168
|
+
mcp_id: mcp_left
|
|
169
|
+
pin: 15
|
|
170
|
+
output_type: light
|
|
171
|
+
out_33:
|
|
172
|
+
kind: mcp
|
|
173
|
+
mcp_id: mcp_middle
|
|
174
|
+
pin: 8
|
|
175
|
+
output_type: light
|
|
176
|
+
out_34:
|
|
177
|
+
kind: mcp
|
|
178
|
+
mcp_id: mcp_middle
|
|
179
|
+
pin: 9
|
|
180
|
+
output_type: light
|
|
181
|
+
out_35:
|
|
182
|
+
kind: mcp
|
|
183
|
+
mcp_id: mcp_middle
|
|
184
|
+
pin: 10
|
|
185
|
+
output_type: light
|
|
186
|
+
out_36:
|
|
187
|
+
kind: mcp
|
|
188
|
+
mcp_id: mcp_middle
|
|
189
|
+
pin: 11
|
|
190
|
+
output_type: light
|
|
191
|
+
out_37:
|
|
192
|
+
kind: mcp
|
|
193
|
+
mcp_id: mcp_middle
|
|
194
|
+
pin: 12
|
|
195
|
+
output_type: light
|
|
196
|
+
out_38:
|
|
197
|
+
kind: mcp
|
|
198
|
+
mcp_id: mcp_middle
|
|
199
|
+
pin: 13
|
|
200
|
+
output_type: light
|
|
201
|
+
out_39:
|
|
202
|
+
kind: mcp
|
|
203
|
+
mcp_id: mcp_middle
|
|
204
|
+
pin: 14
|
|
205
|
+
output_type: light
|
|
206
|
+
out_40:
|
|
207
|
+
kind: mcp
|
|
208
|
+
mcp_id: mcp_middle
|
|
209
|
+
pin: 15
|
|
210
|
+
output_type: light
|
|
211
|
+
out_41:
|
|
212
|
+
kind: mcp
|
|
213
|
+
mcp_id: mcp_right
|
|
214
|
+
pin: 8
|
|
215
|
+
output_type: light
|
|
216
|
+
out_42:
|
|
217
|
+
kind: mcp
|
|
218
|
+
mcp_id: mcp_right
|
|
219
|
+
pin: 9
|
|
220
|
+
output_type: light
|
|
221
|
+
out_43:
|
|
222
|
+
kind: mcp
|
|
223
|
+
mcp_id: mcp_right
|
|
224
|
+
pin: 10
|
|
225
|
+
output_type: light
|
|
226
|
+
out_44:
|
|
227
|
+
kind: mcp
|
|
228
|
+
mcp_id: mcp_right
|
|
229
|
+
pin: 11
|
|
230
|
+
output_type: light
|
|
231
|
+
out_45:
|
|
232
|
+
kind: mcp
|
|
233
|
+
mcp_id: mcp_right
|
|
234
|
+
pin: 12
|
|
235
|
+
output_type: light
|
|
236
|
+
out_46:
|
|
237
|
+
kind: mcp
|
|
238
|
+
mcp_id: mcp_right
|
|
239
|
+
pin: 13
|
|
240
|
+
output_type: light
|
|
241
|
+
out_47:
|
|
242
|
+
kind: mcp
|
|
243
|
+
mcp_id: mcp_right
|
|
244
|
+
pin: 14
|
|
245
|
+
output_type: light
|
|
246
|
+
out_48:
|
|
247
|
+
kind: mcp
|
|
248
|
+
mcp_id: mcp_right
|
|
249
|
+
pin: 15
|
|
250
|
+
output_type: light
|
|
@@ -2,6 +2,9 @@
|
|
|
2
2
|
|
|
3
3
|
from __future__ import annotations
|
|
4
4
|
|
|
5
|
+
import time as _boot_time
|
|
6
|
+
_BOOT_T0 = _boot_time.monotonic()
|
|
7
|
+
|
|
5
8
|
import logging
|
|
6
9
|
import os
|
|
7
10
|
|
|
@@ -11,21 +14,13 @@ import argparse
|
|
|
11
14
|
import asyncio
|
|
12
15
|
import sys
|
|
13
16
|
|
|
14
|
-
|
|
17
|
+
print(f"[BOOT TIMING] stdlib imports: {_boot_time.monotonic() - _BOOT_T0:.2f}s", flush=True)
|
|
15
18
|
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
from boneio.core.utils.logger import configure_logger, setup_logging
|
|
20
|
-
from boneio.exceptions import (
|
|
21
|
-
ConfigurationException,
|
|
22
|
-
RestartRequestException,
|
|
23
|
-
)
|
|
24
|
-
# Lazy import modbus CLI to save ~0.35s on startup for 'run' command
|
|
25
|
-
# from boneio.modbus.cli import async_run_modbus_get, async_run_modbus_search, async_run_modbus_set
|
|
26
|
-
# from boneio.modbus.client import VALUE_TYPES
|
|
27
|
-
from boneio.runner import async_run
|
|
19
|
+
# All boneio imports are lazy (inside run/run_modbus_command) to minimize
|
|
20
|
+
# startup time. Only version is imported here for --version CLI flag.
|
|
21
|
+
_t_ver = _boot_time.monotonic()
|
|
28
22
|
from boneio.version import __version__
|
|
23
|
+
print(f"[BOOT TIMING] ALL imports: {_boot_time.monotonic() - _BOOT_T0:.2f}s", flush=True)
|
|
29
24
|
|
|
30
25
|
TASK_CANCELATION_TIMEOUT = 1
|
|
31
26
|
|
|
@@ -34,6 +29,7 @@ _LOGGER = logging.getLogger(__name__)
|
|
|
34
29
|
|
|
35
30
|
def get_arguments() -> argparse.Namespace:
|
|
36
31
|
"""Get parsed passed in arguments."""
|
|
32
|
+
from boneio.const import ACTION
|
|
37
33
|
|
|
38
34
|
parser = argparse.ArgumentParser(
|
|
39
35
|
description="boneIO app for BeagleBone Black.",
|
|
@@ -208,14 +204,44 @@ def run(
|
|
|
208
204
|
config: str, debug: int, mqttusername: str = "", mqttpassword: str = ""
|
|
209
205
|
) -> int:
|
|
210
206
|
"""Run BoneIO."""
|
|
207
|
+
import time as _time
|
|
208
|
+
from yaml import MarkedYAMLError
|
|
209
|
+
from boneio.core.config import load_config_from_file
|
|
210
|
+
from boneio.core.events import GracefulExit
|
|
211
|
+
from boneio.core.utils.logger import configure_logger, setup_logging
|
|
212
|
+
from boneio.exceptions import ConfigurationException
|
|
213
|
+
_t0 = _time.monotonic()
|
|
211
214
|
setup_logging(debug_level=debug)
|
|
212
215
|
_LOGGER.info("BoneIO %s starting.", __version__)
|
|
216
|
+
_LOGGER.debug("[STARTUP TIMING] after setup_logging: %.2fs", _time.monotonic() - _t0)
|
|
213
217
|
try:
|
|
218
|
+
_t1 = _time.monotonic()
|
|
214
219
|
_config = load_config_from_file(config_file=config)
|
|
220
|
+
_LOGGER.debug("[STARTUP TIMING] load_config_from_file: %.2fs", _time.monotonic() - _t1)
|
|
215
221
|
if not _config:
|
|
216
222
|
_LOGGER.error("Config not loaded. Exiting.")
|
|
217
223
|
return 1
|
|
218
224
|
configure_logger(log_config=_config.get("logger") or {}, debug=debug)
|
|
225
|
+
# Granular timing of runner sub-imports to find the bottleneck
|
|
226
|
+
_t_a = _time.monotonic()
|
|
227
|
+
from boneio.const import ACTION
|
|
228
|
+
_LOGGER.debug("[RUNNER IMPORT] boneio.const: %.2fs", _time.monotonic() - _t_a)
|
|
229
|
+
_t_a = _time.monotonic()
|
|
230
|
+
from boneio.core.cloud import CloudRegistration
|
|
231
|
+
_LOGGER.debug("[RUNNER IMPORT] boneio.core.cloud: %.2fs", _time.monotonic() - _t_a)
|
|
232
|
+
_t_a = _time.monotonic()
|
|
233
|
+
from boneio.core.manager import Manager
|
|
234
|
+
_LOGGER.debug("[RUNNER IMPORT] boneio.core.manager: %.2fs", _time.monotonic() - _t_a)
|
|
235
|
+
_t_a = _time.monotonic()
|
|
236
|
+
from boneio.core.messaging import MQTTClient
|
|
237
|
+
_LOGGER.debug("[RUNNER IMPORT] boneio.core.messaging: %.2fs", _time.monotonic() - _t_a)
|
|
238
|
+
_t_a = _time.monotonic()
|
|
239
|
+
from boneio.hardware.gpio.input import get_gpio_manager
|
|
240
|
+
_LOGGER.debug("[RUNNER IMPORT] boneio.hardware.gpio.input: %.2fs", _time.monotonic() - _t_a)
|
|
241
|
+
_t_a = _time.monotonic()
|
|
242
|
+
from boneio.runner import async_run
|
|
243
|
+
_LOGGER.debug("[RUNNER IMPORT] boneio.runner (rest): %.2fs", _time.monotonic() - _t_a)
|
|
244
|
+
_LOGGER.debug("[STARTUP TIMING] total before async_run: %.2fs", _time.monotonic() - _t0)
|
|
219
245
|
ret = asyncio.run(
|
|
220
246
|
async_run(
|
|
221
247
|
config=_config,
|
|
@@ -241,13 +267,15 @@ def run_modbus_command(
|
|
|
241
267
|
args: argparse.Namespace,
|
|
242
268
|
) -> int:
|
|
243
269
|
"""Run BoneIO."""
|
|
244
|
-
|
|
270
|
+
from yaml import MarkedYAMLError
|
|
271
|
+
from boneio.core.events import GracefulExit
|
|
272
|
+
from boneio.core.utils.logger import configure_logger, setup_logging
|
|
273
|
+
from boneio.exceptions import ConfigurationException, RestartRequestException
|
|
245
274
|
from boneio.modbus.cli import (
|
|
246
275
|
async_run_modbus_get,
|
|
247
276
|
async_run_modbus_search,
|
|
248
277
|
async_run_modbus_set,
|
|
249
278
|
)
|
|
250
|
-
|
|
251
279
|
setup_logging(debug_level=args.debug)
|
|
252
280
|
_LOGGER.info("BoneIO %s starting.", __version__)
|
|
253
281
|
try:
|