-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmedia-knob.ino
101 lines (87 loc) · 2.04 KB
/
media-knob.ino
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
#include <ClickEncoder.h>
#include <TimerOne.h>
#include <HID-Project.h>
#define ENCODER_CLK A3
#define ENCODER_DT A2
#define ENCODER_SW A1
#define ENCODER_STEPS_PER_NOTCH 4
ClickEncoder *encoder;
int16_t lastRotationValue, rotationValue;
bool isVolumeMode;
void timerInterrupt()
{
encoder->service();
}
void setup()
{
Serial.begin(9600);
Consumer.begin();
encoder = new ClickEncoder(ENCODER_DT, ENCODER_CLK, ENCODER_SW, ENCODER_STEPS_PER_NOTCH);
encoder->setDoubleClickTime(300);
encoder->setHoldTime(400);
Timer1.initialize(200);
Timer1.attachInterrupt(timerInterrupt);
lastRotationValue = -1;
rotationValue = -1;
isVolumeMode = true;
}
void loop()
{
ClickEncoder::Button buttonState = encoder->getButton();
rotationValue += encoder->getValue();
if (buttonState == ClickEncoder::Held && isVolumeMode)
{
Serial.println("Media Mode");
isVolumeMode = false;
}
else if (buttonState == ClickEncoder::Released)
{
Serial.println("Volume Mode");
isVolumeMode = true;
}
if (isVolumeMode)
{
// Volume
if (lastRotationValue < rotationValue)
{
Serial.println("volume up");
Consumer.write(MEDIA_VOLUME_UP);
}
else if (lastRotationValue > rotationValue)
{
Serial.println("volume down");
Consumer.write(MEDIA_VOLUME_DOWN);
}
lastRotationValue = rotationValue;
// Click Events
if (buttonState == ClickEncoder::Clicked)
{
Serial.println("play/pause");
Consumer.write(MEDIA_PLAY_PAUSE);
}
if (buttonState == ClickEncoder::DoubleClicked)
{
Serial.println("mute/un-mute");
Consumer.write(MEDIA_VOL_MUTE);
}
}
else
{
// Media
if (abs(rotationValue - lastRotationValue) > 2)
{
if (rotationValue > lastRotationValue)
{
Serial.println("skip next");
Consumer.write(MEDIA_NEXT);
}
else if (rotationValue < lastRotationValue)
{
Serial.println("skip prev");
Consumer.write(MEDIA_PREV);
}
lastRotationValue = rotationValue;
}
}
delay(10);
}