The Following 54 Users Say Thank You to qwerty12 For This Useful Post: | ||
absolofdoom, Aisu, alephito, allnameswereout, AlMehdi, Apoc, apollovy, arjunkumar87, attila77, avel, Bec, bongo, bunanson, cheve, choubbi, cipper, conny, Corwin, Dark_Angel85, ericcmi, hoxtonhopper, iKneaDough, jcharpak, jchord, joerg_rw, kevloral, lm2, luso, MaLKaV, MrGrim, mrklaw, mtron, musculus, mveplus, nux, Rider, russo_br, sachin007, sakamoto, slender, smman, spirytsick, stlpaul, tanago, TheGogmagog, thopiekar, thp, tz1, udaychaitanya16, xtian, Yann Benigot, ZogG |
![]() |
2008-07-12
, 21:21
|
|
Posts: 716 |
Thanked: 236 times |
Joined on Dec 2007
|
#2
|
signal sender=:1.0 -> dest=(null destination) path=/com/nokia/osso_hp_ls_controller; interface=com.nokia.osso_hp_ls_controller.headset; member=button_pressed signal sender=:1.0 -> dest=(null destination) path=/com/nokia/osso_hp_ls_controller; interface=com.nokia.osso_hp_ls_controller.headset; member=button_released
The Following User Says Thank You to tz1 For This Useful Post: | ||
![]() |
2008-07-12
, 21:25
|
|
Posts: 4,274 |
Thanked: 5,358 times |
Joined on Sep 2007
@ Looking at y'all and sighing
|
#3
|
![]() |
2008-07-13
, 16:11
|
|
Posts: 716 |
Thanked: 236 times |
Joined on Dec 2007
|
#4
|
![]() |
2008-07-14
, 01:48
|
Posts: 4,556 |
Thanked: 1,624 times |
Joined on Dec 2007
|
#5
|
![]() |
2008-07-14
, 02:19
|
Posts: 22 |
Thanked: 0 times |
Joined on Dec 2007
|
#6
|
![]() |
2008-07-26
, 23:20
|
|
Posts: 1,648 |
Thanked: 2,122 times |
Joined on Mar 2007
@ UNKLE's Never Never Land
|
#7
|
The Following User Says Thank You to Saturn For This Useful Post: | ||
![]() |
2008-07-27
, 20:39
|
Posts: 21 |
Thanked: 4 times |
Joined on Apr 2008
|
#8
|
![]() |
2008-07-28
, 06:09
|
Posts: 21 |
Thanked: 4 times |
Joined on Apr 2008
|
#9
|
#!/usr/bin/env python2.5 from dbus.mainloop.glib import DBusGMainLoop DBusGMainLoop(set_as_default=True) import dbus import gobject import os def main(): dbus_loop = gobject.MainLoop() bus = dbus.SystemBus() def on_button_pressed (sender=None): os.system('run-standalone.sh dbus-send --dest=com.nokia.osso_media_server /com/nokia/osso_media_server com.nokia.osso_media_server.music.pause 2> /dev/null 1> /dev/null') headset = bus.get_object('com.nokia.osso_hp_ls_controller', '/com/nokia/osso_hp_ls_controller') headset_iface = dbus.Interface(headset, dbus_interface='com.nokia.osso_hp_ls_controller.headset') headset_iface.connect_to_signal('button_pressed', on_button_pressed, sender_keyword='sender') dbus_loop.run() if __name__ == "__main__": main()
![]() |
2008-10-14
, 06:54
|
Posts: 30 |
Thanked: 2 times |
Joined on Jan 2008
@ The Hague, The Netherlands
|
#10
|
![]() |
Tags |
ad-54/hs-45, headset button |
|
Download: Attached.
Install instructions :
Credits:
Media players supported by the default configuration:
"Configurations" available:
Default - This config uses dbus-send to send a pause message to the osso-media-server. So this config would only work with those players that use osso-media-server.
MPlayer - This one uses key-presses sent via xte to manipulate mplayer. Pressing the headset button will send a Return key press and pause the playing video.
Your Own. - Make your own command run when you press the button. If your program can be controlled by dbus, run dbus-monitor and make a dbus-send command. Or if by key presses, find out which one and make xte send that key press. Also, for example, on the bitsmithy website, there is a command to run flite to speak the time.
The original script to do this with a Bluetooth headset used xte to control the built in media player. I replaced that xte command with the dbus one as it didn't require focus to be on the media player window.
I don't really have an easy way to switch so edit /usr/bin/hsetctrl.py as root, manually. I've put comments in the file.
*For canola, it only works for playing/pausing the music by default as that uses osso-media-server. Movies won't work for example because that uses mplayer. But it wouldn't be hard to find the key press event and make the headset-control app run that instead.
(BTW. If anyone is into headset modding, grab the kernel source and look at retu-headset.c)
(If you get unable to install (it probably won't say that but for me it does (with EVERY program that adds something to init), do this:
sudo gainroot
mv /etc/rc2.d/S99hsetctrl /etc/rc2.d/S99hsetctrl1
apt-get -f install
mv /etc/rc2.d/S99hsetctrl1 /etc/rc2.d/S99hsetctrl
)
EDIT: Version 0.2 uploaded. Little bugs fixed.
Last edited by qwerty12; 2008-06-25 at 13:41.