pxt-ev3/sim/state/ultrasonic.ts

31 lines
741 B
TypeScript
Raw Normal View History

2017-12-18 22:04:17 +01:00
/// <reference path="./sensor.ts"/>
namespace pxsim {
export class UltrasonicSensorNode extends UartSensorNode {
id = NodeType.UltrasonicSensor;
private distance: number = 127; // in cm
2017-12-18 22:04:17 +01:00
constructor(port: number) {
super(port);
}
getDeviceType() {
return DAL.DEVICE_TYPE_ULTRASONIC;
}
setDistance(distance: number) {
if (this.distance != distance) {
this.distance = distance;
this.changed = true;
this.valueChanged = true;
runtime.queueDisplayUpdate();
}
}
getValue() {
return this.distance * 10; // convert to 0.1 cm
2017-12-18 22:04:17 +01:00
}
}
}