RLPark 1.0.0
Reinforcement Learning Framework in Java

RoombaLeds.java

Go to the documentation of this file.
00001 package rlpark.plugin.irobot.data;
00002 
00003 public class RoombaLeds {
00004   public boolean dirt = true;
00005   public boolean spot = false;
00006   public boolean dock = false;
00007   public int cleanColor = 0;
00008   public int intensity = 0;
00009 
00010   public RoombaLeds() {
00011   }
00012 
00013   public RoombaLeds(boolean dirt, boolean spot, boolean dock, int cleanColor, int intensity) {
00014     this.dirt = dirt;
00015     this.spot = spot;
00016     this.dock = dock;
00017     this.cleanColor = cleanColor;
00018     this.intensity = intensity;
00019   }
00020 }
 All Classes Namespaces Files Functions Variables Enumerations
Zephyr
RLPark