Smartthings Roomba Control via RooWifi (DEAD)

In this block in the control() method, do you need to do a sendHubCommand(hubAction)? Now it looks like you are building up the hubAction but only logging it.

adding sendHubCommand(hubAction) generated the following error:

Hit Exception groovy.lang.MissingMethodException: No signature of method: script14083924520701652945287.sendHubCommand() is applicable for argument types: (physicalgraph.device.HubAction)

My apologies, I was confusing the device type and the smart app code. So back to this code in the control() method:

try {
   def hubAction = [new physicalgraph.device.HubAction(
   method: "GET",
   path: "/roomba.cgi?button=${command}",
      headers: [HOST: "${rooIp}:${rooPort}"]
      ), delayAction(1000), refresh()]
   hubAction
   log.debug hubAction
}

That method needs to just return the hubAction. Since you have the log.debug message as the last line in the file, nothing is being returned. So it looks like you could just move the log.debug line before the hubAction. This will make the method return the hubAction since that is the last thing in that method. You could also explicitly change it to “return hubAction” to be clear.

The sendHubCommand(hubAction) is needed if you are using HubActions from within a SmartApp.

I’ve done that as well and it still doesn’t work. I can point it to another web server and it does work as i would expect it to. There is something in how the hub communicates with the roowifi that is not happy anymore, as the code did work at one time. Is there a way to verify the hub can ping the device or connect to a port? i know the roowifi does not always respond very quickly. Is there a way to extend the timeout that the hub is expecting a response?

Was any progress made after the last update? Can you please publish the code if you are able to turn Roomba on using smartthings?

No, i put this on hold. I should have some time next month to work on this again and i should also have a thinking cleaner device aswell to test out and get to work. One way or another i will get roombas and smartthings playing together. :smile:

That’s awesome. Keep us updated.

Sid,
I got this working on another device. Enjoy.

Awesome. How did you manage to get the Thinking Cleaner face plate?

i ordered it before they went kickstarter

Unfortunately it failed to fund. Any chance you got the RoWifi to work?

The RoWifi site actually links to this page saying there is a Functional ST plugin…

i’m not sure which roomba you have… but the thinking cleaner for 500/600 series roomba is for sale on the http://www.thinkingcleaner.com webshop. Yes i know Roowifi says there is a functional plug in. It links to my code that does not work. I asked them to remove the link and they have not.

I’m not sure if i will ever be able to get the roowifi to work with smartthings… consistantly. The wifi on the roowifi is a bit wonky and no where near as stable as thinking cleaner. Right now work and play have me pretty busy until work lets up i won’t have the time to work on the integration. Until that changes roowifi is on the back burner for me.

@sidjohn1 I just got one of these so I’m going to create a device type

Kristopher

2 Likes

Well, I can see why you hate this thing. I keeps resetting its WiFi :frowning:

I’m so gutted that the ThinkingCleaner is now Sold out and EOL… Does anyone feel like resurrecting the RooWiFi plugin development?

I’ve ordered a RooWifi and would love to help testing out DTH’s

Casts Resurrection Spell

@sidjohn1, I’d be willing to make a pass at this, though I’m not familiar with developing for smart things (yet)

Any chance you’d be able to share your original code, and what went wrong?

Cheers!

Well… Here goes Nothing! Any assistance with this would be greatly appreciated

Any success with the RooWifi??