#ifndef SOCKETIO_HPP #define SOCKETIO_HPP #include extern std::atomic statusResolved; extern std::atomic connected; // Initialize Socket.IO client and connect to server void initSocketIO(); // Stop and destroy Socket.IO client void stopSocketIO(); // Emit calibration stage events to server void emitCalibStage1Ready(int port = 1); void emitCalibStage2Ready(int port = 1); void emitCalibDone(int port = 1); #endif // SOCKETIO_HPP