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