Skip to content

Commit

Permalink
Corrigindo nomenclatura de portas
Browse files Browse the repository at this point in the history
  • Loading branch information
HenriqueAzo committed Sep 17, 2021
1 parent be1b23c commit 97af3cb
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -45,11 +45,11 @@ IPAddress subnet(255,255,255,0);

WiFiServer server(80);

const int redPin = D2;
const int greenPin = D1;
const int bluePin = D0;
const int redPin = 4; //D2
const int greenPin = 5; //D1
const int bluePin = 16; //D0

const int led = D4;
const int led = 2; //D4
boolean stateLed = 0;

void ledColor(char color) {
Expand Down

0 comments on commit 97af3cb

Please sign in to comment.