/**
 * Java file created by JControl/IDE
 *
 * @author RSt
 * @date 08.10.04 17:21
 *
 */
import jcontrol.io.Buzzer;

public class SimpleSound {

	private static Buzzer buzz;

    public SimpleSound() {
		  buzz = new Buzzer();
    }

    public static void main(String[] args){
    	new SimpleSound();
    	buzz.on(3000, 1000); // 3000Hz for 1000ms
    	for(;;);
    }
}
