pxt-ev3/libs/ultrasonic-sensor/ultrasonic.ts

136 lines
5.0 KiB
TypeScript
Raw Normal View History

2017-11-30 18:38:04 +01:00
enum UltrasonicSensorEvent {
2017-10-27 05:51:13 +02:00
//% block="object detected"
2017-11-30 18:38:04 +01:00
ObjectDetected = 10,
//% block="object near"
ObjectNear = sensors.ThresholdState.Low,
2017-11-30 18:38:04 +01:00
//% block="object far"
ObjectFar = sensors.ThresholdState.High
2017-10-27 05:38:17 +02:00
}
2017-10-28 18:13:02 +02:00
namespace sensors {
2017-07-10 16:07:23 +02:00
2017-10-25 00:33:28 +02:00
//% fixedInstances
2017-07-10 16:07:23 +02:00
export class UltraSonicSensor extends internal.UartSensor {
private promixityThreshold: sensors.ThresholdDetector;
2017-10-31 05:39:50 +01:00
private movementThreshold: number;
2017-10-27 05:38:17 +02:00
2017-10-24 20:58:52 +02:00
constructor(port: number) {
super(port)
this.promixityThreshold = new sensors.ThresholdDetector(this.id(), 0, 255, 10, 100); // range is 0..255cm
2017-10-31 05:39:50 +01:00
this.movementThreshold = 1;
2017-07-10 16:07:23 +02:00
}
_deviceType() {
return DAL.DEVICE_TYPE_ULTRASONIC
2017-07-10 16:07:23 +02:00
}
2017-10-27 05:38:17 +02:00
_query(): number {
return ((this.getNumber(NumberFormat.UInt16LE, 0) & 0x0fff) / 10) >> 0; // range is 0..2550, in 0.1 cm increments.
2017-10-27 05:38:17 +02:00
}
_update(prev: number, curr: number) {
2017-10-31 05:39:50 +01:00
// is there an object near?
2017-11-30 18:38:04 +01:00
this.promixityThreshold.setLevel(curr);
2017-10-31 05:39:50 +01:00
// did something change?
if (Math.abs(prev - curr) > this.movementThreshold)
2017-11-30 18:38:04 +01:00
control.raiseEvent(this._id, UltrasonicSensorEvent.ObjectDetected);
2017-10-27 05:38:17 +02:00
}
/**
* Registers code to run when the given color is close
* @param handler the code to run when detected
*/
//% help=sensors/ultrasonic/on-event
2017-10-31 05:39:50 +01:00
//% blockId=ultrasonicOn
//% block="on **ultrasonic** %this|%event"
2017-11-16 21:58:37 +01:00
//% parts="ultrasonicsensor"
2017-10-28 18:13:02 +02:00
//% blockNamespace=sensors
//% this.fieldEditor="ports"
2017-10-27 05:38:17 +02:00
//% weight=100 blockGap=8
//% group="Ultrasonic Sensor"
2017-11-30 18:38:04 +01:00
onEvent(event: UltrasonicSensorEvent, handler: () => void) {
2017-10-31 05:39:50 +01:00
control.onEvent(this._id, event, handler);
2017-10-27 05:38:17 +02:00
}
2017-10-31 05:39:50 +01:00
/**
* Waits for the event to occur
*/
//% help=sensors/ultrasonic/pause-until
//% block="pause until **ultrasonic** %this| %event"
2017-10-31 05:39:50 +01:00
//% blockId=ultrasonicWait
2017-11-16 21:58:37 +01:00
//% parts="ultrasonicsensor"
2017-10-31 05:39:50 +01:00
//% blockNamespace=sensors
//% this.fieldEditor="ports"
2017-10-31 05:39:50 +01:00
//% weight=99 blockGap=8
//% group="Ultrasonic Sensor"
pauseUntil(event: UltrasonicSensorEvent) {
2017-11-30 18:38:04 +01:00
control.waitForEvent(this._id, event);
2017-10-27 05:57:18 +02:00
}
2017-10-25 00:33:28 +02:00
/**
2017-11-30 18:41:34 +01:00
* Gets the distance from the sonar in centimeters
2017-10-25 00:35:42 +02:00
* @param sensor the ultrasonic sensor port
2017-10-25 00:33:28 +02:00
*/
//% help=sensors/ultrasonic/distance
//% block="**ultrasonic** %this|distance"
2017-10-25 00:33:28 +02:00
//% blockId=sonarGetDistance
2017-11-16 21:58:37 +01:00
//% parts="ultrasonicsensor"
2017-10-28 18:13:02 +02:00
//% blockNamespace=sensors
//% this.fieldEditor="ports"
//% weight=65
//% group="Ultrasonic Sensor"
2017-11-30 18:38:04 +01:00
distance(): number {
2017-10-31 05:39:50 +01:00
// it supposedly also has an inch mode, but we stick to cm
2017-07-10 16:07:23 +02:00
this._setMode(0)
return this._query();
2017-07-10 16:07:23 +02:00
}
/**
* Sets a threshold value
* @param condition the dark or bright light condition
* @param value the value threshold
*/
//% blockId=ultrasonicSetThreshold block="set **ultrasonic** %this|%condition|to %value"
2018-01-30 17:27:23 +01:00
//% group="Threshold" blockGap=8 weight=80
2018-01-10 20:45:08 +01:00
//% value.min=0 value.max=255
//% this.fieldEditor="ports"
2018-01-30 17:27:23 +01:00
setThreshold(condition: UltrasonicSensorEvent, value: number) {
switch (condition) {
case UltrasonicSensorEvent.ObjectNear: this.promixityThreshold.setLowThreshold(value); break;
case UltrasonicSensorEvent.ObjectFar: this.promixityThreshold.setHighThreshold(value); break;
case UltrasonicSensorEvent.ObjectDetected: this.movementThreshold = value; break;
}
}
2018-01-30 17:27:23 +01:00
/**
* Gets the threshold value
* @param condition the proximity condition
*/
//% blockId=ultrasonicGetThreshold block="**ultrasonic** %this|%condition"
2018-01-30 17:27:23 +01:00
//% group="Threshold" blockGap=8 weight=79
//% this.fieldEditor="ports"
2018-01-30 17:27:23 +01:00
threshold(condition: UltrasonicSensorEvent): number {
switch (condition) {
case UltrasonicSensorEvent.ObjectNear: this.promixityThreshold.threshold(ThresholdState.Low); break;
case UltrasonicSensorEvent.ObjectFar: this.promixityThreshold.threshold(ThresholdState.Low); break;
case UltrasonicSensorEvent.ObjectDetected: this.movementThreshold; break;
}
return 0;
}
2017-07-10 16:07:23 +02:00
}
2018-01-30 17:27:23 +01:00
//% fixedInstance whenUsed block="4" jres=icons.port4
2018-01-06 06:29:52 +01:00
export const ultrasonic4: UltraSonicSensor = new UltraSonicSensor(4)
2018-01-30 17:27:23 +01:00
//% fixedInstance whenUsed block="1" jres=icons.port1
2017-10-24 20:58:52 +02:00
export const ultrasonic1: UltraSonicSensor = new UltraSonicSensor(1)
//% fixedInstance whenUsed block="2" jres=icons.port2
2017-10-24 20:58:52 +02:00
export const ultrasonic2: UltraSonicSensor = new UltraSonicSensor(2)
//% fixedInstance whenUsed block="3" jres=icons.port3
2017-10-24 20:58:52 +02:00
export const ultrasonic3: UltraSonicSensor = new UltraSonicSensor(3)
2017-07-10 16:07:23 +02:00
}