I’ve been playing with the g4p text box and the knob to send serial data to an Arduino but have run into a problem with char values larger than 127. Is there another method to serial write int values? I know that 170 is beyond what a char value can be.
This what I’m doing:
int my_value = knob1.getValueI();
myPort.write(char(my_value));
In this case the int my_value can be between 10 and 170.