Hi everyone,
I’m experiencing a very weird behaviour on the MeAuriga: when I try to switch on PORT_4, the MeStepper on PORT_1 starts to work.
This is the function:
#include "MeAuriga.h"
#include <SoftwareSerial.h>
MeStepper x_stepper(PORT_1);
MePort pump2(PORT_4);
void setup()
{
Serial.begin(9600);
pump2.dWrite1(HIGH);
Serial.println("end setup");
}
Does anyone know the reason of this behaviour? After few seconds the x_stepper start to run without even defining the move method.
Many thanks,
Diego