This integration allows you to control Nice Flor-S shutters with a Raspberry Pi and a 433 MHz transmitter.
- Install the pigpio addon to your Home Assistant instance.
- Install a file manager addon
- Create a new directory in
/config
calledcustom_components
- Create a new directory in
/config/custom_components
callednice_flor_s
- Copy the contents of this repository to
/config/custom_components/nice_flor_s
except for theconfigurations
directory - Configure the integration in your
/config/configuration.yaml
file (see below) - Restart Home Assistant
- Pair your shutters by calling the service
nice_flor_s.pair
with the serial number of the shutter you want to pair - Use the Home Assistant UI to control your shutters (You can add the CoverEntity to your Lovelace dashboard)
Key | Type | Required | Description |
---|---|---|---|
gpio |
int |
True |
The GPIO pin where the transmitter is connected |
pigpio_host |
string |
False |
The hostname of the pigpio instance |
start_code |
int |
True |
The first code to use for the shutters |
covers |
object |
True |
The list of shutters to control |
covers.<name> |
object |
True |
The configuration of a shutter |
covers.<name>.serial |
int |
True |
The serial number of the shutter |
covers.<name>.friendly_name |
string |
False |
The friendly name of the shutter |
To pair a shutter, call the service nice_flor_s.pair
with the serial number of the shutter you want to pair.
The shutter will enter pairing mode for 5 seconds. During this time, press the button on the shutter to pair it.
- Make sure that the pigpio addon is installed and running
- Make sure that the GPIO pin is correctly configured
- Make sure that the transmitter is correctly connected to the GPIO pin
- Make sure that the shutter is in pairing mode
- Make sure that the serial number of the shutter is correct
- Make sure that the code is correctly transmitted
If you encounter any issues, please create an issue on GitHub.
This integration is licensed under the MIT License.