bot.java

来自「单片机上的java虚拟机 用winavr 编译」· Java 代码 · 共 22 行

JAVA
22
字号
package nanovm.nibo.drivers;/** * Gives access to general information about the Nibo robot. * You will have to call update first to get actual values. * @author Nils Springob */public class Bot {    /**   * update bot data   */  public static native void update();  /**   * get the supply voltage.   * @return ticks for supply voltage   */  public static native int getSupplyVoltage();}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?