Starting on screen impl

This commit is contained in:
Michal Moskal
2017-07-05 13:06:58 +01:00
parent 7671a75dbc
commit 02d8cf7056
7 changed files with 105 additions and 2 deletions

12
libs/core/enums.d.ts vendored
View File

@@ -34,4 +34,16 @@
OrangePulse = 9, // LED_ORANGE_PULSE
}
/**
* Drawing modes
*/
declare enum Draw {
Normal = (0x0000), // DRAW_OPT_NORMAL
Clear = (0x0004), // DRAW_OPT_CLEAR_PIXELS
Xor = (0x0018), // DRAW_OPT_LOGICAL_XOR
Fill = (0x0020), // DRAW_OPT_FILL_SHAPE
}
// Auto-generated. Do not edit. Really.