Erikvdv22 / u8glib

Automatically exported from code.google.com/p/u8glib
Other
0 stars 0 forks source link

Virtual Screen Device #119

Closed GoogleCodeExporter closed 8 years ago

GoogleCodeExporter commented 8 years ago
Implemented

    void setVirtualScreenDimension(u8g_uint_t width, u8g_uint_t height) { u8g_SetVirtualScreenDimension(&u8g, width, height); }
    uint8_t addToVirtualScreen(u8g_uint_t x, u8g_uint_t y, U8GLIB &child_u8g) { return u8g_AddToVirtualScreen(&u8g, x, y, &child_u8g.u8g); }

void u8g_SetVirtualScreenDimension(u8g_t *vs_u8g, u8g_uint_t width, u8g_uint_t 
height);
uint8_t u8g_AddToVirtualScreen(u8g_t *vs_u8g, u8g_uint_t x, u8g_uint_t y, u8g_t 
*child_u8g);

todo
- test C++ interface
- documentation

Original issue reported on code.google.com by olikr...@gmail.com on 2 Dec 2012 at 6:57

GoogleCodeExporter commented 8 years ago

Original comment by olikr...@gmail.com on 3 Dec 2012 at 7:47

GoogleCodeExporter commented 8 years ago
device: u8g_dev_vs

ToDO:
- C++ Constructor
- describe config procedures
- Example

Original comment by olikr...@gmail.com on 15 Dec 2012 at 7:00

GoogleCodeExporter commented 8 years ago
code example created, C++ interface not created

Original comment by olikr...@gmail.com on 21 Dec 2012 at 10:51