Open tarkan123 opened 3 months ago
Adding to this looks like the getplans url just needs the Order entry changed to name, so the retrieved rooms are ordered by name.
else if (action==GETROOMS) { params.put("type","plans"); params.put("order","Order"); params.put("used","true");
to
else if (action==GETROOMS) { params.put("type","plans"); params.put("order","name"); params.put("used","true");
I had a read of the code, and am confused by how the rooms are ordered when retrieved by the app?
It is not index number of the room nor display ordering for the Domoticz user.