Skip to content
This repository was archived by the owner on Jan 6, 2025. It is now read-only.
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 6 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,9 @@
/*.mov
/gh-pages/*
/screenshots/*
/*.png
/*.png
/out/*
/gen/*
/.idea/*
*.apk
*.iml
6 changes: 6 additions & 0 deletions AndroidManifest.xml
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@
<uses-permission android:name="android.permission.BLUETOOTH" />
<uses-permission android:name="android.permission.BLUETOOTH_ADMIN" />
<uses-permission android:name="android.permission.INTERNET" />
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />

<uses-feature
android:name="android.hardware.sensor.accelerometer"
Expand Down Expand Up @@ -59,6 +60,11 @@
android:label="Touch Control"
android:screenOrientation="portrait" >
</activity>
<activity
android:name=".activities.Keyframes"
android:label="Keyframes"
android:screenOrientation="portrait" >
</activity>
<activity
android:name=".activities.VoiceControl"
android:label="Voice Control"
Expand Down
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@

# Blueberry: Bluetooth Remote Control Application for Android

## APK download available under [releases](https://github.com/CalebJ2/Android-Bluetooth-Remote-Control/releases)

Blueberry is an [Android application](https://play.google.com/store/apps/details?id=com.bluetooth) that uses the phone's Bluetooth feature to connect to a Bluetooth enabled device. It is mainly intended to control mobile platforms such as an Arduino with a Bluetooth shield mounted on a platform with two motorized wheels. Additionally it uses the phone's camera, internet connection and sensors to interact with the mobile platform.

[![Video](https://raw.github.com/Nurgak/Android-Bluetooth-Remote-Control/master/images/video.png "Blueberry demonstration video")](http://youtu.be/ukssaDaPI5s)
Expand Down
6 changes: 4 additions & 2 deletions gen/com/bluetooth/BuildConfig.java
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
/** Automatically generated file. DO NOT MODIFY */
/*___Generated_by_IDEA___*/

package com.bluetooth;

/* This stub is only used by the IDE. It is NOT the BuildConfig class actually packed into the APK */
public final class BuildConfig {
public final static boolean DEBUG = true;
public final static boolean DEBUG = Boolean.parseBoolean(null);
}
Loading