Skip to content

Commit 5acf1ce

Browse files
committed
Initial commit
0 parents  commit 5acf1ce

44 files changed

Lines changed: 1804 additions & 0 deletions

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.gitignore

Lines changed: 111 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,111 @@
1+
*.iml
2+
.gradle
3+
/local.properties
4+
/.idea/workspace.xml
5+
/.idea/libraries
6+
.DS_Store
7+
/build
8+
/captures
9+
10+
# Created by https://www.gitignore.io/api/android,intellij
11+
12+
### Android ###
13+
# Built application files
14+
*.apk
15+
*.ap_
16+
17+
# Files for the ART/Dalvik VM
18+
*.dex
19+
20+
# Java class files
21+
*.class
22+
23+
# Generated files
24+
bin/
25+
gen/
26+
out/
27+
28+
# Gradle files
29+
.gradle/
30+
build/
31+
32+
# Local configuration file (sdk path, etc)
33+
local.properties
34+
35+
# Proguard folder generated by Eclipse
36+
proguard/
37+
38+
# Log Files
39+
*.log
40+
41+
# Android Studio Navigation editor temp files
42+
.navigation/
43+
44+
# Android Studio captures folder
45+
captures/
46+
47+
# Intellij
48+
*.iml
49+
.idea/workspace.xml
50+
.idea/libraries
51+
52+
# Keystore files
53+
*.jks
54+
55+
### Android Patch ###
56+
gen-external-apklibs
57+
58+
59+
### Intellij ###
60+
# Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio and Webstorm
61+
# Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839
62+
63+
# User-specific stuff:
64+
.idea/workspace.xml
65+
.idea/tasks.xml
66+
.idea/dictionaries
67+
.idea/vcs.xml
68+
.idea/jsLibraryMappings.xml
69+
70+
# Sensitive or high-churn files:
71+
.idea/dataSources.ids
72+
.idea/dataSources.xml
73+
.idea/dataSources.local.xml
74+
.idea/sqlDataSources.xml
75+
.idea/dynamic.xml
76+
.idea/uiDesigner.xml
77+
78+
# Gradle:
79+
.idea/gradle.xml
80+
.idea/libraries
81+
82+
# Mongo Explorer plugin:
83+
.idea/mongoSettings.xml
84+
85+
## File-based project format:
86+
*.iws
87+
88+
## Plugin-specific files:
89+
90+
# IntelliJ
91+
/out/
92+
93+
# mpeltonen/sbt-idea plugin
94+
.idea_modules/
95+
96+
# JIRA plugin
97+
atlassian-ide-plugin.xml
98+
99+
# Crashlytics plugin (for Android Studio and IntelliJ)
100+
com_crashlytics_export_strings.xml
101+
crashlytics.properties
102+
crashlytics-build.properties
103+
fabric.properties
104+
105+
### Intellij Patch ###
106+
# Comment Reason: https://github.com/joeblau/gitignore.io/issues/186#issuecomment-215987721
107+
108+
# *.iml
109+
# modules.xml
110+
# .idea/misc.xml
111+
# *.ipr

.idea/.name

Lines changed: 1 addition & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/compiler.xml

Lines changed: 22 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/copyright/profiles_settings.xml

Lines changed: 3 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/encodings.xml

Lines changed: 6 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/misc.xml

Lines changed: 46 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/modules.xml

Lines changed: 9 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/runConfigurations.xml

Lines changed: 12 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

README.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
# Bluetooth LED Matrix App
2+
© 2016 [Tobias Trumm](mailto:tobiastrumm@uni-muenster.de) licensed under GNU GPLv3
3+
4+
This app is used to control a LED matrix over Bluetooth Low Energy. Visit the [Bluetooth Low Energy LED Matrix repository](https://github.com/WIStudent/Bluetooth-Low-Energy-LED-Matrix) for more information about the BLE controlled LED matrix.

app/.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
/build

0 commit comments

Comments
 (0)