1
0
mirror of https://github.com/thooge/esp32-nmea2000-obp60.git synced 2025-12-29 05:33:05 +01:00
Files
esp32-nmea2000-obp60/lib/obp60task/ImageDecoder.h
2025-11-25 22:38:08 +01:00

10 lines
188 B
C++

#pragma once
#include <Arduino.h>
#include <vector>
class ImageDecoder {
public:
bool decodeBase64(const String& base64, uint8_t* outBuffer, size_t outSize, size_t& decodedSize);
};