This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| ## Telemetry setup | |
| # This ESPHome config broadcasts car telemetry (SoC, battery power, speed, charging status, odometer, etc.) | |
| # as [BTHome](https://bthome.io/) BLE advertisements — no WiFi/App required, just passive BLE beacons. | |
| # On the receiving end, the [BTHome Monitor](https://apps.apple.com/app/bthome-monitor) iOS app | |
| # listens for these advertisements and uses its webhook support to forward the decoded sensor | |
| # data to [ABRP](https://abrp.com/) (A Better Route Planner), acting as a simple BLE-to-HTTP bridge | |
| # so ABRP gets live vehicle data without any direct integration on the ESPHome side |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| esphome: | |
| name: power-meter | |
| on_boot: | |
| priority: -100 | |
| then: | |
| - if: | |
| condition: | |
| switch.is_on: disable_wifi | |
| then: | |
| script.execute: schedule_disable_wifi |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| """Probe whether the IntesisHome / AC Cloud API accepts writes over HTTPS. | |
| pyIntesisHome sends commands over a TCP socket on port 5210. If the HTTPS | |
| API also accepted them, firewalled setups would stop being read-only. No | |
| such write command is documented; this tests the plausible candidates. | |
| Two checks, since either alone can mislead: | |
| 1. Echo. The API mirrors back any section name, including invented ones, | |
| so a section appearing in the response means nothing. A candidate |
OlderNewer