Lynx Modules
Representing the control hub in your code
Resources
Bulk Reading
Implementation
Off Mode
// Paste this where you initialize your hardware
void initHardware(){
// Always setup your lynx modules before your hardware.
List<LynxModule> allHubs = hardwareMap.getAll(LynxModule.class);
for (LynxModule hub : allHubs) {
hub.setBulkCachingMode(LynxModule.BulkCachingMode.OFF);
}
initMotors();
initServos();
}Auto Mode
Manual Mode
GM0:
Common Error When Using Manual Mode.
Measuring Voltage
Getting Battery Voltage
Measuring Current
Last updated