The example made it look like the user had to use global variables, which may
cause a poor first time impression. Make it clear that there is multiple ways to
access a pin.
Notice how one can use the global variable `rpi.P1_33` to directly access a gpio
pin by its header position. Alternatively, `bcm283x.GPIO13` could be used, which
effectively refers to the same pin but using its name at the process level
instead.
The following are synonyms, use the form you prefer:
* Runtime discovery:
* [`gpio.ByNumber(13)`](https://godoc.org/github.com/google/periph/conn/gpio/#ByNumber) or [`gpio.ByName("13")`](https://godoc.org/github.com/google/periph/conn/gpio/#ByName)