1 Commits

Author SHA1 Message Date
0463ddb966 remove onGesture and onJoystick event 2019-07-31 15:18:56 +08:00
2 changed files with 18 additions and 57 deletions

73
main.ts
View File

@ -491,69 +491,30 @@ namespace grove {
} }
/** /**
* Create a new driver Grove - 4-Digit Display * init Grove Gesture modules
* @param clkPin value of clk pin number *
* @param dataPin value of data pin number
*/ */
//% blockId=grove_tm1637_create block="4-Digit Display at|%clkPin|and|%dataPin" //% blockId=grove_initgesture block="init gesture"
export function createDisplay(clkPin: DigitalPin, dataPin: DigitalPin): TM1637 export function initGesture() {
{
let display = new TM1637();
display.buf = pins.createBuffer(4);
display.clkPin = clkPin;
display.dataPin = dataPin;
display.brightnessLevel = 0;
display.pointFlag = false;
display.clear();
return display;
}
/**
* Do something when a gesture is detected by Grove - Gesture
* @param gesture type of gesture to detect
* @param handler code to run
*/
//% blockId=grove_gesture_create_event block="on Gesture|%gesture"
export function onGesture(gesture: GroveGesture, handler: () => void) {
control.onEvent(gestureEventId, gesture, handler);
if (!paj7620) { if (!paj7620) {
paj7620.init(); paj7620.init();
control.inBackground(() => {
while(true) {
const gesture = paj7620.read();
if (gesture != lastGesture) {
lastGesture = gesture;
control.raiseEvent(gestureEventId, lastGesture);
}
basic.pause(50);
}
})
} }
} }
/** /**
* Do something when a key is detected by Grove - Thumb Joystick * get Grove Gesture modle
* @param key type of joystick to detect *
* @param xpin
* @param ypin
* @param handler code to run
*/ */
//% blockId=grove_joystick_create_event block="on Key|%key|at|%xpin|and|%ypin|" //% blockId=grove_getgesture block="get gesture model"
export function onJoystick(key: GroveJoystickKey, xpin: AnalogPin, ypin: AnalogPin, handler: () => void) { export function getGestureModel(): number {
control.onEvent(joystickEventID, key, handler); return paj7620.read();
control.inBackground(() => { }
while(true) { /**
const key = joystick.read(xpin, ypin); * get Joystick key
if (key != lastJoystick) { *
lastJoystick = key; */
control.raiseEvent(joystickEventID, lastJoystick); //% blockId=grove_getjoystick block="get joystick key at|%xpin|and|%xpin"
} export function getJoystick(xpin: AnalogPin, ypin: AnalogPin) : number {
basic.pause(50); return joystick.read(xpin, ypin);
}
})
} }
} }

View File

@ -1,6 +1,6 @@
{ {
"name": "Grove", "name": "Grove",
"version": "0.1.1", "version": "0.1.2",
"description": "A Microsoft MakeCode package for Seeed Studio Grove module", "description": "A Microsoft MakeCode package for Seeed Studio Grove module",
"license": "MIT", "license": "MIT",
"dependencies": { "dependencies": {