@@ -17,6 +17,78 @@ For example:
17
17
- ` digitalWrite(pin, HIGH) ` (Arduino/C++)
18
18
- ` pin.value(1) ` (MicroPython)
19
19
20
+ ## Index
21
+
22
+ - [ Index] ( #index )
23
+ - [ Digital I/O] ( #digital-io )
24
+ - [ pinMode()] ( #pinmode )
25
+ - [ digitalRead()] ( #digitalread )
26
+ - [ digitalWrite()] ( #digitalwrite )
27
+ - [ Analog I/O] ( #analog-io )
28
+ - [ Configure Input (ADC)] ( #configure-input-adc )
29
+ - [ Configure Output (PWM)] ( #configure-output-pwm )
30
+ - [ analogRead()] ( #analogread )
31
+ - [ analogWrite()] ( #analogwrite )
32
+ - [ analogWrite() (STM32)] ( #analogwrite-stm32 )
33
+ - [ Time] ( #time )
34
+ - [ delay()] ( #delay )
35
+ - [ millis()] ( #millis )
36
+ - [ Bits and Bytes] ( #bits-and-bytes )
37
+ - [ bitRead()] ( #bitread )
38
+ - [ bitSet()] ( #bitset )
39
+ - [ highByte()] ( #highbyte )
40
+ - [ lowByte()] ( #lowbyte )
41
+ - [ Advanced I/O] ( #advanced-io )
42
+ - [ noTone()] ( #notone )
43
+ - [ pulseIn()] ( #pulsein )
44
+ - [ shiftIn()] ( #shiftin )
45
+ - [ shiftOut()] ( #shiftout )
46
+ - [ tone()] ( #tone )
47
+ - [ Math] ( #math )
48
+ - [ abs()] ( #abs )
49
+ - [ constrain()] ( #constrain )
50
+ - [ map()] ( #map )
51
+ - [ max()] ( #max )
52
+ - [ min()] ( #min )
53
+ - [ pow()] ( #pow )
54
+ - [ sq()] ( #sq )
55
+ - [ sqrt()] ( #sqrt )
56
+ - [ cos()] ( #cos )
57
+ - [ sin()] ( #sin )
58
+ - [ tan()] ( #tan )
59
+ - [ Characters] ( #characters )
60
+ - [ isAlpha()] ( #isalpha )
61
+ - [ isAlphaNumeric()] ( #isalphanumeric )
62
+ - [ isAscii()] ( #isascii )
63
+ - [ isControl()] ( #iscontrol )
64
+ - [ isDigit()] ( #isdigit )
65
+ - [ isGraph()] ( #isgraph )
66
+ - [ isHexadecimalDigit()] ( #ishexadecimaldigit )
67
+ - [ isLowerCase()] ( #islowercase )
68
+ - [ isPrintable()] ( #isprintable )
69
+ - [ isPunct()] ( #ispunct )
70
+ - [ isSpace()] ( #isspace )
71
+ - [ isUpperCase()] ( #isuppercase )
72
+ - [ Random Numbers] ( #random-numbers )
73
+ - [ random()] ( #random )
74
+ - [ randomSeed()] ( #randomseed )
75
+ - [ External Interrupts] ( #external-interrupts )
76
+ - [ attachInterrupt()] ( #attachinterrupt )
77
+ - [ detachInterrupt()] ( #detachinterrupt )
78
+ - [ digitalPinToInterrupt()] ( #digitalpintointerrupt )
79
+ - [ Interrupts] ( #interrupts )
80
+ - [ interrupts()] ( #interrupts-1 )
81
+ - [ noInterrupts()] ( #nointerrupts )
82
+ - [ Communication] ( #communication )
83
+ - [ Print] ( #print )
84
+ - [ Serial] ( #serial )
85
+ - [ SPI] ( #spi )
86
+ - [ Stream] ( #stream )
87
+ - [ Wire] ( #wire )
88
+ - [ USB] ( #usb )
89
+ - [ Keyboard] ( #keyboard )
90
+ - [ Mouse] ( #mouse )
91
+
20
92
## Digital I/O
21
93
22
94
To access digital GPIOs using MicroPython, we use the ` Pin ` module. To define a pin, we use ` Pin(pin,type) ` .
0 commit comments