pxt-ev3/libs/touch-sensor/test.ts
2018-01-05 19:14:55 -08:00

9 lines
255 B
TypeScript

sensors.touch1.onEvent(TouchSensorEvent.Pressed, function () {
})
sensors.touch2.onEvent(TouchSensorEvent.Bumped, function () {
})
sensors.touch3.onEvent(TouchSensorEvent.Released, function () {
})
sensors.touch4.isPressed();
sensors.touch4.wasPressed();