Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #6494
    lukas
    Participant

    Hi all

    It is the first time for me, to work with arduino and the rocket scream mini ultra pro.
    I followed the Mini Ultra Pro Hookup Guide and could let the led blink. So I think no problems with IDE or drivers. But I wonder how I can log to the serial monitor…
    I tried following:

    *************
    void setup() {
    // put your setup code here, to run once:
    Serial.begin(115200);
    Serial.println(“Start Sketch”);
    pinMode(13, OUTPUT);
    }

    void loop() {
    for (int i=0; i < 10; i++){
    blinken(i);
    Serial.println(i);
    }
    }

    void blinken(int highTimeFactor){ // Anweisungsblock Start
    digitalWrite(13, HIGH);
    delay(100*highTimeFactor);
    digitalWrite(13, LOW);
    delay(100);
    }
    **********************
    And I tried different baud rates, but I can’t see a log in the serial monitor.

    Can someone give a sugestion?

    Thanks, Lukas

    #6495
    lukas
    Participant

    I found the solution….

    // Need this on Arduino Zero with SerialUSB port (eg RocketScream Mini Ultra Pro)
    #define Serial SerialUSB

    #15852
    Jakob Erber
    Participant

    I have a similar problem. After uploading the application, the port disappears (both on ubuntu 20.04 and on windows10). I can only bring it back by pressing the reset button twice, an than nothing in the serial monitor.
    I use Mini Ultra Pro v2 with radio

    #15853
    Jakob Erber
    Participant

    Solved, see lukas.

Viewing 4 posts - 1 through 4 (of 4 total)
  • You must be logged in to reply to this topic.