Connecting Serial-CHOP with Teensy3.6

Hi guys!

I’m trying to send audio data from an audiomovie-CHOP over serial to my Teensy3.6.
I can’t seem to receive any of the information on my teensy. My serial just says 0 return but doesn’t say its not connecting.

For serial-CHOP:
State: Value Change
Port: Com3
Baud Rate: 9600

Teensy Code:

[code]void setup() {
Serial.begin(9600);
Serial.print(“Begin program”);
}

void loop() {
int incomingByte = 0;
if(Serial.available() > 0){
incomingByte = Serial.read();

Serial.print("I received: ");
Serial.println(incomingByte, DEC);

}
}[/code]

Is there something I’m doing wrong? I checked a couple of times in device manager and in the Arduino IDE so I’m pretty sure that my teensy is connected to com3.

Thanks!
Jip

Hi Serial CHOP’s ability to format incoming or outcoming data is pretty limited.
Have you considered using a Serial DAT instead?

This page describes a typical setup:
derivative.ca/wiki099/index … le=Arduino

You’ll have to issue your own .send() or .sendBytes() commands from the serial DAT,
but you can control exactly how the bytes are sent.

Cheers,
Rob