Skip to content

Commit 76ad802

Browse files
committed
Bumped up the versions, travis config and changelog files
1 parent ea13449 commit 76ad802

File tree

4 files changed

+14
-8
lines changed

4 files changed

+14
-8
lines changed

.travis.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ language: cpp
22

33
env:
44
global:
5-
- ARDUINO_VERSION="1.6.13"
5+
- ARDUINO_VERSION="1.8.1"
66
matrix:
77
- PLATFORM='arduino:avr' BOARD='uno'
88
- PLATFORM='arduino:avr' BOARD='mega:cpu=atmega2560'
@@ -68,6 +68,7 @@ script:
6868
- arduino --verify $PWD/examples/Simple/BarcodeScanner/BarcodeScanner.ino
6969
- arduino --verify $PWD/examples/Simple/Buzzer/Buzzer.ino
7070
- arduino --verify $PWD/examples/Simple/Camera/Camera.ino
71+
- arduino --verify $PWD/examples/Simple/Chart/Chart.ino
7172
- arduino --verify $PWD/examples/Simple/Color/Color.ino
7273
- arduino --verify $PWD/examples/Simple/DataLogger/DataLogger.ino
7374
- arduino --verify $PWD/examples/Simple/Facebook/Facebook.ino

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
## v1.12.0(016) (January 29, 2017)
2+
- Supported the new chart shield.
3+
- Fixed some bugs.
4+
15
## v1.11.0(015) (December 19, 2016)
26
- Supported the new fingerprint scanner and face detector shields.
37
- Fixed a bug in the frames timeout that marks a correct frame faulty.

examples/Simple/Chart/Chart.ino

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,11 @@ Chart Shield Example
44
55
This example shows an application on 1Sheeld's chart shield.
66
7-
By using this example, you can plot and display noise data using mic over a line chart
8-
and save it as a CSV so you can use other tools to check the data.
9-
PS: Chart shield will automatically save 10000 plots then it will clear them from the app
10-
for more convenient performance.
7+
By using this example, you can plot and display noise data using mic
8+
over a line chart and save it as a CSV.
9+
10+
Note: Chart shield will automatically save a CSV file after reaching
11+
10000 plots and will clear the screen for optimal app performance.
1112
1213
OPTIONAL:
1314
To reduce the library compiled size and limit its memory usage, you
@@ -27,9 +28,9 @@ void setup()
2728
{
2829
/* Start communication. */
2930
OneSheeld.begin();
30-
/* Save a screenshot of CHART_0. */
31+
/* Save a screenshot for chart 0. */
3132
Chart.saveScreenshot(CHART_0);
32-
/* Save a csv file of CHART_0. */
33+
/* Save a csv file for chart 0. */
3334
Chart.saveCsv("MicValues",CHART_0);
3435
/* Clear Chart 0. */
3536
Chart.clear(CHART_0);

library.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name=OneSheeld
2-
version=1.11.0
2+
version=1.12.0
33
author=Integreight, Inc. <[email protected]>
44
maintainer=Eslam Ali <[email protected]>, Islam Mustafa <[email protected]>, Mustafa Fayez <[email protected]>
55
sentence=It allows you to control your 1Sheeld(s).

0 commit comments

Comments
 (0)