From 5ab3e587dcc16a1bdcf7dcdf22ad94d504ca2625 Mon Sep 17 00:00:00 2001 From: Elis Axelsson Date: Fri, 11 Aug 2017 11:04:27 +0200 Subject: [PATCH] Tested trough all the pins --- code/pinouts.py | 34 ++++++++++++++++------------------ 1 file changed, 16 insertions(+), 18 deletions(-) diff --git a/code/pinouts.py b/code/pinouts.py index 41b8b52..75b8b9d 100644 --- a/code/pinouts.py +++ b/code/pinouts.py @@ -3,17 +3,15 @@ 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 - D9 = 3 - D10 = 1 + D0 = 16 + D1 = 5 + D2 = 4 + D3 = 0 + D4 = 2 + D5 = 14 + D6 = 12 + D7 = 13 + D8 = 15 class Wemos: @@ -21,11 +19,11 @@ 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 + D2 = 16 + D3 = 5 + D4 = 4 + D5 = 14 + D6 = 12 + D7 = 13 + D8 = 0 D10 = 15