mirror of
https://github.com/arendst/Tasmota.git
synced 2025-04-28 08:47:17 +00:00
16 lines
262 B
C++
Executable File
16 lines
262 B
C++
Executable File
#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
|