Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/brian-mcnamara/esphome-montigo-fireplace
ESPHome controller for montigo fireplaces
https://github.com/brian-mcnamara/esphome-montigo-fireplace
esp8266 esphome fireplace montigo
Last synced: 8 days ago
JSON representation
ESPHome controller for montigo fireplaces
- Host: GitHub
- URL: https://github.com/brian-mcnamara/esphome-montigo-fireplace
- Owner: brian-mcnamara
- Created: 2024-02-18T21:04:38.000Z (12 months ago)
- Default Branch: main
- Last Pushed: 2024-02-23T00:05:40.000Z (12 months ago)
- Last Synced: 2024-02-23T01:26:03.023Z (12 months ago)
- Topics: esp8266, esphome, fireplace, montigo
- Language: C++
- Homepage:
- Size: 12.7 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# ESPHome Montigo Fireplace Transciver
This project aims to integrate Montigo fireplaces controlled with a remote into
Home Assistant using esphome.**Note:** I have only tested this on my fireplace. Since I have not decoded the
payload, it may be there is a serial as part of the payload and I would need to
modify this project to allow for that. Please raise an issue if this is the case.
Please uncomment the remote_receiver.dump.raw configuration and add the dumps to the issue.## Components:
I used a esp8266 board along with a CC1101 transviver I bought, specifically:
- HiLetgo ESP8266 NodeMCU ESP-12E
- E07-M1101D CC1101 development board### Pinouts:
The following is the pin connections from the CC1101 to the ESP board
- 1 → GND
- 2 → 3v3
- 3 → D1
- 4 → D3
- 5 → D5
- 6 → D7
- 7 → D6
- 8 → D2## Quick start:
Add a secret.yaml file to contain:
```yaml
ssid: [wifi ssid]
password: [wifi password]
```Followed by using [esphome programmer](https://esphome.io/guides/getting_started_command_line#first-uploading)
to compile and install onto the esp board.Thanks to dbuezas for creating the cc1101 helper used in this project: https://github.com/dbuezas/esphome-cc1101