Search found 2 matches

by wieserdk
Monday 13 July 2015 10:37
Forum: Switches and Scenes
Topic: AVM FritzBox DECT 200 switch supported?
Replies: 17
Views: 9710

Re: AVM FritzBox DECT 200 switch supported?

Thanks,

I played a little bit, and I have following python script which is working:

#!/usr/bin/python
from fritzl import Fritzl
import urllib2

f = Fritzl('PASSWORD')

lamp1_status = str(f.get_state('DEV-ID'))
lamp1_energy = float(f.get_power_single("DEV-ID"))/1000.00

#Lamp1
r = urllib2.urlopen ...
by wieserdk
Sunday 12 July 2015 8:16
Forum: Switches and Scenes
Topic: AVM FritzBox DECT 200 switch supported?
Replies: 17
Views: 9710

Re: AVM FritzBox DECT 200 switch supported?

Hi, maybe you have answer for 2 things:
- are you able to read status of DECT200? I mean that scenario: 1. turn on dect200 in domoticz 2. Turn of dect200 with a dedicated push-button on device 3. domoticz is still showing that device is on
- I was trying to setup power meter in domoticz, and I have ...