# | Line 192 | Line 192 | public: | |
---|---|---|
192 | ||
193 | void Set(uint8_t column, uint8_t row, const std::string &data); | |
194 | ||
195 | + | inline void Set(uint8_t column, uint8_t row, char data) |
196 | + | { |
197 | + | Set(column, row, std::string(1, data)); |
198 | + | } |
199 | + | |
200 | inline void Set(uint8_t led, Color color, uint8_t brightness) | |
201 | { | |
202 | Communicate(Packet::SetOrSetAndConfigureGPIOPin, 12 - (led << 1) - color, brightness); |
– | Removed lines |
+ | Added lines |
< | Changed lines |
> | Changed lines |