How to connect and send data in Bluetooth AS3 format?

I need to connect and send data to Bluetooth from Action Script 3 (AS3)

If you have any idea, I will be happy for your help.

Thanks in advance,

+4
source share
1 answer

Good question!

Wiimotes connects / transfers data via Bluetooth.

I quickly looked at the source of the java WiiFlashServer . It uses ServerSocket and seems to send binary data for firmware via the Socket class.

You can either adapt part of this code according to your needs, or create a Socket server in your chosen language and send data to flash sockets.

NTN, George

+1
source

Source: https://habr.com/ru/post/1308537/


All Articles