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-24 20:58:52 +02:00
|
|
|
constructor(port: number) {
|
|
|
|
super(port)
|
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-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)
|
|
|
|
return this.getNumber(NumberFormat.UInt16LE, 0) & 0x0fff
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
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
|
|
|
}
|