10

I'm working on an idea which requires my Mac to send some data to my iOS device. I know CoreBluetooth framework is not there for Mac OS and only for iOS, so is there any way that I can get my Mac to pose a peripheral ?

I've done some Googling around - haven't got a straight answer :(

4

2 に答える 2

11

CoreBluetooth.FrameworkOSX用があります。の中に埋め込まれていIOBluetooth.frameworkます。サンプル Mac アプリをApple Dev Siteからダウンロードします。1 つの違いは、の OSX バージョンにはクラスCoreBluetooth.Frameworkが含まれていないことです。CBPeripheralManageriOS デバイスを周辺機器として機能させ、Mac を中心として機能させる必要があります。iOS デバイスは同時に両方の機能を果たすことができ、データは双方向に送信できます。

于 2013-05-11T01:16:16.010 に答える
5

JavaScript の記述に慣れている場合は、bleno. BLE (Bluetooth Low Energy) 周辺機器を実装するための node.js モジュールで、Mac OS X 10.9 以降、Linux、Windows に対応しています。

バッテリー サービスをペリフェラル モードで実装する例は、Github リポジトリで見つけることができます。

https://github.com/sandeepmistry/bleno/tree/master/examples/battery-service

于 2016-08-08T21:04:36.833 に答える