📄 realrobotcontrol.java
字号:
/**************************************************************************//* In this package the real robot is controlled and the C-file which does *//* this is integrated. *//**************************************************************************/package RealRobot;final class RealRobotControl { private static SerialOut s = new SerialOut(); public static void move(int arm, int pos) { s.moverobo(arm, pos, 1);// 1 means 'execute a movement' } public static void openFile() { s.moverobo(66, 66, 0);// 0 means 'open file', 66 is a dummy } public static void closeFile() { s.moverobo(66, 66, 2);// 2 means 'close file', 66 is a dummy } }
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -