@korttoma
Thanx this is working perfect.
clio75
@clio75
Best posts made by clio75
-
RE: Get Temperature from other nodes(through VERA).
-
RE: Nano on Battery(Programming problem)
I was not able to upload a sketch with "arduino as ISP" so I whent back to my orginal idea to use a FTDI232(like I use for microPro).
I looked into the schematic on the nano and the micro. I found that on the micro the DTR pin there is a capacitor between reset and DTR input.. But the reset pin on the Nano did not. So I modified one FTDI232 with a capacitor 0,1uF (See picture).
When I also crossed the TX/RX pins it finally works
-
RE: How to get NODE_ID
Thanx @hek
Where do I find these definitions and functions ?
Is there a list somewhere ?
Latest posts made by clio75
-
RE: MySensors 2.2.0 released
@korttoma
Hi,
I switch "CommFailure" to 0 And reloaded engine. and error measure disappear.But is this a new feature that you have implemented ?
-
RE: MySensors 2.2.0 released
Hi,
Thanx for 2.2.0
But I have a new feature that I did not have before.
I'm using VERA edge and my plugin reports that i don't have any connection to the Gateway.
Please advice
-
RE: How to get NODE_ID
@hek
Thanx Again,
I think I was on that page 3-4 time without seeing getnodeid()
: ) -
RE: How to get NODE_ID
Thanx @hek
Where do I find these definitions and functions ?
Is there a list somewhere ? -
How to get NODE_ID
Hi,
I'm looking for a way to get the NODE_ID.
In lib 1,5 this was defined as MY_NODE_ID AUTO..But in LIB 2,0 I can't find any defenitions like this.
I have tried to write out MY_NODE_ID but it only return 255,I like to use it as a delay for my heaters. I don't like them all to be turned on at the same time. Thanx
-
RE: Get Temperature from other nodes(through VERA).
Hi @korttoma,
Just an other question,
II'm also using PLEG.
Is there a way to compeer the last value against the new value and only IF these values are different we sending a this new value.some thing like :
local temp = luup.variable_get("urn:upnp-org:serviceId:TemperatureSensor1","CurrentTemperature", 35)
local oldTemp = luup.variable_get("urn:upnp-org:serviceId:TemperatureSensor1","VAR_1", 14)
if temp != oldTemp then
luup.call_action("urn:upnp-arduino-cc:serviceId:arduino1", "SendCommand", {radioId="14;2", variableId="VAR_1", value=temp}, 3)
end
Thanx -
RE: Get Temperature from other nodes(through VERA).
@korttoma
Thanx this is working perfect. -
RE: Get Temperature from other nodes(through VERA).
Thanx, I will Try again this afternoon
-
RE: Get Temperature from other nodes(through VERA).
hi @korttoma
Thanx for your suggestion, But I was not able to figure out where to insert this LUA code.
Thanx
-
Get Temperature from other nodes(through VERA).
Hi,
I'm have started to plan a irrigation controller(Thanx @petewill).
But I need to get the temperature from my sensors to my controller. I have not been able to do thisMy plan was to read this out from my vera controller, but cant find any way to do this.
Does anyone have a advice or idea to do this ?I'm using the V2.0.0, of library.
I have tried to use the
request(tempNode_ID, V_TEMP) But no replay from VERA.
To store/update the "setTemp" I'm using the V_VAR1 on the and this is returned from VEAR.So Is this possible or not ?
Thanx