Skip to content
This repository has been archived by the owner on Oct 19, 2024. It is now read-only.

Commit

Permalink
Change pin GPIO for RGB (B)
Browse files Browse the repository at this point in the history
  • Loading branch information
FujaTyping committed Sep 19, 2024
1 parent a7324e0 commit a92817e
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions HfA-Source/HfA/HfA.ino
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ void setup() {
pinMode(26, OUTPUT);
pinMode(18, OUTPUT);
pinMode(19, OUTPUT);
pinMode(23, OUTPUT);
pinMode(21, OUTPUT);
pinMode(34, OUTPUT);
pinMode(35, OUTPUT);
Serial.begin(115200);
Expand Down Expand Up @@ -66,10 +66,10 @@ void Commands(String CMD) {
digitalWrite(19, false);
}
if(CMD == "LBO") {
digitalWrite(23, true);
digitalWrite(21, true);
}
if(CMD == "LBF") {
digitalWrite(23, false);
digitalWrite(21, false);
}
if(CMD == "IO34F") {
digitalWrite(34, false);
Expand Down

0 comments on commit a92817e

Please sign in to comment.