Updating the plugin for the new Domoticz Python Plugin Standards wasn't too difficult.
Everything is all good again.
Search found 19 matches
- Thursday 20 July 2017 0:51
- Forum: Python
- Topic: Python Plugin: Venstar WiFi Thermostat
- Replies: 2
- Views: 1275
- Wednesday 19 July 2017 23:46
- Forum: Python
- Topic: Python Plugin: Venstar WiFi Thermostat
- Replies: 2
- Views: 1275
Re: Python Plugin: Venstar WiFi Thermostat
I posted this before reading about the framework change. http://www.domoticz.com/forum/viewtopic ... 65&t=17554
I'll need to update it to conform to the new standard.
I'll need to update it to conform to the new standard.
- Wednesday 19 July 2017 1:34
- Forum: Python
- Topic: Python Plugin: Venstar WiFi Thermostat
- Replies: 2
- Views: 1275
Python Plugin: Venstar WiFi Thermostat
This thermostat is different from others in that it has both local API capability as well as a cloud service. This plugin is for accessing the local API. I've now been using it for several months without issue. https://github.com/getSurreal/Domoticz-Venstar-Thermostat-Plugin https://smile.amazon.com ...
- Monday 10 April 2017 0:57
- Forum: LUA
- Topic: Battery Notifications
- Replies: 12
- Views: 8072
Re: Battery Notifications
Not sure how to pass username and password through the script and not typically good practice to add credentials into a script. I suggest adding an exception for your domoticz server to be able to connect to itself without a password. This is in the domoticz settings system tab.
- Friday 17 March 2017 18:34
- Forum: Speech & Voice Systems
- Topic: Easy Domoticz to Alexa Integration
- Replies: 1
- Views: 2658
Easy Domoticz to Alexa Integration
There are a few working methods already for integrating Domoticz and Alexa. The simplest I had found was using HA-Bridge https://github.com/bwssytems/ha-bridge . The nice thing about it, is that it simulates a Phillips Hue so Alexa can discover your devices locally without any cloud service. There ...
- Tuesday 14 March 2017 19:10
- Forum: Python
- Topic: [Plugin] - Device Updates
- Replies: 0
- Views: 664
[Plugin] - Device Updates
@Dnpwwo has a nice little function in his examples for only updating devices when there is something different. This is a great idea, but for devices that may go a while without anything changing, they will go offline. Here's a small update to that function which will make an update before the ...
- Tuesday 14 March 2017 18:03
- Forum: Python
- Topic: Need plugin example for simple GET request for JSON
- Replies: 7
- Views: 3421
Re: Need plugin example for simple GET request for JSON
@Dnpwwo Thanks for that explanation. That is very important to know and understand. In that case I would say the the plugin repository would need to review plugins and reject them if they don't meet the criteria. That's kind of unfortunate that plugins won't be included with Domoticz. If I wrote it ...
- Monday 13 March 2017 18:58
- Forum: Python
- Topic: Need plugin example for simple GET request for JSON
- Replies: 7
- Views: 3421
Re: Need plugin example for simple GET request for JSON
@Dnpwwo I had saw a new update available and thought it was in there, but now I see #1336 is merged and it is working for me. We all very much appreciate the work you're putting into the plugin module. I think a lot more devices will get supported much more quickly. Couple more questions for you ...
- Sunday 12 March 2017 19:37
- Forum: Python
- Topic: Need plugin example for simple GET request for JSON
- Replies: 7
- Views: 3421
Re: Need plugin example for simple GET request for JSON
@Dnpwwo Thanks for your help. onMessage is now getting triggered. My problem now is parsing it. When using urllib, the response was clean json, but when using Data.decode("utf-8", "ignore") there is some extra information and json.loads does not handle the extra data being in there. Is there some ...
- Thursday 09 March 2017 21:45
- Forum: Python
- Topic: [solved] List of device type and subtype IDs
- Replies: 5
- Views: 6401
- Thursday 09 March 2017 19:54
- Forum: Python
- Topic: [solved] List of device type and subtype IDs
- Replies: 5
- Views: 6401
Re: List of device type and subtype IDs
I guess I should have mentioned that I already looked there. It only shows devices that already exist, which was helpful for some, but I'd like to see the list of all available options. I figure since the full mapping list doesn't appear to be in the database, it must be in the code somewhere, but I ...
- Thursday 09 March 2017 19:32
- Forum: Python
- Topic: Need plugin example for simple GET request for JSON
- Replies: 7
- Views: 3421
Need plugin example for simple GET request for JSON
I've created this GET request and tried setting the protocol to both HTTP and JSON, but onMessage never gets triggered. I've tried url with and without the full path. And I've tried it with and without the headers. url = 'http://'+Parameters["Address"]+'/query/info' headers = {"Connection": "keep ...
- Thursday 09 March 2017 16:42
- Forum: Python
- Topic: [solved] List of device type and subtype IDs
- Replies: 5
- Views: 6401
[solved] List of device type and subtype IDs
I'm looking for a reference where I can find all the device Type and Subtype IDs. Anyone know where I can find it?
- Friday 03 March 2017 22:52
- Forum: LUA
- Topic: Battery Notifications
- Replies: 12
- Views: 8072
Re: Battery Notifications
I didn't know what DZvents was at first. In this case I don't think that script should go in the same place on the wiki and just kept with DZvents.
I do need to look more into DZvents though. Looks nicer.
I do need to look more into DZvents though. Looks nicer.
- Friday 03 March 2017 22:11
- Forum: LUA
- Topic: Battery Notifications
- Replies: 12
- Views: 8072
Re: Battery Notifications
Posting it there could help others in the future. I don't know if it needs to be run differently, but right now it doesn't work for me. I get the following error. Error: EventSystem: Lua script test did not return a commandArray If it works, it could have saved me a lot of time vs rewriting the ...
- Friday 03 March 2017 21:02
- Forum: LUA
- Topic: Battery Notifications
- Replies: 12
- Views: 8072
Battery Notifications
Added a new script option for getting notifications for low battery status of devices. https://www.domoticz.com/wiki/Battery_level_check This script will execute once a day at the time that you specify. It will check all your used devices and send an email with a list of all devices below the ...
- Friday 24 February 2017 20:59
- Forum: LUA
- Topic: Lua script_time executed on status changes
- Replies: 3
- Views: 969
Re: Lua script_time executed on status changes
Oh man! So simple. Thanks! Does that mean it doesn't matter what the script is named, you just select what you want to trigger it? From piecing together everything I've read from the wiki and forum, I thought it had to have a specific name. Maybe that's the way it used to be and the drop down was an ...
- Friday 24 February 2017 20:20
- Forum: LUA
- Topic: Lua script_time executed on status changes
- Replies: 3
- Views: 969
Lua script_time executed on status changes
I have a script_time script that executes every minute as expected, but it also executes every time there is a status change. I'm adding more and more mysensors nodes so now my script is executing every few seconds which I don't want/need. If I disable mysensors it goes back to every minute. But it ...
- Saturday 11 February 2017 21:00
- Forum: Z-Wave
- Topic: Schlage Lock State Inverted
- Replies: 3
- Views: 1367
Re: Schlage Lock State Inverted
FYI, a recent beta release changed the existing "door lock" to a "door contact", then added a new "door lock" option which no longer shows the lock inverted.