Examples of RestMcuBoard


Examples of org.housecream.restmcu.api.domain.board.RestMcuBoard

                return null;
        }
    }

    public static RestMcuBoard buildBoard() {
        RestMcuBoard device = new RestMcuBoard();
        device.setVersion("1.0");
        device.setSoftware("RestMcu");
        //        device.setNotifyUrl("http://localhost/4242");
        //        device.setNumberOfLine(6);
        device.setHardware("arduino");
        //        device.setName("sample board");
        device.setDescription("genre");
        device.setDescription("little description");
        //        device.setIp("123.456.789.123");
        //        device.setPort(8080);
        device.setMac("df:df:df:df:df:df");
        return device;
    }
View Full Code Here

Examples of org.housecream.restmcu.api.domain.board.RestMcuBoard

            Thread.sleep(1000);
        } catch (InterruptedException e) {
            // TODO Auto-generated catch block
            e.printStackTrace();
        }
        return new RestMcuBoard();
    }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.