diff options
Diffstat (limited to 'arduinoSrc1_0/Server.h')
| -rw-r--r-- | arduinoSrc1_0/Server.h | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/arduinoSrc1_0/Server.h b/arduinoSrc1_0/Server.h new file mode 100644 index 0000000..9674c76 --- /dev/null +++ b/arduinoSrc1_0/Server.h @@ -0,0 +1,9 @@ +#ifndef server_h +#define server_h + +class Server : public Print { +public: + virtual void begin() =0; +}; + +#endif |
