Keyboard firmwares for Atmel AVR and Cortex-M
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

Server.h 111B

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