Teensy 4.1 core updated for C++20
選択できるのは25トピックまでです。
トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。
|
- #if ARDUINO >= 100
-
- #ifndef server_h
- #define server_h
-
- #include "Print.h"
-
- class Server : public Print {
- public:
- virtual void begin() =0;
- };
-
- #endif
- #endif
|