Move USB Host Shield and Arduino core to lib/ (#13973)

This commit is contained in:
Ryan
2021-08-18 18:20:25 +10:00
committed by GitHub
parent cf5e40c251
commit b16091659c
182 changed files with 6 additions and 6 deletions

View File

@ -0,0 +1,9 @@
#ifndef server_h
#define server_h
class Server : public Print {
public:
virtual void begin() =0;
};
#endif