Files
Joachim f5896a3609 First commit to add an example with the TTGO Camera Plus device
- For now, the example gets an image from the camera and puts it on the LCD
	- TODO: image is rotated and refresh rate not good
2020-08-25 16:52:45 +02:00

15 lines
228 B
C

#ifndef __SYSTEM_H
#define __SYSTEM_H
// Display memory info
void disp_infos();
// Holds the task for a given amount of msec
void wait_msec(uint16_t v);
// Holds the task for a full second
void wait_sec(uint16_t v);
#endif