Problem with new Update 6/5/2017
Posted: Mon Jun 05, 2017 2:28 pm
I am getting this error; no matching function for call to 'XYPlot::SendData(const char [13], int&)'
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
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