I had the value for the HSM set wrong- I had the nodeID instead of the DeviceID. That last motion is now reporting fine, but I cant get the Schlage’s to report. I set
the low_test to 99, and those batteries are currently at 72% and 54%.
Also, I have 2 HSM’s that are at 100%. Can I set the low_test to 101?
Here is the code used:
local room = “”
local low_level = “35”
local serviceId = “urn:micasaverde-com:serviceId:HaDevice1”
local variableId = “BatteryLevel”
local warning = "The battery in the "
local low_test = 99
local level
level = luup.variable_get(serviceId, variableId, 22) or “0”
level = tonumber(level)
if (level<low_test) then
room = “Garage Entry-outside” low_level=level end
local message_out = warning…room…" is now at “…low_level…”%"
level = luup.variable_get(serviceId, variableId, 3) or “0”
level = tonumber(level)
if (level<low_test) then
room = “Garage Entry-inside” low_level=level end
local message_out = warning…room…" is now at “…low_level…”%"
level = luup.variable_get(serviceId, variableId, 60) or “0”
level = tonumber(level)
if (level<low_test) then
room = “JC Closet motion” low_level=level end
local message_out = warning…room…" is now at “…low_level…”%"
level = luup.variable_get(serviceId, variableId, 36) or “0”
level = tonumber(level)
if (level<low_test) then
room = “Pantry motion” low_level=level end
local message_out = warning…room…" is now at “…low_level…”%"
level = luup.variable_get(serviceId, variableId, 61) or “0”
level = tonumber(level)
if (level<low_test) then
room = “closet motion” low_level=level end
local message_out = warning…room…" is now at “…low_level…”%"
[quote=“FlyBoyBob, post:40, topic:168044”][quote=“ballroller, post:38, topic:168044”]… the email came back saying “The battery in the closet motion is now at 0%” This particular motion is at 91% in reality.
Any idea why this is happening? Does it have to do with the test level?[/quote]
The value of “0” is the diagnostic “or 0” in the line:
level = luup.variable_get(serviceId,variableId,44) or "0"
where if variable_get can’t find the variable the code at least won’t crash.
Also what it tells me is that you are probably using the deviceID for the Motion Sensor, rather than the “3-in-1”. If you look in your Dashboard you will see that each 3-in-1 (I am assuming you are using HSM100s?) shows up as 4 devices = Light, Temperature, Motion, and 3-in-1. Only the 3-in-1 deviceID contains the BatteryLevel variable. Each of the other 3 devices will return a “0”, as you have seen.
I would also recommend temporarily changing low_test to a value just above levels you are seeing on your Dashboard for each sensor. See that you get an email with the correct value, keeping in mind the code is not fancy and will only report the last detected low value.
Hope that helps!
bob[/quote]