Re: [Freevo-users] event interface

2007-07-10 Thread Duncan Webb
Frank [Antispam account] wrote:
> Can someone elaborate why use the event interface over lircd?
> (not judging, just curious what the benefits are ;)

I use lirc with the dev/input driver which, in fact uses the event
interface. I prefer lirc as it is easier to test, you can break it down
to lirc events and freevo events but has more to configure.

Duncan


-
This SF.net email is sponsored by DB2 Express
Download DB2 Express C - the FREE version of DB2 express and take
control of your XML. No limits. Just data. Click to get it now.
http://sourceforge.net/powerbar/db2/
___
Freevo-users mailing list
Freevo-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/freevo-users


Re: [Freevo-users] event interface

2007-07-09 Thread Jaap Struyk
Ryan Roth schreef:

> Yeah that part of the code is always kind of tricky.  Those two function 
> exist as:
> 
> MENU_GOTO_TVGUIDE
> 
> MENU_GOTO_RADIO
> 
> it is all in event.py & menu.py

tv guide works fine but radio is trowing me the default music menu.
(probebly since I don't have a radio ;)

if event == MENU_GOTO_RADIO:
self.goto_media_menu("audio.radio")
return

Wich plugin plays the webradio fxd file? (nothing like audio.webradio
excist)
-- 
Groetjes Japie

-
This SF.net email is sponsored by DB2 Express
Download DB2 Express C - the FREE version of DB2 express and take
control of your XML. No limits. Just data. Click to get it now.
http://sourceforge.net/powerbar/db2/
___
Freevo-users mailing list
Freevo-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/freevo-users


Re: [Freevo-users] event interface

2007-07-09 Thread Ryan Roth
Yeah that part of the code is always kind of tricky.  Those two function 
exist as:

MENU_GOTO_TVGUIDE

MENU_GOTO_RADIO

it is all in event.py & menu.py




Duncan Webb wrote:
> Jaap Struyk wrote:
>   
>> Jaap Struyk schreef:
>>
>> 
>>> It is working but not all buttons on my remote are configured
>>>   
>> I figured it out and added a page in the wiki on how to make it work:
>> http://freevo.sourceforge.net/cgi-bin/doc/Linux_event_interface
>>
>> One issue still remains, I like to open the tv guide on pressing the
>> guide button and webradio on pressing radio.
>> Is that possible?
>> 
>
> Possibly, yes but not programmed in the code. Ryan Roth is the expert in
> this part of the code.
>
> Duncan
>
>
> -
> This SF.net email is sponsored by DB2 Express
> Download DB2 Express C - the FREE version of DB2 express and take
> control of your XML. No limits. Just data. Click to get it now.
> http://sourceforge.net/powerbar/db2/
> ___
> Freevo-users mailing list
> Freevo-users@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/freevo-users
>
>   

-
This SF.net email is sponsored by DB2 Express
Download DB2 Express C - the FREE version of DB2 express and take
control of your XML. No limits. Just data. Click to get it now.
http://sourceforge.net/powerbar/db2/
___
Freevo-users mailing list
Freevo-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/freevo-users


Re: [Freevo-users] event interface

2007-07-09 Thread Frank [Antispam account]

Can someone eleborate why use the event interface over lircd?
(not judging, just curious what the benefits are ;)

Thanks,
Frank
 

-Oorspronkelijk bericht-
Van: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] Namens Stephen Rowles
Verzonden: 09 July 2007 21:14
Aan: freevo-users@lists.sourceforge.net
Onderwerp: Re: [Freevo-users] event interface

Jaap Struyk wrote:
> Jaap Struyk schreef:
>
>   
>> It is working but not all buttons on my remote are configured
>> 
>
> I figured it out and added a page in the wiki on how to make it work:
> http://freevo.sourceforge.net/cgi-bin/doc/Linux_event_interface
>
> One issue still remains, I like to open the tv guide on pressing the 
> guide button and webradio on pressing radio.
> Is that possible?
>   
for TV guide at least you want this:

EVENTS['menu']['GUIDE'] = Event(MENU_GOTO_TVGUIDE)

