File tree Expand file tree Collapse file tree 2 files changed +6
-6
lines changed
Expand file tree Collapse file tree 2 files changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -14,13 +14,13 @@ enum EventTypes
1414class EZButton
1515{
1616public:
17- ulong long HoldTreshHold;
18- ulong HoldInterval;
17+ unsigned long HoldTreshHold;
18+ unsigned long HoldInterval;
1919
2020 EZButton (const String buttonNames[],
2121 bool *(*readButtons)(String *, int ),
22- ulong holdTreshold = 500 ,
23- ulong holdInterval = 500 );
22+ unsigned long holdTreshold = 500 ,
23+ unsigned long holdInterval = 500 );
2424
2525 ~EZButton ();
2626
Original file line number Diff line number Diff line change 22
33EZButton::EZButton (const String buttonNames[],
44 bool *(*readButtons)(String *, int ),
5- ulong holdTreshold,
6- ulong holdInterval)
5+ unsigned long holdTreshold,
6+ unsigned long holdInterval)
77{
88 _numButtons = buttonNames->length () - 1 ;
99 HoldTreshHold = holdTreshold;
You can’t perform that action at this time.
0 commit comments