j2me实现的移动机器人代码(Java实现)

源代码在线查看: wondermodule.java

软件大小: 1415 K
上传用户: Tonic2009
关键词: j2me Java 移动机器人 代码
下载地址: 免注册下载 普通下载 VIP

相关代码

				package cie.mobile;
				
				import name.lxm.robot.arch.*;
				
				public class WonderModule extends AbstractModule
				{
					private String[] port_names = {"heading"};
					private SimpleOutPort heading_port = null;
				
					public Port getPort(String p)
					{
						if(port_names[0].equals(p))
							return heading_port;
						return null;
					}
				
					public void init(ModuleDoc md) throws Exception
					{
						super.init(md);
						
					}
				
					public void run()
					{
					}
					
					public void valueUpdated()
					{
					}
				}
							

相关资源