Package se.sics.cooja.contikimote.interfaces

Examples of se.sics.cooja.contikimote.interfaces.ContikiRS232


          logger.error("Error when fetching destination IP");
          return;
        }
       
        // Set destination and start sending by using RS232
        ContikiRS232 rs232 = sourceMote.getInterfaces().getInterfaceOfType(ContikiRS232.class);
        if (rs232 == null) {
          logger.error("RS232 interface is null!");
          return;
        }

        rs232.sendSerialMessage("SENDTO>" + destIP.getIPString());
      }
    });
    smallPane.add(BorderLayout.EAST, setDestinationButton);
    mainPane.add(smallPane);
   
View Full Code Here

TOP

Related Classes of se.sics.cooja.contikimote.interfaces.ContikiRS232

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.