2 * audio - audio resource for zavai
4 * Copyright (C) 2009 Enrico Zini <enrico@enricozini.org>
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 2 of the License, or
9 * (at your option) any later version.
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
16 * You should have received a copy of the GNU General Public License
17 * along with this program; if not, write to the Free Software
18 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
26 public class Audio: zavai.Service
28 protected dynamic DBus.Object audiodev;
29 protected dynamic DBus.Object vibdev;
33 Object(name: "audio");
34 audiodev = zavai.registry.sbus.get_object(
35 "org.freesmartphone.odeviced",
36 "/org/freesmartphone/Device/Audio",
37 "org.freesmartphone.Device.Audio");
38 vibdev = zavai.registry.sbus.get_object(
39 "org.freesmartphone.odeviced",
40 "/org/freesmartphone/Device/LED/neo1973_vibrator",
41 "org.freesmartphone.Device.LED");
44 public void notify_alarm(zavai.clock.Alarm a)
46 // Wiggle screen to turn on backlight
47 zavai.ui.power.backlight.wiggle();
49 // Method does not exist in this frameworkd
50 vibdev.BlinkSeconds(5, 500, 200);
52 zavai.log.error("Cannot blink vibrator: " + e.message);
58 public Audio audio = null;
64 zavai.registry.register_service(audio);