Hiya,
So im testing my teletype with @M4ngu great Sweet Sixteen and im having some kind of issue.
With all faders set to unipolar ( range 0 to 8196) when i type:
FADER 1 (to 8) i get reading from 0 to 8196
but when i type:
FADER 9 (to 16) i get reading from 0 to 16380
Any ideas what do i need to change in the code?
Id have a looked into it with arduino and have changed the tx helper files, so the sweet sixteen behaves like a 16n:
// initialize the basic values for the TXi
int TxHelper::Ports = 8;
int TxHelper::Modes = 3;
bool TxHelper::W0 = true;
to
// initialize the basic values for the TXi
int TxHelper::Ports = 16;
int TxHelper::Modes = 4;
bool TxHelper::W0 = true;
If i change this value communication breaks between the two devices, and it doesnt work at all.
In fact it doesnt work on any cased if i upload from arduino.
Im using serial + midi, since if i only use serial i get compile errors since the module can output midi and there are arguments that define it inside the ino file.
The one that has communication but with messed up ranges is this hex that i load into the teensy directly:
Any one run into similar problems or have any ideas on what to modify??
Much appreciated!