Hi, ofcourse I use Homey for all. But if I push the light on in Shelly app. The light in Homey stays off. Otherwise I switch the light on in Homey in Shelly it goes on.
I have my apps connected by all others wifi.
homey 2019 version 12.4.8 and shelly app v3.45.0
Hi, I am also using Shell EM. Connected in Homey by others Wifi. Since some weeks there is only reporting one device. Device 2 is ok but device 1 is in Homey not connected. In Shelly itself I have no problem.
homey 2019 version 12.4.8 and shelly app v3.45.0
I have a Shelly UNI connected to a Cyble sensor on my gas meter. The Shelly is configured to count in cubic meters (m³), and everything appears to be working correctly in the Shelly UI.
When i add the device to my Homey pro, i get this:
I dont see any measurement..
capabilities looks like this:
What do i have to do to simply read my already calculated gas volume?
The pictures show different inputs 1 and 2?
Pulscounter total is the right one, but, i already configured kubicmeters incl. calculation on the shelly, so why cant i simply consume the value which my shelly is showing?
Im also not interrested in all these clutter the Shelly uni brings with it, i only want to see the counter, but in the right format and not pulses. I would like to show it es a gas meter.
EDIT
I solved it by using MQTT Hub and publishing the calculated value to MQTT by using this script on my Shelly Uni:
// Shelly Plus Script: extrahiere xtotal aus JSON und republiziere als Float
let INPUT_TOPIC = "shellyplusuni-gas/status/input:2";
let OUTPUT_TOPIC = "shellyplusuni-gas/gasmeter/m3";
MQTT.subscribe(INPUT_TOPIC, function (topic, message) {
try {
let data = JSON.parse(message);
let value = data.counts.xtotal;
if (typeof value === "number") {
MQTT.publish(OUTPUT_TOPIC, value.toFixed(3), 1, false);
}
} catch (e) {
print("Parsing failed: " + e.message);
}
});
In the MQTT Broker i use this topic:
{
"meter_gas": {
"capability": "meter_gas",
"stateTopic": "shellyplusuni-gas/gasmeter/m3",
"displayName": "Gas meter"
}
}
Finally got what i was searching for:
1 Like
Shelly Mini support double, triple & long-click on the input switches. Zigbee currently only single click.
Does anybody know if it’s possible to have double, … clicks on zigbee as well?
Thanks!
Anyone else noticed that kwh does not update anymore on the Wall plug S after the last Shelly app update?