Skip to content

Commit

Permalink
[FIX] Fix LED impl
Browse files Browse the repository at this point in the history
  • Loading branch information
aleemont1 committed Nov 24, 2023
1 parent c5db12a commit a853916
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions smart_bridge/src/components/impl/Led.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,10 @@ Led::Led(int pin){
pinMode(pin,OUTPUT);
}

void Led::on(){
void Led::switchOn(){
digitalWrite(pin,HIGH);
}

void Led::off(){
void Led::switchOff(){
digitalWrite(pin,LOW);
};

0 comments on commit a853916

Please sign in to comment.