mirror of
https://github.com/thehookup/Motorized_MQTT_Blinds.git
synced 2026-01-08 22:08:04 -05:00
Update README.md
This commit is contained in:
44
README.md
44
README.md
@@ -1,2 +1,44 @@
|
|||||||
# Motorized_MQTT_Blinds
|
# Motorized_MQTT_Blinds
|
||||||
Motorized_MQTT_Blinds
|
|
||||||
|
|
||||||
|
This repository is to accompany my Motorized_MQTT_Blinds video:
|
||||||
|
|
||||||
|
[](https://www.youtube.com/watch?v=1O_1gUFumQM)
|
||||||
|
|
||||||
|
## Parts List
|
||||||
|
Stepper Motors: https://amzn.to/2D5rVsF
|
||||||
|
Stepper Drivers: https://amzn.to/2OZqW1W
|
||||||
|
NodeMCU: https://amzn.to/2I89xDF
|
||||||
|
12V Power Supply: https://amzn.to/2G2ZJrf
|
||||||
|
Buck Converter: https://amzn.to/2UsQ7jA
|
||||||
|
|
||||||
|
## Wiring Schematic
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
## File setup
|
||||||
|
|
||||||
|
Fill out the entire USER CONFIGURATION section of the code.
|
||||||
|
|
||||||
|
You should leave "STEPS_TO_CLOSE" at 12 to start with. It can be adjusted for your specific blinds
|
||||||
|
|
||||||
|
## Home Assistant YAML
|
||||||
|
|
||||||
|
Replace "BlindsMCU" with your MQTT_CLIENT_ID if you changed it in the file setup
|
||||||
|
|
||||||
|
```yaml
|
||||||
|
cover:
|
||||||
|
- platform: mqtt
|
||||||
|
name: "Motorized Blinds"
|
||||||
|
command_topic: "BlindsMCU/blindsCommand"
|
||||||
|
set_position_topic: "BlindsMCU/positionCommand"
|
||||||
|
position_topic: "BlindsMCU/positionState"
|
||||||
|
state_topic: "BlindsMCU/positionState"
|
||||||
|
retain: true
|
||||||
|
payload_open: "OPEN"
|
||||||
|
payload_close: "CLOSE"
|
||||||
|
payload_stop: "STOP"
|
||||||
|
position_open: 0
|
||||||
|
position_closed: 12
|
||||||
|
```
|
||||||
|
## Alexa only support (no hub required) coming soon
|
||||||
|
|||||||
Reference in New Issue
Block a user