├── .editorconfig ├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md └── workflows │ └── generate-md-file.yml ├── .gitignore ├── .prettierrc ├── CONTRIBUTING.md ├── HTTP POST - Watts to Thingspeak ├── LICENSE ├── README.md ├── SHELLY_MJS.md ├── TELEGRAM-BOT.md ├── activation-switch.js ├── advanced-load-shedding.js ├── ble-PTM215B-button.js ├── ble-aranet2.js ├── ble-aranet4.js ├── ble-bparasite.js ├── ble-events-handler.js ├── ble-miflora-xiaomi-hhccjcy01.js ├── ble-mopeka.js ├── ble-pasv-mqtt-gw.js ├── ble-ruuvi.js ├── ble-shelly-blu-remote-control-cover.js ├── ble-shelly-blu.js ├── ble-shelly-btn-gateway-for-other-devices.js ├── ble-shelly-btn.js ├── ble-shelly-dw.js ├── ble-shelly-motion.js ├── ble-shelly-scanner.js ├── blu-assistant-scripts ├── README.md ├── add-to-wifi.js ├── bthome-webhook.js ├── config-mqtt.js ├── create-demo-virtual-components.js ├── delete-all-vcomponents.js ├── factory-reset-device.js ├── full-config.js ├── gen3-update-matter.js └── print-label-online.js ├── consume-limited-power.js ├── control-ha-light-entity-with-boolean.js ├── cover-control-weather.js ├── cover-scheduled-event-handlers.js ├── cycle-switch.js ├── double-press-double-switch.js ├── double-press-switch.js ├── examples-manifest.json ├── failure-monitor.js ├── howto ├── input-event.js ├── input-read.js ├── switch-event.js ├── switch-notifications.js └── switch-read.js ├── http-handlers.js ├── http-notify-on-power-threshold.js ├── hue-lights-control.js ├── idle-alert.js ├── ip-assignment-watchdog.js ├── load-shedding.js ├── lora-covercontrol-receiver ├── README.md ├── lora-covercontrol-bthome-emitter.js └── lora-covercontrol-receiver.js ├── lora-covercontrol-sender ├── README.md ├── lora-covercontrol-listener.js └── lora-covercontrol-sender.js ├── lora-encrypted-communication ├── README.md ├── lora-receive-encrypted-msg.js └── lora-send-encrypted-msg.js ├── lora-lightcontrol-receiver ├── README.md └── lora-lightcontrol-receiver.js ├── lora-lightcontrol-sender ├── README.md ├── lora-lightcontrol-initiator.js └── lora-lightcontrol-sender.js ├── lora-receive-no-encryption.js ├── lora-send-no-encryption.js ├── monitor-production.js ├── mqtt-announce-control.js ├── mqtt-announce.js ├── mqtt-discovery-sensors.js ├── mqtt-discovery.js ├── mqtt-switch-status-announce.js ├── mqtt-switch-status.js ├── n-way-dimmer.js ├── ntc-conversion.js ├── objects.js ├── power-outages.js ├── power-threshold-limit-output.js ├── precipitation-irrigation.js ├── prometheus-grafana-example-dashboard.json ├── prometheus.js ├── push-pushed.js ├── register-scheduled-script.js ├── remoterpc.js ├── restore-schedule.js ├── router-watchdog.js ├── scene.js ├── script-temperature-adjust.js ├── shelly1p-mqtt-autodiscover.js ├── shelly2p-domo-coverfix-v2.js ├── shelly2p-domo-coverfix.js ├── snippets └── snippets.json ├── telegram-interaction.js ├── test-scene.js ├── tools ├── json-to-md.py ├── put_script.py └── upload-script.sh ├── turn-on-weather.js ├── universal-blu-to-mqtt.js ├── victron-mppt-solar-controller.shelly.js └── wifi-provision.js /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALLTERCO/shelly-script-examples/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALLTERCO/shelly-script-examples/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALLTERCO/shelly-script-examples/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/workflows/generate-md-file.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALLTERCO/shelly-script-examples/HEAD/.github/workflows/generate-md-file.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | \.DS* 2 | *.swp 3 | /.idea/ 4 | -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALLTERCO/shelly-script-examples/HEAD/.prettierrc -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALLTERCO/shelly-script-examples/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /HTTP POST - Watts to Thingspeak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALLTERCO/shelly-script-examples/HEAD/HTTP POST - Watts to Thingspeak -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALLTERCO/shelly-script-examples/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALLTERCO/shelly-script-examples/HEAD/README.md -------------------------------------------------------------------------------- /SHELLY_MJS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALLTERCO/shelly-script-examples/HEAD/SHELLY_MJS.md -------------------------------------------------------------------------------- /TELEGRAM-BOT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALLTERCO/shelly-script-examples/HEAD/TELEGRAM-BOT.md -------------------------------------------------------------------------------- /activation-switch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALLTERCO/shelly-script-examples/HEAD/activation-switch.js -------------------------------------------------------------------------------- /advanced-load-shedding.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALLTERCO/shelly-script-examples/HEAD/advanced-load-shedding.js -------------------------------------------------------------------------------- /ble-PTM215B-button.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALLTERCO/shelly-script-examples/HEAD/ble-PTM215B-button.js -------------------------------------------------------------------------------- /ble-aranet2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALLTERCO/shelly-script-examples/HEAD/ble-aranet2.js -------------------------------------------------------------------------------- /ble-aranet4.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALLTERCO/shelly-script-examples/HEAD/ble-aranet4.js -------------------------------------------------------------------------------- /ble-bparasite.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALLTERCO/shelly-script-examples/HEAD/ble-bparasite.js -------------------------------------------------------------------------------- /ble-events-handler.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALLTERCO/shelly-script-examples/HEAD/ble-events-handler.js -------------------------------------------------------------------------------- /ble-miflora-xiaomi-hhccjcy01.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALLTERCO/shelly-script-examples/HEAD/ble-miflora-xiaomi-hhccjcy01.js -------------------------------------------------------------------------------- /ble-mopeka.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALLTERCO/shelly-script-examples/HEAD/ble-mopeka.js -------------------------------------------------------------------------------- /ble-pasv-mqtt-gw.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALLTERCO/shelly-script-examples/HEAD/ble-pasv-mqtt-gw.js -------------------------------------------------------------------------------- /ble-ruuvi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALLTERCO/shelly-script-examples/HEAD/ble-ruuvi.js -------------------------------------------------------------------------------- /ble-shelly-blu-remote-control-cover.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALLTERCO/shelly-script-examples/HEAD/ble-shelly-blu-remote-control-cover.js -------------------------------------------------------------------------------- /ble-shelly-blu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALLTERCO/shelly-script-examples/HEAD/ble-shelly-blu.js -------------------------------------------------------------------------------- /ble-shelly-btn-gateway-for-other-devices.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALLTERCO/shelly-script-examples/HEAD/ble-shelly-btn-gateway-for-other-devices.js -------------------------------------------------------------------------------- /ble-shelly-btn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALLTERCO/shelly-script-examples/HEAD/ble-shelly-btn.js -------------------------------------------------------------------------------- /ble-shelly-dw.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALLTERCO/shelly-script-examples/HEAD/ble-shelly-dw.js -------------------------------------------------------------------------------- /ble-shelly-motion.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALLTERCO/shelly-script-examples/HEAD/ble-shelly-motion.js -------------------------------------------------------------------------------- /ble-shelly-scanner.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALLTERCO/shelly-script-examples/HEAD/ble-shelly-scanner.js -------------------------------------------------------------------------------- /blu-assistant-scripts/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALLTERCO/shelly-script-examples/HEAD/blu-assistant-scripts/README.md -------------------------------------------------------------------------------- /blu-assistant-scripts/add-to-wifi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALLTERCO/shelly-script-examples/HEAD/blu-assistant-scripts/add-to-wifi.js -------------------------------------------------------------------------------- /blu-assistant-scripts/bthome-webhook.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALLTERCO/shelly-script-examples/HEAD/blu-assistant-scripts/bthome-webhook.js -------------------------------------------------------------------------------- /blu-assistant-scripts/config-mqtt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALLTERCO/shelly-script-examples/HEAD/blu-assistant-scripts/config-mqtt.js -------------------------------------------------------------------------------- /blu-assistant-scripts/create-demo-virtual-components.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALLTERCO/shelly-script-examples/HEAD/blu-assistant-scripts/create-demo-virtual-components.js -------------------------------------------------------------------------------- /blu-assistant-scripts/delete-all-vcomponents.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALLTERCO/shelly-script-examples/HEAD/blu-assistant-scripts/delete-all-vcomponents.js -------------------------------------------------------------------------------- /blu-assistant-scripts/factory-reset-device.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALLTERCO/shelly-script-examples/HEAD/blu-assistant-scripts/factory-reset-device.js -------------------------------------------------------------------------------- /blu-assistant-scripts/full-config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALLTERCO/shelly-script-examples/HEAD/blu-assistant-scripts/full-config.js -------------------------------------------------------------------------------- /blu-assistant-scripts/gen3-update-matter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALLTERCO/shelly-script-examples/HEAD/blu-assistant-scripts/gen3-update-matter.js -------------------------------------------------------------------------------- /blu-assistant-scripts/print-label-online.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALLTERCO/shelly-script-examples/HEAD/blu-assistant-scripts/print-label-online.js -------------------------------------------------------------------------------- /consume-limited-power.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALLTERCO/shelly-script-examples/HEAD/consume-limited-power.js -------------------------------------------------------------------------------- /control-ha-light-entity-with-boolean.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALLTERCO/shelly-script-examples/HEAD/control-ha-light-entity-with-boolean.js -------------------------------------------------------------------------------- /cover-control-weather.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALLTERCO/shelly-script-examples/HEAD/cover-control-weather.js -------------------------------------------------------------------------------- /cover-scheduled-event-handlers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALLTERCO/shelly-script-examples/HEAD/cover-scheduled-event-handlers.js -------------------------------------------------------------------------------- /cycle-switch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALLTERCO/shelly-script-examples/HEAD/cycle-switch.js -------------------------------------------------------------------------------- /double-press-double-switch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALLTERCO/shelly-script-examples/HEAD/double-press-double-switch.js -------------------------------------------------------------------------------- /double-press-switch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALLTERCO/shelly-script-examples/HEAD/double-press-switch.js -------------------------------------------------------------------------------- /examples-manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALLTERCO/shelly-script-examples/HEAD/examples-manifest.json -------------------------------------------------------------------------------- /failure-monitor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALLTERCO/shelly-script-examples/HEAD/failure-monitor.js -------------------------------------------------------------------------------- /howto/input-event.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALLTERCO/shelly-script-examples/HEAD/howto/input-event.js -------------------------------------------------------------------------------- /howto/input-read.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALLTERCO/shelly-script-examples/HEAD/howto/input-read.js -------------------------------------------------------------------------------- /howto/switch-event.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALLTERCO/shelly-script-examples/HEAD/howto/switch-event.js -------------------------------------------------------------------------------- /howto/switch-notifications.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALLTERCO/shelly-script-examples/HEAD/howto/switch-notifications.js -------------------------------------------------------------------------------- /howto/switch-read.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALLTERCO/shelly-script-examples/HEAD/howto/switch-read.js -------------------------------------------------------------------------------- /http-handlers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALLTERCO/shelly-script-examples/HEAD/http-handlers.js -------------------------------------------------------------------------------- /http-notify-on-power-threshold.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALLTERCO/shelly-script-examples/HEAD/http-notify-on-power-threshold.js -------------------------------------------------------------------------------- /hue-lights-control.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALLTERCO/shelly-script-examples/HEAD/hue-lights-control.js -------------------------------------------------------------------------------- /idle-alert.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALLTERCO/shelly-script-examples/HEAD/idle-alert.js -------------------------------------------------------------------------------- /ip-assignment-watchdog.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALLTERCO/shelly-script-examples/HEAD/ip-assignment-watchdog.js -------------------------------------------------------------------------------- /load-shedding.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALLTERCO/shelly-script-examples/HEAD/load-shedding.js -------------------------------------------------------------------------------- /lora-covercontrol-receiver/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALLTERCO/shelly-script-examples/HEAD/lora-covercontrol-receiver/README.md -------------------------------------------------------------------------------- /lora-covercontrol-receiver/lora-covercontrol-bthome-emitter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALLTERCO/shelly-script-examples/HEAD/lora-covercontrol-receiver/lora-covercontrol-bthome-emitter.js -------------------------------------------------------------------------------- /lora-covercontrol-receiver/lora-covercontrol-receiver.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALLTERCO/shelly-script-examples/HEAD/lora-covercontrol-receiver/lora-covercontrol-receiver.js -------------------------------------------------------------------------------- /lora-covercontrol-sender/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALLTERCO/shelly-script-examples/HEAD/lora-covercontrol-sender/README.md -------------------------------------------------------------------------------- /lora-covercontrol-sender/lora-covercontrol-listener.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALLTERCO/shelly-script-examples/HEAD/lora-covercontrol-sender/lora-covercontrol-listener.js -------------------------------------------------------------------------------- /lora-covercontrol-sender/lora-covercontrol-sender.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALLTERCO/shelly-script-examples/HEAD/lora-covercontrol-sender/lora-covercontrol-sender.js -------------------------------------------------------------------------------- /lora-encrypted-communication/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALLTERCO/shelly-script-examples/HEAD/lora-encrypted-communication/README.md -------------------------------------------------------------------------------- /lora-encrypted-communication/lora-receive-encrypted-msg.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALLTERCO/shelly-script-examples/HEAD/lora-encrypted-communication/lora-receive-encrypted-msg.js -------------------------------------------------------------------------------- /lora-encrypted-communication/lora-send-encrypted-msg.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALLTERCO/shelly-script-examples/HEAD/lora-encrypted-communication/lora-send-encrypted-msg.js -------------------------------------------------------------------------------- /lora-lightcontrol-receiver/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALLTERCO/shelly-script-examples/HEAD/lora-lightcontrol-receiver/README.md -------------------------------------------------------------------------------- /lora-lightcontrol-receiver/lora-lightcontrol-receiver.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALLTERCO/shelly-script-examples/HEAD/lora-lightcontrol-receiver/lora-lightcontrol-receiver.js -------------------------------------------------------------------------------- /lora-lightcontrol-sender/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALLTERCO/shelly-script-examples/HEAD/lora-lightcontrol-sender/README.md -------------------------------------------------------------------------------- /lora-lightcontrol-sender/lora-lightcontrol-initiator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALLTERCO/shelly-script-examples/HEAD/lora-lightcontrol-sender/lora-lightcontrol-initiator.js -------------------------------------------------------------------------------- /lora-lightcontrol-sender/lora-lightcontrol-sender.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALLTERCO/shelly-script-examples/HEAD/lora-lightcontrol-sender/lora-lightcontrol-sender.js -------------------------------------------------------------------------------- /lora-receive-no-encryption.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALLTERCO/shelly-script-examples/HEAD/lora-receive-no-encryption.js -------------------------------------------------------------------------------- /lora-send-no-encryption.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALLTERCO/shelly-script-examples/HEAD/lora-send-no-encryption.js -------------------------------------------------------------------------------- /monitor-production.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALLTERCO/shelly-script-examples/HEAD/monitor-production.js -------------------------------------------------------------------------------- /mqtt-announce-control.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALLTERCO/shelly-script-examples/HEAD/mqtt-announce-control.js -------------------------------------------------------------------------------- /mqtt-announce.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALLTERCO/shelly-script-examples/HEAD/mqtt-announce.js -------------------------------------------------------------------------------- /mqtt-discovery-sensors.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALLTERCO/shelly-script-examples/HEAD/mqtt-discovery-sensors.js -------------------------------------------------------------------------------- /mqtt-discovery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALLTERCO/shelly-script-examples/HEAD/mqtt-discovery.js -------------------------------------------------------------------------------- /mqtt-switch-status-announce.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALLTERCO/shelly-script-examples/HEAD/mqtt-switch-status-announce.js -------------------------------------------------------------------------------- /mqtt-switch-status.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALLTERCO/shelly-script-examples/HEAD/mqtt-switch-status.js -------------------------------------------------------------------------------- /n-way-dimmer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALLTERCO/shelly-script-examples/HEAD/n-way-dimmer.js -------------------------------------------------------------------------------- /ntc-conversion.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALLTERCO/shelly-script-examples/HEAD/ntc-conversion.js -------------------------------------------------------------------------------- /objects.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALLTERCO/shelly-script-examples/HEAD/objects.js -------------------------------------------------------------------------------- /power-outages.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALLTERCO/shelly-script-examples/HEAD/power-outages.js -------------------------------------------------------------------------------- /power-threshold-limit-output.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALLTERCO/shelly-script-examples/HEAD/power-threshold-limit-output.js -------------------------------------------------------------------------------- /precipitation-irrigation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALLTERCO/shelly-script-examples/HEAD/precipitation-irrigation.js -------------------------------------------------------------------------------- /prometheus-grafana-example-dashboard.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALLTERCO/shelly-script-examples/HEAD/prometheus-grafana-example-dashboard.json -------------------------------------------------------------------------------- /prometheus.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALLTERCO/shelly-script-examples/HEAD/prometheus.js -------------------------------------------------------------------------------- /push-pushed.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALLTERCO/shelly-script-examples/HEAD/push-pushed.js -------------------------------------------------------------------------------- /register-scheduled-script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALLTERCO/shelly-script-examples/HEAD/register-scheduled-script.js -------------------------------------------------------------------------------- /remoterpc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALLTERCO/shelly-script-examples/HEAD/remoterpc.js -------------------------------------------------------------------------------- /restore-schedule.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALLTERCO/shelly-script-examples/HEAD/restore-schedule.js -------------------------------------------------------------------------------- /router-watchdog.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALLTERCO/shelly-script-examples/HEAD/router-watchdog.js -------------------------------------------------------------------------------- /scene.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALLTERCO/shelly-script-examples/HEAD/scene.js -------------------------------------------------------------------------------- /script-temperature-adjust.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALLTERCO/shelly-script-examples/HEAD/script-temperature-adjust.js -------------------------------------------------------------------------------- /shelly1p-mqtt-autodiscover.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALLTERCO/shelly-script-examples/HEAD/shelly1p-mqtt-autodiscover.js -------------------------------------------------------------------------------- /shelly2p-domo-coverfix-v2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALLTERCO/shelly-script-examples/HEAD/shelly2p-domo-coverfix-v2.js -------------------------------------------------------------------------------- /shelly2p-domo-coverfix.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALLTERCO/shelly-script-examples/HEAD/shelly2p-domo-coverfix.js -------------------------------------------------------------------------------- /snippets/snippets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALLTERCO/shelly-script-examples/HEAD/snippets/snippets.json -------------------------------------------------------------------------------- /telegram-interaction.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALLTERCO/shelly-script-examples/HEAD/telegram-interaction.js -------------------------------------------------------------------------------- /test-scene.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALLTERCO/shelly-script-examples/HEAD/test-scene.js -------------------------------------------------------------------------------- /tools/json-to-md.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALLTERCO/shelly-script-examples/HEAD/tools/json-to-md.py -------------------------------------------------------------------------------- /tools/put_script.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALLTERCO/shelly-script-examples/HEAD/tools/put_script.py -------------------------------------------------------------------------------- /tools/upload-script.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALLTERCO/shelly-script-examples/HEAD/tools/upload-script.sh -------------------------------------------------------------------------------- /turn-on-weather.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALLTERCO/shelly-script-examples/HEAD/turn-on-weather.js -------------------------------------------------------------------------------- /universal-blu-to-mqtt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALLTERCO/shelly-script-examples/HEAD/universal-blu-to-mqtt.js -------------------------------------------------------------------------------- /victron-mppt-solar-controller.shelly.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALLTERCO/shelly-script-examples/HEAD/victron-mppt-solar-controller.shelly.js -------------------------------------------------------------------------------- /wifi-provision.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALLTERCO/shelly-script-examples/HEAD/wifi-provision.js --------------------------------------------------------------------------------