1

I connect Arduino Yun to my Computer with WiFi. I was able to get the IP address of my Arduino Yun. However, when I try to print something. It seems to not work at all. The following code is the one that I try:

void setup() {
 Serial.begin(9600); 
}
void loop() { 
 // print labels 
 Serial.print("NO FORMAT"); 
 delay(100);
}

I did not get any kind of error. However, when I open the Serial Monitor, it shows nothing at all. I try to use the same code with Arduino Uno. It works fine.

per1234
4,2782 gold badges23 silver badges43 bronze badges
asked Nov 28, 2014 at 8:25
1
  • double check the port, also check in Device Manager if there is the Yun in Ports. It might be the missing driver Commented Nov 28, 2014 at 9:12

1 Answer 1

3

When using the Yun over wifi, you cannot user Serial, you need to use Bridge Console object. Serial is bound to the usb cable.

Give a spin to ConsoleRead example.

answered Nov 28, 2014 at 9:35
1

Your Answer

Draft saved
Draft discarded

Sign up or log in

Sign up using Google
Sign up using Email and Password

Post as a guest

Required, but never shown

Post as a guest

Required, but never shown

By clicking "Post Your Answer", you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.