sound.java

来自「专业汽车级嵌入式操作系统OSEK的源代码」· Java 代码 · 共 70 行

JAVA
70
字号
package lejos.nxt;/** * NXT sound routines. * Only playTone() works. */public class Sound{  private Sound()  {  }  /**   * Play a system sound - not yet implemented.   * <TABLE BORDER=1>   * <TR><TH>aCode</TH><TH>Resulting Sound</TH></TR>   * <TR><TD>0</TD><TD>short beep</TD></TR>   * <TR><TD>1</TD><TD>double beep</TD></TR>   * <TR><TD>2</TD><TD>descending arpeggio</TD></TR>   * <TR><TD>3</TD><TD>ascending  arpeggio</TD></TR>   * <TR><TD>4</TD><TD>long, low beep</TD></TR>   * <TR><TD>5</TD><TD>quick ascending arpeggio</TD></TR>   * </TABLE>   */  public static void systemSound (boolean aQueued, int aCode)  {  }  /**   * Beeps once - not yet implemented.   */  public static void beep()  {    systemSound (true, 0);  }  /**   * Beeps twice - not yet implemented.   */  public static void twoBeeps()  {    systemSound (true, 1);  }  /**   * Downward tones - not yet implemented.   */  public static void beepSequence()  {    systemSound (true, 2);  }  /**   * Low buzz - not yet implemented.   */  public static void buzz()  {    systemSound (true, 4);  }  /**   * Plays a tone, given its frequency and duration. Frequency is audible from about 31 to 2100 Hertz. The   * duration argument is in hundreds of a seconds (centiseconds, not milliseconds) and is truncated   * at 256, so the maximum duration of a tone is 2.56 seconds.   * @param aFrequency The frequency of the tone in Hertz (Hz).   * @param aDuration The duration of the tone, in centiseconds. Value is truncated at 256 centiseconds.   */  public static native void playTone (int aFrequency, int aDuration);}

⌨️ 快捷键说明

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