HapticΒΆ

The Haptic class interacts with the haptic driver pin to drive a buzzer or motor. Circuit diagrams for the haptic driver are in section 8 of the product spec.

import com.mbientlab.metawear.module.Haptic;

// Run a buzzer for 500ms
mwBoard.getModule(Haptic.class).startBuzzer((short) 500);

// Run a motor for 1000ms at 50% strength
mwBoard.getModule(Haptic.class).startMotor(50.f, (short) 1000);