ESP_IOT v2.5
IOT ESP Coding
OV2640Streamer.h
Go to the documentation of this file.
1#pragma once
2#include "../../../Defines.h"
3
4#ifdef USE_CAMERA_MODULE
5
6#include "CStreamer.h"
7#include "OV2640.h"
8
9class OV2640Streamer : public CStreamer
10{
11 bool m_showBig;
12 OV2640 &m_cam;
13
14public:
15 OV2640Streamer(SOCKET aClient, OV2640 &cam);
16
17 virtual void streamImage(uint32_t curMsec);
18};
19
20#endif //USE_CAMERA_MODULE