Firmware2/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

10 lines
111 B
C++

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