Better fix for null dereferencing issue. Fix initial Color sensor mode (default).

This commit is contained in:
Sam El-Husseini
2018-01-02 22:51:12 -08:00
parent 02838e6c30
commit 955a2c9757
3 changed files with 5 additions and 3 deletions

View File

@ -3,12 +3,13 @@
namespace pxsim {
export enum ColorSensorMode {
None = -1,
Reflected = 0,
Ambient = 1,
Colors = 2,
RefRaw = 3,
RgbRaw = 4,
ColorCal = 5
ColorCal = 5,
}
export enum ThresholdState {
@ -24,6 +25,7 @@ namespace pxsim {
constructor(port: number) {
super(port);
this.mode = -1;
}
getDeviceType() {