2017-07-10 15:07:23 +01:00
|
|
|
namespace input {
|
|
|
|
|
2017-10-24 15:33:28 -07:00
|
|
|
//% fixedInstances
|
2017-07-10 15:07:23 +01:00
|
|
|
export class UltraSonicSensor extends internal.UartSensor {
|
2017-10-24 19:58:52 +01:00
|
|
|
constructor(port: number) {
|
|
|
|
super(port)
|
2017-07-10 15:07:23 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
_deviceType() {
|
2017-07-11 16:18:59 +02:00
|
|
|
return DAL.DEVICE_TYPE_ULTRASONIC
|
2017-07-10 15:07:23 +01:00
|
|
|
}
|
|
|
|
|
2017-10-24 15:33:28 -07:00
|
|
|
/**
|
|
|
|
* Gets the distance from the sonar in millimeters
|
2017-10-24 15:35:42 -07:00
|
|
|
* @param sensor the ultrasonic sensor port
|
2017-10-24 15:33:28 -07:00
|
|
|
*/
|
|
|
|
//% help=input/ultrasonic/distance
|
2017-10-24 15:35:42 -07:00
|
|
|
//% block="%sensor|distance"
|
2017-10-24 15:33:28 -07:00
|
|
|
//% blockId=sonarGetDistance
|
|
|
|
//% parts="ultrasonic"
|
|
|
|
//% blockNamespace=input
|
|
|
|
//% weight=65 blockGap=8
|
2017-10-24 16:52:13 -07:00
|
|
|
//% group="Ultrasonic Sensor"
|
2017-10-24 15:33:28 -07:00
|
|
|
distance() {
|
2017-07-10 15:07:23 +01: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-24 16:52:13 -07:00
|
|
|
//% fixedInstance whenUsed block="ultrasonic sensor 4"
|
|
|
|
export const ultrasonic4: UltraSonicSensor = new UltraSonicSensor(4)
|
|
|
|
|
2017-10-24 15:35:42 -07:00
|
|
|
//% fixedInstance whenUsed block="ultrasonic sensor 1"
|
2017-10-24 19:58:52 +01:00
|
|
|
export const ultrasonic1: UltraSonicSensor = new UltraSonicSensor(1)
|
|
|
|
|
2017-10-24 16:52:13 -07:00
|
|
|
//% fixedInstance whenUsed block="ultrasonic sensor 2"
|
2017-10-24 19:58:52 +01:00
|
|
|
export const ultrasonic2: UltraSonicSensor = new UltraSonicSensor(2)
|
|
|
|
|
2017-10-24 16:52:13 -07:00
|
|
|
//% fixedInstance whenUsed block="ultrasonic sensor 3"
|
2017-10-24 19:58:52 +01:00
|
|
|
export const ultrasonic3: UltraSonicSensor = new UltraSonicSensor(3)
|
2017-07-10 15:07:23 +01:00
|
|
|
}
|