mirror of https://github.com/arendst/Tasmota.git
16 lines
262 B
C
16 lines
262 B
C
|
#pragma once
|
||
|
|
||
|
#include "JPEGSamples.h"
|
||
|
#include "CStreamer.h"
|
||
|
|
||
|
#ifdef INCLUDE_SIMDATA
|
||
|
class SimStreamer : public CStreamer
|
||
|
{
|
||
|
bool m_showBig;
|
||
|
public:
|
||
|
SimStreamer(SOCKET aClient, bool showBig);
|
||
|
|
||
|
virtual void streamImage(uint32_t curMsec);
|
||
|
};
|
||
|
#endif
|