Hi,
I have a question. I tested the Grove-I2C_Motor_Driver_V1.3 with the Seeedino Lotus and the Wio Terminal. Both with the same “Example sketch for Grove - I2C Motor Driver v1.3”.
#include "Grove_I2C_Motor_Driver.h"
// default I2C address is 0x0f
#define I2C_ADDRESS 0x0f
void setup() {
Serial.begin(9600);
Motor.begin(I2C_ADDRESS);
}
void loop() {
// Set speed of MOTOR1, Clockwise, speed: -100~100
Motor.speed(MOTOR1, 150);
// Set speed of MOTOR2, Anticlockwise
Motor.speed(MOTOR2, -170);
delay(2000);
}
The Grove-I2C_Motor_Driver_V1.3 is working with the Seeedino Lotus but is not working the Wio Terminal.
Why?
Best Reagards,
Kay