fix : compatible with WIO W600

This commit is contained in:
downeyboy
2019-07-11 10:05:30 +08:00
parent 55f2bd052b
commit c92f6a46d1
2 changed files with 7 additions and 1 deletions

View File

@@ -71,3 +71,8 @@ void HT16K33::setBlinkRate(blink_type_t blink_type)
writeBytes(_addr, (0x80 | 0x01 | (blink_type << 1)), 0, (uint8_t *)NULL);
}
void HT16K33::clear()
{
}

View File

@@ -70,7 +70,8 @@ enum blink_type_t
class HT16K33 {
public:
HT16K33(){}
HT16K33(){};
void init(uint8_t addr);
void setBlinkRate(blink_type_t blink_type);