Arduino Universal Inputs
A collection of libraries for managing/processing input devices on Arduino.
All Classes Files Functions Variables Typedefs Enumerations Enumerator
IUniversalInputCallback.h
Go to the documentation of this file.
1 
3 #ifndef _ARDUINOUNIVERSALINPUTS_IUNIVERSALINPUTCALLBACK_H
4 #define _ARDUINOUNIVERSALINPUTS_IUNIVERSALINPUTCALLBACK_H
5 
11 {
12 public:
14 
20  virtual void handleUniversalInputEvent(inputtype_t type,
21  IInputDevice *device) = 0;
22 };
23 
24 #endif
Represents an input device.
Definition: IInputDevice.h:14
inputtype_t
Enumeration of all input device types.
Definition: UniversalInputTypes.h:37
Interface for classes that handle callbacks.
Definition: IUniversalInputCallback.h:10
virtual void handleUniversalInputEvent(inputtype_t type, IInputDevice *device)=0
Handle a calback.