ArduinoCore-arc32 icon indicating copy to clipboard operation
ArduinoCore-arc32 copied to clipboard

Results 66 ArduinoCore-arc32 issues
Sort by recently updated
recently updated
newest added

Try "Accelerometer" example in "CurieIMU" library. It does not get the proper result in the serial monitor: ![screen shot 2017-05-18 at 16 03 13](https://cloud.githubusercontent.com/assets/3905677/26192252/825483b6-3be3-11e7-937f-993c62240f8d.png)

Similar to #516, but for write requests. We should also see if the same applies to `characteristic.subscribe()`. Testing with the 2.0.1RC2.1 JSON: Arduino sketch: ```arduino #include void setup() { Serial.begin(9600);...

bug

Testing with the 2.0.1RC2.1 JSON: Arduino sketch: ```arduino #include void setup() { Serial.begin(9600); while (!Serial); Serial.println("BLE Central - Read + Write test"); // initialize the BLE hardware BLE.begin(); // start...

bug

Here is the code. It always return false, even BLE is connected. corelib Version: 2.0.1-RC2 ``` /* * Copyright (c) 2016 Intel Corporation. All rights reserved. * See the bottom...

enhancement
Under Review

It appears there is an issue when you add more than 6 characteristics to a single service in the CurieBLE driver with version 2.0.0 RC4. The device never begins to...

enhancement

*/ #include /* This sketch example works with IMUBleNotification.ino IMUBleNotification.ino will send notification to this central sketch. This sketch will receive the notifications and output the received data in the...

Under Review

I'm using the peripheral explorer with [bleno's echo example](https://github.com/sandeepmistry/bleno/tree/master/examples/echo). `peripheral.deviceName()` return an empty string. I expect it to return `raspberrypi`. Here's the output: ``` BLE Central - Peripheral Explorer Found...

Under Review

I'm using the peripheral explorer with [bleno's echo example](https://github.com/sandeepmistry/bleno/tree/master/examples/echo), it doesn't report any characteristics in the 0x1800 and 0x1801 services. Here's the output: ``` BLE Central - Peripheral Explorer Found...

Under Review

In v1.0.7 `blePeripheral.setAppearance(appearance);` was function, however in master is does not - the appearance characteristic value is 0. Note: `blePeripheral.setDeviceName(name)` still works. ```arduino #include BLEPeripheral blePeripheral; // BLE Peripheral Device...

Under Review

Hi. When we try to use singleton, inherit and customized constructor at the same time this problem will occur. Please see the following example. You can comment the customized constructor...

bug