logo

qmk_firmware

custom branch of QMK firmware git clone https://anongit.hacktivis.me/git/qmk_firmware.git

Server.h (111B)


  1. #ifndef server_h
  2. #define server_h
  3. class Server : public Print {
  4. public:
  5. virtual void begin() =0;
  6. };
  7. #endif