projectgus / hairless-midiserial

Lightweight cross-platform GUI-based MIDI/Serial bridge
https://projectgus.github.io/hairless-midiserial
Other
214 stars 72 forks source link

error message #45

Open vjdobermann opened 7 years ago

vjdobermann commented 7 years ago

Hi everybody, I'm trying to use Hairless and I've got an error message "Error: got unexpected data byte 0x4b." see my capture screen here https://www.dbr-prod.ch/images/capture_hairless2.png

the code in the arduino is the basic one founded in the video tutorial : `#include

define LED 13

// Created and binds the MIDI interface to the default hardware Serial port MIDI_CREATE_DEFAULT_INSTANCE();

void setup() {

pinMode(LED, OUTPUT);
MIDI.begin(MIDI_CHANNEL_OFF); // pas d'entrée midi

}

void loop() { digitalWrite(LED, 1); MIDI.sendNoteOn(60, 60, 1); delay(1000); MIDI.sendNoteOff(60, 0, 1); delay(1000); }`

could someone help me please ?

Great thanks in advance

SkinyMonkey commented 7 years ago

Could be:

https://github.com/projectgus/hairless-midiserial/issues/16

Check it.

JiffiPop commented 6 years ago

Hey, did you manage to fix this? If you did, how?

vjdobermann commented 6 years ago

Hey, do you have the same issue ? I was working on this project at summer 2017^^ I've to dig my cave to find how this issue has been solved xD

JiffiPop commented 6 years ago

Yes I am having the same issue, how'd your project go? I'm extremely new to arduino, so I am using somebody else's code, but I still cannot get it to work.

vjdobermann commented 6 years ago

ok, I'll try to retrieve the files and keep you in touch