Edge Shelly device support discussion

What he said :grin:

I need to use the Digital Input for a Reed Switch and a Temperature Sensor for the Shelly Plus 1 (not the Shelly Plus 1 PM).

1 Like

Your post got by me and I failed to answer earlier, so sorry about that.

I don’t have any support currently for this add-on. If it’s something you need, I could look at adding it, if you are willing to test it out.

Is there a specific Shelly Plus device you’d need it on?

1 Like

Let me take a look at it and get back to you.

2 Likes

Hello, Trying to get a Shelly Plus1 working. I installed the Gen2 driver and followed the direction at the top. (added device, set IP, fixed IP address) I’m not getting an error, but it’s not switching either. Any obvious things I can check? Thank you!

You shouldn’t create the device manually. Delete it and instead let it be automatically discovered by doing an Add device / Scan for nearby devices.

3 Likes

Got it! Wow you had me scratching my head. It just wasn’t finding the plus 1… then I realized I had my smart things hub on the IOT subnet, which can’t talk to other things internally. Before this, all of my devices were z-wave, not wifi. Anyway I modified a fw rule and now it works.

Thank you!
-Mike-

2 Likes

Hello, @TAustin How are you?
Excuse the question, but did you remove the “Shelly EM” Driver? I’m trying to find it to install on my SmartThings and I can’t find it and therefore I can’t make the connection between shelly and Smartthings. If you can help me thanks.
And I’m sorry for my English, because I’m from São Paulo Brazil and I don’t speak English and I’m using Google Translate. Thank you for your attention.

Olá! The Shelly EM device is a GEN1 device, so is supported by my Shelly Device Driver V1.7. It can be installed from this channel.

Please refer to the first post in this community topic for more information.

Let me know if you run in to any problems.

Would be great if you could implement add on support for the Shelly Plus 1.

1 Like

Hello @TAustin ! I’ve just got a Dimmer 2 to play with and I’m planning to install it on my hallway lights, mainly to be triggered by a motion sensor.
The problem is that if I turn on the lights with a short press on the physical button, the light turns on with the last brightness setting, then I have to keep pressing the button to get to full brightness.
I would like to create a routine to override the motion sensor and brightness level when a button is short pressed (i.e. turn on at full brightness and not turn off when no motion).
While I see that in the Shelly app you can add actions based on the physical input (short/long pressed), the edge driver doesn’t expose these actions.

Is there any way you can add the physical button’s input to the edge driver?

Also, thanks a lot for you work. Thanks to people like you I haven’t yet given up on smartthings.

Yes, I should be able to add the input field to the dimmer device; I’ve done similar for other devices. I’ll try to have this by next week.

1 Like

It’s on my list of to-dos!

3 Likes

Hello - I have added the input fields to the GEN1 Dimmer/2 device as you requested. I am unable to test the changes here since I don’t have this device, so will rely on you to make sure it is working all ok.

I’ve pushed the driver update out so it should be reaching your hub and getting automatically updated within 12 hours. Confirm that you have the update by checking the driver version; it should be 2023-03-14T19:03:42.416673263.

You will need to create a new dimmer device once you have it, in order to get the input fields.

Let me know how it is working for you.

Hello! Thanks for the quick response.
There seems to be a problem with input 2.
When I short press the physical input 2, I get an ON/OFF state in the driver and it’s ok.
But when I long press the physical input 2, I get an ON state for input 1 as well.
Input 1 works well for both long and short press.

I use the Dimmer with a physical switch that has 2 reset buttons

I’m not sure what is going wrong. Right now the driver doesn’t get notified of short press vs. long press events - only on or off. I don’t know if it’s relevant, but I noticed in the API documentation that it says for the short and long press actions:

Works only when button is configured as detached

We may need to get some logs to see what is happening. Do you have the CLI?

@tgift00, @JohnRichard, @JDRoberts -

Guys I’m starting to look at the Add-On support and the documentation is a bit vague as to how it works in the API. There is this table provided:

Peripheral type	    Component type

ds18b20	             temperature
dht22	         temperature, humidity
digital_in          	input
analog_in	            input
voltmeter	          voltmeter

