Sming Framework API
Sming - Open Source framework for high efficiency WiFi SoC ESP8266 native development with C++ language.
|
Public Member Functions | |
ArduCAMStream (ArduCAM *cam) | |
virtual StreamType | getStreamType () |
Get the stream type. More... | |
virtual uint16_t | readMemoryBlock (char *data, int bufSize) |
Read a block of memory. More... | |
virtual bool | seek (int len) |
Move read cursor. More... | |
virtual bool | isFinished () |
Check if stream is finished. More... | |
bool | dataReady () |
size_t | available () |
|
inlinevirtual |
Get the stream type.
StreamType | The stream type. |
Implements IDataSourceStream.
|
virtual |
|
virtual |
Read a block of memory.
data | Pointer to the data to be read |
bufSize | Quantity of chars to read |
uint16_t | Quantity of chars read |
Implements IDataSourceStream.
|
virtual |
Move read cursor.
len | Position within stream to move cursor to |
bool | True on success. |
Implements IDataSourceStream.