rkistner / arcore

MIDI-USB Support for Arduino
Other
192 stars 33 forks source link

Getting error on the first example. #11

Open Rideonbeat opened 10 years ago

Rideonbeat commented 10 years ago

Hi, first i really want to say this implementation is great, thanks for it, but i'm getting the next error on your first example, do you know why?

Arduino: 1.5.4 (Mac OS X), Board: "Arduino Leonardo (arcore)"

core.a(main.cpp.o): In function main': /Users/Rob/Documents/Arduino/hardware/arcore-master/avr/cores/arcore/main.cpp:11: undefined reference tosetup'

rkistner commented 10 years ago

I'm guessing it's because the code is missing the setup method:

void setup() {
}

I updated the examples in the readme to include the method.

Rideonbeat commented 10 years ago

Yes, that's the problem, thanks. Sorry but I´m very new with arduino, now i'm working to know how to modify the code to send & receive other kind of midi messages. This is my first mod to send CC messages. captura de pantalla 2014-07-07 a la s 16 51 28

Rideonbeat commented 10 years ago

Now i´m working on the read of a rotary encoder, this is my first step, the encoder it`s working as expected. captura de pantalla 2014-07-12 a la s 10 55 41

I hope this could be useful to other people.