mirror of
https://gitcode.com/gh_mirrors/es/esp32-opencv.git
synced 2025-08-15 03:01:04 +08:00

- 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
15 lines
228 B
C
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
|