2017-10-27 05:51:13 +02:00
|
|
|
const enum PromixityEvent {
|
|
|
|
//% block="object near"
|
|
|
|
ObjectNear = 1,
|
|
|
|
//% block="object detected"
|
2017-10-27 05:38:17 +02:00
|
|
|
ObjectDetected = 2
|
|
|
|
}
|
|
|
|
|
2017-07-10 16:07:23 +02:00
|
|
|
namespace input {
|
|
|
|
|
2017-10-25 00:33:28 +02:00
|
|
|
//% fixedInstances
|
2017-07-10 16:07:23 +02:00
|
|
|
export class UltraSonicSensor extends internal.UartSensor {
|
2017-10-27 05:51:13 +02:00
|
|
|
private promixityThreshold: number;
|
2017-10-27 05:38:17 +02:00
|
|
|
|
2017-10-24 20:58:52 +02:00
|
|
|
constructor(port: number) {
|
|
|
|
super(port)
|
2017-10-27 05:51:13 +02:00
|
|
|
this.promixityThreshold = 10;
|
2017-07-10 16:07:23 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
_deviceType() {
|
2017-07-11 16:18:59 +02:00
|
|
|
return DAL.DEVICE_TYPE_ULTRASONIC
|
2017-07-10 16:07:23 +02:00
|
|
|
}
|
|
|
|
|
2017-10-27 05:38:17 +02:00
|
|
|
_query(): number {
|
|
|
|
const d = this.getNumber(NumberFormat.UInt16LE, 0) & 0x0fff;
|
2017-10-27 05:51:13 +02:00
|
|
|
return d < this.promixityThreshold ? PromixityEvent.ObjectNear
|
|
|
|
: d > this.promixityThreshold + 5 ? PromixityEvent.ObjectDetected
|
2017-10-27 05:38:17 +02:00
|
|
|
: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
_update(prev: number, curr: number) {
|
|
|
|
if (curr)
|
|
|
|
control.raiseEvent(this._id, curr);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Registers code to run when the given color is close
|
|
|
|
* @param handler the code to run when detected
|
|
|
|
*/
|
2017-10-27 05:51:13 +02:00
|
|
|
//% help=input/ultrasonic/on-object-near
|
2017-10-27 05:57:18 +02:00
|
|
|
//% block="on %sensor|object near"
|
2017-10-27 05:38:17 +02:00
|
|
|
//% blockId=ultrasonicOnObjectClose
|
2017-10-27 05:51:13 +02:00
|
|
|
//% parts="infraredsensor"
|
2017-10-27 05:38:17 +02:00
|
|
|
//% blockNamespace=input
|
|
|
|
//% weight=100 blockGap=8
|
|
|
|
//% group="Ultrasonic Sensor"
|
2017-10-27 05:51:13 +02:00
|
|
|
onObjectNear(distance: number, handler: () => void) {
|
|
|
|
control.onEvent(this._id, PromixityEvent.ObjectNear, handler);
|
|
|
|
if (this.distance() == PromixityEvent.ObjectNear)
|
2017-10-27 05:38:17 +02:00
|
|
|
control.runInBackground(handler);
|
|
|
|
}
|
|
|
|
|
2017-10-27 05:57:18 +02:00
|
|
|
setObjectNearThreshold(distance: number) {
|
|
|
|
this.promixityThreshold = Math.max(1, Math.min(250, distance));
|
|
|
|
}
|
|
|
|
|
2017-10-25 00:33:28 +02:00
|
|
|
/**
|
|
|
|
* Gets the distance from the sonar in millimeters
|
2017-10-25 00:35:42 +02:00
|
|
|
* @param sensor the ultrasonic sensor port
|
2017-10-25 00:33:28 +02:00
|
|
|
*/
|
|
|
|
//% help=input/ultrasonic/distance
|
2017-10-25 00:35:42 +02:00
|
|
|
//% block="%sensor|distance"
|
2017-10-25 00:33:28 +02:00
|
|
|
//% blockId=sonarGetDistance
|
|
|
|
//% parts="ultrasonic"
|
|
|
|
//% blockNamespace=input
|
|
|
|
//% weight=65 blockGap=8
|
2017-10-25 01:52:13 +02:00
|
|
|
//% group="Ultrasonic Sensor"
|
2017-10-25 00:33:28 +02:00
|
|
|
distance() {
|
2017-07-10 16:07:23 +02:00
|
|
|
// it supposedly also has an inch mode, but we stick to mm
|
|
|
|
this._setMode(0)
|
2017-10-27 05:38:17 +02:00
|
|
|
return this.getNumber(NumberFormat.UInt16LE, 0) & 0x0fff;
|
2017-07-10 16:07:23 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-10-25 01:52:13 +02:00
|
|
|
//% fixedInstance whenUsed block="ultrasonic sensor 4"
|
|
|
|
export const ultrasonic4: UltraSonicSensor = new UltraSonicSensor(4)
|
|
|
|
|
2017-10-25 00:35:42 +02:00
|
|
|
//% fixedInstance whenUsed block="ultrasonic sensor 1"
|
2017-10-24 20:58:52 +02:00
|
|
|
export const ultrasonic1: UltraSonicSensor = new UltraSonicSensor(1)
|
|
|
|
|
2017-10-25 01:52:13 +02:00
|
|
|
//% fixedInstance whenUsed block="ultrasonic sensor 2"
|
2017-10-24 20:58:52 +02:00
|
|
|
export const ultrasonic2: UltraSonicSensor = new UltraSonicSensor(2)
|
|
|
|
|
2017-10-25 01:52:13 +02:00
|
|
|
//% fixedInstance whenUsed block="ultrasonic sensor 3"
|
2017-10-24 20:58:52 +02:00
|
|
|
export const ultrasonic3: UltraSonicSensor = new UltraSonicSensor(3)
|
2017-07-10 16:07:23 +02:00
|
|
|
}
|