Hello!
I’ve came accross with a strange issue while calling ControlMotoDriver using GrovePi library (dll).
</s><i>
</i>sensorController.ControlMotoDriver(true);
public void ControlMotoDriver(Boolean onoff)
{
if (onoff)
{
motor.drive1(100);
motor.drive2(100);
} else
{
motor.drive1(0);
motor.drive2(0);
}
}<e>
Calling this method causes the whole application to crash (restart). Is there any known issues around that? Is there any possiblity that application is crashing because using wrong port on the GrovePi+?
Thank your for your kind help,
Nace