pxt-ev3/libs/core/ir.ts

193 lines
5.7 KiB
TypeScript
Raw Normal View History

2017-07-10 12:37:14 +02:00
const enum IrSensorMode {
None = -1,
Proximity = 0,
Seek = 1,
RemoteControl = 2,
}
const enum IrRemoteChannel {
Ch0 = 0, // top
Ch1 = 1,
Ch2 = 2,
Ch3 = 3,
}
const enum IrRemoteButton {
None = 0x00,
CenterBeacon = 0x01,
TopLeft = 0x02,
BottomLeft = 0x04,
TopRight = 0x08,
BottomRight = 0x10,
}
namespace input {
function mapButton(v: number) {
switch (v) {
case 0: return IrRemoteButton.None
case 1: return IrRemoteButton.TopLeft
case 2: return IrRemoteButton.BottomLeft
case 3: return IrRemoteButton.TopRight
case 4: return IrRemoteButton.TopRight | IrRemoteButton.BottomRight
case 5: return IrRemoteButton.TopLeft | IrRemoteButton.TopRight
case 6: return IrRemoteButton.TopLeft | IrRemoteButton.BottomRight
case 7: return IrRemoteButton.BottomLeft | IrRemoteButton.TopRight
case 8: return IrRemoteButton.BottomLeft | IrRemoteButton.BottomRight
case 9: return IrRemoteButton.CenterBeacon
case 10: return IrRemoteButton.BottomLeft | IrRemoteButton.TopLeft
case 11: return IrRemoteButton.TopRight | IrRemoteButton.BottomRight
default: return IrRemoteButton.None
}
}
2017-10-24 20:58:52 +02:00
let buttons: Button[]
2017-10-27 05:20:24 +02:00
function create(ir: InfraredSensor) {
2017-10-24 20:58:52 +02:00
// it's created by referencing it
}
export function irButton(id: IrRemoteButton) {
if (buttons == null) {
buttons = []
for (let i = 0; i < 5; ++i) {
buttons.push(new Button())
}
// make sure sensors are up
2017-10-27 05:20:24 +02:00
create(infrared1)
create(infrared2)
create(infrared3)
create(infrared4)
2017-10-24 20:58:52 +02:00
}
let num = -1
while (id) {
id >>= 1;
num++;
}
num = Math.clamp(0, buttons.length - 1, num)
return buttons[num]
}
2017-10-27 05:20:24 +02:00
//% fixedInstances
export class InfraredSensor extends internal.UartSensor {
2017-07-10 12:37:14 +02:00
private channel: IrRemoteChannel
2017-10-24 20:58:52 +02:00
constructor(port: number) {
super(port)
2017-07-10 12:37:14 +02:00
this.channel = IrRemoteChannel.Ch0
2017-10-24 20:58:52 +02:00
irButton(0) // make sure buttons array is initalized
2017-07-10 12:37:14 +02:00
2017-10-24 20:58:52 +02:00
// and set the mode, as otherwise button events won't work
this.mode = IrSensorMode.RemoteControl
2017-07-10 12:37:14 +02:00
}
_query() {
if (this.mode == IrSensorMode.RemoteControl)
return mapButton(this.getNumber(NumberFormat.UInt8LE, this.channel))
return 0
}
_update(prev: number, curr: number) {
2017-10-24 20:58:52 +02:00
for (let i = 0; i < buttons.length; ++i) {
2017-07-10 12:37:14 +02:00
let v = !!(curr & (1 << i))
2017-10-24 20:58:52 +02:00
buttons[i].update(v)
2017-07-10 12:37:14 +02:00
}
}
2017-07-10 13:47:00 +02:00
_deviceType() {
return DAL.DEVICE_TYPE_IR
2017-07-10 13:47:00 +02:00
}
2017-07-10 12:37:14 +02:00
setRemoteChannel(c: IrRemoteChannel) {
c = Math.clamp(0, 3, c | 0)
this.channel = c
this.setMode(IrSensorMode.RemoteControl)
}
setMode(m: IrSensorMode) {
this._setMode(m)
}
2017-10-24 14:30:05 +02:00
/**
2017-10-27 05:20:24 +02:00
* Get the promixity measured by the infrared sensor, from ``0`` (close) to ``100`` (far)
2017-10-24 14:30:05 +02:00
* @param ir the infrared sensor
*/
2017-10-27 05:20:24 +02:00
//% help=input/infrared/proximity
//% block="%infrared|proximity"
//% blockId=infraredGetProximity
2017-10-24 14:30:05 +02:00
//% parts="infrared"
//% blockNamespace=input
2017-10-25 00:33:28 +02:00
//% weight=65 blockGap=8
//% group="Infrared Sensor"
2017-10-27 05:20:24 +02:00
proximity() {
2017-07-10 12:37:14 +02:00
this.setMode(IrSensorMode.Proximity)
return this.getNumber(NumberFormat.UInt8LE, 0)
}
2017-10-24 14:30:05 +02:00
/**
* Get the remote commandreceived the infrared sensor.
* @param ir the infrared sensor
*/
//% help=input/infrared/remote-command
//% block="%infrared|remote command"
//% blockId=infraredGetRemoteCommand
//% parts="infrared"
//% blockNamespace=input
//% weight=65 blockGap=8
//% group="Infrared Sensor"
2017-10-24 14:30:05 +02:00
remoteCommand() {
2017-07-10 12:37:14 +02:00
this.setMode(IrSensorMode.RemoteControl)
return this.getNumber(NumberFormat.UInt8LE, this.channel)
}
2017-10-24 14:30:05 +02:00
// TODO
2017-07-10 12:37:14 +02:00
getDirectionAndDistance() {
this.setMode(IrSensorMode.Seek)
return this.getNumber(NumberFormat.UInt16LE, this.channel * 2)
}
}
2017-10-27 05:20:24 +02:00
//% fixedInstance whenUsed
export const infrared1: InfraredSensor = new InfraredSensor(1)
2017-10-24 20:58:52 +02:00
2017-10-27 05:20:24 +02:00
//% fixedInstance whenUsed
export const infrared2: InfraredSensor = new InfraredSensor(2)
2017-10-24 20:58:52 +02:00
2017-10-27 05:20:24 +02:00
//% fixedInstance whenUsed
export const infrared3: InfraredSensor = new InfraredSensor(3)
2017-10-24 20:58:52 +02:00
2017-10-27 05:20:24 +02:00
//% fixedInstance whenUsed
export const infrared4: InfraredSensor = new InfraredSensor(4)
2017-07-10 15:26:19 +02:00
/**
* Remote top-left button.
*/
//% whenUsed block="remote top-left" weight=95 fixedInstance
2017-10-24 20:58:52 +02:00
export const remoteTopLeft = irButton(IrRemoteButton.TopLeft)
2017-07-10 15:26:19 +02:00
/**
* Remote top-right button.
*/
//% whenUsed block="remote top-right" weight=95 fixedInstance
2017-10-24 20:58:52 +02:00
export const remoteTopRight = irButton(IrRemoteButton.TopRight)
2017-07-10 15:26:19 +02:00
/**
* Remote bottom-left button.
*/
//% whenUsed block="remote bottom-left" weight=95 fixedInstance
2017-10-24 20:58:52 +02:00
export const remoteBottomLeft = irButton(IrRemoteButton.BottomLeft)
2017-07-10 15:26:19 +02:00
/**
* Remote bottom-right button.
*/
//% whenUsed block="remote bottom-right" weight=95 fixedInstance
2017-10-24 20:58:52 +02:00
export const remoteBottomRight = irButton(IrRemoteButton.BottomRight)
2017-07-10 15:26:19 +02:00
/**
* Remote beacon (center) button.
*/
//% whenUsed block="remote center" weight=95 fixedInstance
2017-10-24 20:58:52 +02:00
export const remoteCenter = irButton(IrRemoteButton.CenterBeacon)
2017-07-10 12:37:14 +02:00
}