Compare commits
12 Commits
Author | SHA1 | Date | |
---|---|---|---|
85cfc86bf8 | |||
b66d4f2d64 | |||
5843deab11 | |||
8d5edc38bb | |||
0309e50058 | |||
aa40e7b169 | |||
75cf8da396 | |||
db9b6a995b | |||
fb255edafe | |||
f4c39f74e8 | |||
3e56e2c3e2 | |||
79b5f8cc88 |
@ -15,7 +15,9 @@ enum LightIntensityMode {
|
|||||||
//% block="reflected light"
|
//% block="reflected light"
|
||||||
Reflected = ColorSensorMode.ReflectedLightIntensity,
|
Reflected = ColorSensorMode.ReflectedLightIntensity,
|
||||||
//% block="ambient light"
|
//% block="ambient light"
|
||||||
Ambient = ColorSensorMode.AmbientLightIntensity
|
Ambient = ColorSensorMode.AmbientLightIntensity,
|
||||||
|
//% block="reflected light (raw)"
|
||||||
|
ReflectedRaw = ColorSensorMode.RefRaw
|
||||||
}
|
}
|
||||||
|
|
||||||
const enum ColorSensorColor {
|
const enum ColorSensorColor {
|
||||||
@ -93,6 +95,8 @@ namespace sensors {
|
|||||||
|| this.mode == ColorSensorMode.AmbientLightIntensity
|
|| this.mode == ColorSensorMode.AmbientLightIntensity
|
||||||
|| this.mode == ColorSensorMode.ReflectedLightIntensity)
|
|| this.mode == ColorSensorMode.ReflectedLightIntensity)
|
||||||
return this.getNumber(NumberFormat.UInt8LE, 0)
|
return this.getNumber(NumberFormat.UInt8LE, 0)
|
||||||
|
if (this.mode == ColorSensorMode.RefRaw || this.mode == ColorSensorMode.RgbRaw)
|
||||||
|
return this.getNumber(NumberFormat.UInt16LE, 0)
|
||||||
return 0
|
return 0
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -114,7 +118,7 @@ namespace sensors {
|
|||||||
|
|
||||||
_update(prev: number, curr: number) {
|
_update(prev: number, curr: number) {
|
||||||
if (this.calibrating) return; // simply ignore data updates while calibrating
|
if (this.calibrating) return; // simply ignore data updates while calibrating
|
||||||
if (this.mode == ColorSensorMode.Color)
|
if (this.mode == ColorSensorMode.Color || this.mode == ColorSensorMode.RgbRaw || this.mode == ColorSensorMode.RefRaw)
|
||||||
control.raiseEvent(this._id, this._colorEventValue(curr));
|
control.raiseEvent(this._id, this._colorEventValue(curr));
|
||||||
else
|
else
|
||||||
this.thresholdDetector.setLevel(curr);
|
this.thresholdDetector.setLevel(curr);
|
||||||
@ -179,6 +183,22 @@ namespace sensors {
|
|||||||
return this.getNumber(NumberFormat.UInt8LE, 0)
|
return this.getNumber(NumberFormat.UInt8LE, 0)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Get the current raw rgb values from the color sensor.
|
||||||
|
* @param sensor the color sensor to query the request
|
||||||
|
*/
|
||||||
|
//% help=sensors/color-sensor/rgbraw
|
||||||
|
//% parts="colorsensor"
|
||||||
|
//% blockNamespace=sensors
|
||||||
|
//% this.fieldEditor="ports"
|
||||||
|
//% weight=98
|
||||||
|
//% group="Color Sensor"
|
||||||
|
//% blockGap=8
|
||||||
|
rgbRaw(): number[] {
|
||||||
|
this.setMode(ColorSensorMode.RgbRaw);
|
||||||
|
return [this.getNumber(NumberFormat.UInt16LE, 0), this.getNumber(NumberFormat.UInt16LE, 2), this.getNumber(NumberFormat.UInt16LE, 4)];
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Registers code to run when the ambient light changes.
|
* Registers code to run when the ambient light changes.
|
||||||
* @param condition the light condition
|
* @param condition the light condition
|
||||||
@ -229,7 +249,12 @@ namespace sensors {
|
|||||||
//% group="Color Sensor"
|
//% group="Color Sensor"
|
||||||
light(mode: LightIntensityMode) {
|
light(mode: LightIntensityMode) {
|
||||||
this.setMode(<ColorSensorMode><number>mode)
|
this.setMode(<ColorSensorMode><number>mode)
|
||||||
return this.getNumber(NumberFormat.UInt8LE, 0)
|
switch(mode) {
|
||||||
|
case LightIntensityMode.ReflectedRaw:
|
||||||
|
return this.reflectedLightRaw();
|
||||||
|
default:
|
||||||
|
return this.getNumber(NumberFormat.UInt8LE, 0)
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@ -248,6 +273,15 @@ namespace sensors {
|
|||||||
return this.light(LightIntensityMode.Reflected);
|
return this.light(LightIntensityMode.Reflected);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Gets the raw reflection light value
|
||||||
|
*/
|
||||||
|
//%
|
||||||
|
reflectedLightRaw(): number {
|
||||||
|
this.setMode(ColorSensorMode.RefRaw);
|
||||||
|
return this.getNumber(NumberFormat.UInt16LE, 0);
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Set a threshold value
|
* Set a threshold value
|
||||||
* @param condition the dark or bright light condition
|
* @param condition the dark or bright light condition
|
||||||
|
@ -162,7 +162,6 @@ namespace brick {
|
|||||||
// this needs to be done in query(), which is run without the main JS execution mutex
|
// this needs to be done in query(), which is run without the main JS execution mutex
|
||||||
// otherwise, while(true){} will lock the device
|
// otherwise, while(true){} will lock the device
|
||||||
if (ret & DAL.BUTTON_ID_ESCAPE) {
|
if (ret & DAL.BUTTON_ID_ESCAPE) {
|
||||||
motors.stopAll(); // ensuring that all motors are off
|
|
||||||
control.reset()
|
control.reset()
|
||||||
}
|
}
|
||||||
return ret
|
return ret
|
||||||
|
@ -25,8 +25,17 @@ namespace sensors.internal {
|
|||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
|
||||||
|
export function bufferToString(buf: Buffer): string {
|
||||||
|
let s = ''
|
||||||
|
for (let i = 0; i < buf.length; i++)
|
||||||
|
s += String.fromCharCode(buf[i])
|
||||||
|
|
||||||
|
return s
|
||||||
|
}
|
||||||
|
|
||||||
let analogMM: MMap
|
let analogMM: MMap
|
||||||
let uartMM: MMap
|
let uartMM: MMap
|
||||||
|
let IICMM: MMap
|
||||||
let devcon: Buffer
|
let devcon: Buffer
|
||||||
let sensorInfos: SensorInfo[]
|
let sensorInfos: SensorInfo[]
|
||||||
|
|
||||||
@ -36,11 +45,13 @@ namespace sensors.internal {
|
|||||||
sensors: Sensor[]
|
sensors: Sensor[]
|
||||||
connType: number
|
connType: number
|
||||||
devType: number
|
devType: number
|
||||||
|
iicid: string
|
||||||
|
|
||||||
constructor(p: number) {
|
constructor(p: number) {
|
||||||
this.port = p
|
this.port = p
|
||||||
this.connType = DAL.CONN_NONE
|
this.connType = DAL.CONN_NONE
|
||||||
this.devType = DAL.DEVICE_TYPE_NONE
|
this.devType = DAL.DEVICE_TYPE_NONE
|
||||||
|
this.iicid = ''
|
||||||
this.sensors = []
|
this.sensors = []
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -57,6 +68,9 @@ namespace sensors.internal {
|
|||||||
uartMM = control.mmap("/dev/lms_uart", UartOff.Size, 0)
|
uartMM = control.mmap("/dev/lms_uart", UartOff.Size, 0)
|
||||||
if (!uartMM) control.fail("no uart sensor")
|
if (!uartMM) control.fail("no uart sensor")
|
||||||
|
|
||||||
|
IICMM = control.mmap("/dev/lms_iic", IICOff.Size, 0)
|
||||||
|
if(!IICMM) control.fail("no iic sensor")
|
||||||
|
|
||||||
forever(() => {
|
forever(() => {
|
||||||
detectDevices()
|
detectDevices()
|
||||||
pause(500)
|
pause(500)
|
||||||
@ -89,6 +103,15 @@ namespace sensors.internal {
|
|||||||
//serial.writeLine("UART " + port + " / " + mode + " - " + info)
|
//serial.writeLine("UART " + port + " / " + mode + " - " + info)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
export function readIICID(port: number) {
|
||||||
|
let buf = output.createBuffer(IICStr.Size)
|
||||||
|
buf[IICStr.Port] = port
|
||||||
|
IICMM.ioctl(IO.IIC_READ_TYPE_INFO, buf)
|
||||||
|
let Manufacturer = bufferToString(buf.slice(IICStr.Manufacturer, 8))
|
||||||
|
let SensorType = bufferToString(buf.slice(IICStr.SensorType, 8))
|
||||||
|
return Manufacturer + SensorType ;
|
||||||
|
}
|
||||||
|
|
||||||
export function getBatteryInfo(): { temp: number; current: number } {
|
export function getBatteryInfo(): { temp: number; current: number } {
|
||||||
init();
|
init();
|
||||||
return {
|
return {
|
||||||
@ -97,6 +120,7 @@ namespace sensors.internal {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
let nonActivated = 0;
|
||||||
function detectDevices() {
|
function detectDevices() {
|
||||||
let conns = analogMM.slice(AnalogOff.InConn, DAL.NUM_INPUTS)
|
let conns = analogMM.slice(AnalogOff.InConn, DAL.NUM_INPUTS)
|
||||||
let numChanged = 0
|
let numChanged = 0
|
||||||
@ -114,6 +138,11 @@ namespace sensors.internal {
|
|||||||
let uinfo = readUartInfo(info.port, 0)
|
let uinfo = readUartInfo(info.port, 0)
|
||||||
info.devType = uinfo[TypesOff.Type]
|
info.devType = uinfo[TypesOff.Type]
|
||||||
control.dmesg(`UART type ${info.devType}`)
|
control.dmesg(`UART type ${info.devType}`)
|
||||||
|
} else if(newConn == DAL.CONN_NXT_IIC){
|
||||||
|
control.dmesg(`new IIC connection at ${info.port}`)
|
||||||
|
info.devType = DAL.DEVICE_TYPE_IIC_UNKNOWN
|
||||||
|
info.iicid = readIICID(info.port)
|
||||||
|
control.dmesg(`IIC ID ${info.iicid.length}`)
|
||||||
} else if (newConn == DAL.CONN_INPUT_DUMB) {
|
} else if (newConn == DAL.CONN_INPUT_DUMB) {
|
||||||
control.dmesg(`new DUMB connection at ${info.port}`)
|
control.dmesg(`new DUMB connection at ${info.port}`)
|
||||||
// TODO? for now assume touch
|
// TODO? for now assume touch
|
||||||
@ -125,19 +154,26 @@ namespace sensors.internal {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
if (numChanged == 0)
|
if (numChanged == 0 && nonActivated == 0)
|
||||||
return
|
return
|
||||||
|
|
||||||
|
nonActivated = 0;
|
||||||
for (let si of sensorInfos) {
|
for (let si of sensorInfos) {
|
||||||
if (si.sensor && si.sensor._deviceType() != si.devType) {
|
if(si.devType == DAL.DEVICE_TYPE_IIC_UNKNOWN){
|
||||||
si.sensor = null
|
si.sensor = si.sensors.filter(s => s._IICId() == si.iicid)[0]
|
||||||
}
|
if (!si.sensor) {
|
||||||
if (si.devType != DAL.DEVICE_TYPE_NONE) {
|
control.dmesg(`sensor not found for iicid=${si.iicid} at ${si.port}`)
|
||||||
// TODO figure out compiler problem when '|| null' is added here!
|
nonActivated++;
|
||||||
|
}else{
|
||||||
|
control.dmesg(`sensor connected iicid=${si.iicid} at ${si.port}`)
|
||||||
|
si.sensor._activated()
|
||||||
|
}
|
||||||
|
}else if (si.devType != DAL.DEVICE_TYPE_NONE) {
|
||||||
si.sensor = si.sensors.filter(s => s._deviceType() == si.devType)[0]
|
si.sensor = si.sensors.filter(s => s._deviceType() == si.devType)[0]
|
||||||
if (si.sensor == null) {
|
if (!si.sensor) {
|
||||||
control.dmesg(`sensor not found for type=${si.devType} at ${si.port}`)
|
control.dmesg(`sensor not found for type=${si.devType} at ${si.port}`)
|
||||||
} else {
|
nonActivated++;
|
||||||
|
}else{
|
||||||
control.dmesg(`sensor connected type=${si.devType} at ${si.port}`)
|
control.dmesg(`sensor connected type=${si.devType} at ${si.port}`)
|
||||||
si.sensor._activated()
|
si.sensor._activated()
|
||||||
}
|
}
|
||||||
@ -187,6 +223,10 @@ namespace sensors.internal {
|
|||||||
_deviceType() {
|
_deviceType() {
|
||||||
return 0
|
return 0
|
||||||
}
|
}
|
||||||
|
|
||||||
|
_IICId() {
|
||||||
|
return ''
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
export class AnalogSensor extends Sensor {
|
export class AnalogSensor extends Sensor {
|
||||||
@ -242,6 +282,55 @@ namespace sensors.internal {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
export class IICSensor extends Sensor {
|
||||||
|
protected mode: number // the mode user asked for
|
||||||
|
protected realmode: number // the mode the hardware is in
|
||||||
|
private readLength: number
|
||||||
|
|
||||||
|
constructor(port: number) {
|
||||||
|
super(port)
|
||||||
|
this.mode = 0
|
||||||
|
this.realmode = 0
|
||||||
|
this.readLength = 1;
|
||||||
|
}
|
||||||
|
|
||||||
|
_activated() {
|
||||||
|
this.realmode = 0
|
||||||
|
this._setMode(this.mode)
|
||||||
|
}
|
||||||
|
|
||||||
|
protected _setMode(m: number) {
|
||||||
|
let v = m | 0
|
||||||
|
this.mode = v
|
||||||
|
if (!this.isActive()) return
|
||||||
|
if (this.realmode != this.mode) {
|
||||||
|
this.realmode = v
|
||||||
|
setIICMode(this._port, this._deviceType() ,v)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
getBytes(): Buffer {
|
||||||
|
return getIICBytes(this.isActive() ? this._port : -1, this.readLength)
|
||||||
|
}
|
||||||
|
|
||||||
|
getNumber(fmt: NumberFormat, off: number) {
|
||||||
|
if (!this.isActive())
|
||||||
|
return 0
|
||||||
|
return getIICNumber(this.readLength, fmt, off, this._port)
|
||||||
|
}
|
||||||
|
|
||||||
|
transaction(deviceAddress: number, write: number[], read: number){
|
||||||
|
this.readLength = read;
|
||||||
|
transactionIIC(this._port, deviceAddress, write, read)
|
||||||
|
}
|
||||||
|
|
||||||
|
_deviceType (){
|
||||||
|
return DAL.DEVICE_TYPE_IIC_UNKNOWN
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
export const iicsensor = new IICSensor(3)
|
||||||
|
|
||||||
function uartReset(port: number) {
|
function uartReset(port: number) {
|
||||||
if (port < 0) return
|
if (port < 0) return
|
||||||
control.dmesg(`UART reset at ${port}`)
|
control.dmesg(`UART reset at ${port}`)
|
||||||
@ -321,6 +410,48 @@ namespace sensors.internal {
|
|||||||
UartOff.Raw + DAL.MAX_DEVICE_DATALENGTH * 300 * port + DAL.MAX_DEVICE_DATALENGTH * index + off)
|
UartOff.Raw + DAL.MAX_DEVICE_DATALENGTH * 300 * port + DAL.MAX_DEVICE_DATALENGTH * index + off)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
export function setIICMode(port: number, type: number, mode: number){
|
||||||
|
if(port < 0)return;
|
||||||
|
devcon.setNumber(NumberFormat.Int8LE, DevConOff.Connection + port, DAL.CONN_NXT_IIC)
|
||||||
|
devcon.setNumber(NumberFormat.Int8LE, DevConOff.Type + port, type)
|
||||||
|
devcon.setNumber(NumberFormat.Int8LE, DevConOff.Mode + port, mode)
|
||||||
|
IICMM.ioctl(IO.IIC_SET_CONN, devcon)
|
||||||
|
}
|
||||||
|
|
||||||
|
export function transactionIIC(port: number, deviceAddress: number, writeBuf: number[], readLen: number){
|
||||||
|
if(port < 0)return;
|
||||||
|
let iicdata = output.createBuffer(IICDat.Size)
|
||||||
|
iicdata.setNumber(NumberFormat.Int8LE, IICDat.Port, port)
|
||||||
|
iicdata.setNumber(NumberFormat.Int8LE, IICDat.Repeat, 0)
|
||||||
|
iicdata.setNumber(NumberFormat.Int16LE, IICDat.Time, 0)
|
||||||
|
iicdata.setNumber(NumberFormat.Int8LE, IICDat.WrLng, writeBuf.length + 1)
|
||||||
|
for(let i = 0; i< writeBuf.length; i++)
|
||||||
|
iicdata.setNumber(NumberFormat.Int8LE, IICDat.WrData + i + 1, writeBuf[i])
|
||||||
|
iicdata.setNumber(NumberFormat.Int8LE, IICDat.WrData, deviceAddress)
|
||||||
|
iicdata.setNumber(NumberFormat.Int8LE, IICDat.RdLng, readLen)
|
||||||
|
IICMM.ioctl(IO.IIC_SETUP, iicdata)
|
||||||
|
}
|
||||||
|
|
||||||
|
export function getIICBytes(port: number, length: number) {
|
||||||
|
if (port < 0) return output.createBuffer(length);
|
||||||
|
let index = IICMM.getNumber(NumberFormat.UInt16LE, IICOff.Actual + port * 2);
|
||||||
|
let buf = IICMM.slice(
|
||||||
|
IICOff.Raw + DAL.MAX_DEVICE_DATALENGTH * 300 * port + DAL.MAX_DEVICE_DATALENGTH * index,
|
||||||
|
length
|
||||||
|
);
|
||||||
|
|
||||||
|
// Reverse
|
||||||
|
for (let i = 0; i < length / 2; i++) {
|
||||||
|
let c = buf[i]
|
||||||
|
buf[i] = buf[length - i - 1]
|
||||||
|
buf[length - i - 1] = c
|
||||||
|
}
|
||||||
|
return buf;
|
||||||
|
}
|
||||||
|
|
||||||
|
export function getIICNumber(length: number, format: NumberFormat, off: number, port: number) {
|
||||||
|
return getIICBytes(port, length).getNumber(format, off)
|
||||||
|
}
|
||||||
|
|
||||||
const enum NxtColOff {
|
const enum NxtColOff {
|
||||||
Calibration = 0, // uint32[4][3]
|
Calibration = 0, // uint32[4][3]
|
||||||
@ -404,6 +535,52 @@ namespace sensors.internal {
|
|||||||
Size = 58
|
Size = 58
|
||||||
}
|
}
|
||||||
|
|
||||||
|
const enum IICOff {
|
||||||
|
TypeData = 0, // Types[8][4]
|
||||||
|
Repeat = 1792, // uint16[300][4]
|
||||||
|
Raw = 4192, // int8[32][300][4]
|
||||||
|
Actual = 42592, // uint16[4]
|
||||||
|
LogIn = 42600, // uint16[4]
|
||||||
|
Status = 42608, // int8[4]
|
||||||
|
Output = 42612, // int8[32][4]
|
||||||
|
OutputLength = 42740, // int8[4]
|
||||||
|
Size = 42744
|
||||||
|
}
|
||||||
|
|
||||||
|
const enum IICCtlOff {
|
||||||
|
TypeData = 0, // Types
|
||||||
|
Port = 56, // int8
|
||||||
|
Mode = 57, // int8
|
||||||
|
Size = 58
|
||||||
|
}
|
||||||
|
|
||||||
|
const enum IICDat {
|
||||||
|
Result = 0, // result
|
||||||
|
Port = 4, // int8
|
||||||
|
Repeat = 5, // int8
|
||||||
|
Time = 6, // int16
|
||||||
|
WrLng = 8, // int8
|
||||||
|
WrData = 9, // int8[32]
|
||||||
|
RdLng = 41, // int8
|
||||||
|
RdData = 42, //int8[32]
|
||||||
|
Size = 74,
|
||||||
|
}
|
||||||
|
|
||||||
|
const enum IICStr {
|
||||||
|
Port = 0, // int8
|
||||||
|
Time = 2, // int16
|
||||||
|
Type = 4, // int8
|
||||||
|
Mode = 5, // int8
|
||||||
|
Manufacturer = 6, // int8[9]
|
||||||
|
SensorType = 15, // int[9]
|
||||||
|
SetupLng = 24, // int8
|
||||||
|
SetupString = 28, // ulong
|
||||||
|
PollLng = 32, // int8
|
||||||
|
PollString = 36, // ulong
|
||||||
|
ReadLng = 40, // int8
|
||||||
|
Size = 44
|
||||||
|
}
|
||||||
|
|
||||||
const enum IO {
|
const enum IO {
|
||||||
UART_SET_CONN = 0xc00c7500,
|
UART_SET_CONN = 0xc00c7500,
|
||||||
UART_READ_MODE_INFO = 0xc03c7501,
|
UART_READ_MODE_INFO = 0xc03c7501,
|
||||||
|
@ -14,6 +14,7 @@
|
|||||||
#include <errno.h>
|
#include <errno.h>
|
||||||
#include <fcntl.h>
|
#include <fcntl.h>
|
||||||
#include <malloc.h>
|
#include <malloc.h>
|
||||||
|
#include "ev3const.h"
|
||||||
|
|
||||||
#define THREAD_DBG(...)
|
#define THREAD_DBG(...)
|
||||||
|
|
||||||
@ -489,14 +490,22 @@ void runLMS() {
|
|||||||
}
|
}
|
||||||
|
|
||||||
void stopMotors() {
|
void stopMotors() {
|
||||||
uint8_t cmd[2] = { 0xA3, 0x0F };
|
uint8_t cmd[3] = { opOutputStop, 0x0F, 0 };
|
||||||
int fd = open("/dev/lms_pwm", O_RDWR);
|
int fd = open("/dev/lms_pwm", O_RDWR);
|
||||||
write(fd, cmd, 2);
|
write(fd, cmd, 3);
|
||||||
|
close(fd);
|
||||||
|
}
|
||||||
|
|
||||||
|
void stopProgram() {
|
||||||
|
uint8_t cmd[1] = { opOutputProgramStop };
|
||||||
|
int fd = open("/dev/lms_pwm", O_RDWR);
|
||||||
|
write(fd, cmd, 1);
|
||||||
close(fd);
|
close(fd);
|
||||||
}
|
}
|
||||||
|
|
||||||
extern "C" void target_reset() {
|
extern "C" void target_reset() {
|
||||||
stopMotors();
|
stopMotors();
|
||||||
|
stopProgram();
|
||||||
if (lmsPid)
|
if (lmsPid)
|
||||||
runLMS();
|
runLMS();
|
||||||
else
|
else
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "storage",
|
"name": "storage",
|
||||||
"description": "USB Pen-drive support and flash storage",
|
"description": "USB Pen-drive support and flash storage - beta",
|
||||||
"files": [
|
"files": [
|
||||||
"storage.cpp",
|
"storage.cpp",
|
||||||
"storage-core.ts",
|
"storage-core.ts",
|
||||||
|
@ -1,8 +1,8 @@
|
|||||||
{
|
{
|
||||||
"name": "pxt-ev3",
|
"name": "pxt-ev3",
|
||||||
"version": "1.1.2",
|
"version": "1.1.8",
|
||||||
"description": "LEGO MINDSTORMS EV3 for Microsoft MakeCode",
|
"description": "LEGO MINDSTORMS EV3 for Microsoft MakeCode",
|
||||||
"private": true,
|
"private": false,
|
||||||
"keywords": [
|
"keywords": [
|
||||||
"JavaScript",
|
"JavaScript",
|
||||||
"education",
|
"education",
|
||||||
@ -39,7 +39,7 @@
|
|||||||
"webfonts-generator": "^0.4.0"
|
"webfonts-generator": "^0.4.0"
|
||||||
},
|
},
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"pxt-common-packages": "0.23.56",
|
"pxt-common-packages": "0.23.61",
|
||||||
"pxt-core": "4.0.9"
|
"pxt-core": "4.0.9"
|
||||||
},
|
},
|
||||||
"scripts": {
|
"scripts": {
|
||||||
|
@ -16,7 +16,8 @@
|
|||||||
"libs/infrared-sensor",
|
"libs/infrared-sensor",
|
||||||
"libs/gyro-sensor",
|
"libs/gyro-sensor",
|
||||||
"libs/screen",
|
"libs/screen",
|
||||||
"libs/ev3"
|
"libs/ev3",
|
||||||
|
"libs/storage"
|
||||||
],
|
],
|
||||||
"simulator": {
|
"simulator": {
|
||||||
"autoRun": true,
|
"autoRun": true,
|
||||||
|
@ -27,6 +27,7 @@ namespace pxsim.sensors {
|
|||||||
|
|
||||||
export function __sensorUsed(port: number, type: number) {
|
export function __sensorUsed(port: number, type: number) {
|
||||||
//console.log("SENSOR INIT " + port + ", type: " + type);
|
//console.log("SENSOR INIT " + port + ", type: " + type);
|
||||||
|
if (type == DAL.DEVICE_TYPE_IIC_UNKNOWN) return; // Ignore IIC
|
||||||
if (!ev3board().hasSensor(port)) {
|
if (!ev3board().hasSensor(port)) {
|
||||||
const sensor = ev3board().getSensor(port, type);
|
const sensor = ev3board().getSensor(port, type);
|
||||||
runtime.queueDisplayUpdate();
|
runtime.queueDisplayUpdate();
|
||||||
|
Reference in New Issue
Block a user