This repository has been archived on 2022-01-28. You can view files and clone it, but cannot push or open issues or pull requests.
Marlin-Artillery-M600/ArduinoAddons/Arduino_1.x.x/hardware/Melzi/cores/arduino/Server.h
Bo Herrmannsen 1ba7c31395 Adding Melzi board
these are the files needed to support the Melzi board
2014-12-04 23:45:51 +01:00

9 lines
111 B
C++

#ifndef server_h
#define server_h
class Server : public Print {
public:
virtual void begin() =0;
};
#endif