Search found 2 matches

by zacay
Fri Mar 17, 2023 9:45 am
Forum: General
Topic: Telldus Live Pebble app with support for groups and sensors.
Replies: 35
Views: 51559

Re: Telldus Live Pebble app with support for groups and sens

thanks for sharing!

But if you have unknown device in your list the app will crash! "(no name)"
Change in function getDevices() {
if (name.length > 16) { --> if ((name) && (name.length > 16)) {
Can't check length to a empty variable :)
by zacay
Fri Mar 17, 2023 9:45 am
Forum: General
Topic: Telldus Live Pebble app with support for groups and sensors.
Replies: 35
Views: 51559

Re: Telldus Live Pebble app with support for groups and sens

my mistake, I meant sensor list dispatcher.doCall('sensors/list', { includeValues: 1}, function(r) { pebbleSendQueue.send({ "module": "auth", "action": "done" }); sensors = r.sensor; for(var i in sensors) { var name = sensors[i].name; if ((name) && (na...