Search found 10 matches
- Sunday 01 April 2018 22:18
- Forum: Python
- Topic: Python Plugin : Broadlink RM2 V4
- Replies: 651
- Views: 125418
Re: Python Plugin : Broadlink RM2 V4
I am running Ubuntu 18.04 LTS and using the latest python 3.6 broadlink module (v0.8). I believe the script needs to be slightly updated to comply with the updated connection string. We now have to pass a devtype ID as well with the host and MAC address. Here is a sample line: def broadlinkConnect ...
- Thursday 03 August 2017 5:34
- Forum: dzVents
- Topic: [SOLVED] DzVents door.state is always open?
- Replies: 44
- Views: 9172
Re: DzVents door.state is always open?
Hi ! Check "Locked" and "Unlocked" instead "Open" and "Close". It was change about half year ago for this type of switch. I'm not sure what you mean. Where should I check it? In the JSON output clearly it states Open en Closed. And if only I could find a statement where I could check it. But none ...
- Saturday 29 July 2017 21:34
- Forum: Python
- Topic: Python Plugin: Broadlink RM2 V3
- Replies: 310
- Views: 74108
Re: Python Plugin: Broadlink RM2 V3
Disable the temp sensor on the hardware page in domoticz. Sent from my SM-G955U using Tapatalk Actually the temp sensor was the main reason I added the plugin, to get the indoor temp. From my experience, the rm pro temp sensor is the only one that is accurate...and it's not that accurate. Sent from ...
- Saturday 29 July 2017 18:29
- Forum: Python
- Topic: Python Plugin: Broadlink RM2 V3
- Replies: 310
- Views: 74108
Re: Python Plugin: Broadlink RM2 V3
My domoticz is crashing and going to offline several times a day after ensbling this plugin. This is the last message in the log before it happens: 2017-07-29 11:10:17.238 Error: (Broadlink) Error getting temperature data from Broadlink device....Timeout Disable the temp sensor on the hardware page ...
- Thursday 27 July 2017 11:52
- Forum: Python
- Topic: Python Plugin: Broadlink RM2 V3
- Replies: 310
- Views: 74108
Re: Python Plugin: Broadlink RM2 V3
At the moment, all learning has to be done via the broadlink import process or via the widget the plugin creates
Sent from my SM-G955U using Tapatalk
Sent from my SM-G955U using Tapatalk
- Wednesday 26 July 2017 15:50
- Forum: Python
- Topic: Python Plugin: Broadlink RM2 V3
- Replies: 310
- Views: 74108
Re: Python Plugin: Broadlink RM2 V3
Yesterday I uninstalled broadlink and pyaes and installed all new. Added Broadlink in hardware an recorded some commands. Everything was working just fine, no errors, no delays, no cpu increase until I restarted domoticz. Then again no connection to system via browser. Is someone who installed ...
- Wednesday 26 July 2017 14:56
- Forum: Python
- Topic: Python Plugin: Broadlink RM2 V3
- Replies: 310
- Views: 74108
Re: Python Plugin: Broadlink RM2 V3
Hi, I have a problem with plugin_send.py in standalone Traceback (most recent call last): File "domoticz/plugins/Broadlink/plugin_send.py", line 15, in <module> import configparser ImportError: No module named configparser pip install configparser Requirement already satisfied: configparser in /usr ...
- Tuesday 25 July 2017 9:42
- Forum: Python
- Topic: Python Plugin: Broadlink RM2 V3
- Replies: 310
- Views: 74108
Re: Python Plugin: Broadlink RM2 V3
I couldn't get this to work on my rpi - i am currently trying to see if python 3.6.2 compiled from source will help. While waiting forever for it to compile, I moved my Domoticz installation to a different machine (24c xeon running Ubuntu 16.04 lts) and it is working perfectly. Thank you so much ...
- Friday 14 July 2017 15:37
- Forum: Python
- Topic: Help with creating a HTTPs poll plugin (unifi)
- Replies: 11
- Views: 2679
Re: Help with creating a HTTPs poll plugin (unifi)
Yes, urllib.request seems to work but I can't get my Domoticz version of my script to properly grab the CookieJar from a login. I have a standalone py3 that leverages the same code from the command line and works fine.
Sent from my SM-G955U using Tapatalk
Sent from my SM-G955U using Tapatalk
- Wednesday 12 July 2017 18:06
- Forum: Python
- Topic: Help with creating a HTTPs poll plugin (unifi)
- Replies: 11
- Views: 2679
Re: Help with creating a HTTPs poll plugin (unifi)
I too have tried to create an HTTPs plugin in Python for ThinkEco's (mymodlet.com) interface to control my AC units. I have the 3 versions of the python script working with their API for status and control of the units, using urllib.request, Requests, and http (urllib2 for python3). All of the ...