I’m not up-to-speed on the domain name for sending commands to my Vera through the MiCasaVerde cloud. Can someone tell me how to identify the server I need to use?
I tried using the domain name in my cloud connection (vera-us-oem-relay41.mios.com) but not working also tried him.getvera.com to no avail.
void getAlarmState()
{
if (client.connect("vera-us-oem-relay41.mios.com", 80))
{
out("GET /<myUserName>/<MySecurePassword>/<myVeraBoxID>/data_request?id=lu_action&serviceId=urn:micasaverde-com:serviceId:HomeAutomationGateway1&action=RunScene&SceneNum=18 HTTP/1.1\r\n");
out("Host: vera-us-oem-relay41.mios.com\r\n");
out("User-Agent: Spark/1.0\r\n");
out("Content-Type: text/html\r\n");
out("Connection: close\r\n\r\n");
in(reply, 3000);
}
}