2022-01-18 14:27:59 -08:00
|
|
|
---
|
2022-01-28 10:02:39 -08:00
|
|
|
id: rotary-encoder-plugin
|
2022-01-18 14:27:59 -08:00
|
|
|
title: Rotary Encoder
|
|
|
|
sidebar_label: Rotary Encoder
|
|
|
|
---
|
|
|
|
import Tabs from '@theme/Tabs';
|
|
|
|
import TabItem from '@theme/TabItem';
|
|
|
|
|
2022-01-28 14:53:32 -08:00
|
|
|
<!--- TODO add link to hardware setup to admonition--->
|
|
|
|
:::note
|
|
|
|
This plugin requires attaching a peripheral accessory to your device. It will not work without one.
|
|
|
|
:::
|
2022-01-18 14:27:59 -08:00
|
|
|
|
|
|
|
## Overview
|
|
|
|
|
|
|
|
Meshtastic supports hardwired rotary encoders as input devices.
|
|
|
|
Currently, one rotary encoder (`rotary1`) is defined, but later more rotary encoders
|
|
|
|
can be added (if needed) the same way.
|
|
|
|
|
2022-01-28 10:11:19 -08:00
|
|
|
:::tip
|
|
|
|
Once plugin settings are changed, a **reset** is required for them to take effect.
|
|
|
|
:::
|
|
|
|
|
2022-01-18 14:27:59 -08:00
|
|
|
## Settings
|
|
|
|
|
|
|
|
| Setting | Acceptable Values | Default |
|
|
|
|
| :-----: | :---------------: | :-----: |
|
|
|
|
| rotary1_enabled | `true`, `false` | `false` |
|
|
|
|
| rotary1_pin_a | `integer` | (not defined) |
|
|
|
|
| rotary1_pin_b | `integer` | (not defined) |
|
|
|
|
| rotary1_pin_press | `integer` | (not defined) |
|
|
|
|
| rotary1_event_cw | `InputEventChar` | (not defined) |
|
|
|
|
| rotary1_event_ccw | `InputEventChar` | (not defined) |
|
|
|
|
| rotary1_event_press | `InputEventChar` | (not defined) |
|
|
|
|
|
|
|
|
### rotary1_enabled
|
|
|
|
Enable the rotary encoder #1
|
|
|
|
|
|
|
|
### rotary1_pin_a
|
|
|
|
GPIO pin for rotary encoder A port.
|
|
|
|
|
|
|
|
### rotary1_pin_b
|
|
|
|
GPIO pin for rotary encoder B port.
|
|
|
|
|
|
|
|
### rotary1_pin_press
|
|
|
|
GPIO pin for rotary encoder Press port.
|
|
|
|
|
|
|
|
### rotary1_event_cw
|
|
|
|
Generate input event on CW of this kind.
|
|
|
|
(For using with CannedMessagePlugin you must choose value "UP" here.)
|
|
|
|
|
|
|
|
### rotary1_event_ccw
|
|
|
|
Generate input event on CCW of this kind.
|
|
|
|
(For using with CannedMessagePlugin you must choose value "DOWN" here.)
|
|
|
|
|
|
|
|
### rotary1_event_press
|
|
|
|
Generate input event on Press of this kind.
|
|
|
|
(For using with CannedMessagePlugin you must choose value "SELECT" here.)
|
|
|
|
|
|
|
|
## Details
|
|
|
|
|
|
|
|
See "Software / Plugins / Canned messages" for details!
|
|
|
|
|
|
|
|
## Examples
|
|
|
|
|
|
|
|
See "Software / Plugins / Canned messages" for examples!
|