16db7ae49c0d86ccd86ea612eb1d6baedfa6c251
[iotcloud.git] / version2 / src / java / light_fan_benchmark / WemoController.java
1 class WemoController {
2     public static void main(String[] args) throws Exception {
3         IoTDeviceAddress devAddr = new IoTDeviceAddress("192.168.1.5", 49153, 49153, false, false);
4         Wemo wemo = new Wemo(devAddr);
5
6         wemo.turnOn();
7     }
8
9 }