From owner-freebsd-bluetooth@FreeBSD.ORG Fri Jun 20 20:33:41 2008 Return-Path: Delivered-To: freebsd-bluetooth@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id AC66B1065675 for ; Fri, 20 Jun 2008 20:33:41 +0000 (UTC) (envelope-from maksim.yevmenkin@gmail.com) Received: from fg-out-1718.google.com (fg-out-1718.google.com [72.14.220.154]) by mx1.freebsd.org (Postfix) with ESMTP id 4825E8FC13 for ; Fri, 20 Jun 2008 20:33:41 +0000 (UTC) (envelope-from maksim.yevmenkin@gmail.com) Received: by fg-out-1718.google.com with SMTP id l26so836892fgb.35 for ; Fri, 20 Jun 2008 13:33:40 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:received:received:message-id:date:from:to :subject:cc:in-reply-to:mime-version:content-type :content-transfer-encoding:content-disposition:references; bh=O5S/VO+paXFZEgmeNTvhvJmkLEXH8Dtkl6p0kYcE5/E=; b=andzIOq5f5ukXSc4dVpz5Jdr8FBhrvrTUEahNdurOAqWv5DnCX0FqbDGq3hd0YFNIK yKFI8QGSCoM5cgaxeL1xLPqcdjHpG74lvqeKMUO5A6WsbWtF70Zyo8KqqUP5VTyCYasQ yad/26eEvAGFDmVXVuC+lTcCNbM7Lx05LYrXk= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=message-id:date:from:to:subject:cc:in-reply-to:mime-version :content-type:content-transfer-encoding:content-disposition :references; b=F0p3va5TVfhVl8gTbjXFFzLJcVT0Bdb2xZK5088MkvNlKZh9/sMG6QtLVamnPF1EPD Xn0yPzrNb1eN1g80gmIwQwDnNsen0dYcRfcuqL/UzE7QGVv03hmhM1orNTawKXOMk9fM csYC9fty/8Pzw3q9OAs978PIeL0PXzBm/Bi1I= Received: by 10.86.31.18 with SMTP id e18mr4448978fge.6.1213994019948; Fri, 20 Jun 2008 13:33:39 -0700 (PDT) Received: by 10.86.66.5 with HTTP; Fri, 20 Jun 2008 13:33:39 -0700 (PDT) Message-ID: Date: Fri, 20 Jun 2008 13:33:39 -0700 From: "Maksim Yevmenkin" To: "Kevin Downey" In-Reply-To: <1d3ed48c0806192023w42f30a04i5b7bab5598005ac@mail.gmail.com> MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Content-Disposition: inline References: <1d3ed48c0806192023w42f30a04i5b7bab5598005ac@mail.gmail.com> Cc: freebsd-bluetooth@freebsd.org Subject: Re: playstation 3 remote X-BeenThere: freebsd-bluetooth@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Using Bluetooth in FreeBSD environments List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 20 Jun 2008 20:33:41 -0000 On 6/19/08, Kevin Downey wrote: > has anyone got a playstation 3 bluetooth remote working? if you do, > how? Most websites says "enter" and "start" sets it up for pairing but > doing that I see nothing in hcidump or hcicontrol. This is my first > time out with bluetooth so any advise would be nice. i'm guessing "enter" and "start" put the remote in the "discoverable" mode. try to do 'hcicontrol inquiry' to see if you can discover ps3 remote. once you know ps3 bd_addr you should be able to run sdp discovery, i.e. 'sdpcontrol -a ps3_bd_addr browse' that may return the list of supported services. i'm guessing ps3 remote will probably support hid service, so if 'browse' command will not return anything, you might want to try to search for hid service, i.e. 'sdpcontrol -a ps3_bd_addr search hid' once you know what services are offered, we can go from there. thanks, max