11 lines
337 B
C++
11 lines
337 B
C++
#pragma once
|
|
#include "camera_service.h"
|
|
#include "printer_service.h"
|
|
#include "settings_service.h"
|
|
|
|
class ImageProcessor
|
|
{
|
|
public:
|
|
static void processAndPrint(const CameraService::Frame &frame, PrinterService &printer, const AppSettings &settings);
|
|
static void uploadImage(const uint8_t *bitmap, int size, const String &url);
|
|
}; |