Example #1
0
 var playEventAudio = function() {
     if (config.eventAudioFile) {
         commands.play(config.eventAudioFile);
     }
 };
Example #2
0
 googleCalendarScheduler.on('event', function(ev) {
     commands.play(config.eventAudioFile);
     commands.say('Achtung, achtung, es findet nun statt');
     commands.say(ev.summary);
 });
Example #3
0
 .on('new', function(item) {
     toggleUsbPower('loop');
     commands.play(config.audio.new);
     commands.say(item.fields.summary);
 })