Works for me. Are you sure you selected temperature
and not set temperature
?
.
Yes, my netatmo does not have āset temperatureā. It does show up in the list.
Recreated the group, now it worksā¦. Strangeā¦
@Jamie are you interested in logging? (Before I delete the group that causes the error)?
Well thats weird, @jamie is it an athom issue? or a group app issue (so I know where to report):
I created the new group, so next step is to replace the old group in all flows
Okay try it another way
Retried this several times 100% reproducable issue
I managed to create a new card and use the highest value setting .
@Peter_Kawa is this the same for you?
I do notice you are at a newer (2.5301) version then I am(2.4.401)ā¦
Is that an experimental? (I do not see updates)
Ah, yes. Thatās a hidden ātrickā. If you add /test to the app URL, a testversion appears (if published). You can always return to the live version just by installing the live version again.
Example:
https://homey.app/a/com.swttt.devicegroups/test/
The link āhttps://github.com/hive/com.groups/issuesā do not work. GitHub is opened with an error that page could not be found.
Today at a scheduled āturn offā of devices in a group one of the devices failed.
Are there any known issues that make sometimes a single device in a group to fail?
This is the appās topic, so the dev Jamie will read your Q most probably.
Donāt know the used protocol?
In general, if many devices are switched at once, some may not receive the command. You should add a little delay, say 100ms. This delay is then applied between every individual devicesā on or off command.
Thanks, looking at the changelog nothing is changed to temperature. So it should nor matter.
Functionally its working fine now (using the highest value). Its just not showing that it does now.
Iāll wait till its relseased and then check again
Check. The names āTestversionā or āexperimentalā is a bit from reality. I use lots of test version apps.
Mostly itās the live app + a few bug fixes / changes / added functionality.
You can help the developer if you run into issues, and you can always revert and install the live version again.
Is it possible to control only light thatās already on? For example, dim all lights from 50% to 1%, but only the one already active?.
Iād like to combine lights that have dim and those that donāt. Is it possible?
I agree, but my wife and kids donātā¦
I use the group for switching an electric heater to keep the attic warm. If it fails they donāt like the automation anymoreā¦
Had an issue 2 weeks ago that my Netatmo lost contact during the day. The value stayed at 20.
That made the average temperature of the group stay high.
So the heater did not switch on.
Guys, anyone would know, why I canāt change TILT, when device actually does support it ? Do I miss something ?
(you can see both position and tilt)
(only position can be adjusted)
Also in group settings, the TILT value is missing / nothing canāt be selectedā¦
Thank you.
Hi!
Can i in any way from a Homeyscript fetch details about groups and devices in a group from the ā< groups >ā-app?
Hey everyone,
Fkey, that looks like a Athom issue rather then an app issue. Iāve also pushed version 2.5 to the live channel (honestly I had forgotten about it).
In regards to some items not always updating (especially in large groups) this is a Homey limitation not an app issue. Iāve attempted to over come it where so the app will actually retry on fail. But best talk to Athom about how it handles sending requests.
@Magnus_Bjelksjo you can use all of the script methods and properties which are available to normal items. (ie. if you can do it with a globe, switch, roller, etc, you can do it with a group).
@Jamie thank you for latest update - can you please also comment on this issue ? Happy to contact Athom if this is Athom issueā¦
@Jamie Thank you for this app. Using it for a while now.
So last night (±04:30) the app updated and my alarm wenāt off . Iāve got a group with 2 doorsensors in it and the update triggered the group as active.
Is this usual behavior when updating? Because then Iām going to change my flow so that I donāt jump out of my bed at night haha. So not a big problem but I was just wondering.
Hi Jamie!
You did not correctly understand my question.
What I am asking is if I somehow with commands in Homeyscript for example the following (the Javascript is not 100% correct but I think you get the idea anyway).
Const GroupApp = Homey.GetApp(ā< group >ā);
Const GroupX = GroupApp.GetGroup(āGroupID_XYZā);
Console.Log(āGroup: ā + GroupX.name);
For (DeviceX of [All devices in GroupX])
Console.Log(ā Device: ā + DeviceX.name);
Try this, Magnus
(Thanks to @Koktail & @robertklep )
Homey.devices.getDevices()
.then(f => {
return Object.values(f).filter((device) => device.driverUri === 'homey:app:com.swttt.devicegroups');
})
.then(devices => console.log(JSON.stringify(devices)));
It returns all device groups, the members and all other related info.