選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

15 行
158B

  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