Help help bluetooth headset need developer

Hello everybody,
I haven't any knowledge in to developing and i am here to find a developer who can help me or develop something for me,
i'm actually using a bluetooth headset (jabra) with my macbook (10.5.2) .
the headset profile works perfect , i can choose in my sound preference panel the headset as input or output, but the thing is that i don't care about the audio part what i am looking for is to use the headset buttons ( volume up/down, on/off) but the headset doesn't have any HID profile...
So what i need is a special driver or little software that keystroke for each buttons or send HID values as a gamepad or mouse do , then it will be easy for me to get the values in the sofware i use (max/msp)..
If i look in the preferences panel/sound with the headset coreaudio choosed i can see the volume bar moving when i use the volume buttons of the headset, maybe its possible to do it with applescript too? ( i will post that message in the Applescript's section too).
If anyone can help ..
million of thanks
freeka

Ok, there's some strange things happening with bluetooth these days it seems. I had a lot of trouble setting up a connection to my phone, even after following avery bit of advice I found on the net.
But somehow I found a way, and now it works. I had to do some things not documented anywhere, excepte from some obscure places from 2003 etc.
The most significant problem I encountered was that my phone would never find my computer, even though I set pscan and iscan enabled.
Here's a line of code I found that fixed the problem for me. It could work for you too, since your problem looks exactly like the things I saw when the phone couldn't see my computer.
dbus-send --system --dest=org.bluez /org/bluez/hci0
org.bluez.Adapter.SetMode string:discoverable
I write this after the bluetooth system has started.
Hope it helps 

Similar Messages

  • Need help pairing bluetooth headset [totally solved]

    OK, I have the two following pieces of hardware:
    Motorola H350 Headset
    ASUS Bluetooth USB Dongle, using a CSR radio
    I'm trying to use btsco to use my bluetooth headset. I haven't gotten it to work yet. What I'm posting here is what I'm doing, my config files: and the results I get.
    /etc/bluetooth/rfcomm.conf:
    # RFCOMM configuration file.
    rfcomm0 {
    # Automatically bind the device at startup
    bind yes;
    # Bluetooth address of the device
    device 00:0C:55:AA:A3:A9;
    # RFCOMM channel for the connection
    channel 1;
    # Description of the connection
    comment "Motorola H350 Headset";
    /etc/bluetooth/hcid.conf
    # HCI daemon configuration file.
    # HCId options
    options {
    # Automatically initialize new devices
    autoinit yes;
    # Security Manager mode
    # none - Security manager disabled
    # auto - Use local PIN for incoming connections
    # user - Always ask user for a PIN
    security auto;
    # Pairing mode
    # none - Pairing disabled
    # multi - Allow pairing with already paired devices
    # once - Pair once and deny successive attempts
    pairing multi;
    # Default PIN code for incoming connections
    passkey "0000";
    # Default settings for HCI devices
    device {
    # Local device name
    # %d - device id
    # %h - host name
    name "BlueZ (%d)";
    # Local device class
    class 0x3e0100;
    # Default packet type
    #pkt_type DH1,DM1,HV1;
    # Inquiry and Page scan
    iscan enable; pscan enable;
    # Default link mode
    # none - no specific policy
    # accept - always accept incoming connections
    # master - become master on incoming connections,
    # deny role switch on outgoing connections
    lm accept;
    # Default link policy
    # none - no specific policy
    # rswitch - allow role switch
    # hold - allow hold mode
    # sniff - allow sniff mode
    # park - allow park mode
    lp rswitch,hold,sniff,park;
    I anonymized the MAC of the Bluetooth headset because otherwise, somebody would probably yell at me for the security vulnerability. Because with that MAC, someone could uh ..... they could ...... uhm ...... well I anonymized it anyways.
    So without further ado, here's what I do to try and get my bluetooth headset going:
    [root@yvonne bluetooth]# lsmod | grep ^snd_bt_sco
    snd_bt_sco 14028 0
    [root@yvonne bluetooth]#
    That ensures I've got the appropriate module loaded.
    [root@yvonne bluetooth]# ps ax | fgrep "hcid
    > dbus"
    2987 ? Ss 0:00 /usr/bin/dbus-daemon --system
    3000 ? Ss 0:00 /usr/sbin/hcid -f /etc/bluetooth/hcid.conf
    3494 tty1 S 0:00 /usr/bin/dbus-launch --sh-syntax --exit-with-session
    3495 ? Ss 0:00 dbus-daemon --fork --print-pid 8 --print-address 6 --
    4758 pts/4 R+ 0:00 grep -F hcid?dbus
    [root@yvonne bluetooth]#
    I've got HCID going, with DBus started first (read up about that on the forums)
    [root@yvonne bluetooth]# rm /var/lib/bluetooth/00:08:2B:03:68:D2/linkkeys && touch /var/lib/bluetooth/00:11:1B:09:31:E5/linkkeys
    [root@yvonne bluetooth]# hcitool scan
    Scanning ...
    00:0C:55:AA:A3:A9 Motorola H350
    [root@yvonne bluetooth]# btsco -v 00:0C:55:AA:A3:A9
    btsco v0.42
    Device is 1:0
    Voice setting: 0x0060
    Can't connect RFCOMM channel: Connection refused
    [root@yvonne bluetooth]# rfcomm connect 00:0C:55:AA:A3:A9
    Can't connect RFCOMM socket: Connection refused
    [root@yvonne bluetooth]# rm /var/lib/bluetooth/08:08:1C:91:71:D2/linkkeys && touch /var/lib/bluetooth/00:08:D2:44:35:D2/linkkeys
    [root@yvonne bluetooth]# hcitool scan
    Scanning ...
    00:0C:55:AA:A3:A9 Motorola H350
    [root@yvonne bluetooth]# hcitool cc 00:0C:55:AA:A3:A9
    [root@yvonne bluetooth]# btsco -v 00:0C:55:AA:A3:A9
    btsco v0.42
    Device is 1:0
    Voice setting: 0x0060
    Can't connect RFCOMM channel: Connection refused
    [root@yvonne bluetooth]#
    Note that each time after I wipe out the keys from /var/lib/bluetooth, I'm putting the headset back into pairing mode by holding down its "phone" button.
    So I'm kind of at the end of my rope here. Something is going wrong during pairing, but what is it? dmesg isn't giving me any clues here either. Is the PIN not getting transmitted properly or something?[/code]

    Ok, there's some strange things happening with bluetooth these days it seems. I had a lot of trouble setting up a connection to my phone, even after following avery bit of advice I found on the net.
    But somehow I found a way, and now it works. I had to do some things not documented anywhere, excepte from some obscure places from 2003 etc.
    The most significant problem I encountered was that my phone would never find my computer, even though I set pscan and iscan enabled.
    Here's a line of code I found that fixed the problem for me. It could work for you too, since your problem looks exactly like the things I saw when the phone couldn't see my computer.
    dbus-send --system --dest=org.bluez /org/bluez/hci0
    org.bluez.Adapter.SetMode string:discoverable
    I write this after the bluetooth system has started.
    Hope it helps 

  • Bluetooth Headset does not play sound from ipad touch 4th gen. ipod touch 4th gen. although it does pair ok! Please help!

    HM1200, BH99b, JabraBT2045 bluetooth headsets do not play music from ipad, ipod touch 4th generation, although it does pair ok. Why is that if it is compatable, why it does not play any music or sound via bluetooth headsets.  When I pair the headsets to Mac it does play music via bleutooth headsets!  Please help me!  Also, how to connect several or two bluetooth headsets to one device: Mac, or iPad iPod touch 4th generation? Please, reply as soon as possible!

    Your iPad has built-in WiFi. You cannot and don't need to use the USB dongle.
    Look in Settings > WiFi. Find the SSID of your wireless router, tap it's name and enter the WiFi password.

  • I have a bluetooth headset that only works in phone feature but not in itunes or apps on my iphone, please help

    I have a bluetooth headset that only works in phone feature but not in itunes or apps on my iphone, please help.
    It works fine through my macbook, can't find anything in settings on iphone to resolve problem

    The headset has to have A2DP capability, which most (I believe) do not.
    http://en.wikipedia.org/wiki/Bluetooth_profile

  • Upgraded to Mountain Lion, and now my Bluetooth Headset doesn't work? All I get is very loud static. Help?

    I just upgraded my iMac to Mountain Lion and my bluetooth headset doesn't work. All I get is static. Worked fine with Lion. It doesn't work with my new MacBook Pro either.
    I use the headset extensively talking on Skype and gtalk with my partner.
    Help!!!

    If you've tried the SMC reset then try a Pram reset:
    http://support.apple.com/kb/ht1379

  • Help conect to my bluetooth headset

    Hello!
    I have bought a Nokia 108 dual sim and trying to conect to my bluetooth headset.
    The mobile doesn't find the headset or any other bluetooth devices.
    Bluetooth is activated in the mobile and I have reset the bluetooth headset bacause it earlier was conected to my last mobile..
    Someone who can help me?
    Mobile supports bluetooth 3.0 and the headset supports bluetooth 2.0.

    For over 16 years I just had nokia.
    Last week I bought a nokia 225DS and the store told me that supported hand free, then I tried to connect with my Tomtom930 and could not.
    I looked on the internet and I saw many people with the same problem.
    The nokia225 is a feature phone, so is a GSM to work and whether it is for work is to ride in the car and the car is mandatory hand free to talk on GSM.
    Now I ask: what is going on in the head of microsoft staff?
    Now this gsm goes to waste and I have to buy a new GSM perhaps Alcatel.
    I'll tell everyone on Facebook to not buy these GSMs.
    Martin

  • Is anybody else having a problem with Bluetooth functionality after iOS 7? I have lg tone Bluetooth headset that I use while working out, cutting the grass, etc. Before the update I could press the "next track", but anymore.... Help?! Please!!!!!!

    Is anybody else having a problem with Bluetooth functionality after iOS 7? I have lg tone Bluetooth headset that I use while working out, cutting the grass, etc. Before the update I could press the "next track", but anymore.... Help?! Please!!!!!!

    Tell Apple about it: http://www.apple.com/feedback/iphone.html
    Be sure to give as much detail as possible.
    I would also check LG's site.

  • HELP! Listen Itunes via Bluetooth Headset using Bluetooth Adapter

    I can get bluetooth audio on my bluetooth headset using Windows Media Player and Winamp but not itunes!? Why??
    I am using a Hawking USB Bluetooth adapter and Motorola HT820 Stereo Headset.
    Thanks

    I have the same problem with these headpones Motoarola HT280 working with a bluetooth enabled Dell XPSM2010. It works with media player but not with itunes. With itunes I get this heavey reverb that I cant get rid of???

  • help please Bluetooth Headset on X200s - Broadcom Windows 7 Driver Not Installing

    So just installed Win7 RTM (v 7600) on a X200s. I have a Plantronics 510 Bluetooth headset that I use for VOIP. I followed the connecting instructions (just as I've successfully done with other Lenovos) and gone through 1 failed attempt (which happened on the RC version 7100 too). WIn7 happily recommends I download the newest Broadcom Driver at http://www.broadcom.com/support/bluetooth/update.php
    I download this driver install kit and when I attempt to install it I get an error immediately. (this worked fine for me on my old X61s)
    "The program cannot upgrade your software. Please contact the manufacturer of your bluetooth device for support."
    The problem with this is that Plantronics relies on the built in BT driver to work. I had a challenge on my older X61s (discovered it wasn't installing due to internal firewall issues) but knowing that, I took the X200s home and tried the install at home, off of corp net.
    I've been able to connect successfully to other Bluetooth devices (like my mobile phone) but the BT headset won't take any drivers. Broadcom's "support" is anything but supportive.
    I've uninstalled (through device manager) the BT Peripheral Device & scanned for hardware changes. Still get the same failure.
    Anyone have any suggestions? Has anyone run into this problem also and found a solution or workaround?  Thanks in advance.
    Windows 7 Build 7100
    X61S

    On my X200t with W7 RTM x64 I came across the same issue.
    First I went through the process of trying the W7 beta from Broadcom with the same result.
    Then I used the unpacked driver-only from the lastest official Lenova Vista X64 package, which allowed it at least to be properly recognized. The headset however remained fully unoperable.
    I ended with a full install of the Vista X64 package and now the headset works fine. Not a single issue anymore.
    Lenovo Premium Business Partner
    X1 Carbon Touch | i7-3667U | 8Gb | 256Gb | HD 4000 | 14HD+ | WWAN | W8.1 Pro RTM x64 |

  • Search Help in ITS Custom Development

    Hello Gurus,
    I need your help, please.
    I develop an application and its IAC templates for internal ITS.
    Everything works fine, except the Search Help.
    I wonder how can I put a button next to a field, where he appeared to load a search help for the field. This search should help such an IAC. Do i need to develop a IAC to the search help and then call the screen when i push the button? Or are another way to do this?
    Thanks for you help
    Best Regards.
    Paulo

    Hi Klaus,
    I tried with the code
    `searchhelp(~fieldname=u201CEXT_SEARCH-ZINSPECTORu201C)`
    , but don't work. When i try to open the template, show me a error telling that:
    Erro interno 0x2103: Interpreter: The input contains errors.
    I'm using SRM 4.0 with integrated ITS.
    Thanks in advanced.
    Best regards.

  • HELP: Bluetooth to Iphone4/Automatic Reconnect

    Please help: Connect Iphone 4 to bluetooth headset (BlueAnt V1); walk out of range and then back into range....how to set Iphone4 to reconnect automatically?>?

    Automatically without having to turn on and off the headset or Iphone4 connection; Old Moto Razor did this automatically

  • HELP!!Need to import and print vector drawings

    I am trying this topic again in the hope of help. I need to
    import drawings in a vector format for printing. These drawings
    will be cast members not sprites. I have tried printing a swf
    version via Printomatic but it cannot print Flash members. My
    questions are:
    1. Is therre any way to print a swf cast member (not a
    sprite)
    2. How can I import an EPS file? - I have heard that it can
    be done but every version I have tried seems to fail

    Darrel Plant has written an importer for .ai and .eps files.
    You can get
    it at:
    http://www.moshplant.com/direct-or/ps2vs/
    Haven't used it for a while but it works pretty good.
    Downside is that it creates multiple members because Director
    can't
    (couldn't?) handle multiple-line vector members.
    Dsotm wrote:
    > I am trying this topic again in the hope of help. I need
    to import drawings in
    > a vector format for printing. These drawings will be
    cast members not sprites.
    > I have tried printing a swf version via Printomatic but
    it cannot print Flash
    > members. My questions are:
    > 1. Is therre any way to print a swf cast member (not a
    sprite)
    > 2. How can I import an EPS file? - I have heard that it
    can be done but every
    > version I have tried seems to fail
    >
    Manno Bult
    [email protected]

  • If i reset my ipad can i install paye games for free if i sign back into my apple ID. Please i need help because i need to update my games but i need to put in this billing thing and i want to get rid of it so then i cant buy games with my credit card

    If i reset my ipad can i install paye games for free if i sign back into my apple ID. Please i need help because i need to update my games but i need to put in this billing thing and i want to get rid of it so then i cant buy games with my credit card

    Hello,
    As frustrating as it seems, your best to post any frustrations about the iPhone in the  iPhone discussion here:
    https://discussions.apple.com/community/iphone/using_iphone
    As this discussion is for iBook laptops.
    Best of Luck.

  • I have an iphone 4 and it won't let me download nothing! Help me I need my phone apps!

    I have an iphone 4 and it won't let me download nothing! Help me I need my phone apps!

    Vague.
    Please explain

  • Can somebody please tell me how to fix this. when i try to install appleworks this pops up  so please help me i need to get this on my mac

    can somebody please tell me how to fix this. when i try to install appleworks this pops up
    so please help me i need to get this on my mac

    AppleWorks is a very old application and requires Rosetta to run under recent systems.
    Lion does not include Rosetta.
    If you browse this forum you will find many posts on this issue.

Maybe you are looking for

  • Hard Drive crash, creating a new iTunes Library from my iPhone

    Hi, My hard drive crashed with my iPhone back up and all my pictures, music etc. I have no back up. I need now to make sure my iPhone is backed up and get my photo's off the phone. So I have created a new iTunes and iPhoto file and copied the picture

  • ERROR in EEO Suite of Reports

    Hi All, I am done with EEO setup. I have single business group and 6 locations where employee are attached. I want to generate individual reports for each location. I have created different hierarchy to which different location are attached. But when

  • Storing SELECT list definition after AJAX call

    Hi all I redefine the options in the SELECT item via AJAX call. The application process returns string similar to <option>x1</option><option>x2</option>, which is set as SELECT item innerHTML content. Everything works fine. The problem is that I need

  • Method & area in Task list

    Dear sir,                  Please suggest that How to Mention the Method,Tolerance and Functional Area in the TASK LIST. eg. I has an Operation that;                               CHECK THE MOTOR MEGGER VALUE.                               CHECK THE

  • Forgot to attach documents on purchase

    Hi. I forgot to attach documents on purchase of my MacBook Air 2012 according to the Up To Date program here http://www.apple.com/ru/osx/uptodate/. Whether it is possible to send the photo of checks for receiving a free copy of OS X ML?