You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

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