Search found 3 matches

by iaintrainer
Fri May 22, 2026 4:48 pm
Forum: MegunoLink
Topic: Sample ID in text box
Replies: 0
Views: 10676

Sample ID in text box

I would like to have a text box in the interface that the user inputs a "sample ID" into. I have my setup logging the data to a file. So when this file is created I would like to retrieve the text from the text box and then log it to the file, as the first line.

Basically something like this ...
by iaintrainer
Mon Nov 20, 2023 3:57 pm
Forum: MegunoLink
Topic: XYplot nDecimalPlaces only working on Yaxis
Replies: 2
Views: 179718

Re: XYplot nDecimalPlaces only working on Yaxis

Phil,

Yes, changing line 120 in the library to be as shown below solves the problem and gives the same number of decimal places for both X and Y values.

m_rDestination.print(*xValues++, nDecimalPlaces);

Thanks,
Jeff
by iaintrainer
Thu Oct 26, 2023 9:54 pm
Forum: MegunoLink
Topic: XYplot nDecimalPlaces only working on Yaxis
Replies: 2
Views: 179718

XYplot nDecimalPlaces only working on Yaxis

I am plotting data on an XYplot.

Here is the Arduino code that is sending the data. Note the 4 for nDecimalPlaces
void updateUserInterface() {
plotArticulation.SendData("Articulation", wirePullDistance, articulationAngle, 4 );
plotArticulation.SendData("Force", wirePullDistance, force, 4 ...