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.