mirror of
https://github.com/arendst/Tasmota.git
synced 2025-05-30 08:16:31 +00:00
16 lines
252 B
C++
Executable File
16 lines
252 B
C++
Executable File
#pragma once
|
|
|
|
#include "CStreamer.h"
|
|
#include "OV2640.h"
|
|
|
|
class OV2640Streamer : public CStreamer
|
|
{
|
|
bool m_showBig;
|
|
OV2640 &m_cam;
|
|
|
|
public:
|
|
OV2640Streamer(SOCKET aClient, OV2640 &cam);
|
|
|
|
virtual void streamImage(uint32_t curMsec);
|
|
};
|