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.
1 Answer 1
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.
-
Moreover, can you take a look at my other question with Arduino Yun?arduino.stackexchange.com/questions/5239/…MakaraPr– MakaraPr2014年11月28日 20:33:54 +00:00Commented Nov 28, 2014 at 20:33
Device Manager
if there is theYun
inPorts
. It might be the missing driver