-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathMonome.h
60 lines (52 loc) · 1.65 KB
/
Monome.h
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
#ifndef Monome_h
#define Monome_h
#include "Arduino.h"
#include "USBHost_t36.h"
struct coords {
byte x;
byte y;
};
class Monome
{
public:
Monome();
void setup();
void loop();
void setOverallInt(byte i);
void setLed(byte x, byte y, byte s);
void setLedInt(byte x, byte y, byte i);
void setAll(byte s);
void setAllInt(byte i);
void setRow(byte x, byte y, byte d);
void setLevelRow(byte x, byte y, byte d[8]);
void setCol(byte x, byte y, byte d);
void setLevelCol(byte x, byte y, byte d[8]);
void setMap(byte x, byte y, byte d[8]);
void setLevelMap(byte x, byte y, byte d[32]);
byte keyPressed[256];
byte coordsToKey(coords c);
coords keyToCoords(byte k);
void setRingLed(byte n, byte x, byte a);
void setRingAll(byte n, byte a);
void setRingMap(byte n, byte d[32]);
void setRingRange(byte n, byte x1, byte x2, byte a);
byte switchPressed[4];
int encCumulative[4]; // accumulated delta since initialization
void (*keyDownCallback)(byte k);
void (*keyUpCallback)(byte k);
void (*encChangeCallback)(byte e, int d);
void (*switchDownCallback)(byte e);
void (*switchUpCallback)(byte e);
private:
USBHost _myusb;
USBSerial _userial = USBSerial(_myusb);
void _send1(byte b1);
void _send2(byte b1, byte b2);
void _send2x32(byte b1, byte b2, byte b3[32]);
void _send3(byte b1, byte b2, byte b3);
void _send3x8(byte b1, byte b2, byte b3, byte b4[8]);
void _send3x32(byte b1, byte b2, byte b3, byte b4[32]);
void _send4(byte b1, byte b2, byte b3, byte b4);
void _send5(byte b1, byte b2, byte b3, byte b4, byte b5);
};
#endif