Hello SmartThings Community folk! I recently got the urge to monitor a few of my personal websites through SmartThings and change my LED light strip colors if the server went down for a period of time. It’s nothing too special, but I’m not familiar with another SmartApp like this so hopefully it can be useful to someone!
Right now it can trigger switches, dimmers, setLevel, setColor, alarms, sirens, and strobes so if you have the right number devices, you can probably successfully annoy your neighbors. Hopefully I’ll get some time in the future to expand upon it. Feel free to contribute if you have improvements!
That would be cool, then I can monitor my influx db VM, and various other devices. Plus it would make for a very simple presence sensor, if ping to my kids phone stopped, they are gone! Or killed the battery again…Just setup a virtual switch to trigger for that.
This! I was debating installing WRT on my Asus router but didn’t want to mess around with it since it’s working so well. If you create a DHCP reservation in your router, and then use this smartapp to ping that IP, you can then use it as presence. We might have finally found a simple solution to the awful mobile presence reliability! Please add local IP pinging support!
You technically SHOULD be able to input an IP address and port as the URL and it will pass validation. I’m not sure if it will actually succeed in a request - but maybe give it a try?
What exactly are you trying to do? The purpose of the SmartApp is to detect when a URL or IP address is not resolving. Basically, it’s looking for a URL that doesn’t give a response header of 200 - then it performs the triggers.
It looks like you’re trying to use it to do something else, which it probably doesn’t support right now. I doubt a simple GET request to an internal IP address will do what you want - can you give me more information about what’s needed? PUT? POST? Request body?
Ok, I misunderstood what the app was doing and didn’t look at the code(I took the name of the app with Ping it literally). I thought it actually pings the URL and tries to get a reply ICMP. Unless I host a web server on my iPhone, this isn’t going to work
You’re not totally wrong, that is essentially what happens except this is setup for an HTTP ping. Different methods can easily be applied, like PUT, POST, DELETE, and a request body if you need more magic to happen
It’s also worth noting that the ST cloud won’t be able to reach 192.168.1.68 even if you do have an HTTP server running at that address. RFC1918 addresses are not routable outside your home network.
To do this, you would need to either expose the device to the internet (unwise) or modify the SmartApp to use hubAction() to make the connection.
If you’ve got an always-on machine at home that you could run a web server on, it would be pretty trivial to write a script that you could hit via HTTP which would then ping the address and output accordingly.
It would be pretty awesome if someone could modify it so if it detects your Internet is down, it would turn an outlet off and on to cycle the router/modem.
Heh, this was actually the initial intended use of the SmartApp but @btk is right, without a way for the cloud to talk to the hub, there’s no way for this to work.