Skip to content

Commit

Permalink
Robovox MIDI : adding Pitchwheel for clock control and Modwheel for f…
Browse files Browse the repository at this point in the history
…ilter
  • Loading branch information
deladriere committed Jul 6, 2019
1 parent cdd493a commit 7032594
Show file tree
Hide file tree
Showing 6 changed files with 419 additions and 11 deletions.
3 changes: 2 additions & 1 deletion BossaLoader/BossaLoader.pde
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ use icon ?
scan button
announce real port
check why divide /2 (at home)
windows : export as win32 (even if pc run 64)
*/
import processing.serial.*;
import controlP5.*;
Expand Down Expand Up @@ -157,7 +158,7 @@ void Upload(float theValue) {
String[] param1 = {"say","uploading file", fileName,portName};
// exec(param1);

// String[] param2= {"cmd"," /c","bossac.exe","-e","-w","-v","-R",fileName}; //trying without port on windows
//String[] param2= {"cmd"," /c","bossac.exe","-e","-w","-v","-R",fileName}; //without port on Windows
//
String[] param2= {"./bossac","-e","-w","-v","-R","-p",portName,fileName}; // OSX

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@
+________________/
+ A temporary switch between pin 11 and GND to have it to say the time when pressing the button
+ DS1307 RTC clock on the I2C bus
*/

Expand Down
3 changes: 2 additions & 1 deletion Mea_vox/Software/Mea_Vox_Arduino/Mea_Vox_Arduino.ino
Original file line number Diff line number Diff line change
Expand Up @@ -782,7 +782,8 @@ MCP23008 MyMCP(MCP23008_ADDR);

void setup() {
Wire.begin();

Serial.begin(9600);
Serial.print("let's go");
DS1077_init(18); // pitch via clock control 22= 3.2Mhz 18 = 4Mhz 14 = 5Mhz
MyMCP.writeIODIR(0x0);
pinMode(REQN,INPUT);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,8 @@
*/

#define REQN 2 //
#define AO 4 // A0 is digital pin 14 on MikroBUS 1(we cannot use the label A0 taken by the IDE)
#define WN 3 // A3 is digital pin 17 on MikroBUS 1
#define AO 14 // A0 is digital pin 14 on MikroBUS 1(we cannot use the label A0 taken by the IDE)
#define WN 17 // A3 is digital pin 17 on MikroBUS 1

#define MCP23008_ADDR 0x40
#define CONTINU 1
Expand Down
Loading

0 comments on commit 7032594

Please sign in to comment.