this is my code snippet; void loop() /*----( LOOP: RUNS CONSTANTLY )----*/
{
{
if ((millis() - LastSent) > SendInterval)
{
LastSent = millis();
int DataValue = analogRead(A0);
MyPlot.SendData("stepperValue", DataValue);
The error is the code in "red," I am setting up my program to monitor a POT attached to pin A0, it was working fine under TimePlot function, but when I updated MegunoLinkPro, now I get this error for XYPlotting?
Need some help
