Quantcast
Channel: Microcontrollers
Viewing all articles
Browse latest Browse all 4928

Bluetooth LE Service & Characteristic Design

$
0
0
Im building an Android app to interface Arduino with a BLE module from HMSoft10.

I found a tutorial online for an android app and it takes care of the connectivity and it uses 3 seekbars to send information from the android app to the BLE module. So far because the app sends 3 values, 1 for each seek bar, the class has an array declared as int[]:

Code (Text):
  1.  
  2. private int[] RGBFrame = {0,0,0};
  3. // Then it creates variables to hold the values
  4. private SeekBar mRed,mGreen,mBlue;
  5. //Then it accesses...
Bluetooth LE Service & Characteristic Design

Viewing all articles
Browse latest Browse all 4928

Trending Articles