RLPark 1.0.0
Reinforcement Learning Framework in Java
|
00001 package rlpark.plugin.irobot.internal.server; 00002 00003 import rlpark.plugin.irobot.internal.descriptors.RoombaSerialDescriptor; 00004 00005 public class RoombaServer extends IRobotServer { 00006 public RoombaServer(int port, String serialPortPath) { 00007 super(port, serialPortPath, new RoombaSerialDescriptor()); 00008 } 00009 }