Problems with Bluefruit EZ-link shield
Re: Problems with Bluefruit EZ-link shield
Re: Problems with Bluefruit EZ-link shield
Re: Problems with Bluefruit EZ-link shield
Re: Problems with Bluefruit EZ-link shield
Re: Problems with Bluefruit EZ-link shield
Re: Problems with Bluefruit EZ-link shield
Re: Problems with Bluefruit EZ-link shield
Re: Problems with Bluefruit EZ-link shield
/*
Serial loopback
*/
// the setup routine runs once when you press reset:
void setup() {
Serial.begin(9600);
while (!Serial) ;
Serial.print("Hello, World");
}
void loop() {
if (Serial.available())
Serial.write(Serial.read());
}
Re: Problems with Bluefruit EZ-link shield
Re: Problems with Bluefruit EZ-link shield
Re: Problems with Bluefruit EZ-link shield
Re: Problems with Bluefruit EZ-link shield
Re: Problems with Bluefruit EZ-link shield
Re: Problems with Bluefruit EZ-link shield