Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.

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