I am a very happy and proud user of Tellstick USB on Raspberry 1 since years.
Lately I see a strange behaviour...
The state of devices doesn't change anymore if I turn the device ON or OFF and then I do list (if a device is on and I turn it off I still see that the device is on):
Code: Select all
pi@homeassistant:/etc $ tdtool --on 1
Turning on device 1, Heating - Success
pi@homeassistant:/etc $ tdtool --list
Number of devices: 5
1 Heating OFF
2 Stairs OFF
3 Boiler ON
4 Pc OFF
5 Bedroom OFF
pi@homeassistant:/etc $ tdtool --on 1
Turning on device 1, Heating - Success
pi@homeassistant:/etc $ tdtool --list
Number of devices: 5
1 Heating OFF
2 Stairs OFF
3 Boiler ON
4 Pc OFF
5 Bedroom OFF
pi@homeassistant:/etc $ tdtool --on 1
Turning on device 1, Heating - Success
pi@homeassistant:/etc $ tdtool --list
Number of devices: 5
1 Heating OFF
2 Stairs OFF
3 Boiler ON
4 Pc OFF
5 Bedroom OFF
Also the blue led is almost constantly blinking (even if a bit dimmed in comparison to when the tellstick is sending out the signal).
Here's my tellstick.conf:
Code: Select all
user = "root"
group = "root"
deviceNode = "/dev/tellstick"
ignoreControllerConfirmation = "false"
device {
id = 1
name = "Heating"
controller = 0
protocol = "arctech"
model = "selflearning-switch"
parameters {
house = "4"
unit = "1"
}
}
# snipped out other devices for readability
}
controller {
id = 1
type = 1
serial = "MYSERIAL"
}
Thanks for your kind help and patience.