1
0
This repo is archived. You can view files and clone it, but cannot push or open issues or pull requests.
tmk_keyboard_custom/tmk_core/protocol/usb_hid/arduino-1.0.1/cores/arduino/Server.h

10 lines
111 B
C++

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