olikraus / U8g2_for_Adafruit_GFX

Add U8g2 fonts to any Adafruit GFX based graphics library.
Other
103 stars 32 forks source link

use uint16_t for color values #1

Closed olikraus closed 6 years ago

olikraus commented 6 years ago

Adafruit function calls look like this

drawFastVLine(int16_t x, int16_t y, int16_t h, uint16_t color), drawFastHLine(int16_t x, int16_t y, int16_t w, uint16_t color),

Currently the code uses uint8_t

olikraus commented 6 years ago

done

FrenchLab47 commented 6 years ago

That's it, thank you!