Created
November 14, 2016 02:23
-
-
Save SaraJo/182220fda82cbe30255fe95f59d4a6b4 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#ifndef __LED_H__ | |
#define __LED_H__ | |
#ifdef __cplusplus | |
extern "C"{ | |
#endif // __cplusplus | |
class LED { | |
public: | |
void on(uint8_t number, char *color, uint8_t length); | |
private: | |
void color_lookup(char *color); | |
}; | |
#ifdef __cplusplus | |
} // extern "C" | |
#endif // __cplusplus | |
#endif |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment