From b16091659cc9a724a8800f77e631643b4ab089ad Mon Sep 17 00:00:00 2001 From: Ryan Date: Wed, 18 Aug 2021 18:20:25 +1000 Subject: Move USB Host Shield and Arduino core to `lib/` (#13973) --- lib/usbhost/arduino-1.0.1/cores/arduino/Server.h | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 lib/usbhost/arduino-1.0.1/cores/arduino/Server.h (limited to 'lib/usbhost/arduino-1.0.1/cores/arduino/Server.h') diff --git a/lib/usbhost/arduino-1.0.1/cores/arduino/Server.h b/lib/usbhost/arduino-1.0.1/cores/arduino/Server.h new file mode 100644 index 0000000000..9674c76269 --- /dev/null +++ b/lib/usbhost/arduino-1.0.1/cores/arduino/Server.h @@ -0,0 +1,9 @@ +#ifndef server_h +#define server_h + +class Server : public Print { +public: + virtual void begin() =0; +}; + +#endif -- cgit v1.2.3