Search found 196 matches

by Fredrik
12:43, 30 Jun 2016
Forum: Questions and answers
Topic: cordova-plugin-ble
Replies: 1
Views: 53534

Re: cordova-plugin-ble

I, too, have had build problems. To fix them, I made some changes to my branch. Try this:

Code: Select all

cordova plugin remove cordova-plugin-ble
cordova plugin add https://github.com/fredrikeldh/cordova-ble
by Fredrik
12:39, 30 Jun 2016
Forum: Questions and answers
Topic: Reconnecting to a Known Device
Replies: 1
Views: 49883

Re: Reconnecting to a Known Device

The "easyble" library does not support this use case. You would have to use the underlying cordova-ble plugin directly, like so: evothings.ble.connect( address, function(info) { console.log('BLE connect status for device: ' + info.deviceHandle + ' state: ' + info.state); }, function(errorC...
by Fredrik
12:31, 30 Jun 2016
Forum: Questions and answers
Topic: BLE not detected on some phones
Replies: 3
Views: 71275

Re: BLE not detected on some phones

It seems the Note 3 in particular has some problems with Bluetooth. Can you try any other Android device?
by Fredrik
12:25, 30 Jun 2016
Forum: Texas Instruments
Topic: SensorTag microphone
Replies: 1
Views: 55635

Re: SensorTag microphone

I've searched around a bit for an answer, and the closest thing I've found is this thread on the TI forum, which says that no one can acess the microphone.

The CC2650 TRM (Technical Reference Manual) is mentionend, but it does not contain the word "microphone" at all.
by Fredrik
13:03, 14 Apr 2016
Forum: Questions and answers
Topic: BLE scan example doesn't find devices
Replies: 3
Views: 74442

Re: BLE scan example doesn't find devices

Most of our example apps have this little snippet at the top of the HTML file:

Code: Select all

<script>
   // Redirect console.log to Evothings Workbench.
   if (window.hyper && window.hyper.log) { console.log = hyper.log }
</script>
by Fredrik
11:39, 06 Apr 2016
Forum: Questions and answers
Topic: Device not from RedBearLab error
Replies: 4
Views: 76654

Re: Device not from RedBearLab error

OK, I'm seeing 3 services on the device: 0x1800, 0x1801 and 0xa000. The first two are the standard GAP services and may be ignored. The third is most likely an mbed example service . To work with that service you'll need not the simplecontrols app, but the mbed-Evothings-CustomGATT app mentioned on ...
by Fredrik
11:45, 04 Apr 2016
Forum: Questions and answers
Topic: Device not from RedBearLab error
Replies: 4
Views: 76654

Re: Device not from RedBearLab error

713d0000503e4c75ba943148f18d941e is app.RBL_SERVICE_UUID, as found in app.js of redbearlab-simplecontrol. It should be present on any device running the BLENano_SimpleControls program. Since one app thinks it is not, let's get a second opinion. Run the example "BLE Discovery", scan the dev...
by Fredrik
07:52, 07 Mar 2016
Forum: Questions and answers
Topic: Android BLE MTU Size
Replies: 3
Views: 61081

Re: Android BLE MTU Size

I see, you're talking about the function BluetoothGatt.requestMtu(). It is not exposed by the Evothings BLE plugin, so changing MTU size will not be possible.
by Fredrik
16:05, 06 Mar 2016
Forum: Questions and answers
Topic: Android BLE MTU Size
Replies: 3
Views: 61081

Re: Android BLE MTU Size

The Maximum Transmission Unit in BLE/GATT is 20 bytes. This is determined by the official Bluetooth specification and cannot be changed.

To transfer 100 bytes, you will have to make 5 sequential transfers of 20 bytes each.
by Fredrik
14:56, 29 Feb 2016
Forum: Questions and answers
Topic: Where's the list of all the Evothings/Cordova error codes?
Replies: 2
Views: 42327

Re: Where's the list of all the Evothings/Cordova error codes?

Unfortunately, there is no such list. We present the codes as the underlying native platform (Android / iOS) delivers them, and they do not list their error codes.

Go to advanced search