Skip to content

Commit

Permalink
Merge pull request #124 from IhorNehrutsa/fix_91
Browse files Browse the repository at this point in the history
Fix #91 and #88
  • Loading branch information
mathertel committed Jun 3, 2023
2 parents a0fb8c8 + 4f0db02 commit ff7627d
Show file tree
Hide file tree
Showing 4 changed files with 125 additions and 5 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -158,7 +158,7 @@ There is no functional change on them.
| Function | Description |
| ----------------------- | ------------------------------------------------------------------------------ |
| `bool isLongPressed()` | Detect whether or not the button is currently inside a long press. |
| `int getPressedTicks()` | Get the current number of milliseconds that the button has been held down for. |
| `int getPressedMs()` | Get the current number of milliseconds that the button has been held down for. |
| `int pin()` | Get the OneButton pin |
| `int state()` | Get the OneButton state |
| `int debouncedValue()` | Get the OneButton debounced value |
Expand Down
102 changes: 102 additions & 0 deletions examples/LongPressEvents/LongPressEvents.ino
Original file line number Diff line number Diff line change
@@ -0,0 +1,102 @@
/*
This is a sample sketch to show how to use the OneButtonLibrary
to detect long press events on a button.
The library internals are explained at
http://www.mathertel.de/Arduino/OneButtonLibrary.aspx
Setup a test circuit:
* Connect a pushbutton to PIN_INPUT (ButtonPin) and ground.
The sketch shows how to setup the library and bind the functions (LongPressStart, LongPressStop, DuringLongPress) to the events.
In the loop function the button.tick function must be called as often as you like.
The output of the program is:
OneButton Example.
Please press and hold the button for a few seconds.
810 - LongPressStart()
820 - DuringLongPress()
1820 - DuringLongPress()
2820 - DuringLongPress()
3820 - DuringLongPress()
4820 - DuringLongPress()
5820 - DuringLongPress()
6550 - LongPressStop()
*/

// 05.05.2023 created by Ihor Nehrutsa

#include "OneButton.h"

#if defined(ARDUINO_AVR_UNO) || defined(ARDUINO_AVR_NANO_EVERY)
// Example for Arduino UNO with input button on pin 2
#define PIN_INPUT 2

#elif defined(ESP8266)
// Example for NodeMCU with input button using FLASH button on D3
#define PIN_INPUT D3

#elif defined(ESP32)
// Example pin assignments for a ESP32 board
// Some boards have a BOOT switch using GPIO 0.
#define PIN_INPUT 0

#endif

// Setup a new OneButton on pin PIN_INPUT
// The 2. parameter activeLOW is true, because external wiring sets the button to LOW when pressed.
OneButton button(PIN_INPUT, true);

// In case the momentary button puts the input to HIGH when pressed:
// The 2. parameter activeLOW is false when the external wiring sets the button to HIGH when pressed.
// The 3. parameter can be used to disable the PullUp .
// OneButton button(PIN_INPUT, false, false);

// setup code here, to run once:
void setup()
{
Serial.begin(115200);
Serial.println("\nOneButton Example.");
Serial.println("Please press and hold the button for a few seconds.");

// link functions to be called on events.
button.attachLongPressStart(LongPressStart, &button);
button.attachDuringLongPress(DuringLongPress, &button);
button.attachLongPressStop(LongPressStop, &button);

button.setLongPressIntervalMs(1000);
} // setup


// main code here, to run repeatedly:
void loop()
{
// keep watching the push button:
button.tick();

// You can implement other code in here or just wait a while
delay(10);
} // loop


// this function will be called when the button started long pressed.
void LongPressStart(void *oneButton)
{
Serial.print(((OneButton *)oneButton)->getPressedMs());
Serial.println("\t - LongPressStart()");
}

// this function will be called when the button is released.
void LongPressStop(void *oneButton)
{
Serial.print(((OneButton *)oneButton)->getPressedMs());
Serial.println("\t - LongPressStop()\n");
}

// this function will be called when the button is held down.
void DuringLongPress(void *oneButton)
{
Serial.print(((OneButton *)oneButton)->getPressedMs());
Serial.println("\t - DuringLongPress()");
}

// End
8 changes: 5 additions & 3 deletions src/OneButton.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -308,12 +308,14 @@ void OneButton::_fsm(bool activeLevel)

if (!activeLevel) {
_newState(OneButton::OCS_PRESSEND);
_startTime = now;

} else {
// still the button is pressed
if (_duringLongPressFunc) _duringLongPressFunc();
if (_paramDuringLongPressFunc) _paramDuringLongPressFunc(_duringLongPressFuncParam);
if ((now - _lastDuringLongPressTime) >= _long_press_interval_ms) {
if (_duringLongPressFunc) _duringLongPressFunc();
if (_paramDuringLongPressFunc) _paramDuringLongPressFunc(_duringLongPressFuncParam);
_lastDuringLongPressTime = now;
}
} // if
break;

Expand Down
18 changes: 17 additions & 1 deletion src/OneButton.h
Original file line number Diff line number Diff line change
Expand Up @@ -72,6 +72,12 @@ class OneButton
void setPressTicks(const unsigned int ms) { setPressMs(ms); }; // deprecated
void setPressMs(const unsigned int ms);

/**
* set interval in msecs between calls of the DuringLongPress event.
* 0 ms is the fastest events calls.
*/
void setLongPressIntervalMs(const unsigned int ms) { _long_press_interval_ms = ms; };

// ----- Attach events functions -----

/**
Expand Down Expand Up @@ -111,6 +117,7 @@ class OneButton

/**
* Attach an event to fire periodically while the button is held down.
* The period of calls is set by setLongPressIntervalMs(ms).
* @param newFunction
*/
void attachDuringLongPress(callbackFunction newFunction);
Expand Down Expand Up @@ -223,15 +230,24 @@ class OneButton
unsigned long _lastDebounceTime = 0; // millis()
unsigned long now = 0; // millis()

unsigned long _startTime = 0; // start of current input change to checking debouncing
unsigned long _startTime = 0; // start time of current activeLevel change
int _nClicks = 0; // count the number of clicks with this variable
int _maxClicks = 1; // max number (1, 2, multi=3) of clicks of interest by registration of event functions.

unsigned int _long_press_interval_ms = 0; // interval in msecs between calls of the DuringLongPress event
unsigned long _lastDuringLongPressTime = 0; // used to produce the DuringLongPress interval

public:
int pin() const { return _pin; };
stateMachine_t state() const { return _state; };
int debounce(const int value);
int debouncedValue() const { return debouncedPinLevel; };

/**
* @brief Use this function in the DuringLongPress and LongPressStop events to get the time since the button was pressed.
* @return milliseconds from the start of the button press.
*/
unsigned long getPressedMs() { return(millis() - _startTime); };
};

#endif

0 comments on commit ff7627d

Please sign in to comment.