https://github.com/bomberus/somfy_receiver
Make Somfy Sender WIFI capable using RPI Pico W
https://github.com/bomberus/somfy_receiver
Last synced: 9 months ago
JSON representation
Make Somfy Sender WIFI capable using RPI Pico W
- Host: GitHub
- URL: https://github.com/bomberus/somfy_receiver
- Owner: Bomberus
- License: mit
- Created: 2023-12-04T17:41:23.000Z (over 2 years ago)
- Default Branch: master
- Last Pushed: 2024-05-14T06:35:57.000Z (about 2 years ago)
- Last Synced: 2025-01-21T05:11:28.121Z (over 1 year ago)
- Language: Python
- Size: 23.4 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# How to use
## RPI Pico Setup
- Connect RPI Pico with micro usb cable (that supports data transfer) to your PC
- Install RPI Pico firmware
- Use Thonny IDE to upload all files in this repo to the device
- Adjust the user + password in config.py
- Check IP address of the device (when
## Home Assistant
- Add the following settings in configuration.yaml
```yaml
rest_command:
markise_hoch:
url: http://192.168.178.142:5000/up
method: POST
markise_runter:
url: http://192.168.178.142:5000/down
method: POST
markise_stop:
url: http://192.168.178.142:5000/stop
method: POST
markise_position:
url: "http://192.168.178.142:5000/set?target={{position}}"
method: POST
rest:
- resource: "http://192.168.178.142:5000/status"
scan_interval: 10
sensor:
- name: "MARKISE_POSITION"
value_template: "{{ value_json['state']['percent'] | round }}"
```