nodemcu-firmware/docs/modules/rotary.md

5.8 KiB

rotary Module

Since Origin / Contributor Maintainer Source
2016-03-01 Philip Gladstone Philip Gladstone rotary.c

This module can read the state of cheap rotary encoder switches. These are available at all the standard places for a dollar or two. They are five pin devices where three are used for a gray code encoder for rotation, and two are used for the push switch. These switches are commonly used in car audio systems.

These switches do not have absolute positioning, but only encode the number of positions rotated clockwise / anti-clockwise. To make use of this module, connect the common pin on the quadrature encoder to ground and the A and B phases to the NodeMCU. One pin of the push switch should also be grounded and the other pin connected to the NodeMCU.

Sources for parts

  • Amazon: This search shows a variety.
  • Ebay: Somewhat cheaper in this search
  • Adafruit: rotary encoder
  • Aliexpress: This search reveals all sorts of shapes and sizes.

There is also a switch mounted on a board with standard 0.1" pins. This is the KY-040, and can also be found at lots of places. Note that the pins are named somewhat eccentrically, and I suspect that it really does need the VCC connected.

Constants

  • rotary.PRESS = 1 The eventtype for the switch press.
  • rotary.LONGPRESS = 2 The eventtype for a long press.
  • rotary.RELEASE = 4 The eventtype for the switch release.
  • rotary.TURN = 8 The eventtype for the switch rotation.
  • rotary.CLICK = 16 The eventtype for a single click (after release)
  • rotary.DBLCLICK = 32 The eventtype for a double click (after second release)
  • rotary.ALL = 63 All event types.

rotary.setup()

Initialize the nodemcu to talk to a rotary encoder switch.

Syntax

switch = rotary.setup(pina, pinb[, pinpress[, longpress_time_ms[, dblclick_time_ms]]])

Parameters

  • pina This is a GPIO number and connects to pin phase A on the rotary switch.
  • pinb This is a GPIO number and connects to pin phase B on the rotary switch.
  • pinpress (optional) This is a GPIO number and connects to the press switch.
  • longpress_time_ms (optional) The number of milliseconds (default 500) of press to be considered a long press.
  • dblclick_time_ms (optional) The number of milliseconds (default 500) between a release and a press for the next release to be considered a double click.

Returns

A switch object that can be used for the operations below.

Example

switch = rotary.setup(5, 6, 7)

Notes

This module uses pullups on the GPIO pins to detect the key presses. However, not all GPIO pins support pullups and so, if one of those pins is used, then there needs to be a real external resistor pullup.

switch:on()

Sets a callback on specific events.

Syntax

switch:on(eventtype[, callback])

Parameters

  • eventtype This defines the type of event being registered. This is the logical or of one or more of PRESS, LONGPRESS, RELEASE, TURN, CLICK or DBLCLICK. ALL can be used as shorthand for all event types.
  • callback This is a function that will be invoked when the specified event happens.

If the callback is None or omitted, then the registration is cancelled.

The callback will be invoked with three arguments when the event happens. The first argument is the eventtype, the second is the current position of the rotary switch, and the third is the time when the event happened.

The position is tracked and is represented as a signed 32-bit integer. Increasing values indicate clockwise motion. The time is the number of microseconds represented in a 32-bit integer. Note that this wraps every hour or so.

Example

switch:on(rotary.ALL, function (type, pos, when)
  print("Position=" .. pos .. " event type=" .. type .. " time=" .. when)
end)

Notes

Events will be delivered in order, but there may be missing TURN events. If there is a long queue of events, then PRESS and RELEASE events may also be missed. Multiple pending TURN events are typically dispatched as one TURN callback with the final position as its parameter.

Some switches have 4 (or 2) steps per detent. This means that, in practice, the application should divide the position by 4 (or 2) and use that to determine the number of clicks. It is unlikely that a switch will ever reach 30 bits of rotation in either direction -- some are rated for under 50,000 revolutions.

The CLICK and LONGPRESS events are delivered on a timeout. The DBLCLICK event is delivered after a PRESS, RELEASE, PRESS, RELEASE sequence where this is a short time gap between the middle RELEASE and PRESS.

Errors

If an invalid eventtype is supplied, then an error will be thrown.

switch:getpos()

Gets the current position and press status of the switch

Syntax

pos, press = switch:getpos()

Returns

  • pos The current position of the switch.
  • press A boolean indicating if the switch is currently pressed.

Example

print(switch:getpos())

switch:close()

Releases the resources associated with the rotary switch.

Syntax

switch:close()

Example

switch:close()