You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
class NodeMCU: |
|
""" |
|
Pinout mapping of the NODEMCU Board I've got. |
|
""" |
|
|
|
D0 = 16 |
|
D1 = 5 |
|
D2 = 4 |
|
D3 = 0 |
|
D4 = 2 |
|
D5 = 14 |
|
D6 = 12 |
|
D7 = 13 |
|
D8 = 15 |
|
|
|
|
|
class Wemos: |
|
""" |
|
Pinout mapping of the Wemos board I've got. |
|
""" |
|
|
|
D2 = 16 |
|
D3 = 5 |
|
D4 = 4 |
|
D5 = 14 |
|
D6 = 12 |
|
D7 = 13 |
|
D8 = 0 |
|
D10 = 15
|
|
|