#pragma once #include namespace Config { // Camera Pins (ESP32-CAM AI-Thinker) constexpr int PIN_CAM_PWDN = 32; constexpr int PIN_CAM_RESET = -1; constexpr int PIN_CAM_XCLK = 0; constexpr int PIN_CAM_SIOD = 26; constexpr int PIN_CAM_SIOC = 27; constexpr int PIN_CAM_Y9 = 35; constexpr int PIN_CAM_Y8 = 34; constexpr int PIN_CAM_Y7 = 39; constexpr int PIN_CAM_Y6 = 36; constexpr int PIN_CAM_Y5 = 21; constexpr int PIN_CAM_Y4 = 19; constexpr int PIN_CAM_Y3 = 18; constexpr int PIN_CAM_Y2 = 5; constexpr int PIN_CAM_VSYNC = 25; constexpr int PIN_CAM_HREF = 23; constexpr int PIN_CAM_PCLK = 22; // Printer Pins constexpr int PIN_PRINTER_RX = 14; constexpr int PIN_PRINTER_TX = 15; // Button constexpr int PIN_BUTTON = 12; // Settings constexpr int BAUD_RATE = 9600; // Check your printer specs (some are 19200) constexpr int PRINTER_SERIAL = 1; }