Firmware2/ArduinoAddons/Arduino_1.6.x/hardware/marlin/avr/cores/at90usb/Server.h
Richard Wackerbarth 9b13e60e38 core - AT90USB…
2015-06-27 15:45:25 -05:00

10 lines
111 B
C++

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