But it’s not always clear what effect having these add-ons installed has on the data being sent.

For example, when a digital_in add-on is connected, how does that change the values that the driver might receive? The driver already handles boolean state values for the input status, so it’s not clear whether a digital_in add-on would be any different from a switch or button as the input trigger.

Regarding the temperature add-on: there are no notifications that get automatically sent by the Shelly device when a temperature reading changes. So with the current driver, those would be updated only when a manual refresh is initiated from the app (pull-down gesture). In order to have real-time updates, it looks like I would have to implement webhooks, which the driver doesn’t currently use. Not saying it can’t be done, but it’s not trivial.

@tgift00 - what specific add-on are you using?

1 Like

The main use cases I’ve been getting questions about are with the probe temperature sensor. And they would definitely want to use the temperature going in or out of a specific range as a routine trigger. Although there’s a Simpler use case, which is the example Shelly usually gives, where the temperature going in or out of a specific range triggers that Shelly relay itself to turn on or off.

I added the logs bellow.
In the mean time I tried disabling the on/off URL calls for input 1 from the shelly device and the behavior is the same. On a long press on input 2, input 1 gets triggered.

Long pres:
2023-03-15T18:22:40.070950452+00:00 DEBUG Shelly Device Driver V1.8b Accepted connection from 192.168.50.96:1436
2023-03-15T18:22:40.075030785+00:00 DEBUG Shelly Device Driver V1.8b Received header: GET /eeb8bb74-63b4-47f5-8ccf-bc1d33b2cfce/button/1/on HTTP/1.1
2023-03-15T18:22:40.123149785+00:00 INFO Shelly Device Driver V1.8b Message for Shelly Dimmer 1: endpoint=/eeb8bb74-63b4-47f5-8ccf-bc1d33b2cfce/button/1/on
2023-03-15T18:22:40.137804452+00:00 INFO Shelly Device Driver V1.8b <Device: eeb8bb74-63b4-47f5-8ccf-bc1d33b2cfce (Shelly Dimmer 1)> emitting event: {“attribute_id”:“text”,“capability_id”:“partyvoice23922.statefield2”,“component_id”:“input1”,“state”:{“value”:“on”}}
2023-03-15T18:22:40.142273785+00:00 INFO Shelly Device Driver V1.8b Sending HTTP request: http://192.168.50.96/status
2023-03-15T18:22:40.337000785+00:00 DEBUG Shelly Device Driver V1.8b HTTP ret: 1
2023-03-15T18:22:40.344032118+00:00 DEBUG Shelly Device Driver V1.8b HTTP code: 200
2023-03-15T18:22:40.355167118+00:00 DEBUG Shelly Device Driver V1.8b HTTP response: {“wifi_sta”:{“connected”:true,“ssid”:“Bridut’s Crib”,“ip”:“192.168.50.96”,“rssi”:-61},“cloud”:{“enabled”:true,“connected”:true},“mqtt”:{“connected”:false},“time”:“20:22”,“unixtime”:1678904560,“serial”:5723,“has_update”:false,“mac”:“34945472459B”,“cfg_changed_cnt”:36,“actions_stats”:{“skipped”:0},“lights”:[{“ison”:true,“source”:“http”,“has_timer”:false,“timer_started”:0,“timer_duration”:0,“timer_remaining”:0,“mode”:“white”,“brightness”:50,“transition”:0}],“meters”:[{“power”:15.64,“overpower”:0.00,“is_valid”:true, “timestamp”:1678911760,“counters”:[6.259, 1.833, 0.000],“total”:3434}],“inputs”:[{“input”:0,“event”:“”,“event_cnt”:55},{“input”:1,“event”:“”,“event_cnt”:48}],“tmp”:{“tC”:44.20,“tF”:111.55, “is_valid”:true},“calibrated”:true,“calib_progress”:0,“calib_status”:0,“calib_running”:0,“wire_mode”:1,“forced_neutral”:false,“overtemperature”:false,“loaderror”:0,“overpower”:false,“debug”:0,“update”:{“status”:“idle”,“has_update”:false,“new_version”:“20221027-104444/v1.12.1-ga9117d3”,“old_version”:“20221027-104444/v1.12.1-ga9117d3”},“ram_total”:49672,“ram_free”:33712,“fs_size”:233681,“fs_free”:115209,“uptime”:188376}
2023-03-15T18:22:40.356845452+00:00 INFO Shelly Device Driver V1.8b <Device: eeb8bb74-63b4-47f5-8ccf-bc1d33b2cfce (Shelly Dimmer 1)> emitting event: {“attribute_id”:“switch”,“capability_id”:“switch”,“component_id”:“main”,“state”:{“value”:“on”}}
2023-03-15T18:22:40.368330452+00:00 INFO Shelly Device Driver V1.8b <Device: eeb8bb74-63b4-47f5-8ccf-bc1d33b2cfce (Shelly Dimmer 1)> emitting event: {“attribute_id”:“level”,“capability_id”:“switchLevel”,“component_id”:“main”,“state”:{“value”:50}}
2023-03-15T18:22:40.385695452+00:00 INFO Shelly Device Driver V1.8b <Device: eeb8bb74-63b4-47f5-8ccf-bc1d33b2cfce (Shelly Dimmer 1)> emitting event: {“attribute_id”:“power”,“capability_id”:“powerMeter”,“component_id”:“main”,“state”:{“unit”:“W”,“value”:15.64}}
2023-03-15T18:22:40.406939118+00:00 INFO Shelly Device Driver V1.8b <Device: eeb8bb74-63b4-47f5-8ccf-bc1d33b2cfce (Shelly Dimmer 1)> emitting event: {“attribute_id”:“energy”,“capability_id”:“energyMeter”,“component_id”:“main”,“state”:{“unit”:“Wh”,“value”:57.233333333333334}}
2023-03-15T18:22:40.428549785+00:00 INFO Shelly Device Driver V1.8b <Device: eeb8bb74-63b4-47f5-8ccf-bc1d33b2cfce (Shelly Dimmer 1)> emitting event: {“attribute_id”:“temperature”,“capability_id”:“temperatureMeasurement”,“component_id”:“main”,“state”:{“unit”:“C”,“value”:44.2}}
2023-03-15T18:22:40.447578785+00:00 INFO Shelly Device Driver V1.8b <Device: eeb8bb74-63b4-47f5-8ccf-bc1d33b2cfce (Shelly Dimmer 1)> emitting event: {“attribute_id”:“rssi”,“capability_id”:“signalStrength”,“component_id”:“main”,“state”:{“value”:-61}}
2023-03-15T18:22:40.467800452+00:00 INFO Shelly Device Driver V1.8b <Device: eeb8bb74-63b4-47f5-8ccf-bc1d33b2cfce (Shelly Dimmer 1)> emitting event: {“attribute_id”:“lqi”,“capability_id”:“signalStrength”,“component_id”:“main”,“state”:{“value”:0},“visibility”:{“displayed”:false}}
2023-03-15T18:22:40.489123119+00:00 INFO Shelly Device Driver V1.8b <Device: eeb8bb74-63b4-47f5-8ccf-bc1d33b2cfce (Shelly Dimmer 1)> emitting event: {“attribute_id”:“text”,“capability_id”:“partyvoice23922.statefield2”,“component_id”:“input0”,“state”:{“value”:“off”}}
2023-03-15T18:22:40.504564785+00:00 INFO Shelly Device Driver V1.8b <Device: eeb8bb74-63b4-47f5-8ccf-bc1d33b2cfce (Shelly Dimmer 1)> emitting event: {“attribute_id”:“text”,“capability_id”:“partyvoice23922.statefield2”,“component_id”:“input1”,“state”:{“value”:“on”}}
2023-03-15T18:22:43.023858120+00:00 DEBUG Shelly Device Driver V1.8b Accepted connection from 192.168.50.96:15956
2023-03-15T18:22:43.032689120+00:00 DEBUG Shelly Device Driver V1.8b Received header: GET /eeb8bb74-63b4-47f5-8ccf-bc1d33b2cfce/button/1/off HTTP/1.1
2023-03-15T18:22:43.074127120+00:00 INFO Shelly Device Driver V1.8b Message for Shelly Dimmer 1: endpoint=/eeb8bb74-63b4-47f5-8ccf-bc1d33b2cfce/button/1/off
2023-03-15T18:22:43.082717786+00:00 INFO Shelly Device Driver V1.8b <Device: eeb8bb74-63b4-47f5-8ccf-bc1d33b2cfce (Shelly Dimmer 1)> emitting event: {“attribute_id”:“text”,“capability_id”:“partyvoice23922.statefield2”,“component_id”:“input1”,“state”:{“value”:“off”}}
2023-03-15T18:22:43.087525453+00:00 INFO Shelly Device Driver V1.8b Sending HTTP request: http://192.168.50.96/status
2023-03-15T18:22:43.321651453+00:00 DEBUG Shelly Device Driver V1.8b HTTP ret: 1
2023-03-15T18:22:43.323285453+00:00 DEBUG Shelly Device Driver V1.8b HTTP code: 200
2023-03-15T18:22:43.324863120+00:00 DEBUG Shelly Device Driver V1.8b HTTP response: {“wifi_sta”:{“connected”:true,“ssid”:“Bridut’s Crib”,“ip”:“192.168.50.96”,“rssi”:-61},“cloud”:{“enabled”:true,“connected”:true},“mqtt”:{“connected”:false},“time”:“20:22”,“unixtime”:1678904563,“serial”:5725,“has_update”:false,“mac”:“34945472459B”,“cfg_changed_cnt”:36,“actions_stats”:{“skipped”:0},“lights”:[{“ison”:true,“source”:“input”,“has_timer”:false,“timer_started”:0,“timer_duration”:0,“timer_remaining”:0,“mode”:“white”,“brightness”:1,“transition”:0}],“meters”:[{“power”:15.64,“overpower”:0.00,“is_valid”:true, “timestamp”:1678911763,“counters”:[6.259, 1.833, 0.000],“total”:3434}],“inputs”:[{“input”:0,“event”:“”,“event_cnt”:55},{“input”:0,“event”:“L”,“event_cnt”:49}],“tmp”:{“tC”:44.20,“tF”:111.55, “is_valid”:true},“calibrated”:true,“calib_progress”:0,“calib_status”:0,“calib_running”:0,“wire_mode”:1,“forced_neutral”:false,“overtemperature”:false,“loaderror”:0,“overpower”:false,“debug”:0,“update”:{“status”:“idle”,“has_update”:false,“new_version”:“20221027-104444/v1.12.1-ga9117d3”,“old_version”:“20221027-104444/v1.12.1-ga9117d3”},“ram_total”:49672,“ram_free”:34184,“fs_size”:233681,“fs_free”:115209,“uptime”:188379}
2023-03-15T18:22:43.326822787+00:00 INFO Shelly Device Driver V1.8b <Device: eeb8bb74-63b4-47f5-8ccf-bc1d33b2cfce (Shelly Dimmer 1)> emitting event: {“attribute_id”:“switch”,“capability_id”:“switch”,“component_id”:“main”,“state”:{“value”:“on”}}
2023-03-15T18:22:43.365104120+00:00 INFO Shelly Device Driver V1.8b <Device: eeb8bb74-63b4-47f5-8ccf-bc1d33b2cfce (Shelly Dimmer 1)> emitting event: {“attribute_id”:“level”,“capability_id”:“switchLevel”,“component_id”:“main”,“state”:{“value”:1}}
2023-03-15T18:22:43.384259787+00:00 INFO Shelly Device Driver V1.8b <Device: eeb8bb74-63b4-47f5-8ccf-bc1d33b2cfce (Shelly Dimmer 1)> emitting event: {“attribute_id”:“power”,“capability_id”:“powerMeter”,“component_id”:“main”,“state”:{“unit”:“W”,“value”:15.64}}
2023-03-15T18:22:43.405653120+00:00 INFO Shelly Device Driver V1.8b <Device: eeb8bb74-63b4-47f5-8ccf-bc1d33b2cfce (Shelly Dimmer 1)> emitting event: {“attribute_id”:“energy”,“capability_id”:“energyMeter”,“component_id”:“main”,“state”:{“unit”:“Wh”,“value”:57.233333333333334}}
2023-03-15T18:22:43.424661453+00:00 INFO Shelly Device Driver V1.8b <Device: eeb8bb74-63b4-47f5-8ccf-bc1d33b2cfce (Shelly Dimmer 1)> emitting event: {“attribute_id”:“temperature”,“capability_id”:“temperatureMeasurement”,“component_id”:“main”,“state”:{“unit”:“C”,“value”:44.2}}
2023-03-15T18:22:43.444094787+00:00 INFO Shelly Device Driver V1.8b <Device: eeb8bb74-63b4-47f5-8ccf-bc1d33b2cfce (Shelly Dimmer 1)> emitting event: {“attribute_id”:“rssi”,“capability_id”:“signalStrength”,“component_id”:“main”,“state”:{“value”:-61}}
2023-03-15T18:22:43.474012453+00:00 INFO Shelly Device Driver V1.8b <Device: eeb8bb74-63b4-47f5-8ccf-bc1d33b2cfce (Shelly Dimmer 1)> emitting event: {“attribute_id”:“lqi”,“capability_id”:“signalStrength”,“component_id”:“main”,“state”:{“value”:0},“visibility”:{“displayed”:false}}
2023-03-15T18:22:43.482879787+00:00 INFO Shelly Device Driver V1.8b <Device: eeb8bb74-63b4-47f5-8ccf-bc1d33b2cfce (Shelly Dimmer 1)> emitting event: {“attribute_id”:“text”,“capability_id”:“partyvoice23922.statefield2”,“component_id”:“input0”,“state”:{“value”:“on”}}
2023-03-15T18:22:43.500510453+00:00 INFO Shelly Device Driver V1.8b <Device: eeb8bb74-63b4-47f5-8ccf-bc1d33b2cfce (Shelly Dimmer 1)> emitting event: {“attribute_id”:“text”,“capability_id”:“partyvoice23922.statefield2”,“component_id”:“input1”,“state”:{“value”:“off”}}

