]> Repositories - Adafruit_Blinka-hackapet.git/blob - python/microcontroller/esp8266/__init__.py
Typo in interactive message
[Adafruit_Blinka-hackapet.git] / python / microcontroller / esp8266 / __init__.py
1 # ordered as spiId, sckId, mosiId, misoId
2 spiPorts = (
3     (1, 14, 13, 12)
4 )
5
6 # ordered as uartId, txId, rxId
7 uartPorts = (
8     (0, 1, 3),
9     # (0, 15, 13) # TODO secondary pins for UART0 configurable from Micropython?
10     (1, 2, None)
11 )