本文整理汇总了Java中net.tinyos.packet.BuildSource.makePhoenix方法的典型用法代码示例。如果您正苦于以下问题:Java BuildSource.makePhoenix方法的具体用法?Java BuildSource.makePhoenix怎么用?Java BuildSource.makePhoenix使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类net.tinyos.packet.BuildSource
的用法示例。
在下文中一共展示了BuildSource.makePhoenix方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: main
import net.tinyos.packet.BuildSource; //导入方法依赖的package包/类
/**
* A Test class to check if the wrapper works.
* @param args
* @throws Exception
*/
public static void main ( String [ ] args ) throws Exception {
PhoenixSource reader = BuildSource.makePhoenix( BuildSource.makeSF( "eflumpc24.epfl.ch" , 2020 ), null );
reader.start( );
MoteIF moteif = new MoteIF( reader );
moteif.registerListener( new SensorScopeDataMsg( ) , new MessageListener( ) {
public void messageReceived ( int dest , Message rawMsg ) {
System.out.println( "Received." );
}
} );
}
示例2: SerialCommunicator
import net.tinyos.packet.BuildSource; //导入方法依赖的package包/类
public SerialCommunicator() {
phoenix = BuildSource.makePhoenix("[email protected]/dev/ttyUSB0:telos", PrintStreamMessenger.err);
mote = new MoteIF(phoenix);
mote.registerListener(new HarvestAnswerSerialMsg(), this);
}