2016-04-07 21:52:02 +02:00
|
|
|
namespace pxsim {
|
2016-03-11 01:24:11 +01:00
|
|
|
export interface RuntimeOptions {
|
|
|
|
theme: string;
|
|
|
|
}
|
2016-03-14 05:24:11 +01:00
|
|
|
|
2016-03-11 01:24:11 +01:00
|
|
|
export enum DisplayMode {
|
|
|
|
bw,
|
|
|
|
greyscale
|
|
|
|
}
|
2016-03-14 05:24:11 +01:00
|
|
|
|
2016-06-04 08:15:51 +02:00
|
|
|
export enum PinFlags {
|
2016-03-14 05:24:11 +01:00
|
|
|
Unused = 0,
|
2016-03-11 01:24:11 +01:00
|
|
|
Digital = 0x0001,
|
2016-03-14 05:24:11 +01:00
|
|
|
Analog = 0x0002,
|
|
|
|
Input = 0x0004,
|
|
|
|
Output = 0x0008,
|
2016-03-14 17:10:13 +01:00
|
|
|
Touch = 0x0010
|
2016-03-11 01:24:11 +01:00
|
|
|
}
|
2016-03-14 05:24:11 +01:00
|
|
|
|
2016-03-11 01:24:11 +01:00
|
|
|
export class Pin {
|
2016-03-14 05:24:11 +01:00
|
|
|
constructor(public id: number) { }
|
2016-03-11 01:24:11 +01:00
|
|
|
touched = false;
|
|
|
|
value = 0;
|
2016-03-14 16:32:02 +01:00
|
|
|
period = 0;
|
2016-06-04 08:15:51 +02:00
|
|
|
mode = PinFlags.Unused;
|
2016-03-14 17:10:13 +01:00
|
|
|
pitch = false;
|
2016-06-04 08:15:51 +02:00
|
|
|
pull = 0; // PullDown
|
2016-03-14 05:24:11 +01:00
|
|
|
|
|
|
|
isTouched(): boolean {
|
2016-06-04 08:15:51 +02:00
|
|
|
this.mode = PinFlags.Touch;
|
2016-03-11 01:24:11 +01:00
|
|
|
return this.touched;
|
|
|
|
}
|
|
|
|
}
|
2016-03-14 05:24:11 +01:00
|
|
|
|
2016-03-11 01:24:11 +01:00
|
|
|
export class Button {
|
2016-03-14 05:24:11 +01:00
|
|
|
constructor(public id: number) { }
|
2016-03-11 01:24:11 +01:00
|
|
|
pressed: boolean;
|
|
|
|
}
|
2016-03-14 05:24:11 +01:00
|
|
|
|
2016-03-11 01:24:11 +01:00
|
|
|
export class EventBus {
|
2016-03-14 05:24:11 +01:00
|
|
|
private queues: Map<EventQueue<number>> = {};
|
|
|
|
|
|
|
|
constructor(private runtime: Runtime) { }
|
|
|
|
|
|
|
|
listen(id: number, evid: number, handler: RefAction) {
|
2016-06-02 00:45:40 +02:00
|
|
|
let k = id + ":" + evid;
|
2016-03-11 01:24:11 +01:00
|
|
|
let queue = this.queues[k];
|
|
|
|
if (!queue) queue = this.queues[k] = new EventQueue<number>(this.runtime);
|
|
|
|
queue.handler = handler;
|
|
|
|
}
|
2016-03-14 05:24:11 +01:00
|
|
|
|
2016-03-11 01:24:11 +01:00
|
|
|
queue(id: number, evid: number, value: number = 0) {
|
2016-06-02 00:45:40 +02:00
|
|
|
let k = id + ":" + evid;
|
2016-03-11 01:24:11 +01:00
|
|
|
let queue = this.queues[k];
|
|
|
|
if (queue) queue.push(value);
|
|
|
|
}
|
|
|
|
}
|
2016-03-14 05:24:11 +01:00
|
|
|
|
2016-03-11 01:24:11 +01:00
|
|
|
export interface PacketBuffer {
|
2016-05-12 21:35:40 +02:00
|
|
|
data: number[] | string;
|
2016-03-14 05:24:11 +01:00
|
|
|
rssi?: number;
|
2016-03-11 01:24:11 +01:00
|
|
|
}
|
2016-03-14 05:24:11 +01:00
|
|
|
|
2016-03-11 01:24:11 +01:00
|
|
|
export class RadioDatagram {
|
|
|
|
datagram: PacketBuffer[] = [];
|
2016-03-14 05:24:11 +01:00
|
|
|
lastReceived: PacketBuffer = {
|
|
|
|
data: [0, 0, 0, 0],
|
|
|
|
rssi: -1
|
2016-03-11 01:24:11 +01:00
|
|
|
};
|
2016-03-14 05:24:11 +01:00
|
|
|
|
|
|
|
constructor(private runtime: Runtime) {
|
2016-03-11 01:24:11 +01:00
|
|
|
}
|
2016-03-14 05:24:11 +01:00
|
|
|
|
|
|
|
queue(packet: PacketBuffer) {
|
2016-08-09 01:54:43 +02:00
|
|
|
if (this.datagram.length < 4)
|
2016-03-11 01:24:11 +01:00
|
|
|
this.datagram.push(packet);
|
2016-08-09 01:54:43 +02:00
|
|
|
(<Board>runtime.board).bus.queue(DAL.MICROBIT_ID_RADIO, DAL.MICROBIT_RADIO_EVT_DATAGRAM);
|
2016-03-11 01:24:11 +01:00
|
|
|
}
|
2016-03-14 05:24:11 +01:00
|
|
|
|
2016-05-12 21:35:40 +02:00
|
|
|
send(buffer: number[] | string) {
|
|
|
|
if (buffer instanceof String) buffer = buffer.slice(0, 32);
|
|
|
|
else buffer = buffer.slice(0, 8);
|
|
|
|
|
2016-03-11 01:24:11 +01:00
|
|
|
Runtime.postMessage(<SimulatorRadioPacketMessage>{
|
2016-05-12 21:35:40 +02:00
|
|
|
type: "radiopacket",
|
|
|
|
data: buffer
|
2016-03-11 01:24:11 +01:00
|
|
|
})
|
|
|
|
}
|
2016-03-14 05:24:11 +01:00
|
|
|
|
|
|
|
recv(): PacketBuffer {
|
2016-05-11 06:13:16 +02:00
|
|
|
let r = this.datagram.shift();
|
2016-03-14 05:24:11 +01:00
|
|
|
if (!r) r = {
|
|
|
|
data: [0, 0, 0, 0],
|
|
|
|
rssi: -1
|
2016-03-11 01:24:11 +01:00
|
|
|
};
|
|
|
|
return this.lastReceived = r;
|
|
|
|
}
|
|
|
|
}
|
2016-03-14 05:24:11 +01:00
|
|
|
|
2016-03-11 01:24:11 +01:00
|
|
|
export class RadioBus {
|
|
|
|
// uint8_t radioDefaultGroup = MICROBIT_RADIO_DEFAULT_GROUP;
|
|
|
|
groupId = 0; // todo
|
2016-03-15 21:05:11 +01:00
|
|
|
power = 0;
|
2016-05-11 06:13:16 +02:00
|
|
|
transmitSerialNumber = false;
|
2016-03-14 05:24:11 +01:00
|
|
|
datagram: RadioDatagram;
|
|
|
|
|
|
|
|
constructor(private runtime: Runtime) {
|
2016-03-11 01:24:11 +01:00
|
|
|
this.datagram = new RadioDatagram(runtime);
|
|
|
|
}
|
2016-03-14 05:24:11 +01:00
|
|
|
|
2016-03-11 01:24:11 +01:00
|
|
|
setGroup(id: number) {
|
|
|
|
this.groupId = id & 0xff; // byte only
|
|
|
|
}
|
2016-03-20 03:15:20 +01:00
|
|
|
|
2016-03-15 21:05:11 +01:00
|
|
|
setTransmitPower(power: number) {
|
|
|
|
this.power = Math.max(0, Math.min(7, power));
|
|
|
|
}
|
2016-03-14 05:24:11 +01:00
|
|
|
|
2016-05-11 06:13:16 +02:00
|
|
|
setTransmitSerialNumber(sn: boolean) {
|
|
|
|
this.transmitSerialNumber = !!sn;
|
|
|
|
}
|
|
|
|
|
2016-03-11 01:24:11 +01:00
|
|
|
broadcast(msg: number) {
|
|
|
|
Runtime.postMessage(<SimulatorEventBusMessage>{
|
2016-06-02 00:45:40 +02:00
|
|
|
type: "eventbus",
|
2016-04-02 00:44:04 +02:00
|
|
|
id: DAL.MES_BROADCAST_GENERAL_ID,
|
2016-03-15 21:05:11 +01:00
|
|
|
eventid: msg,
|
|
|
|
power: this.power,
|
|
|
|
group: this.groupId
|
2016-03-11 01:24:11 +01:00
|
|
|
})
|
|
|
|
}
|
|
|
|
}
|
2016-03-14 05:24:11 +01:00
|
|
|
|
2016-03-20 03:15:20 +01:00
|
|
|
interface AccelerometerSample {
|
|
|
|
x: number;
|
|
|
|
y: number;
|
|
|
|
z: number;
|
|
|
|
}
|
|
|
|
|
|
|
|
interface ShakeHistory {
|
|
|
|
x: boolean;
|
|
|
|
y: boolean;
|
|
|
|
z: boolean;
|
|
|
|
count: number;
|
|
|
|
shaken: number;
|
|
|
|
timer: number;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Co-ordinate systems that can be used.
|
|
|
|
* RAW: Unaltered data. Data will be returned directly from the accelerometer.
|
|
|
|
*
|
|
|
|
* SIMPLE_CARTESIAN: Data will be returned based on an easy to understand alignment, consistent with the cartesian system taught in schools.
|
|
|
|
* When held upright, facing the user:
|
|
|
|
*
|
|
|
|
* /
|
|
|
|
* +--------------------+ z
|
|
|
|
* | |
|
|
|
|
* | ..... |
|
|
|
|
* | * ..... * |
|
|
|
|
* ^ | ..... |
|
|
|
|
* | | |
|
|
|
|
* y +--------------------+ x-->
|
|
|
|
*
|
|
|
|
*
|
|
|
|
* NORTH_EAST_DOWN: Data will be returned based on the industry convention of the North East Down (NED) system.
|
|
|
|
* When held upright, facing the user:
|
|
|
|
*
|
|
|
|
* z
|
|
|
|
* +--------------------+ /
|
|
|
|
* | |
|
|
|
|
* | ..... |
|
|
|
|
* | * ..... * |
|
|
|
|
* ^ | ..... |
|
|
|
|
* | | |
|
|
|
|
* x +--------------------+ y-->
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
export enum MicroBitCoordinateSystem {
|
|
|
|
RAW,
|
|
|
|
SIMPLE_CARTESIAN,
|
|
|
|
NORTH_EAST_DOWN
|
|
|
|
}
|
|
|
|
|
|
|
|
export class Accelerometer {
|
|
|
|
private sigma: number = 0; // the number of ticks that the instantaneous gesture has been stable.
|
2016-05-12 21:35:40 +02:00
|
|
|
private lastGesture: number = 0; // the last, stable gesture recorded.
|
|
|
|
private currentGesture: number = 0 // the instantaneous, unfiltered gesture detected.
|
2016-03-20 03:15:20 +01:00
|
|
|
private sample: AccelerometerSample = { x: 0, y: 0, z: -1023 }
|
|
|
|
private shake: ShakeHistory = { x: false, y: false, z: false, count: 0, shaken: 0, timer: 0 }; // State information needed to detect shake events.
|
2016-04-02 00:44:04 +02:00
|
|
|
private pitch: number;
|
|
|
|
private roll: number;
|
2016-03-20 03:15:20 +01:00
|
|
|
private id: number;
|
|
|
|
public isActive = false;
|
|
|
|
public sampleRange = 2;
|
|
|
|
|
|
|
|
constructor(public runtime: Runtime) {
|
2016-04-02 00:44:04 +02:00
|
|
|
this.id = DAL.MICROBIT_ID_ACCELEROMETER;
|
2016-03-20 03:15:20 +01:00
|
|
|
}
|
2016-04-02 00:44:04 +02:00
|
|
|
|
|
|
|
public setSampleRange(range: number) {
|
2016-03-20 03:15:20 +01:00
|
|
|
this.activate();
|
|
|
|
this.sampleRange = Math.max(1, Math.min(8, range));
|
|
|
|
}
|
2016-04-02 00:44:04 +02:00
|
|
|
|
2016-03-20 03:15:20 +01:00
|
|
|
public activate() {
|
|
|
|
if (!this.isActive) {
|
|
|
|
this.isActive = true;
|
|
|
|
this.runtime.queueDisplayUpdate();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Reads the acceleration data from the accelerometer, and stores it in our buffer.
|
|
|
|
* This is called by the tick() member function, if the interrupt is set!
|
|
|
|
*/
|
2016-04-02 00:44:04 +02:00
|
|
|
public update(x: number, y: number, z: number) {
|
2016-03-20 03:15:20 +01:00
|
|
|
// read MSB values...
|
|
|
|
this.sample.x = Math.floor(x);
|
|
|
|
this.sample.y = Math.floor(y);
|
|
|
|
this.sample.z = Math.floor(z);
|
|
|
|
|
|
|
|
// Update gesture tracking
|
|
|
|
this.updateGesture();
|
|
|
|
|
|
|
|
// Indicate that a new sample is available
|
2016-04-02 00:44:04 +02:00
|
|
|
board().bus.queue(this.id, DAL.MICROBIT_ACCELEROMETER_EVT_DATA_UPDATE)
|
2016-03-20 03:15:20 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
public instantaneousAccelerationSquared() {
|
|
|
|
// Use pythagoras theorem to determine the combined force acting on the device.
|
|
|
|
return this.sample.x * this.sample.x + this.sample.y * this.sample.y + this.sample.z * this.sample.z;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Service function. Determines the best guess posture of the device based on instantaneous data.
|
|
|
|
* This makes no use of historic data (except for shake), and forms this input to the filter implemented in updateGesture().
|
|
|
|
*
|
|
|
|
* @return A best guess of the current posture of the device, based on instantaneous data.
|
|
|
|
*/
|
2016-05-12 21:35:40 +02:00
|
|
|
private instantaneousPosture(): number {
|
2016-03-20 03:15:20 +01:00
|
|
|
let force = this.instantaneousAccelerationSquared();
|
|
|
|
let shakeDetected = false;
|
|
|
|
|
|
|
|
// Test for shake events.
|
|
|
|
// We detect a shake by measuring zero crossings in each axis. In other words, if we see a strong acceleration to the left followed by
|
|
|
|
// a string acceleration to the right, then we can infer a shake. Similarly, we can do this for each acxis (left/right, up/down, in/out).
|
|
|
|
//
|
|
|
|
// If we see enough zero crossings in succession (MICROBIT_ACCELEROMETER_SHAKE_COUNT_THRESHOLD), then we decide that the device
|
|
|
|
// has been shaken.
|
2016-04-02 00:44:04 +02:00
|
|
|
if ((this.getX() < -DAL.MICROBIT_ACCELEROMETER_SHAKE_TOLERANCE && this.shake.x) || (this.getX() > DAL.MICROBIT_ACCELEROMETER_SHAKE_TOLERANCE && !this.shake.x)) {
|
2016-03-20 03:15:20 +01:00
|
|
|
shakeDetected = true;
|
|
|
|
this.shake.x = !this.shake.x;
|
|
|
|
}
|
|
|
|
|
2016-04-02 00:44:04 +02:00
|
|
|
if ((this.getY() < -DAL.MICROBIT_ACCELEROMETER_SHAKE_TOLERANCE && this.shake.y) || (this.getY() > DAL.MICROBIT_ACCELEROMETER_SHAKE_TOLERANCE && !this.shake.y)) {
|
2016-03-20 03:15:20 +01:00
|
|
|
shakeDetected = true;
|
|
|
|
this.shake.y = !this.shake.y;
|
|
|
|
}
|
|
|
|
|
2016-04-02 00:44:04 +02:00
|
|
|
if ((this.getZ() < -DAL.MICROBIT_ACCELEROMETER_SHAKE_TOLERANCE && this.shake.z) || (this.getZ() > DAL.MICROBIT_ACCELEROMETER_SHAKE_TOLERANCE && !this.shake.z)) {
|
2016-03-20 03:15:20 +01:00
|
|
|
shakeDetected = true;
|
|
|
|
this.shake.z = !this.shake.z;
|
|
|
|
}
|
|
|
|
|
2016-04-02 00:44:04 +02:00
|
|
|
if (shakeDetected && this.shake.count < DAL.MICROBIT_ACCELEROMETER_SHAKE_COUNT_THRESHOLD && ++this.shake.count == DAL.MICROBIT_ACCELEROMETER_SHAKE_COUNT_THRESHOLD)
|
2016-03-20 03:15:20 +01:00
|
|
|
this.shake.shaken = 1;
|
|
|
|
|
2016-04-02 00:44:04 +02:00
|
|
|
if (++this.shake.timer >= DAL.MICROBIT_ACCELEROMETER_SHAKE_DAMPING) {
|
2016-03-20 03:15:20 +01:00
|
|
|
this.shake.timer = 0;
|
|
|
|
if (this.shake.count > 0) {
|
|
|
|
if (--this.shake.count == 0)
|
|
|
|
this.shake.shaken = 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (this.shake.shaken)
|
2016-05-12 21:35:40 +02:00
|
|
|
return DAL.MICROBIT_ACCELEROMETER_EVT_SHAKE;
|
2016-03-20 03:15:20 +01:00
|
|
|
|
2016-04-02 00:44:04 +02:00
|
|
|
let sq = (n: number) => n * n
|
|
|
|
|
|
|
|
if (force < sq(DAL.MICROBIT_ACCELEROMETER_FREEFALL_TOLERANCE))
|
2016-05-12 21:35:40 +02:00
|
|
|
return DAL.MICROBIT_ACCELEROMETER_EVT_FREEFALL;
|
2016-03-20 03:15:20 +01:00
|
|
|
|
2016-04-02 00:44:04 +02:00
|
|
|
if (force > sq(DAL.MICROBIT_ACCELEROMETER_3G_TOLERANCE))
|
2016-05-12 21:35:40 +02:00
|
|
|
return DAL.MICROBIT_ACCELEROMETER_EVT_3G;
|
2016-03-20 03:15:20 +01:00
|
|
|
|
2016-04-02 00:44:04 +02:00
|
|
|
if (force > sq(DAL.MICROBIT_ACCELEROMETER_6G_TOLERANCE))
|
2016-05-12 21:35:40 +02:00
|
|
|
return DAL.MICROBIT_ACCELEROMETER_EVT_6G;
|
2016-03-20 03:15:20 +01:00
|
|
|
|
2016-04-02 00:44:04 +02:00
|
|
|
if (force > sq(DAL.MICROBIT_ACCELEROMETER_8G_TOLERANCE))
|
2016-05-12 21:35:40 +02:00
|
|
|
return DAL.MICROBIT_ACCELEROMETER_EVT_8G;
|
2016-03-20 03:15:20 +01:00
|
|
|
|
|
|
|
// Determine our posture.
|
2016-04-02 00:44:04 +02:00
|
|
|
if (this.getX() < (-1000 + DAL.MICROBIT_ACCELEROMETER_TILT_TOLERANCE))
|
2016-05-12 21:35:40 +02:00
|
|
|
return DAL.MICROBIT_ACCELEROMETER_EVT_TILT_LEFT;
|
2016-03-20 03:15:20 +01:00
|
|
|
|
2016-04-02 00:44:04 +02:00
|
|
|
if (this.getX() > (1000 - DAL.MICROBIT_ACCELEROMETER_TILT_TOLERANCE))
|
2016-05-12 21:35:40 +02:00
|
|
|
return DAL.MICROBIT_ACCELEROMETER_EVT_TILT_RIGHT;
|
2016-03-20 03:15:20 +01:00
|
|
|
|
2016-04-02 00:44:04 +02:00
|
|
|
if (this.getY() < (-1000 + DAL.MICROBIT_ACCELEROMETER_TILT_TOLERANCE))
|
2016-05-12 21:35:40 +02:00
|
|
|
return DAL.MICROBIT_ACCELEROMETER_EVT_TILT_DOWN;
|
2016-03-20 03:15:20 +01:00
|
|
|
|
2016-04-02 00:44:04 +02:00
|
|
|
if (this.getY() > (1000 - DAL.MICROBIT_ACCELEROMETER_TILT_TOLERANCE))
|
2016-05-12 21:35:40 +02:00
|
|
|
return DAL.MICROBIT_ACCELEROMETER_EVT_TILT_UP;
|
2016-03-20 03:15:20 +01:00
|
|
|
|
2016-04-02 00:44:04 +02:00
|
|
|
if (this.getZ() < (-1000 + DAL.MICROBIT_ACCELEROMETER_TILT_TOLERANCE))
|
2016-05-12 21:35:40 +02:00
|
|
|
return DAL.MICROBIT_ACCELEROMETER_EVT_FACE_UP;
|
2016-03-20 03:15:20 +01:00
|
|
|
|
2016-04-02 00:44:04 +02:00
|
|
|
if (this.getZ() > (1000 - DAL.MICROBIT_ACCELEROMETER_TILT_TOLERANCE))
|
2016-05-12 21:35:40 +02:00
|
|
|
return DAL.MICROBIT_ACCELEROMETER_EVT_FACE_DOWN;
|
2016-03-20 03:15:20 +01:00
|
|
|
|
2016-05-12 21:35:40 +02:00
|
|
|
return 0;
|
2016-03-20 03:15:20 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
updateGesture() {
|
|
|
|
// Determine what it looks like we're doing based on the latest sample...
|
|
|
|
let g = this.instantaneousPosture();
|
|
|
|
|
|
|
|
// Perform some low pass filtering to reduce jitter from any detected effects
|
|
|
|
if (g == this.currentGesture) {
|
2016-04-02 00:44:04 +02:00
|
|
|
if (this.sigma < DAL.MICROBIT_ACCELEROMETER_GESTURE_DAMPING)
|
2016-03-20 03:15:20 +01:00
|
|
|
this.sigma++;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
this.currentGesture = g;
|
|
|
|
this.sigma = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
// If we've reached threshold, update our record and raise the relevant event...
|
2016-04-02 00:44:04 +02:00
|
|
|
if (this.currentGesture != this.lastGesture && this.sigma >= DAL.MICROBIT_ACCELEROMETER_GESTURE_DAMPING) {
|
2016-03-20 03:15:20 +01:00
|
|
|
this.lastGesture = this.currentGesture;
|
2016-04-02 00:44:04 +02:00
|
|
|
board().bus.queue(DAL.MICROBIT_ID_GESTURE, this.lastGesture);
|
2016-03-20 03:15:20 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Reads the X axis value of the latest update from the accelerometer.
|
|
|
|
* @param system The coordinate system to use. By default, a simple cartesian system is provided.
|
|
|
|
* @return The force measured in the X axis, in milli-g.
|
|
|
|
*
|
|
|
|
* Example:
|
|
|
|
* @code
|
|
|
|
* uBit.accelerometer.getX();
|
|
|
|
* uBit.accelerometer.getX(RAW);
|
|
|
|
* @endcode
|
|
|
|
*/
|
2016-04-02 00:44:04 +02:00
|
|
|
public getX(system: MicroBitCoordinateSystem = MicroBitCoordinateSystem.SIMPLE_CARTESIAN): number {
|
2016-03-20 03:15:20 +01:00
|
|
|
this.activate();
|
|
|
|
switch (system) {
|
|
|
|
case MicroBitCoordinateSystem.SIMPLE_CARTESIAN:
|
|
|
|
return -this.sample.x;
|
|
|
|
|
|
|
|
case MicroBitCoordinateSystem.NORTH_EAST_DOWN:
|
|
|
|
return this.sample.y;
|
|
|
|
//case MicroBitCoordinateSystem.SIMPLE_CARTESIAN.RAW:
|
|
|
|
default:
|
|
|
|
return this.sample.x;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Reads the Y axis value of the latest update from the accelerometer.
|
|
|
|
* @param system The coordinate system to use. By default, a simple cartesian system is provided.
|
|
|
|
* @return The force measured in the Y axis, in milli-g.
|
|
|
|
*
|
|
|
|
* Example:
|
|
|
|
* @code
|
|
|
|
* uBit.accelerometer.getY();
|
|
|
|
* uBit.accelerometer.getY(RAW);
|
|
|
|
* @endcode
|
|
|
|
*/
|
2016-04-02 00:44:04 +02:00
|
|
|
public getY(system: MicroBitCoordinateSystem = MicroBitCoordinateSystem.SIMPLE_CARTESIAN): number {
|
2016-03-20 03:15:20 +01:00
|
|
|
this.activate();
|
|
|
|
switch (system) {
|
|
|
|
case MicroBitCoordinateSystem.SIMPLE_CARTESIAN:
|
|
|
|
return -this.sample.y;
|
|
|
|
|
|
|
|
case MicroBitCoordinateSystem.NORTH_EAST_DOWN:
|
|
|
|
return -this.sample.x;
|
|
|
|
//case RAW:
|
|
|
|
default:
|
|
|
|
return this.sample.y;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Reads the Z axis value of the latest update from the accelerometer.
|
|
|
|
* @param system The coordinate system to use. By default, a simple cartesian system is provided.
|
|
|
|
* @return The force measured in the Z axis, in milli-g.
|
|
|
|
*
|
|
|
|
* Example:
|
|
|
|
* @code
|
|
|
|
* uBit.accelerometer.getZ();
|
|
|
|
* uBit.accelerometer.getZ(RAW);
|
|
|
|
* @endcode
|
|
|
|
*/
|
2016-04-02 00:44:04 +02:00
|
|
|
public getZ(system: MicroBitCoordinateSystem = MicroBitCoordinateSystem.SIMPLE_CARTESIAN): number {
|
2016-03-20 03:15:20 +01:00
|
|
|
this.activate();
|
|
|
|
switch (system) {
|
|
|
|
case MicroBitCoordinateSystem.NORTH_EAST_DOWN:
|
|
|
|
return -this.sample.z;
|
|
|
|
//case MicroBitCoordinateSystem.SIMPLE_CARTESIAN:
|
|
|
|
//case MicroBitCoordinateSystem.RAW:
|
|
|
|
default:
|
|
|
|
return this.sample.z;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Provides a rotation compensated pitch of the device, based on the latest update from the accelerometer.
|
|
|
|
* @return The pitch of the device, in degrees.
|
|
|
|
*
|
|
|
|
* Example:
|
|
|
|
* @code
|
|
|
|
* uBit.accelerometer.getPitch();
|
|
|
|
* @endcode
|
|
|
|
*/
|
|
|
|
public getPitch(): number {
|
|
|
|
this.activate();
|
|
|
|
return Math.floor((360 * this.getPitchRadians()) / (2 * Math.PI));
|
|
|
|
}
|
|
|
|
|
2016-04-02 00:44:04 +02:00
|
|
|
getPitchRadians(): number {
|
2016-03-20 03:15:20 +01:00
|
|
|
this.recalculatePitchRoll();
|
|
|
|
return this.pitch;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Provides a rotation compensated roll of the device, based on the latest update from the accelerometer.
|
|
|
|
* @return The roll of the device, in degrees.
|
|
|
|
*
|
|
|
|
* Example:
|
|
|
|
* @code
|
|
|
|
* uBit.accelerometer.getRoll();
|
|
|
|
* @endcode
|
|
|
|
*/
|
|
|
|
public getRoll(): number {
|
|
|
|
this.activate();
|
|
|
|
return Math.floor((360 * this.getRollRadians()) / (2 * Math.PI));
|
|
|
|
}
|
|
|
|
|
|
|
|
getRollRadians(): number {
|
|
|
|
this.recalculatePitchRoll();
|
|
|
|
return this.roll;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Recalculate roll and pitch values for the current sample.
|
|
|
|
* We only do this at most once per sample, as the necessary trigonemteric functions are rather
|
|
|
|
* heavyweight for a CPU without a floating point unit...
|
|
|
|
*/
|
|
|
|
recalculatePitchRoll() {
|
|
|
|
let x = this.getX(MicroBitCoordinateSystem.NORTH_EAST_DOWN);
|
|
|
|
let y = this.getY(MicroBitCoordinateSystem.NORTH_EAST_DOWN);
|
|
|
|
let z = this.getZ(MicroBitCoordinateSystem.NORTH_EAST_DOWN);
|
|
|
|
|
|
|
|
this.roll = Math.atan2(y, z);
|
|
|
|
this.pitch = Math.atan(-x / (y * Math.sin(this.roll) + z * Math.cos(this.roll)));
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2016-03-14 05:24:11 +01:00
|
|
|
|
2016-03-11 01:24:11 +01:00
|
|
|
export class Board extends BaseBoard {
|
|
|
|
id: string;
|
2016-03-14 05:24:11 +01:00
|
|
|
|
2016-03-11 01:24:11 +01:00
|
|
|
// the bus
|
2016-03-14 05:24:11 +01:00
|
|
|
bus: EventBus;
|
2016-03-11 01:24:11 +01:00
|
|
|
radio: RadioBus;
|
|
|
|
|
|
|
|
// display
|
|
|
|
image = createImage(5);
|
|
|
|
brigthness = 255;
|
|
|
|
displayMode = DisplayMode.bw;
|
|
|
|
font: Image = createFont();
|
|
|
|
|
|
|
|
// buttons
|
|
|
|
usesButtonAB: boolean = false;
|
2016-03-14 05:24:11 +01:00
|
|
|
buttons: Button[];
|
2016-03-11 01:24:11 +01:00
|
|
|
|
|
|
|
// pins
|
2016-03-14 05:24:11 +01:00
|
|
|
pins: Pin[];
|
|
|
|
|
2016-03-11 01:24:11 +01:00
|
|
|
// serial
|
|
|
|
serialIn: string[] = [];
|
|
|
|
|
2016-03-20 03:15:20 +01:00
|
|
|
// sensors
|
2016-04-02 00:44:04 +02:00
|
|
|
accelerometer: Accelerometer;
|
2016-03-20 03:15:20 +01:00
|
|
|
|
2016-03-18 22:54:27 +01:00
|
|
|
// gestures
|
|
|
|
useShake = false;
|
2016-03-14 05:24:11 +01:00
|
|
|
|
|
|
|
usesHeading = false;
|
2016-03-11 01:24:11 +01:00
|
|
|
heading = 90;
|
2016-03-14 05:24:11 +01:00
|
|
|
|
2016-03-14 22:03:31 +01:00
|
|
|
usesTemperature = false;
|
2016-03-11 01:24:11 +01:00
|
|
|
temperature = 21;
|
2016-03-14 05:24:11 +01:00
|
|
|
|
2016-03-11 22:17:49 +01:00
|
|
|
usesLightLevel = false;
|
2016-03-11 01:24:11 +01:00
|
|
|
lightLevel = 128;
|
2016-03-14 05:24:11 +01:00
|
|
|
|
2016-03-11 01:24:11 +01:00
|
|
|
animationQ: AnimationQueue;
|
2016-03-14 05:24:11 +01:00
|
|
|
|
2016-03-11 01:24:11 +01:00
|
|
|
constructor() {
|
|
|
|
super()
|
2016-05-11 06:13:16 +02:00
|
|
|
this.id = "b" + Math_.random(2147483647);
|
2016-03-11 01:24:11 +01:00
|
|
|
this.animationQ = new AnimationQueue(runtime);
|
|
|
|
this.bus = new EventBus(runtime);
|
|
|
|
this.radio = new RadioBus(runtime);
|
2016-03-20 03:15:20 +01:00
|
|
|
this.accelerometer = new Accelerometer(runtime);
|
2016-03-11 01:24:11 +01:00
|
|
|
this.buttons = [
|
2016-04-02 00:44:04 +02:00
|
|
|
new Button(DAL.MICROBIT_ID_BUTTON_A),
|
|
|
|
new Button(DAL.MICROBIT_ID_BUTTON_B),
|
|
|
|
new Button(DAL.MICROBIT_ID_BUTTON_AB)
|
2016-03-11 01:24:11 +01:00
|
|
|
];
|
|
|
|
this.pins = [
|
2016-04-02 00:44:04 +02:00
|
|
|
new Pin(DAL.MICROBIT_ID_IO_P0),
|
|
|
|
new Pin(DAL.MICROBIT_ID_IO_P1),
|
|
|
|
new Pin(DAL.MICROBIT_ID_IO_P2),
|
|
|
|
new Pin(DAL.MICROBIT_ID_IO_P3),
|
|
|
|
new Pin(DAL.MICROBIT_ID_IO_P4),
|
|
|
|
new Pin(DAL.MICROBIT_ID_IO_P5),
|
|
|
|
new Pin(DAL.MICROBIT_ID_IO_P6),
|
|
|
|
new Pin(DAL.MICROBIT_ID_IO_P7),
|
|
|
|
new Pin(DAL.MICROBIT_ID_IO_P8),
|
|
|
|
new Pin(DAL.MICROBIT_ID_IO_P9),
|
|
|
|
new Pin(DAL.MICROBIT_ID_IO_P10),
|
|
|
|
new Pin(DAL.MICROBIT_ID_IO_P11),
|
|
|
|
new Pin(DAL.MICROBIT_ID_IO_P12),
|
|
|
|
new Pin(DAL.MICROBIT_ID_IO_P13),
|
|
|
|
new Pin(DAL.MICROBIT_ID_IO_P14),
|
|
|
|
new Pin(DAL.MICROBIT_ID_IO_P15),
|
|
|
|
new Pin(DAL.MICROBIT_ID_IO_P16),
|
2016-03-14 05:24:11 +01:00
|
|
|
null,
|
|
|
|
null,
|
2016-04-02 00:44:04 +02:00
|
|
|
new Pin(DAL.MICROBIT_ID_IO_P19),
|
|
|
|
new Pin(DAL.MICROBIT_ID_IO_P20)
|
2016-03-11 01:24:11 +01:00
|
|
|
];
|
|
|
|
}
|
2016-03-14 05:24:11 +01:00
|
|
|
|
|
|
|
|
|
|
|
initAsync(msg: SimulatorRunMessage): Promise<void> {
|
2016-03-11 01:24:11 +01:00
|
|
|
let options = (msg.options || {}) as RuntimeOptions;
|
2016-03-14 05:24:11 +01:00
|
|
|
let theme: micro_bit.IBoardTheme;
|
|
|
|
switch (options.theme) {
|
2016-03-11 01:24:11 +01:00
|
|
|
case 'blue': theme = micro_bit.themes[0]; break;
|
|
|
|
case 'yellow': theme = micro_bit.themes[1]; break;
|
|
|
|
case 'green': theme = micro_bit.themes[2]; break;
|
|
|
|
case 'red': theme = micro_bit.themes[3]; break;
|
2016-04-07 21:52:02 +02:00
|
|
|
default: theme = pxsim.micro_bit.randomTheme();
|
2016-03-11 01:24:11 +01:00
|
|
|
}
|
2016-03-14 05:24:11 +01:00
|
|
|
|
2016-04-07 21:52:02 +02:00
|
|
|
let view = new pxsim.micro_bit.MicrobitBoardSvg({
|
2016-03-11 01:24:11 +01:00
|
|
|
theme: theme,
|
|
|
|
runtime: runtime
|
|
|
|
})
|
2016-06-02 00:45:40 +02:00
|
|
|
document.body.innerHTML = ""; // clear children
|
2016-03-11 01:24:11 +01:00
|
|
|
document.body.appendChild(view.element);
|
2016-03-14 05:24:11 +01:00
|
|
|
|
|
|
|
return Promise.resolve();
|
2016-03-11 01:24:11 +01:00
|
|
|
}
|
2016-03-14 05:24:11 +01:00
|
|
|
|
2016-03-11 01:24:11 +01:00
|
|
|
receiveMessage(msg: SimulatorMessage) {
|
|
|
|
if (!runtime || runtime.dead) return;
|
2016-03-14 05:24:11 +01:00
|
|
|
|
|
|
|
switch (msg.type || "") {
|
2016-05-12 21:35:40 +02:00
|
|
|
case "eventbus":
|
2016-03-11 01:24:11 +01:00
|
|
|
let ev = <SimulatorEventBusMessage>msg;
|
|
|
|
this.bus.queue(ev.id, ev.eventid, ev.value);
|
|
|
|
break;
|
2016-05-12 21:35:40 +02:00
|
|
|
case "serial":
|
|
|
|
this.serialIn.push((<SimulatorSerialMessage>msg).data || "");
|
2016-03-11 01:24:11 +01:00
|
|
|
break;
|
2016-05-12 21:35:40 +02:00
|
|
|
case "radiopacket":
|
2016-03-11 01:24:11 +01:00
|
|
|
let packet = <SimulatorRadioPacketMessage>msg;
|
2016-05-12 21:35:40 +02:00
|
|
|
this.radio.datagram.queue({ data: packet.data, rssi: packet.rssi || 0 })
|
2016-03-11 01:24:11 +01:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
2016-03-14 05:24:11 +01:00
|
|
|
|
2016-03-11 01:24:11 +01:00
|
|
|
readSerial() {
|
2016-06-02 00:45:40 +02:00
|
|
|
let v = this.serialIn.shift() || "";
|
2016-03-11 01:24:11 +01:00
|
|
|
return v;
|
|
|
|
}
|
2016-03-14 05:24:11 +01:00
|
|
|
|
2016-06-02 00:45:40 +02:00
|
|
|
kill() {
|
|
|
|
super.kill();
|
|
|
|
AudioContextManager.stop();
|
|
|
|
}
|
|
|
|
|
|
|
|
serialOutBuffer: string = "";
|
2016-03-14 05:24:11 +01:00
|
|
|
writeSerial(s: string) {
|
|
|
|
for (let i = 0; i < s.length; ++i) {
|
2016-03-11 01:24:11 +01:00
|
|
|
let c = s[i];
|
2016-04-07 18:03:21 +02:00
|
|
|
this.serialOutBuffer += c;
|
2016-06-02 00:45:40 +02:00
|
|
|
if (c == "\n") {
|
2016-05-11 06:13:16 +02:00
|
|
|
Runtime.postMessage(<SimulatorSerialMessage>{
|
2016-06-02 00:45:40 +02:00
|
|
|
type: "serial",
|
2016-05-11 06:13:16 +02:00
|
|
|
data: this.serialOutBuffer,
|
2016-07-29 22:42:21 +02:00
|
|
|
id: runtime.id,
|
|
|
|
sim: true
|
2016-05-11 06:13:16 +02:00
|
|
|
})
|
2016-06-02 00:45:40 +02:00
|
|
|
this.serialOutBuffer = ""
|
2016-05-11 06:13:16 +02:00
|
|
|
break;
|
2016-03-14 05:24:11 +01:00
|
|
|
}
|
2016-03-11 01:24:11 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
export class Image {
|
2016-04-18 18:47:27 +02:00
|
|
|
public static height: number = 5;
|
2016-03-11 01:24:11 +01:00
|
|
|
public width: number;
|
2016-03-14 05:24:11 +01:00
|
|
|
public data: number[];
|
2016-03-11 01:24:11 +01:00
|
|
|
constructor(width: number, data: number[]) {
|
|
|
|
this.width = width;
|
|
|
|
this.data = data;
|
|
|
|
}
|
|
|
|
public get(x: number, y: number): number {
|
2016-04-12 17:55:20 +02:00
|
|
|
if (x < 0 || x >= this.width || y < 0 || y >= 5) return 0;
|
2016-03-11 01:24:11 +01:00
|
|
|
return this.data[y * this.width + x];
|
|
|
|
}
|
|
|
|
public set(x: number, y: number, v: number) {
|
2016-04-12 17:55:20 +02:00
|
|
|
if (x < 0 || x >= this.width || y < 0 || y >= 5) return;
|
|
|
|
this.data[y * this.width + x] = Math.max(0, Math.min(255, v));
|
2016-03-11 01:24:11 +01:00
|
|
|
}
|
|
|
|
public copyTo(xSrcIndex: number, length: number, target: Image, xTargetIndex: number): void {
|
|
|
|
for (let x = 0; x < length; x++) {
|
|
|
|
for (let y = 0; y < 5; y++) {
|
|
|
|
let value = this.get(xSrcIndex + x, y);
|
|
|
|
target.set(xTargetIndex + x, y, value);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2016-03-15 05:37:03 +01:00
|
|
|
public shiftLeft(cols: number) {
|
2016-03-20 03:15:20 +01:00
|
|
|
for (let x = 0; x < this.width; ++x)
|
|
|
|
for (let y = 0; y < 5; ++y)
|
|
|
|
this.set(x, y, x < this.width - cols ? this.get(x + cols, y) : 0);
|
2016-03-15 05:37:03 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
public shiftRight(cols: number) {
|
2016-03-20 03:15:20 +01:00
|
|
|
for (let x = this.width - 1; x <= 0; --x)
|
|
|
|
for (let y = 0; y < 5; ++y)
|
|
|
|
this.set(x, y, x > cols ? this.get(x - cols, y) : 0);
|
2016-03-15 05:37:03 +01:00
|
|
|
}
|
2016-03-20 03:15:20 +01:00
|
|
|
|
2016-03-14 05:24:11 +01:00
|
|
|
public clear(): void {
|
2016-05-11 06:13:16 +02:00
|
|
|
for (let i = 0; i < this.data.length; ++i)
|
2016-03-11 01:24:11 +01:00
|
|
|
this.data[i] = 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
export function createImage(width: number): Image {
|
|
|
|
return new Image(width, new Array(width * 5));
|
|
|
|
}
|
|
|
|
|
|
|
|
export function createImageFromBuffer(data: number[]): Image {
|
|
|
|
return new Image(data.length / 5, data);
|
|
|
|
}
|
|
|
|
|
|
|
|
export function createImageFromString(text: string): Image {
|
|
|
|
let font = board().font;
|
|
|
|
let w = font.width;
|
|
|
|
let sprite = createImage(6 * text.length - 1);
|
|
|
|
let k = 0;
|
|
|
|
for (let i = 0; i < text.length; i++) {
|
|
|
|
let charCode = text.charCodeAt(i);
|
|
|
|
let charStart = (charCode - 32) * 5;
|
|
|
|
if (charStart < 0 || charStart + 5 > w) {
|
|
|
|
charCode = " ".charCodeAt(0);
|
|
|
|
charStart = (charCode - 32) * 5;
|
|
|
|
}
|
|
|
|
|
|
|
|
font.copyTo(charStart, 5, sprite, k);
|
|
|
|
k = k + 5;
|
|
|
|
if (i < text.length - 1) {
|
|
|
|
k = k + 1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return sprite;
|
|
|
|
}
|
|
|
|
|
|
|
|
export function createFont(): Image {
|
2016-05-11 06:13:16 +02:00
|
|
|
const data = [0x0, 0x0, 0x0, 0x0, 0x0, 0x8, 0x8, 0x8, 0x0, 0x8, 0xa, 0x4a, 0x40, 0x0, 0x0, 0xa, 0x5f, 0xea, 0x5f, 0xea, 0xe, 0xd9, 0x2e, 0xd3, 0x6e, 0x19, 0x32, 0x44, 0x89, 0x33, 0xc, 0x92, 0x4c, 0x92, 0x4d, 0x8, 0x8, 0x0, 0x0, 0x0, 0x4, 0x88, 0x8, 0x8, 0x4, 0x8, 0x4, 0x84, 0x84, 0x88, 0x0, 0xa, 0x44, 0x8a, 0x40, 0x0, 0x4, 0x8e, 0xc4, 0x80, 0x0, 0x0, 0x0, 0x4, 0x88, 0x0, 0x0, 0xe, 0xc0, 0x0, 0x0, 0x0, 0x0, 0x8, 0x0, 0x1, 0x22, 0x44, 0x88, 0x10, 0xc, 0x92, 0x52, 0x52, 0x4c, 0x4, 0x8c, 0x84, 0x84, 0x8e, 0x1c, 0x82, 0x4c, 0x90, 0x1e, 0x1e, 0xc2, 0x44, 0x92, 0x4c, 0x6, 0xca, 0x52, 0x5f, 0xe2, 0x1f, 0xf0, 0x1e, 0xc1, 0x3e, 0x2, 0x44, 0x8e, 0xd1, 0x2e, 0x1f, 0xe2, 0x44, 0x88, 0x10, 0xe, 0xd1, 0x2e, 0xd1, 0x2e, 0xe, 0xd1, 0x2e, 0xc4, 0x88, 0x0, 0x8, 0x0, 0x8, 0x0, 0x0, 0x4, 0x80, 0x4, 0x88, 0x2, 0x44, 0x88, 0x4, 0x82, 0x0, 0xe, 0xc0, 0xe, 0xc0, 0x8, 0x4, 0x82, 0x44, 0x88, 0xe, 0xd1, 0x26, 0xc0, 0x4, 0xe, 0xd1, 0x35, 0xb3, 0x6c, 0xc, 0x92, 0x5e, 0xd2, 0x52, 0x1c, 0x92, 0x5c, 0x92, 0x5c, 0xe, 0xd0, 0x10, 0x10, 0xe, 0x1c, 0x92, 0x52, 0x52, 0x5c, 0x1e, 0xd0, 0x1c, 0x90, 0x1e, 0x1e, 0xd0, 0x1c, 0x90, 0x10, 0xe, 0xd0, 0x13, 0x71, 0x2e, 0x12, 0x52, 0x5e, 0xd2, 0x52, 0x1c, 0x88, 0x8, 0x8, 0x1c, 0x1f, 0xe2, 0x42, 0x52, 0x4c, 0x12, 0x54, 0x98, 0x14, 0x92, 0x10, 0x10, 0x10, 0x10, 0x1e, 0x11, 0x3b, 0x75, 0xb1, 0x31, 0x11, 0x39, 0x35, 0xb3, 0x71, 0xc, 0x92, 0x52, 0x52, 0x4c, 0x1c, 0x92, 0x5c, 0x90, 0x10, 0xc, 0x92, 0x52, 0x4c, 0x86, 0x1c, 0x92, 0x5c, 0x92, 0x51, 0xe, 0xd0, 0xc, 0x82, 0x5c, 0x1f, 0xe4, 0x84, 0x84, 0x84, 0x12, 0x52, 0x52, 0x52, 0x4c, 0x11, 0x31, 0x31, 0x2a, 0x44, 0x11, 0x31, 0x35, 0xbb, 0x71, 0x12, 0x52, 0x4c, 0x92, 0x52, 0x11, 0x2a, 0x44, 0x84, 0x84, 0x1e, 0xc4, 0x88, 0x10, 0x1e, 0xe, 0xc8, 0x8, 0x8, 0xe, 0x10, 0x8, 0x4, 0x82, 0x41, 0xe, 0xc2, 0x42, 0x42, 0x4e, 0x4, 0x8a, 0x40, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1f, 0x8, 0x4, 0x80, 0x0, 0x0, 0x0, 0xe, 0xd2, 0x52, 0x4f, 0x10, 0x10, 0x1c, 0x92, 0x5c, 0x0, 0xe, 0xd0, 0x10, 0xe, 0x2, 0x42, 0x4e, 0xd2, 0x4e, 0xc, 0x92, 0x5c, 0x90, 0xe, 0x6, 0xc8, 0x1c, 0x88, 0x8, 0xe, 0xd2, 0x4e, 0xc2, 0x4c, 0x10, 0x10, 0x1c, 0x92, 0x52, 0x8, 0x0, 0x8, 0x8, 0x8, 0x2, 0x40, 0x2, 0x42, 0x4c, 0x10, 0x14, 0x98, 0x14, 0x92, 0x8, 0x8, 0x8, 0x8, 0x6, 0x0, 0x1b, 0x75, 0xb1, 0x31, 0x0, 0x1c, 0x92, 0x52, 0x52, 0x0, 0xc, 0x92, 0x52, 0x4c, 0x0, 0x1c, 0x92, 0x5c, 0x90, 0x0, 0xe, 0xd2, 0x4e, 0xc2, 0x0, 0xe, 0xd0, 0x10, 0x10, 0x0, 0x6, 0xc8, 0x4, 0x98, 0x8, 0x8, 0xe, 0xc8, 0x7, 0x0, 0x12, 0x52, 0x52, 0x4f, 0x0, 0x11, 0x31, 0x2a, 0x44, 0x0, 0x11, 0x31, 0x35, 0xbb, 0x0, 0x12, 0x4c, 0x8c, 0x92, 0x0, 0x11, 0x2a, 0x44, 0x98, 0x0, 0x1e, 0xc4, 0x88, 0x1e, 0x6, 0xc4, 0x8c, 0x84, 0x86, 0x8, 0x8, 0x8, 0x8, 0x8, 0x18, 0x8, 0xc, 0x88, 0x18, 0x0, 0x0, 0xc, 0x83, 0x60];
|
2016-03-11 01:24:11 +01:00
|
|
|
|
|
|
|
let nb = data.length;
|
|
|
|
let n = nb / 5;
|
2016-05-11 06:13:16 +02:00
|
|
|
let font = createImage(nb);
|
2016-03-11 01:24:11 +01:00
|
|
|
for (let c = 0; c < n; c++) {
|
|
|
|
for (let row = 0; row < 5; row++) {
|
|
|
|
let char = data[c * 5 + row];
|
|
|
|
for (let col = 0; col < 5; col++) {
|
|
|
|
if ((char & (1 << col)) != 0)
|
|
|
|
font.set((c * 5 + 4) - col, row, 255);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return font;
|
|
|
|
}
|
|
|
|
}
|