Skip to content

Commit 34ad415

Browse files
authored
Merge pull request #10 from k4biri/develop
Prepare Release 0.7.0
2 parents e1134e4 + f816c10 commit 34ad415

26 files changed

+38
-208
lines changed

.github/images/logo.png

144 KB
Loading

.github/workflows/android.yml

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
name: Android CI
2+
3+
on:
4+
push:
5+
branches: [ master ]
6+
pull_request:
7+
branches: [ master ]
8+
9+
jobs:
10+
build:
11+
12+
runs-on: ubuntu-latest
13+
14+
steps:
15+
- uses: actions/checkout@v2
16+
- name: set up JDK 1.8
17+
uses: actions/setup-java@v1
18+
with:
19+
java-version: 1.8
20+
- name: Build with Gradle
21+
run: ./gradlew build

README.md

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
1-
# arduino-usb-terminal
2-
Terminal like app to send commands to Arduino through USB
1+
<img src=".github/images/logo.png" width="128">
2+
3+
# arduino-usb-terminal
4+
Terminal-like app to send commands to Arduino through USB
5+
6+
37

48
This app simplifies testing your Arduino components that work with direct usb commands by giving you the ability to send custom commands and view the returned message from your Arduino device.
59

@@ -9,6 +13,8 @@
913
The app is available for free on Google Play Store (Arduino USB Terminal).
1014
Otherwise, you can clone the project and run it locally.
1115
Please read the **Sentry Reports** part on this page before running the project to avoid build failures.
16+
17+
<a href='https://play.google.com/store/apps/details?id=org.kabiri.android.usbterminal&pcampaignid=pcampaignidMKT-Other-global-all-co-prtnr-py-PartBadge-Mar2515-1'><img alt='Get it on Google Play' src='https://play.google.com/intl/en_us/badges/static/images/badges/en_badge_web_generic.png' width="128"/></a>
1218

1319
## Terminal
1420
A Simple terminal page which does what it is supposed to do interacting with an Arduino manually through the USB cable.

app/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,8 @@ android {
2020
applicationId "org.kabiri.android.usbterminal"
2121
minSdkVersion 23
2222
targetSdkVersion 29
23-
versionCode 6
24-
versionName "0.6.0"
23+
versionCode 7
24+
versionName "0.7.0"
2525

2626
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
2727
}
62.2 KB
Loading

app/src/main/res/drawable-v24/ic_launcher_foreground.xml

Lines changed: 0 additions & 30 deletions
This file was deleted.

app/src/main/res/drawable/ic_launcher_background.xml

Lines changed: 0 additions & 170 deletions
This file was deleted.
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<adaptive-icon xmlns:android="http://schemas.android.com/apk/res/android">
3-
<background android:drawable="@drawable/ic_launcher_background" />
4-
<foreground android:drawable="@drawable/ic_launcher_foreground" />
3+
<background android:drawable="@color/icLauncherBackground"/>
4+
<foreground android:drawable="@mipmap/ic_launcher_foreground"/>
55
</adaptive-icon>
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<adaptive-icon xmlns:android="http://schemas.android.com/apk/res/android">
3-
<background android:drawable="@drawable/ic_launcher_background" />
4-
<foreground android:drawable="@drawable/ic_launcher_foreground" />
3+
<background android:drawable="@color/icLauncherBackground"/>
4+
<foreground android:drawable="@mipmap/ic_launcher_foreground"/>
55
</adaptive-icon>
-866 Bytes
Loading

0 commit comments

Comments
 (0)