File tree Expand file tree Collapse file tree 4 files changed +14
-8
lines changed
Expand file tree Collapse file tree 4 files changed +14
-8
lines changed Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ language: cpp
22
33env :
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
Original file line number Diff line number Diff line change 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.
Original file line number Diff line number Diff line change @@ -4,10 +4,11 @@ Chart Shield Example
44
55This 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
1213OPTIONAL:
1314To 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);
You can’t perform that action at this time.
0 commit comments