Package es.unizar.tecnodiscap.osgi4ami.device

Examples of es.unizar.tecnodiscap.osgi4ami.device.Device


  public void driverNodeEvent(int EventCode, Object arg1) {
    // TODO Auto-generated method stub
   
   
    Device device= (Device)arg1;
   
    switch (EventCode) {
    case DriverListener.NODE_ADDED:
      System.out.println(device.getClass().toString());
      if (device instanceof Brazo) {
        // TODO dar de alta el brazo

      } else if (device instanceof UnizarAccelerationSensor) {
        if (this.remoteControl == null) {
View Full Code Here

TOP

Related Classes of es.unizar.tecnodiscap.osgi4ami.device.Device

Copyright © 2018 www.massapicom. 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.