Search found 2 matches

by nicolamiele
Thu Feb 01, 2024 11:14 pm
Forum: MegunoLink
Topic: XYPlot Cursor Control
Replies: 1
Views: 454

Re: XYPlot Cursor Control

Nevermind!

I found a brutal solution:

Code: Select all

Serial.print("{XYPLOT:MC2|C-POS|T1|0,");
        Serial.print((CommuteTime-T1Mc2));
            Serial.println("}");
Print an ASCII comma and my avribles after.
by nicolamiele
Thu Feb 01, 2024 7:21 pm
Forum: MegunoLink
Topic: XYPlot Cursor Control
Replies: 1
Views: 454

XYPlot Cursor Control

Hi, I'm try to control some cursors on XYplot with an arduino via serial. I have an issue with the command: "PlotterMC2.SetCursorPosition(F("T1"),T1Mc2YY);" where "T1Mc2YY" is a float variable from 0.0 t 1.0 (as the guidelines ask). Here is the command in serial plot &q...