Android Open Source - Arduino-Android-BLE-NRF8001 N R F8001






From Project

Back to project page Arduino-Android-BLE-NRF8001.

License

The source code is released under:

MIT License

If you think the Android project Arduino-Android-BLE-NRF8001 listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.

Java Source Code

package com.ble.sensors;
/*from  w w w .j  a  v a 2  s. c o m*/
import java.util.UUID;

/**
 * Bluetooth Gatt Attributed provided by Adafruit's NRF8001 Breakout board
 * https://github.com/adafruit/Adafruit_nRF8001
 * <p>
 * You can send and receive up to 20 bytes at a time between your BLE-enabled
 * phone or tablet and the Arduino.
 * </p>
 * 
 * @author Sonny
 */
public final class NRF8001 {
    private NRF8001() {
    }

    public static final UUID
            SERVICE = UUID.fromString("6E400001-B5A3-F393-E0A9-E50E24DCCA9E"),
            RX_CHARA = UUID.fromString("6E400002-B5A3-F393-E0A9-E50E24DCCA9E"),
            TX_CHARA = UUID.fromString("6E400003-B5A3-F393-E0A9-E50E24DCCA9E");
}




Java Source Code List

com.adapters.ListAdapterCheckboxTitle.java
com.adapters.ListAdapterTitleDescription.java
com.adapters.ListAdapterTitleDescription.java
com.adapters.MainViewPagerAdapter.java
com.ble.sensors.NRF8001.java
edu.uci.fallsensor.MainActivity.java
edu.uci.fallsensor.dialog.SensorDialog.java
edu.uci.fallsensor.service.BLEController.java
edu.uci.fallsensor.service.BLEManager.java
edu.uci.fallsensor.service.BLEState.java
edu.uci.fallsensor.service.BLETask.java
edu.uci.fallsensor.service.BluetoothMetaData.java