2016-04-05 22:23:42 +02:00
|
|
|
# Input
|
|
|
|
|
2016-05-05 20:16:14 +02:00
|
|
|
Events and data from sensors
|
2016-04-05 22:23:42 +02:00
|
|
|
|
|
|
|
```cards
|
2022-04-26 19:28:42 +02:00
|
|
|
input.onButtonEvent(Button.A, ButtonEvent.Click, () => {
|
2016-04-05 22:23:42 +02:00
|
|
|
|
|
|
|
});
|
2016-04-05 22:54:48 +02:00
|
|
|
input.onGesture(Gesture.Shake, () => {
|
2016-04-05 22:23:42 +02:00
|
|
|
|
|
|
|
});
|
2022-04-26 19:28:42 +02:00
|
|
|
input.onPinTouchEvent(TouchPin.P0, ButtonEvent.Click, () => {
|
2016-04-05 22:23:42 +02:00
|
|
|
|
|
|
|
});
|
2016-04-05 22:54:48 +02:00
|
|
|
input.buttonIsPressed(Button.A);
|
2019-12-02 05:58:26 +01:00
|
|
|
input.isGesture(Gesture.Shake);
|
2016-04-05 22:23:42 +02:00
|
|
|
input.compassHeading();
|
2016-07-27 17:42:58 +02:00
|
|
|
input.pinIsPressed(TouchPin.P0);
|
2016-04-05 22:23:42 +02:00
|
|
|
input.temperature();
|
2016-04-05 22:54:48 +02:00
|
|
|
input.acceleration(Dimension.X);
|
2016-04-05 22:23:42 +02:00
|
|
|
input.lightLevel();
|
2016-04-05 22:54:48 +02:00
|
|
|
input.rotation(Rotation.Pitch);
|
|
|
|
input.magneticForce(Dimension.X);
|
2016-04-05 22:23:42 +02:00
|
|
|
input.runningTime();
|
2019-12-02 05:58:26 +01:00
|
|
|
input.runningTimeMicros();
|
2016-04-05 22:54:48 +02:00
|
|
|
input.setAccelerometerRange(AcceleratorRange.OneG);
|
2016-04-05 22:23:42 +02:00
|
|
|
```
|
2016-08-08 22:08:15 +02:00
|
|
|
|
2019-12-02 05:58:26 +01:00
|
|
|
## See also
|
2016-08-08 22:08:15 +02:00
|
|
|
|
2019-12-02 05:58:26 +01:00
|
|
|
[onButtonPressed](/reference/input/on-button-pressed), [onGesture](/reference/input/on-gesture), [onPinPressed](/reference/input/on-pin-pressed), [buttonIsPressed](/reference/input/button-is-pressed),
|
|
|
|
[is gesture](/reference/input/is-gesture),
|
|
|
|
[compassHeading](/reference/input/compass-heading), [pinIsPressed](/reference/input/pin-is-pressed), [temperature](/reference/input/temperature), [acceleration](/reference/input/acceleration), [lightLevel](/reference/input/light-level), [rotation](/reference/input/rotation), [magneticForce](/reference/input/magnetic-force), [runningTime](/reference/input/running-time), [setAccelerometerRange](/reference/input/set-accelerometer-range), [calibrate-compass](/reference/input/calibrate-compass)
|