mirror of
https://gitlab.dit.htwk-leipzig.de/phillip.kuehne/dezibot.git
synced 2025-07-05 10:04:31 +02:00
added documentation to display headerfile
This commit is contained in:
@ -138,8 +138,20 @@ void Display::print(char *value){
|
||||
return;
|
||||
|
||||
};
|
||||
void Display::println(char *value){
|
||||
|
||||
void Display::flipOrientation(void){
|
||||
if(this->orientationFlipped){
|
||||
sendDisplayCMD(setComDirectionNormal);
|
||||
sendDisplayCMD(setSegmentMap);
|
||||
} else{
|
||||
sendDisplayCMD(setComDirectionFlipped);
|
||||
sendDisplayCMD(setSegmentReMap);
|
||||
}
|
||||
this->orientationFlipped = !this->orientationFlipped;
|
||||
}
|
||||
void Display::println(char *value){
|
||||
this ->print(value);
|
||||
this->print("\n");
|
||||
};
|
||||
void Display::print(int value){
|
||||
|
||||
|
Reference in New Issue
Block a user