Meilleur auteur de réponses
Bluetooth pairing without authentification

Question
-
Hy,
I have to pair two PC, with two USB dongle, but one of the computers doesn't have screen and keyboard. I would like to pair this two devices without use PIN ou Authentification. I searched on Google and some websites, but I didn't found an answer for my problem.
I use VS2008, .NET framework 3.5 and the 32feet library.
Réponses
-
Bonjour,
j'ai pas bien compris la question mais je crois que ça tourne autour de ça :
http://www.developpez.net/forums/d858176/dotnet/langages/vb-net/communication-bluetooth-simple-vb-net/
http://www.codeproject.com/Questions/296469/how-to-create-a-bluetooth-connection-to-a-vb-net-s
http://www.codeproject.com/Questions/719730/Connecting-to-a-phone-via-bluetooth-from-PC-in-VB
http://www.commentcamarche.net/forum/affich-11762751-programmation-bluetooth-en-vb-net
- Proposé comme réponse Boris Ivanov _ mercredi 25 février 2015 09:43
- Marqué comme réponse Boris Ivanov _ vendredi 27 février 2015 09:49
Toutes les réponses
-
Bonjour,
j'ai pas bien compris la question mais je crois que ça tourne autour de ça :
http://www.developpez.net/forums/d858176/dotnet/langages/vb-net/communication-bluetooth-simple-vb-net/
http://www.codeproject.com/Questions/296469/how-to-create-a-bluetooth-connection-to-a-vb-net-s
http://www.codeproject.com/Questions/719730/Connecting-to-a-phone-via-bluetooth-from-PC-in-VB
http://www.commentcamarche.net/forum/affich-11762751-programmation-bluetooth-en-vb-net
- Proposé comme réponse Boris Ivanov _ mercredi 25 février 2015 09:43
- Marqué comme réponse Boris Ivanov _ vendredi 27 février 2015 09:49
-
En faite j'ai trouvé et procédé de la sorte:
public static void Win32AuthenticationCallback(object sender, BluetoothWin32AuthenticationEventArgs e)
{
BluetoothWin32AuthenticationEventArgs BTEvent = e;
e.Confirm = true;
}Dans le main:
BluetoothWin32Authentication m_BTWinAuthenication;
m_BTWinAuthenication = new BluetoothWin32Authentication(new EventHandler<BluetoothWin32AuthenticationEventArgs>(Win32AuthenticationCallback));merci de ta réponse