Short press:
2023-03-15T18:43:47.215058405+00:00 DEBUG Shelly Device Driver V1.8b Accepted connection from 192.168.50.96:31775
2023-03-15T18:43:47.234705739+00:00 DEBUG Shelly Device Driver V1.8b Received header: GET /eeb8bb74-63b4-47f5-8ccf-bc1d33b2cfce/button/1/on HTTP/1.1
2023-03-15T18:43:47.282414405+00:00 INFO Shelly Device Driver V1.8b Message for Shelly Dimmer 1: endpoint=/eeb8bb74-63b4-47f5-8ccf-bc1d33b2cfce/button/1/on
2023-03-15T18:43:47.286407405+00:00 INFO Shelly Device Driver V1.8b <Device: eeb8bb74-63b4-47f5-8ccf-bc1d33b2cfce (Shelly Dimmer 1)> emitting event: {“attribute_id”:“text”,“capability_id”:“partyvoice23922.statefield2”,“component_id”:“input1”,“state”:{“value”:“on”}}
2023-03-15T18:43:47.293365739+00:00 INFO Shelly Device Driver V1.8b Sending HTTP request: http://192.168.50.96/status
2023-03-15T18:43:47.445940739+00:00 DEBUG Shelly Device Driver V1.8b HTTP ret: 1
2023-03-15T18:43:47.458648739+00:00 DEBUG Shelly Device Driver V1.8b HTTP code: 200
2023-03-15T18:43:47.459944072+00:00 DEBUG Shelly Device Driver V1.8b HTTP response: {“wifi_sta”:{“connected”:true,“ssid”:“Bridut’s Crib”,“ip”:“192.168.50.96”,“rssi”:-60},“cloud”:{“enabled”:true,“connected”:true},“mqtt”:{“connected”:false},“time”:“20:43”,“unixtime”:1678905827,“serial”:5760,“has_update”:false,“mac”:“34945472459B”,“cfg_changed_cnt”:36,“actions_stats”:{“skipped”:0},“lights”:[{“ison”:true,“source”:“http”,“has_timer”:false,“timer_started”:0,“timer_duration”:0,“timer_remaining”:0,“mode”:“white”,“brightness”:50,“transition”:0}],“meters”:[{“power”:15.84,“overpower”:0.00,“is_valid”:true, “timestamp”:1678913027,“counters”:[0.000, 0.000, 0.000],“total”:3440}],“inputs”:[{“input”:0,“event”:“”,“event_cnt”:55},{“input”:0,“event”:“S”,“event_cnt”:50}],“tmp”:{“tC”:42.93,“tF”:109.28, “is_valid”:true},“calibrated”:true,“calib_progress”:0,“calib_status”:0,“calib_running”:0,“wire_mode”:1,“forced_neutral”:false,“overtemperature”:false,“loaderror”:0,“overpower”:false,“debug”:0,“update”:{“status”:“idle”,“has_update”:false,“new_version”:“20221027-104444/v1.12.1-ga9117d3”,“old_version”:“20221027-104444/v1.12.1-ga9117d3”},“ram_total”:49672,“ram_free”:34916,“fs_size”:233681,“fs_free”:115209,“uptime”:189643}
2023-03-15T18:43:47.467402739+00:00 INFO Shelly Device Driver V1.8b <Device: eeb8bb74-63b4-47f5-8ccf-bc1d33b2cfce (Shelly Dimmer 1)> emitting event: {“attribute_id”:“switch”,“capability_id”:“switch”,“component_id”:“main”,“state”:{“value”:“on”}}
2023-03-15T18:43:47.480476405+00:00 INFO Shelly Device Driver V1.8b <Device: eeb8bb74-63b4-47f5-8ccf-bc1d33b2cfce (Shelly Dimmer 1)> emitting event: {“attribute_id”:“level”,“capability_id”:“switchLevel”,“component_id”:“main”,“state”:{“value”:50}}
2023-03-15T18:43:47.499366739+00:00 INFO Shelly Device Driver V1.8b <Device: eeb8bb74-63b4-47f5-8ccf-bc1d33b2cfce (Shelly Dimmer 1)> emitting event: {“attribute_id”:“power”,“capability_id”:“powerMeter”,“component_id”:“main”,“state”:{“unit”:“W”,“value”:15.84}}
2023-03-15T18:43:47.519819072+00:00 INFO Shelly Device Driver V1.8b <Device: eeb8bb74-63b4-47f5-8ccf-bc1d33b2cfce (Shelly Dimmer 1)> emitting event: {“attribute_id”:“energy”,“capability_id”:“energyMeter”,“component_id”:“main”,“state”:{“unit”:“Wh”,“value”:57.333333333333336}}
2023-03-15T18:43:47.540228739+00:00 INFO Shelly Device Driver V1.8b <Device: eeb8bb74-63b4-47f5-8ccf-bc1d33b2cfce (Shelly Dimmer 1)> emitting event: {“attribute_id”:“temperature”,“capability_id”:“temperatureMeasurement”,“component_id”:“main”,“state”:{“unit”:“C”,“value”:42.93}}
2023-03-15T18:43:47.558936072+00:00 INFO Shelly Device Driver V1.8b <Device: eeb8bb74-63b4-47f5-8ccf-bc1d33b2cfce (Shelly Dimmer 1)> emitting event: {“attribute_id”:“rssi”,“capability_id”:“signalStrength”,“component_id”:“main”,“state”:{“value”:-60}}
2023-03-15T18:43:47.580263405+00:00 INFO Shelly Device Driver V1.8b <Device: eeb8bb74-63b4-47f5-8ccf-bc1d33b2cfce (Shelly Dimmer 1)> emitting event: {“attribute_id”:“lqi”,“capability_id”:“signalStrength”,“component_id”:“main”,“state”:{“value”:0},“visibility”:{“displayed”:false}}
2023-03-15T18:43:47.599688739+00:00 INFO Shelly Device Driver V1.8b <Device: eeb8bb74-63b4-47f5-8ccf-bc1d33b2cfce (Shelly Dimmer 1)> emitting event: {“attribute_id”:“text”,“capability_id”:“partyvoice23922.statefield2”,“component_id”:“input0”,“state”:{“value”:“off”}}
2023-03-15T18:43:47.616908405+00:00 INFO Shelly Device Driver V1.8b <Device: eeb8bb74-63b4-47f5-8ccf-bc1d33b2cfce (Shelly Dimmer 1)> emitting event: {“attribute_id”:“text”,“capability_id”:“partyvoice23922.statefield2”,“component_id”:“input1”,“state”:{“value”:“off”}}
2023-03-15T18:43:47.686908405+00:00 DEBUG Shelly Device Driver V1.8b Accepted connection from 192.168.50.96:11823
2023-03-15T18:43:47.701425405+00:00 DEBUG Shelly Device Driver V1.8b Received header: GET /eeb8bb74-63b4-47f5-8ccf-bc1d33b2cfce/button/1/off HTTP/1.1
2023-03-15T18:43:47.722021072+00:00 INFO Shelly Device Driver V1.8b Message for Shelly Dimmer 1: endpoint=/eeb8bb74-63b4-47f5-8ccf-bc1d33b2cfce/button/1/off
2023-03-15T18:43:47.727544739+00:00 INFO Shelly Device Driver V1.8b <Device: eeb8bb74-63b4-47f5-8ccf-bc1d33b2cfce (Shelly Dimmer 1)> emitting event: {“attribute_id”:“text”,“capability_id”:“partyvoice23922.statefield2”,“component_id”:“input1”,“state”:{“value”:“off”}}
2023-03-15T18:43:47.731855405+00:00 INFO Shelly Device Driver V1.8b Sending HTTP request: http://192.168.50.96/status
2023-03-15T18:43:47.934806739+00:00 DEBUG Shelly Device Driver V1.8b HTTP ret: 1
2023-03-15T18:43:47.940273406+00:00 DEBUG Shelly Device Driver V1.8b HTTP code: 200
2023-03-15T18:43:47.941518406+00:00 DEBUG Shelly Device Driver V1.8b HTTP response: {“wifi_sta”:{“connected”:true,“ssid”:“Bridut’s Crib”,“ip”:“192.168.50.96”,“rssi”:-58},“cloud”:{“enabled”:true,“connected”:true},“mqtt”:{“connected”:false},“time”:“20:43”,“unixtime”:1678905828,“serial”:5762,“has_update”:false,“mac”:“34945472459B”,“cfg_changed_cnt”:36,“actions_stats”:{“skipped”:0},“lights”:[{“ison”:false,“source”:“input”,“has_timer”:false,“timer_started”:0,“timer_duration”:0,“timer_remaining”:0,“mode”:“white”,“brightness”:50,“transition”:0}],“meters”:[{“power”:15.95,“overpower”:0.00,“is_valid”:true, “timestamp”:1678913028,“counters”:[0.000, 0.000, 0.000],“total”:3440}],“inputs”:[{“input”:0,“event”:“”,“event_cnt”:55},{“input”:0,“event”:“S”,“event_cnt”:50}],“tmp”:{“tC”:43.00,“tF”:109.41, “is_valid”:true},“calibrated”:true,“calib_progress”:0,“calib_status”:0,“calib_running”:0,“wire_mode”:1,“forced_neutral”:false,“overtemperature”:false,“loaderror”:0,“overpower”:false,“debug”:0,“update”:{“status”:“idle”,“has_update”:false,“new_version”:“20221027-104444/v1.12.1-ga9117d3”,“old_version”:“20221027-104444/v1.12.1-ga9117d3”},“ram_total”:49672,“ram_free”:33824,“fs_size”:233681,“fs_free”:115209,“uptime”:189643}
2023-03-15T18:43:47.947889739+00:00 INFO Shelly Device Driver V1.8b <Device: eeb8bb74-63b4-47f5-8ccf-bc1d33b2cfce (Shelly Dimmer 1)> emitting event: {“attribute_id”:“switch”,“capability_id”:“switch”,“component_id”:“main”,“state”:{“value”:“off”}}
2023-03-15T18:43:47.958881072+00:00 INFO Shelly Device Driver V1.8b <Device: eeb8bb74-63b4-47f5-8ccf-bc1d33b2cfce (Shelly Dimmer 1)> emitting event: {“attribute_id”:“level”,“capability_id”:“switchLevel”,“component_id”:“main”,“state”:{“value”:50}}
2023-03-15T18:43:47.975836406+00:00 INFO Shelly Device Driver V1.8b <Device: eeb8bb74-63b4-47f5-8ccf-bc1d33b2cfce (Shelly Dimmer 1)> emitting event: {“attribute_id”:“power”,“capability_id”:“powerMeter”,“component_id”:“main”,“state”:{“unit”:“W”,“value”:15.95}}
2023-03-15T18:43:47.997355072+00:00 INFO Shelly Device Driver V1.8b <Device: eeb8bb74-63b4-47f5-8ccf-bc1d33b2cfce (Shelly Dimmer 1)> emitting event: {“attribute_id”:“energy”,“capability_id”:“energyMeter”,“component_id”:“main”,“state”:{“unit”:“Wh”,“value”:57.333333333333336}}
2023-03-15T18:43:48.020931739+00:00 INFO Shelly Device Driver V1.8b <Device: eeb8bb74-63b4-47f5-8ccf-bc1d33b2cfce (Shelly Dimmer 1)> emitting event: {“attribute_id”:“temperature”,“capability_id”:“temperatureMeasurement”,“component_id”:“main”,“state”:{“unit”:“C”,“value”:43.0}}
2023-03-15T18:43:48.041772406+00:00 INFO Shelly Device Driver V1.8b <Device: eeb8bb74-63b4-47f5-8ccf-bc1d33b2cfce (Shelly Dimmer 1)> emitting event: {“attribute_id”:“rssi”,“capability_id”:“signalStrength”,“component_id”:“main”,“state”:{“value”:-58}}
2023-03-15T18:43:48.059485406+00:00 INFO Shelly Device Driver V1.8b <Device: eeb8bb74-63b4-47f5-8ccf-bc1d33b2cfce (Shelly Dimmer 1)> emitting event: {“attribute_id”:“lqi”,“capability_id”:“signalStrength”,“component_id”:“main”,“state”:{“value”:0},“visibility”:{“displayed”:false}}
2023-03-15T18:43:48.082471739+00:00 INFO Shelly Device Driver V1.8b <Device: eeb8bb74-63b4-47f5-8ccf-bc1d33b2cfce (Shelly Dimmer 1)> emitting event: {“attribute_id”:“text”,“capability_id”:“partyvoice23922.statefield2”,“component_id”:“input0”,“state”:{“value”:“off”}}
2023-03-15T18:43:48.097120739+00:00 INFO Shelly Device Driver V1.8b <Device: eeb8bb74-63b4-47f5-8ccf-bc1d33b2cfce (Shelly Dimmer 1)> emitting event: {“attribute_id”:“text”,“capability_id”:“partyvoice23922.statefield2”,“component_id”:“input1”,“state”:{“value”:“off”}}

@TAustin

I had hoped to begin using the Add-on, however Shelly informed me a few days ago on my 2/26/23 order that the Add-on is not in stock and they have no idea when it will be.

Not sure if this helps, but I had intended on primarily using the Digital Input as a Dry Contact for Gates Open/Close Status, and the Temperature Sensor.

I am placing a new order today and will let you know when it arrives.

Edit: Evidently not available to even place as an order:

Hi Shelly users, I’m looking for a device which will accept dry contact input from my driveway alarm, when it alarms it opens the circuit and triggers a smart things event

This used to input to a fibaro door sensor which has died, so I’m looking at the Shelly uni and wondered if you concur this is a possible use of the Shelly uni please?