Notice: This forum has been recovered from an old backup, so some content, links, and dates may be outdated. The forum is currently read-only while we restore sign-in and registration functionality. Details
If you find this forum valuable and would like to help keep it online, donations to help cover hosting and domain costs are greatly appreciated, but never expected. You can support the forum through Buy Me a Coffee or Ko-fi. Thank you for helping preserve the EventGhost community.
If you find this forum valuable and would like to help keep it online, donations to help cover hosting and domain costs are greatly appreciated, but never expected. You can support the forum through Buy Me a Coffee or Ko-fi. Thank you for helping preserve the EventGhost community.
Search found 144 matches
- Mon Sep 21, 2015 4:50 am
- Forum: Coding Corner
- Topic: Persistent variables?
- Replies: 13
- Views: 13968
Re: Persistent variables?
Is there any way to make a dict var persistent?
- Sun May 18, 2014 11:26 pm
- Forum: Plugin Support
- Topic: Nest Thermostat plug-in
- Replies: 196
- Views: 80622
Re: Nest Thermostat plug-in
I am getting the same problem I had before we went to M2Crypto.. It says old temperatures and away when I am home.
It is as if the data might not be getting saved or the polling thread stops.
It is as if the data might not be getting saved or the polling thread stops.
- Fri May 16, 2014 1:10 pm
- Forum: Plugin Support
- Topic: Nest Thermostat plug-in
- Replies: 196
- Views: 80622
Re: Nest Thermostat plug-in
The datetime issue is resolved as is most of the reporting. I can't really tell if heat index is fixed because it is cold enough in Florida (68 degrees) to either not change it hasn't been calculating. Although, I do see updates on TempF, no updates on heatindex.
EDIT: Heat index is being reported.
EDIT: Heat index is being reported.
- Thu May 15, 2014 4:04 pm
- Forum: Plugin Support
- Topic: Nest Thermostat plug-in
- Replies: 196
- Views: 80622
Re: Nest Thermostat plug-in
Did you do something with Time to target object reporting? It's a strftime.datetime (hours:minutes:seconds) object now.
- Tue May 13, 2014 2:56 am
- Forum: Plugin Support
- Topic: Nest Thermostat plug-in
- Replies: 196
- Views: 80622
Re: Nest Thermostat plug-in
I just assisted someone with installation of this plugin. The m2crypto in the main folder is not all that is needed!
The files in the attached zip also need to be in the main eg folder. Otherwise, you get a DLL error.
www.tinozplace.com/otherdlls.zip
The files in the attached zip also need to be in the main eg folder. Otherwise, you get a DLL error.
www.tinozplace.com/otherdlls.zip
- Fri May 09, 2014 11:43 pm
- Forum: Plugin Support
- Topic: Nest Thermostat plug-in
- Replies: 196
- Views: 80622
Re: Nest Thermostat plug-in
This plugin has really come a long way! Thanks for all your hard work and making this the best plugin it can possibly be.
I am interested to see what you could possibly come up with next to add to this plugin.
I am also glad that you adopted my changes. For an experienced Python developer to ...
I am interested to see what you could possibly come up with next to add to this plugin.
I am also glad that you adopted my changes. For an experienced Python developer to ...
- Tue May 06, 2014 3:46 am
- Forum: Coding Corner
- Topic: Heartbeat and Multithreading
- Replies: 1
- Views: 2462
Heartbeat and Multithreading
I have a plugin I am trying to re-work for the ISY994i..
The SOAP subscription gives a heartbeat every 30 or so seconds but sometimes the SOAP subscription fails for whatever reason and the plugin is left without a new subscription. I've been working on this for at least the last 24 hours and I am ...
The SOAP subscription gives a heartbeat every 30 or so seconds but sometimes the SOAP subscription fails for whatever reason and the plugin is left without a new subscription. I've been working on this for at least the last 24 hours and I am ...
- Mon May 05, 2014 5:16 am
- Forum: Plugin Support
- Topic: Nest Thermostat plug-in
- Replies: 196
- Views: 80622
Re: Nest Thermostat plug-in
I have been waiting for your reply to my email. Can't do much about writing scripts for the ISY and Nest plugins without the information I need.
If you need me to resend the email, let me know.
The charts were written with python scripting and a library called "ChartDirector" It offers some ...
If you need me to resend the email, let me know.
The charts were written with python scripting and a library called "ChartDirector" It offers some ...
- Wed Apr 30, 2014 5:45 pm
- Forum: Plugin Support
- Topic: Nest Thermostat plug-in
- Replies: 196
- Views: 80622
Re: Nest Thermostat plug-in
Here you go...
auth = str('Basic ' + access_token)
getreq = str('/v5/subscribe')
dat = str('{"objects":[{"object_key":"energy_latest.' +DevSerial +'"}]}')
content = str(len(dat))
print dat
auth = str('Basic ' + access_token)
uid = str(userid)
transport = transport_url
ctx = SSL.Context('tlsv1 ...
auth = str('Basic ' + access_token)
getreq = str('/v5/subscribe')
dat = str('{"objects":[{"object_key":"energy_latest.' +DevSerial +'"}]}')
content = str(len(dat))
print dat
auth = str('Basic ' + access_token)
uid = str(userid)
transport = transport_url
ctx = SSL.Context('tlsv1 ...
- Wed Apr 30, 2014 12:46 pm
- Forum: Plugin Support
- Topic: Nest Thermostat plug-in
- Replies: 196
- Views: 80622
Re: Nest Thermostat plug-in
Here is the nest.class from the PHP library
public function getEnergyLatest($serial_number=null) {
$serial_number = $this->getDefaultSerial($serial_number);
$payload = array(
'objects' => array(
array('object_key' => "energy_latest.$serial_number")
)
);
$url = '/v5/subscribe';
return ...
public function getEnergyLatest($serial_number=null) {
$serial_number = $this->getDefaultSerial($serial_number);
$payload = array(
'objects' => array(
array('object_key' => "energy_latest.$serial_number")
)
);
$url = '/v5/subscribe';
return ...
- Wed Apr 30, 2014 12:24 pm
- Forum: Plugin Support
- Topic: Nest Thermostat plug-in
- Replies: 196
- Views: 80622
Re: Nest Thermostat plug-in
Small fix on get_object weather related
Added Duty-cycle in fan mode
added fan timer action (0 will turn off the fan if it was on a timer)
If anyone knows how to get the energy_latest from nest would be a huge benefit. The url seems to be transport_url /v1/subscribe?energy_latest.serial I have ...
Added Duty-cycle in fan mode
added fan timer action (0 will turn off the fan if it was on a timer)
If anyone knows how to get the energy_latest from nest would be a huge benefit. The url seems to be transport_url /v1/subscribe?energy_latest.serial I have ...
- Wed Apr 23, 2014 10:13 pm
- Forum: Plugin Support
- Topic: Nest Thermostat plug-in
- Replies: 196
- Views: 80622
Re: Nest Thermostat plug-in
I got it solved with M2Crypto.
Before I release anything I need to talk to Dragon470 about releasing a compiled version ONLY. I may be a little paranoid or pompous, but I think that Nest is closely watching the progress of these threads. If we release a compiled version, it'll be a lot harder for ...
Before I release anything I need to talk to Dragon470 about releasing a compiled version ONLY. I may be a little paranoid or pompous, but I think that Nest is closely watching the progress of these threads. If we release a compiled version, it'll be a lot harder for ...
- Wed Apr 23, 2014 9:01 pm
- Forum: Plugin Support
- Topic: Nest Thermostat plug-in
- Replies: 196
- Views: 80622
Re: Nest Thermostat plug-in
tlslite seems to be a bit outdated from what I've read, M2Crypto also has some great options for strong ciphers.
- Wed Apr 23, 2014 6:42 pm
- Forum: Plugin Support
- Topic: Nest Thermostat plug-in
- Replies: 196
- Views: 80622
Re: Nest Thermostat plug-in
That could be because there are different user names and tokens to log in.
My username/ID consists of a 5 digit numerical phrase.
Thank you very much for your help Walter.
My username/ID consists of a 5 digit numerical phrase.
Thank you very much for your help Walter.
- Wed Apr 23, 2014 2:57 pm
- Forum: Plugin Support
- Topic: Nest Thermostat plug-in
- Replies: 196
- Views: 80622