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.

Server.h 138B

123456789101112
  1. #if ARDUINO >= 100
  2. #ifndef server_h
  3. #define server_h
  4. class Server : public Print {
  5. public:
  6. virtual void begin() =0;
  7. };
  8. #endif
  9. #endif