and from greping I guess the radio is:

EVENTS['menu']['RADIO'] = Event(MENU_GOTO_RADIO)


-
This SF.net email is sponsored by DB2 Express Download DB2 Express C - the
FREE version of DB2 express and take control of your XML. No limits. Just
data. Click to get it now.
http://sourceforge.net/powerbar/db2/
___
Freevo-users mailing list
Freevo-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/freevo-users


-
This SF.net email is sponsored by DB2 Express
Download DB2 Express C - the FREE version of DB2 express and take
control of your XML. No limits. Just data. Click to get it now.
http://sourceforge.net/powerbar/db2/
___
Freevo-users mailing list
Freevo-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/freevo-users


Re: [Freevo-users] event interface

2007-07-09 Thread Stephen Rowles
Jaap Struyk wrote:
> Jaap Struyk schreef:
>
>   
>> It is working but not all buttons on my remote are configured
>> 
>
> I figured it out and added a page in the wiki on how to make it work:
> http://freevo.sourceforge.net/cgi-bin/doc/Linux_event_interface
>
> One issue still remains, I like to open the tv guide on pressing the
> guide button and webradio on pressing radio.
> Is that possible?
>   
for TV guide at least you want this:

EVENTS['menu']['GUIDE'] = Event(MENU_GOTO_TVGUIDE)

and from greping I guess the radio is:

EVENTS['menu']['RADIO'] = Event(MENU_GOTO_RADIO)


-
This SF.net email is sponsored by DB2 Express
Download DB2 Express C - the FREE version of DB2 express and take
control of your XML. No limits. Just data. Click to get it now.
http://sourceforge.net/powerbar/db2/
___
Freevo-users mailing list
Freevo-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/freevo-users


Re: [Freevo-users] event interface

2007-07-09 Thread Duncan Webb
Jaap Struyk wrote:
> Jaap Struyk schreef:
> 
>> It is working but not all buttons on my remote are configured
> 
> I figured it out and added a page in the wiki on how to make it work:
> http://freevo.sourceforge.net/cgi-bin/doc/Linux_event_interface
> 
> One issue still remains, I like to open the tv guide on pressing the
> guide button and webradio on pressing radio.
> Is that possible?

Possibly, yes but not programmed in the code. Ryan Roth is the expert in
this part of the code.

Duncan


-
This SF.net email is sponsored by DB2 Express
Download DB2 Express C - the FREE version of DB2 express and take
control of your XML. No limits. Just data. Click to get it now.
http://sourceforge.net/powerbar/db2/
___
Freevo-users mailing list
Freevo-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/freevo-users


Re: [Freevo-users] event interface

2007-07-09 Thread Jaap Struyk
Jaap Struyk schreef:

> It is working but not all buttons on my remote are configured

I figured it out and added a page in the wiki on how to make it work:
http://freevo.sourceforge.net/cgi-bin/doc/Linux_event_interface

One issue still remains, I like to open the tv guide on pressing the
guide button and webradio on pressing radio.
Is that possible?
-- 
Groetjes Japie

-
This SF.net email is sponsored by DB2 Express
Download DB2 Express C - the FREE version of DB2 express and take
control of your XML. No limits. Just data. Click to get it now.
http://sourceforge.net/powerbar/db2/
___
Freevo-users mailing list
Freevo-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/freevo-users


[Freevo-users] event interface

2007-07-08 Thread Jaap Struyk
Hello,

I recently upgraded to 1.7.x (finaly) and ran into the EVENT_DEVS
option. (so I finaly can get rid of lirc)
It is working but not all buttons on my remote are configured, I know I
can map buttons to events with EVENTMAP['KEY_F'] = 'SELECT' but how do I
figure out wich button is sending wich event?
-- 
Groetjes Japie

-
This SF.net email is sponsored by DB2 Express
Download DB2 Express C - the FREE version of DB2 express and take
control of your XML. No limits. Just data. Click to get it now.
http://sourceforge.net/powerbar/db2/
___
Freevo-users mailing list
Freevo-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/freevo-users