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

1234567891011121314
  1. #if ARDUINO >= 100
  2. #ifndef server_h
  3. #define server_h
  4. #include "Print.h"
  5. class Server : public Print {
  6. public:
  7. virtual void begin() =0;
  8. };
  9. #endif
  10. #endif