Keyboard firmwares for Atmel AVR and Cortex-M
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

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