forked from rommil67/ORGAN_ZambroW_TROJCA
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Setzer_MIDI_v.0.3
450 lines (361 loc) · 11 KB
/
Setzer_MIDI_v.0.3
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
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
/ for Atmega32A - Bobuino
#include <Wire.h>
#include <LiquidCrystal_I2C.h>
#include <Encoder.h>
#include <MIDI.h> // Add Midi Library
#include <SPI.h>
#include <SD.h>
#define BACKLIGHT_PIN 3
LiquidCrystal_I2C lcd(0x27, 2, 1, 0, 4, 5, 6, 7);
Encoder encoder(2,3); // Podłącz enkoder do pinów 2 i 3
const int chipSelect = 10;
File dataFile;
int displayNrComb = 1; // Zmienna nrBank używana tylko do wyświetlania
int realNrComb = 1; // Rzeczywista wartość nrBank używana do zmiany
int displayNrBank = 1; // Zmienna nrBank używana tylko do wyświetlania
int realNrBank = 1; // Rzeczywista wartość nrBank używana do zmiany
int encoderChange = 0; // Zmienna używana do śledzenia zmian enkodera co 4 odczyty
unsigned long BAS_channel_1 = 0; // Flags for MIDI-channel 1
unsigned long TREBL_channel_1 = 0;
unsigned long prev_BAS_channel_1 = 0; // Flags for MIDI-channel 1
unsigned long prev_TREBL_channel_1 = 0;
int nr = 1;
//Create an instance of the library with default name, serial port and settings
MIDI_CREATE_DEFAULT_INSTANCE();
void setup()
{
MIDI.begin(MIDI_CHANNEL_OMNI); // Initialize the Midi Library.
// OMNI sets it to listen to all channels.. MIDI.begin(2) would set it
// to respond to notes on channel 2 only.
MIDI.turnThruOff(); // Nie przesyła komunikatów z wejscia na wyjscie.
MIDI.setHandleNoteOn(MyHandleNoteOn); // This is important!! This command
// tells the Midi Library which function you want to call when a NOTE ON command
// is received. In this case it's "MyHandleNoteOn".
MIDI.setHandleNoteOff(MyHandleNoteOff); // This command tells the Midi Library
// to call "MyHandleNoteOff" when a NOTE OFF command is received.
lcd.begin(16, 2);
lcd.setBacklightPin(BACKLIGHT_PIN, POSITIVE);
lcd.setBacklight(HIGH);
lcd.home();
lcd.print("Comb nr");
if (!SD.begin(chipSelect)) {
lcd.home();
lcd.print("Card SD Error!");
return;
} else{
lcd.home();
lcd.print("Card SD Ok!");
}
pinMode(A0, INPUT_PULLUP);
char fileName[13]; // Długość nazwy pliku nie przekracza 8 znaków + 1 znak rozszerzenia + 4 znaki numeru pliku (1, 2, 3...)
sprintf(fileName, "C%dB%d.txt", nr, realNrBank);
}
void loop()
{
MIDI.read(); // Continuously check if Midi data has been received.
senderMidi();
//writeToSDCard();
// Odczytaj zmianę enkodera co 4 odczyty i zaktualizuj zmienną encoderChange
long newPosition = encoder.read();
static int lastEncoderPosition = 0;
if (newPosition != lastEncoderPosition)
{
encoderChange += newPosition - lastEncoderPosition;
lastEncoderPosition = newPosition;
if (abs(encoderChange) >= 4)
{
// Aktualizuj rzeczywistą wartość realNrBank co 4 odczyty enkodera
if (encoderChange > 0)
realNrBank = constrain(realNrBank - 1, 0, 257); // Zmniejsz realNrBank o 1
else
realNrBank = constrain(realNrBank + 1, 0, 257); // Zwiększ realNrBank o 1
encoderChange = 0; // Zresetuj zmienną encoderChange
// Sprawdź i popraw wartość realNrBank, jeśli przekroczy 256 lub spadnie poniżej 1
checkNrBankLimits();
}
}
// Sprawdź, czy rzeczywista wartość realNrBank się zmieniła
static int lastRealNrBank = 0;
if (realNrBank != lastRealNrBank)
{
// Aktualizuj wartość wyświetlanej zmiennej displayNrBank
displayNrBank = realNrBank;
// Wyświetl wartość displayNrBank na drugim wierszu wyświetlacza LCD
lcd.setCursor(0, 1);
lcd.print("Bank nr "); // Czyszczenie starej wartości
lcd.setCursor(8, 1);
lcd.print(displayNrBank);
lastRealNrBank = realNrBank; // Zapisz aktualną wartość realNrBank jako poprzednią
}
// Twój pozostały kod
// ...
}
void checkNrBankLimits()
{
// Sprawdź, czy rzeczywista wartość realNrBank przekroczyła 256 lub spadła poniżej 1
if (realNrBank > 256)
realNrBank = 1;
else if (realNrBank < 1)
realNrBank = 256;
}
// MyHandleNoteON is the function that will be called by the Midi Library
// when a MIDI NOTE ON message is received.
// It will be passed bytes for Channel, Pitch, and Velocity
void MyHandleNoteOn(byte channel, byte pitch, byte velocity) {
// Zapamietanie wolne kombinaci nr...
if (digitalRead(A0) == LOW){
if (pitch == 76){
nr = 1;
writeToSDCard();
}
if (pitch == 77){
nr = 2;
writeToSDCard();
}
if (pitch == 78){
nr = 3;
writeToSDCard();
}
if (pitch == 79){
nr = 4;
writeToSDCard();
}
if (pitch == 80){
nr = 5;
writeToSDCard();
}
if (pitch == 81){
nr = 6;
writeToSDCard();
}
if (pitch == 82){
nr = 7;
writeToSDCard();
}
if (pitch == 83){
nr = 8;
writeToSDCard();
}
// przycisk > (next) + SET zmiana banku na plus
if (pitch == 85){
realNrBank++;
if (realNrBank > 256){
realNrBank = 1;
displayNrBank = realNrBank;
}
readToSDCard();
}
//prycisk < (previous) + SET - zmiana banku na minus
if (pitch == 86){
realNrBank--;
if (realNrBank < 1){
realNrBank = 256;
displayNrBank = realNrBank;
}
readToSDCard();
}
}
// włącznie kombinaci CombON
if (pitch == 76){
nr = 1;
readToSDCard();
}
if (pitch == 77){
nr = 2;
readToSDCard();
}
if (pitch == 78){
nr = 3;
readToSDCard();
}
if (pitch == 79){
nr = 4;
readToSDCard();
}
if (pitch == 80){
nr = 5;
readToSDCard();
}
if (pitch == 81){
nr = 6;
readToSDCard();
}
if (pitch == 82){
nr = 7;
readToSDCard();
}
if (pitch == 83){
nr = 8;
readToSDCard();
}
// ksownik
if (pitch == 84){
//nr = 0;
//readToSDCard();
BAS_channel_1=0;
TREBL_channel_1=0;
lcd.setCursor(0, 0);
lcd.print("Kasownik 0 ");
}
if (digitalRead(A0) == HIGH){
// przycisk > (next)
if (pitch == 85){
nr++;
if (nr > 8 ){
nr = 1;
realNrBank++;
if (realNrBank > 256){
realNrBank = 1;
displayNrBank = realNrBank;
}
}
readToSDCard();
}
//prycisk < (previous)
if (pitch == 86){
nr--;
if (nr < 1 ){
nr = 8;
realNrBank--;
if (realNrBank < 1){
realNrBank = 256;
displayNrBank = realNrBank;
}
}
readToSDCard();
}
}
if (channel == 1){ //ustawianie flag dla kanału 1
if (pitch >= 36 && pitch <= 68){
if ((bitRead(BAS_channel_1, pitch - 36)) == LOW){
bitSet(BAS_channel_1, pitch - 36);
} else {
bitClear(BAS_channel_1, pitch - 36);
}
}
if (pitch >= 69 && pitch <= 101){
if ((bitRead(TREBL_channel_1, pitch - 69)) == LOW){
bitSet(TREBL_channel_1, pitch - 69);
} else {
bitClear(TREBL_channel_1, pitch - 69);
}
}
}
}
// MyHandleNoteOFF is the function that will be called by the Midi Library
// when a MIDI NOTE OFF message is received.
// * A NOTE ON message with Velocity = 0 will be treated as a NOTE OFF message *
// It will be passed bytes for Channel, Pitch, and Velocity
void MyHandleNoteOff(byte channel, byte pitch, byte velocity) {
/*
// Obsługa noteOFF
if (channel == 1) {
if (pitch >= 36 && pitch <= 68){ // gaszenie flag Bas
bitClear(BAS_channel_1, pitch - 36);
}
if (pitch >= 69 && pitch <= 101){ // gaszenie flag Trebll
bitClear(TREBL_channel_1, pitch - 69);
}
}
*/
}
void senderMidi(){
int pitch = 0;
int channel = 1;
int velocity = 127;
if (prev_BAS_channel_1 != BAS_channel_1) {
for (int i = 36; i <= 68; i++){
if ((bitRead(BAS_channel_1, i - 36) == HIGH) && (bitRead(prev_BAS_channel_1, i - 36) == LOW)) {
pitch = i;
channel = 1;
MIDI.sendNoteOn (pitch, velocity, channel);
}
if ((bitRead(BAS_channel_1, i - 36) == LOW) && (bitRead(prev_BAS_channel_1, i - 36) == HIGH)) {
pitch = i;
channel = 1;
MIDI.sendNoteOff (pitch, velocity, channel);
}
}
prev_BAS_channel_1 = BAS_channel_1;
}
if (prev_TREBL_channel_1 != TREBL_channel_1) {
for (int i = 69; i <= 101; i++){
if ((bitRead(TREBL_channel_1, i - 69) == HIGH) & (bitRead(prev_TREBL_channel_1, i - 69) == LOW)) {
pitch = i;
channel = 1;
MIDI.sendNoteOn (pitch, velocity, channel);
}
if ((bitRead(TREBL_channel_1, i - 69) == LOW) & (bitRead(prev_TREBL_channel_1, i - 69) == HIGH)) {
pitch = i;
channel = 1;
MIDI.sendNoteOff (pitch, velocity, channel);
}
}
prev_TREBL_channel_1 = TREBL_channel_1;
}
}
void writeToSDCard(){
char fileName[13]; // Długość nazwy pliku nie przekracza 8 znaków + 1 znak rozszerzenia + 4 znaki numeru pliku (1, 2, 3...)
sprintf(fileName, "C%dB%d.txt", nr, realNrBank);
if (SD.exists(fileName)){
SD.remove(fileName);
}
dataFile = SD.open(fileName, FILE_WRITE);
if (dataFile) {
dataFile.print(BAS_channel_1);
dataFile.print(",");
dataFile.println(TREBL_channel_1);
dataFile.close();
lcd.home();
lcd.print("Zapisano OK.");
} else {
lcd.home();
lcd.print("Error open file!");
}
lcd.setCursor(0, 0);
lcd.print("Comb nr "); // Czyszczenie starej wartości
lcd.setCursor(8, 0);
lcd.print(nr);
}
void readToSDCard(){
char fileName[13]; // Długość nazwy pliku nie przekracza 8 znaków + 1 znak rozszerzenia + 4 znaki numeru pliku (1, 2, 3...)
sprintf(fileName, "C%dB%d.txt", nr, realNrBank);
dataFile = SD.open(fileName);
if (dataFile) {
// Odczytaj dane z pliku i przypisz je do zmiennych BAS_channel_1 iTREBL_channel_1
char buffer[30]; // Bufor na odczytane dane
dataFile.readBytesUntil('\n', buffer, sizeof(buffer));
// Użyj funkcji sscanf do analizy danych w buforze
sscanf(buffer, "%lu,%lu", &BAS_channel_1, &TREBL_channel_1);
dataFile.close();
} else {
lcd.home();
lcd.print("File no exist. Tworzę nowy plik.");
// Jeśli plik nie istnieje, utwórz go i wypełnij zerami
dataFile = SD.open(fileName, FILE_WRITE);
if (dataFile) {
dataFile.print(0);
dataFile.print(",");
dataFile.println(0);
dataFile.close();
// a nastepnie odczytaj
if (dataFile) {
// Odczytaj dane z pliku i przypisz je do zmiennych BAS_channel_1 iTREBL_channel_1
char buffer[30]; // Bufor na odczytane dane
dataFile.readBytesUntil('\n', buffer, sizeof(buffer));
// Użyj funkcji sscanf do analizy danych w buforze
sscanf(buffer, "%lu,%lu", &BAS_channel_1, &TREBL_channel_1);
dataFile.close();
}
lcd.home();
lcd.print("Zapisano OK.");
} else {
lcd.home();
lcd.print("Error open file!");
}
}
lcd.setCursor(0, 0);
lcd.print("Comb nr "); // Czyszczenie starej wartości
lcd.setCursor(8, 0);
lcd.print(nr);
}