greenJ
(🌲🌲🌲🌲🌲🌲🌲)
February 27, 2024, 8:56am
1
Dear Shelly dev’s,
Recently I bought a couple of Shelly 1PM Mini’s, I received the Gen3 model. They’re not playing nice with the 4.1 Shelly binding release. I tried them with the most recent OH 4.2 snapshot build and as well with the 4.2 Shelly binding snapshot build. In both cases I’ve got alot of communication errors.
So, am I correct in asuming these Gen3 models aren’t supported yet?
And is there maybe a workaround to get them playing nice with the 4.1 build, or do I need to be just a littlepatient? I hope someone can help me out.
Best regards,
Jesse
Vradatta
(Eric Zenz-Matzl)
February 27, 2024, 9:13am
2
I’m using my Shelly PM Mini Gen3 with MQTT unitl they are working fine with the newest shelly binding version.
This should also work with the 1PM Mini Gen3
1 Like
greenJ
(🌲🌲🌲🌲🌲🌲🌲)
February 27, 2024, 5:34pm
3
Ha Erik,
Thanx for the reply and the mqtt suggestion. I guess I’ll take that route for now.
Best regards, Jesse
ondrej1024
(Ondrej Wisniewski)
March 3, 2024, 3:36pm
4
Looks like the Gen 3 series support has been implemented recently. The associated pull request has been merged:
openhab:main
← markus7017:shelly_miniG3blugwuni
opened 05:00PM - 28 Jan 24 UTC
Add support for
- Shelly Plus Mini genration 3 series of devices
- Shelly Plus… UNI
- Shelly BLU Gateway
Closing
- #15990
- #15991
- #15992
Is it possible to get these changes in OH 3.1 or do I have to upgrade to the latest OH version?
lsiepel
(Leo)
March 3, 2024, 6:47pm
5
You will need to upgrade to 4.2 m1 (as soon as it is available) or switch to snapshot
ondrej1024
(Ondrej Wisniewski)
March 4, 2024, 8:00am
6
I was afraid someone would say that.
I checked the docs and it seems a rather cumbersome procedure to perform that upgrade with high risk of something breaking. So I might eventually do that but need to be prepared to spend some considerable amount of time. Next time I buy some new hardware I better check the compatibility with my OH version.
lsiepel
(Leo)
March 4, 2024, 7:20pm
7
Totally worth the effort if you ask me
1 Like
grutmic
(Michael)
March 5, 2024, 5:33pm
8
Is there a difference between the “Shell 1PM Mini Gen3” and the “Shelly Plus 1PM Mini Gen3” ?
The Pull Request only mention the PLUS Version?!?!?!
sebou
(Sebastian)
March 16, 2024, 7:12am
9
Hi, I am also working to implement a “Shelly Mini 3G” via MQTT, unfortunatley I am having problems to switch it via openhab.
Reading the status is already working fine with the following code:
Thing mqtt:topic:Shelly_Mini3G_Garage "Light" @ "Garage" {
Channels:
Type switch : power "Power" [
stateTopic="shelly1minig3-5432044f36a0/events/rpc",
transformationPattern="JSONPATH:$.params.switch:0.output",
commandTopic="shelly1minig3-5432044f36a0/events/rpc",
on="true",
off="false"
But unfortunately switching it dosn’t work as the “commandTopic” is not correct.
Can somebody help me on this issue?
Thank you
rdiem
(Ralf)
March 18, 2024, 8:06pm
10
Hi, this my working UI code:
UID: mqtt:topic:a65cab3f72:4a2737b998
label: Duschlicht
thingTypeUID: mqtt:topic
configuration:
availabilityTopic: duschlicht/online
payloadAvailable: “true”
bridgeUID: mqtt:broker:a65cab3f72
channels:
id: Betrieb
channelTypeUID: mqtt:switch
label: Betrieb
description: “”
configuration:
commandTopic: duschlicht/command/switch:0
transformationPatternOut: MAP:trueToOn.map
stateTopic: duschlicht/status/switch:0
transformationPattern: JSONPATH:$.output
off: “false”
on: “true”
With trueToOn.map
true=on
false=off
Best, Ralf
sb220369
(Sb220369)
March 19, 2024, 7:56pm
11
How can I get a jar file of this binding-update?
I am on OH 4.1.1 and real OH newbie.
greenJ:
Dear Shelly dev’s,
Recently I bought a couple of Shelly 1PM Mini’s, I received the Gen3 model. They’re not playing nice with the 4.1 Shelly binding release. I tried them with the most recent OH 4.2 snapshot build and as well with the 4.2 Shelly binding snapshot build. In both cases I’ve got alot of communication errors.
So, am I correct in asuming these Gen3 models aren’t supported yet?
And is there maybe a workaround to get them playing nice with the 4.1 build, or do I need to be just a littlepatient? I hope someone can help me out.
Gen3 Shelly 1PM Mini’s encounter communication errors with 4.1 Shelly binding.
sb220369
(Sb220369)
March 22, 2024, 7:58am
13
Hi,
I installed the OH4.2.0 M1 Milestone with the latest Shelly binding updates implemented and it works properly with my Shelly1 mini G3 (not PM).
1 Like
jonatanhov
(Jonatan Hovgaard)
May 19, 2024, 6:50pm
14
I tried to implement your configuration in my setup, but wasn’t sure what to do with the last part?
With trueToOn.map
true=on
false=off
Can you help me in the right direction?
rdiem
(Ralf)
May 20, 2024, 5:35am
15
You need to put a file called trueToOn.map into the tranform folder in opnehab-config folder.
Content of the file is:
true=on
false=off
jonatanhov
(Jonatan Hovgaard)
May 20, 2024, 4:14pm
16
Now it works perfect. Installing the transformation service was the last I needed to get it up running. Thank you so much.