funksteckdosen-rest-rs

A little rest server to use radio-controlled sockets with wiringPi in a Raspberry PI.

This program provides a HTTP server to call radio-controlled sockets. This program use the funksteckdose crate which use the wiringpi crate. You have to install wiringPi library on your system.

Install WiringPi

Please check here. Maybe wiringPi is pre-installed.

Compile

At the moment a used library needs the nightly rust compiler. rustup override set nightly

Starting the server

Starts the server on port 12345 bind to IP 127.0.0.1 (default): ./funksteckdosen-rest-rs --port 12345

Starts the server on port 12345 without any IP binding: ./funksteckdosen-rest-rs --port 12345 --bind 0.0.0.0

Switch the socket

http://localhost:12345/pin/11100/3/0 * 11100 is the system code

Run as service

sudo systemctl start funksteckdosen-rest-rs.service

stop

sudo systemctl stop funksteckdosen-rest-rs.service

show status

sudo systemctl status funksteckdosen-rest-rs.service ````

Use Case

I control the sockets with my Home Assistant instance. For this I use the rest comand.

rest_command: socket_2: url: http://192.168.178.123:12345/pin/11100/2/0 socket_3: url: http://192.168.178.123:12345/pin/11100/3/0