ArduinoCore-arc32
ArduinoCore-arc32 copied to clipboard
Try "Accelerometer" example in "CurieIMU" library. It does not get the proper result in the serial monitor: 
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);...
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...
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...
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...
*/ #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...
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...
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...
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...
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...