mirror of
https://github.com/fhem/fhem-mirror.git
synced 2025-01-31 12:49:34 +00:00
24 lines
841 B
Plaintext
24 lines
841 B
Plaintext
|
#
|
||
|
# fhem.pl configfile
|
||
|
#
|
||
|
# Define RM100-2 devices:
|
||
|
#
|
||
|
# As the RM100-2 changes its code after the battery is changed (or the switch
|
||
|
# on the device itself is changed), we map _all_ RM100-2 to the device id 1001
|
||
|
# Check the commandref.html define, Type HMS section for details
|
||
|
|
||
|
logfile /tmp/fhem-%Y-%m.log
|
||
|
savefile /tmp/fhem.save # where to save the state of the devices
|
||
|
verbose 3 # "normal" verbosity (min 1, max 5)
|
||
|
port 7072 # our TCP/IP port (working from localhost only)
|
||
|
modpath . # where our FHEM directory is
|
||
|
define FHZ FHZ /dev/tts/USB0 # the serial port of an FHZ 1000 PC
|
||
|
|
||
|
|
||
|
define rm100 HMS 1001 # type HMS
|
||
|
define rm100log FileLog /var/log/wz-%Y-%U.log rm100:.*
|
||
|
notifyon rm100:smoke.*on "wall "FIRE: @ %""
|
||
|
|
||
|
# Test the log/notify
|
||
|
# fhem.pl 7072 'trigger rm100 smoke on'
|