package org.myrobotlab.service; import org.myrobotlab.framework.Service; import org.myrobotlab.framework.ServiceType; import org.myrobotlab.logging.Level; import org.myrobotlab.logging.LoggerFactory; import org.myrobotlab.logging.Logging; import org.myrobotlab.logging.LoggingFactory; import org.slf4j.Logger; public class Esp8266 extends Service { private static final long serialVersionUID = 1L; public final static Logger log = LoggerFactory.getLogger(Esp8266.class); public Esp8266(String n) { super(n); } public static void main(String[] args) { LoggingFactory.init(Level.INFO); try { Runtime.start("esp", "Esp8266"); Runtime.start("gui", "GUIService"); } catch (Exception e) { Logging.logError(e); } } /** * This static method returns all the details of the class without it having * to be constructed. It has description, categories, dependencies, and peer * definitions. * * @return ServiceType - returns all the data * */ static public ServiceType getMetaData() { ServiceType meta = new ServiceType(Esp8266.class.getCanonicalName()); meta.addDescription("wifi Arduino"); meta.addCategory("microcontroller"); // put peer definitions in meta.addPeer("serial", "Serial", "serial"); meta.addPeer("webgui", "WebGui", "webgui"); return meta; } }