本文整理汇总了Java中com.qualcomm.hardware.HardwareFactory.setXmlInputStream方法的典型用法代码示例。如果您正苦于以下问题:Java HardwareFactory.setXmlInputStream方法的具体用法?Java HardwareFactory.setXmlInputStream怎么用?Java HardwareFactory.setXmlInputStream使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类com.qualcomm.hardware.HardwareFactory
的用法示例。
在下文中一共展示了HardwareFactory.setXmlInputStream方法的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: requestRobotSetup
import com.qualcomm.hardware.HardwareFactory; //导入方法依赖的package包/类
private void requestRobotSetup() {
if (controllerService == null) return;
FileInputStream fis = fileSetup();
// if we can't find the file, don't try and build the robot.
if (fis == null) { return; }
HardwareFactory factory;
// Modern Robotics Factory for use with Modern Robotics hardware
HardwareFactory modernRoboticsFactory = new HardwareFactory(context);
modernRoboticsFactory.setXmlInputStream(fis);
factory = modernRoboticsFactory;
eventLoop = new FtcEventLoop(factory, new FtcOpModeRegister(), callback, this);
controllerService.setCallback(callback);
controllerService.setupRobot(eventLoop);
passReceivedUsbAttachmentsToEventLoop();
}
示例2: requestRobotSetup
import com.qualcomm.hardware.HardwareFactory; //导入方法依赖的package包/类
private void requestRobotSetup() {
if (controllerService == null) return;
FileInputStream fis = fileSetup();
// if we can't find the file, don't try and build the robot.
if (fis == null) {
return;
}
HardwareFactory factory;
// Modern Robotics Factory for use with Modern Robotics hardware
HardwareFactory modernRoboticsFactory = new HardwareFactory(context);
modernRoboticsFactory.setXmlInputStream(fis);
factory = modernRoboticsFactory;
eventLoop = new FtcEventLoop(factory, new FtcOpModeRegister(), callback, this);
controllerService.setCallback(callback);
controllerService.setupRobot(eventLoop);
}
示例3: requestRobotSetup
import com.qualcomm.hardware.HardwareFactory; //导入方法依赖的package包/类
private void requestRobotSetup() {
if (controllerService == null) return;
FileInputStream fis = fileSetup();
// if we can't find the file, don't try and build the robot.
if (fis == null) { return; }
HardwareFactory factory;
// Modern Robotics Factory for use with Modern Robotics hardware
HardwareFactory modernRoboticsFactory = new HardwareFactory(context);
modernRoboticsFactory.setXmlInputStream(fis);
factory = modernRoboticsFactory;
eventLoop = new FtcEventLoop(factory, new FtcOpModeRegister(), callback, this);
controllerService.setCallback(callback);
controllerService.setupRobot(eventLoop);
}
示例4: requestRobotSetup
import com.qualcomm.hardware.HardwareFactory; //导入方法依赖的package包/类
private void requestRobotSetup() {
if (controllerService == null) return;
FileInputStream fis = fileSetup();
// if we can't find the file, don't try and build the robot.
if (fis == null) { return; }
HardwareFactory factory;
// Modern Robotics Factory for use with Modern Robotics hardware
HardwareFactory modernRoboticsFactory = new HardwareFactory(context);
modernRoboticsFactory.setXmlInputStream(fis);
factory = modernRoboticsFactory;
eventLoop = new XtensibleEventLoop(factory, new FtcOpModeRegister(), callback, this);
controllerService.setCallback(callback);
controllerService.setupRobot(eventLoop);
}