@@ -9,7 +9,8 @@ Quick reference for the pyboard
99
1010General board control
1111---------------------
12- ::
12+
13+ See :mod: `pyb `. ::
1314
1415 import pyb
1516
@@ -23,7 +24,8 @@ General board control
2324
2425LEDs
2526----
26- ::
27+
28+ See :ref: `pyb.LED <pyb.LED >`. ::
2729
2830 from pyb import LED
2931
3436
3537Pins and GPIO
3638-------------
37- ::
39+
40+ See :ref: `pyb.Pin <pyb.Pin >`. ::
3841
3942 from pyb import Pin
4043
@@ -47,7 +50,8 @@ Pins and GPIO
4750
4851External interrupts
4952-------------------
50- ::
53+
54+ See :ref: `pyb.ExtInt <pyb.ExtInt >`. ::
5155
5256 from pyb import Pin, ExtInt
5357
@@ -56,7 +60,8 @@ External interrupts
5660
5761Timers
5862------
59- ::
63+
64+ See :ref: `pyb.Timer <pyb.Timer >`. ::
6065
6166 from pyb import Timer
6267
6772
6873PWM (pulse width modulation)
6974----------------------------
70- ::
75+
76+ See :ref: `pyb.Pin <pyb.Pin >` and :ref: `pyb.Timer <pyb.Timer >`. ::
7177
7278 from pyb import Pin, Timer
7379
@@ -78,7 +84,8 @@ PWM (pulse width modulation)
7884
7985ADC (analog to digital conversion)
8086----------------------------------
81- ::
87+
88+ See :ref: `pyb.Pin <pyb.Pin >` and :ref: `pyb.ADC <pyb.ADC >`. ::
8289
8390 from pyb import Pin, ADC
8491
@@ -87,7 +94,8 @@ ADC (analog to digital conversion)
8794
8895DAC (digital to analog conversion)
8996----------------------------------
90- ::
97+
98+ See :ref: `pyb.Pin <pyb.Pin >` and :ref: `pyb.DAC <pyb.DAC >`. ::
9199
92100 from pyb import Pin, DAC
93101
@@ -96,7 +104,8 @@ DAC (digital to analog conversion)
96104
97105UART (serial bus)
98106-----------------
99- ::
107+
108+ See :ref: `pyb.UART <pyb.UART >`. ::
100109
101110 from pyb import UART
102111
@@ -106,7 +115,8 @@ UART (serial bus)
106115
107116SPI bus
108117-------
109- ::
118+
119+ See :ref: `pyb.SPI <pyb.SPI >`. ::
110120
111121 from pyb import SPI
112122
@@ -117,7 +127,8 @@ SPI bus
117127
118128I2C bus
119129-------
120- ::
130+
131+ See :ref: `pyb.I2C <pyb.I2C >`. ::
121132
122133 from pyb import I2C
123134
0 commit comments