Arduino Uno WiFi Rev 2 and third party serial port monitors

Hello,
I am trying to use Excel data streamer to log data coming from the Arduino Uno WIFI rev 2. My program works in the IDE serial monitor. When I connect the board to data streamer I get no data coming through. I have an old Uno r3 that I have uploaded my program to and data streamer works fine with that board. Just wondering if anyone has successfully used data streamer and Uno WIFI rev 2. Code below:

int x=0;
void setup() { 
  Serial.begin(9600);  
}

void loop() {
  
    x=x +1;
  if(x>100){
    x=0;
  }
    Serial.print(x);
    Serial.println();
    
  delay(1000);                       
    
 
}

Thanks!

What is a data streamer ?

Please provide a link to one

its an add in for Microsoft Excel.

OK, I have found it, enabled it and it works

What settings are you using in Data Streamer ?

This is working for me

I am sorry to ask this, but have you started the data stream after connecting to the Arduino ?

@bbubs, your topic has been moved to a more suitable location on the forum.

yes, I connect the Arduino then hit start data. One thing I noticed is that my tx led does not light up on my wifi rev 2 and on my uno r3 it flashes every time it sends data. Also the tx led on the wifi rev 2 lights up when using the ide serial monitor.

Sorry, I am out of ideas as until a couple of hours ago I did not know that this even existed and I also know nothing about the wifi rev 2 board

lol thanks for trying!

This topic was automatically closed 120 days after the last reply. New replies are no longer allowed.