Crates.io | light-control |
lib.rs | light-control |
version | 2.1.0 |
source | src |
created_at | 2020-06-07 17:54:12.403019 |
updated_at | 2020-07-12 00:55:45.728898 |
description | mqtt light control |
homepage | https://github.com/mrVanDalo/light-control |
repository | |
max_upload_size | |
id | 251045 |
size | 127,064 |
Mqtt light-control for singles. It comes with room tracking, which works best in a single person environment.
cargo install install --path .
export RUST_LOG=light_control=info
~/.cargo/bin/light-control examples/home.json
Here is a small overview on how an light-control sees your sensors
The threshold is the time threshold that need to be reached by an other room, before we detect the other room as the current presents of the user.
Should be simple. light-control knows
Have a look at ./examples/home.json to get an impression.
You can use the mosquitto client to subscribe to all messages
mosquitto_sub -v \
-u light-control \
-P password \
-h localhost \
-t "#"
This would be a line you see:
zigbee2mqtt/motion_sensor_7 {"battery":100,"voltage":3015,"linkquality":99,"occupancy":true}
zigbee2mqtt/motion_sensor_7
is the topicoccupancy
is the key describing the statelight-control only excepts messages in flat json
topic
: topic to listen to.key
: json key to read the state.room
: that should be considered present if this sensor is triggered.invert_state
: (default false)
sometimes sensors send false if presents is detected.
This option is to invert the state in that cases.delay
: (default 60)
how long to wait (in seconds) till a present state becomes
absent after the devices publishes the absent message.topic
: topic to listen for state.key
: json key to read the state.rooms
: rooms to which switch react.delay
:
how long to wait, in seconds, till the switch is turned off
once all subscribed rooms become absent.command
: command control.
command
: turn on and off command
This is a mustache template. Injected arguments are:
init_command
: (default null)
command to get state of the device
will be triggered at program start.topic
: topic to send commandson
: (default "ON")
string to send for state argument to run switch onoff
: (default "OFF")
string to send for state argument to run switch offThe first scene in the one chosen after program start.
name
: name of the scenebrightness
: brightness level for this scenedisabled_switches
:
list all switch topics which should be turned off.enabled_switches
:
list all switch topics which should be turned on.ignored_switches
:
list all switch topics which should not be set.room_tracking_enabled
: tracking enabled or notignored_sensors
:
list all sensor topics which should be ignored to detect room presents.Mqtt is the perfect place to control light-control.
mosquitto_pub \
-h localhost \
-u homeassistant \
-P password \
-t "control/lights/set" \
-m '{"scene":"<scene-name>"}'