Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
SSD1289.h
- Committer:
- amarmay
- Date:
- 2019-12-20
- Revision:
- 0:c9164866dbb5
File content as of revision 0:c9164866dbb5:
#ifndef __LCDSSD1289_H #define __LCDSSD1289_H #define RGB565CONVERT(red, green, blue) (int) (((red >> 3) << 11) | ((green >> 2) << 5) | (blue >> 3)) #endif /* __LCDSSD1289_H */