I have first code in Arduino, but when I click to display the results through the serial monitor, so he does not show any bye. Why?
void setup() {
// initialize serial communication at 9600 bits per second:
Serial.begin(9600);
}
// the loop routine runs over and over again forever:
void loop() {
Serial.println("hello");
delay(1); // delay in between reads for stability
}