Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add buttons support in WB-MWAC v.1 template #858

Merged
merged 8 commits into from
Feb 4, 2025
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
use press_counter for buttons counters
  • Loading branch information
ad7718 committed Jan 28, 2025
commit 0999995de4bb2eda352ba17a4657c80ebf6b3317
8 changes: 4 additions & 4 deletions templates/config-wb-mwac.json.jinja
Original file line number Diff line number Diff line change
Expand Up @@ -487,7 +487,7 @@
{
"name": "Input {{ letter }}{{ in_num - in_num_offset}} Single Press Counter",
"enabled": false,
"reg_type": "input",
"reg_type": "press_counter",
"address": {{ 464 + (in_num - 1) }},
"type": "value",
"sporadic": true,
Expand All @@ -497,7 +497,7 @@
{
"name": "Input {{ letter }}{{ in_num - in_num_offset }} Long Press Counter",
"enabled": false,
"reg_type": "input",
"reg_type": "press_counter",
"address": {{ 480 + (in_num - 1) }},
"type": "value",
"sporadic": true,
Expand All @@ -507,7 +507,7 @@
{
"name": "Input {{ letter }}{{ in_num - in_num_offset }} Double Press Counter",
"enabled": false,
"reg_type": "input",
"reg_type": "press_counter",
"address": {{ 496 + (in_num - 1) }},
"type": "value",
"sporadic": true,
Expand All @@ -517,7 +517,7 @@
{
"name": "Input {{ letter }}{{ in_num - in_num_offset }} Shortlong Press Counter",
"enabled": false,
"reg_type": "input",
"reg_type": "press_counter",
"address": {{ 512 + (in_num - 1) }},
"type": "value",
"sporadic": true,
Expand Down