add state string for INITIALIZED

live-sensor-data
cpfeiffer 2015-04-19 15:21:15 +02:00
parent 2b1157ca67
commit 7b433f0d18
1 changed files with 2 additions and 0 deletions

View File

@ -60,6 +60,8 @@ public class GBDevice {
return "connecting";
case CONNECTED:
return "connected";
case INITIALIZED:
return "initialized";
}
return "unknown state";
}