⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 irtransceiver.java

📁 单片机上的java虚拟机 用winavr 编译
💻 JAVA
字号:
package nanovm.nibo.drivers;/** * Provides methods to send and receive RC5-IR-codes. * @author Nils Springob */public class IrTransceiver {  /**   * Get last received command   * @return received RC5 code, 0 for no command   */  public static native int getCommand();    /**   * Transmitt command   * @param command RC5 code to transmitt   */  public static native int sendCommand(int command);}

⌨️ 快捷键说明

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