fixing docs enum
This commit is contained in:
parent
9e9d11cb94
commit
bb80874ef9
@ -4,25 +4,25 @@
|
|||||||
|
|
||||||
|
|
||||||
```cards
|
```cards
|
||||||
input.onButtonPressed(.Button, () => {
|
input.onButtonPressed(Button.A, () => {
|
||||||
|
|
||||||
});
|
});
|
||||||
input.onGesture(.Gesture, () => {
|
input.onGesture(Gesture.Shake, () => {
|
||||||
|
|
||||||
});
|
});
|
||||||
input.onPinPressed(.TouchPin, () => {
|
input.onPinPressed(TouchPin.P0, () => {
|
||||||
|
|
||||||
});
|
});
|
||||||
input.buttonIsPressed(.Button);
|
input.buttonIsPressed(Button.A);
|
||||||
input.compassHeading();
|
input.compassHeading();
|
||||||
input.temperature();
|
input.temperature();
|
||||||
input.acceleration(.Dimension);
|
input.acceleration(Dimension.X);
|
||||||
input.lightLevel();
|
input.lightLevel();
|
||||||
input.rotation(.Rotation);
|
input.rotation(Rotation.Pitch);
|
||||||
input.magneticForce(.Dimension);
|
input.magneticForce(Dimension.X);
|
||||||
input.runningTime();
|
input.runningTime();
|
||||||
input.setAccelerometerRange(.AcceleratorRange);
|
input.setAccelerometerRange(AcceleratorRange.OneG);
|
||||||
input.pinIsPressed(.TouchPin);
|
input.pinIsPressed(TouchPin.P0);
|
||||||
input.calibrate();
|
input.calibrate();
|
||||||
input.onLogoDown(() => {
|
input.onLogoDown(() => {
|
||||||
|
|
||||||
|
@ -17,5 +17,5 @@ led.plotAll();
|
|||||||
led.screenshot();
|
led.screenshot();
|
||||||
led.toggle(0, 0);
|
led.toggle(0, 0);
|
||||||
led.toggleAll();
|
led.toggleAll();
|
||||||
led.setDisplayMode(.DisplayMode);
|
led.setDisplayMode(DisplayMode.BackAndWhite);
|
||||||
```
|
```
|
||||||
|
@ -7,7 +7,7 @@
|
|||||||
music.playTone(0, 0);
|
music.playTone(0, 0);
|
||||||
music.ringTone(0);
|
music.ringTone(0);
|
||||||
music.rest(0);
|
music.rest(0);
|
||||||
music.noteFrequency(.Note);
|
music.noteFrequency(Note.C);
|
||||||
music.beat();
|
music.beat();
|
||||||
music.tempo();
|
music.tempo();
|
||||||
music.changeTempoBy(20);
|
music.changeTempoBy(20);
|
||||||
|
@ -4,14 +4,14 @@
|
|||||||
|
|
||||||
|
|
||||||
```cards
|
```cards
|
||||||
pins.digitalReadPin(.DigitalPin);
|
pins.digitalReadPin(DigitalPin.P0);
|
||||||
pins.digitalWritePin(.DigitalPin, 0);
|
pins.digitalWritePin(DigitalPin.P0, 0);
|
||||||
pins.analogReadPin(.AnalogPin);
|
pins.analogReadPin(AnalogPin.P0);
|
||||||
pins.analogWritePin(.AnalogPin, 1023);
|
pins.analogWritePin(AnalogPin.P0, 1023);
|
||||||
pins.analogSetPeriod(.AnalogPin, 20000);
|
pins.analogSetPeriod(AnalogPin.P0, 20000);
|
||||||
pins.servoWritePin(.AnalogPin, 180);
|
pins.servoWritePin(AnalogPin.P0, 180);
|
||||||
pins.servoSetPulse(.AnalogPin, 1500);
|
pins.servoSetPulse(AnalogPin.P0, 1500);
|
||||||
pins.map(0, 0, 1023, 0, 4);
|
pins.map(0, 0, 1023, 0, 4);
|
||||||
pins.analogPitch(0, 0);
|
pins.analogPitch(0, 0);
|
||||||
pins.analogSetPitchPin(.AnalogPin);
|
pins.analogSetPitchPin(AnalogPin.P0);
|
||||||
```
|
```
|
||||||
|
Loading…
Reference in New Issue
Block a user