comparison: CircuitPython/board.py
CircuitPython/board.py
- changeset 6
- 81a2208f13e4
equal
deleted
inserted
replaced
|
1 # -*- coding: utf-8 -*- |
|
2 |
|
3 # Copyright (c) 2019 Detlev Offenbach <detlev@die-offenbachs.de> |
|
4 # |
|
5 |
|
6 """ |
|
7 Module containing stubs for API generation of the 'board' module. |
|
8 """ |
|
9 |
|
10 def I2C(): |
|
11 pass |
|
12 |
|
13 def SPI(): |
|
14 pass |
|
15 |
|
16 def UART(): |
|
17 pass |