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

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