I recently purchased the captioned product (Model mss620, firmware 4.1.22, hardware 4.0.0). It is installed in their proprietary app and I am able to control both power outlets through that app. It is likewise installed in Apple Homekit and I can control both outlets through Homekit. Finally, it is installed as a device in Smartthings. There, results are spotty.
I have the following piston that runs at dusk. Note the Meross plug is part of “ExteriorLights”:
execute
every day, at 20 minutes before sunset
do
with
{@ExteriorLights} and {@InteriorLights}
do
Turn on;
end with;
end every;
end execute;
That works as intended. At dusk, the plug turns on and the connected lights illuminate. I have the opposite piston run at dawn, same code except the “Do” statement is “Turn off”. That works for every device in “ExteriorLights” except the Meross plus, which remains on. Here is the log from today, at dawn. The SmartThings device name for the Meross plug is “Courtyard Outlet 1”:
5/15/2020, 5:52:59 AM +62ms
+1ms ╔Received event [MYHUB].time = 1589536380000 with a delay of -938ms
+100ms ║Runtime (37384 bytes) successfully initialized in 49ms (v0.3.109.20181207) (99ms)
+101ms ║╔Execution stage started
+167ms ║║Executed [Dining Room Chandelier].off (4ms)
+171ms ║║Executed [Family Room Main Lights].off (3ms)
+175ms ║║Executed [Kitchen Main Lights].off (3ms)
+179ms ║║Executed [Office Main Lights].off (3ms)
+185ms ║║Executed [Wemo A - A Lamp].off (4ms)
+191ms ║║Executed [Wemo B - Floor Lamp].off (4ms)
+195ms ║║Executed [Wemo C - Guest BR Lamp].off (3ms)
+200ms ║║Executed [Wemo D - FR Lamp].off (4ms)
+204ms ║║Executed [Wemo F - F Lamp].off (3ms)
+216ms ║║Executed [Courtyard Outlet 1].off (7ms)
+517ms ║║Executed [Front Porch Sconces].off (301ms)
+520ms ║╚Execution stage complete. (420ms)
+521ms ║Setting up scheduled job for Sat, May 16 2020 @ 5:53:00 AM EDT (in 86400.417s)
+530ms ╚Event processed successfully (529ms)
So to summarize, my piston is able to toggle the device to its on-state, but it cannot toggle it to its off-state.
Anyone have experience with this device or can help explain the behavior?