File tree 2 files changed +9
-9
lines changed
2 files changed +9
-9
lines changed Original file line number Diff line number Diff line change 1
1
#include < Bridge.h>
2
2
3
- String revision = " 1.0.1 -1_ar71xx" ;
4
- String location = " https://raw.githubusercontent.com/ParsePlatform/parse-embedded-sdks/master /yun/linux_package/" ;
3
+ String revision = " 1.0.2 -1_ar71xx" ;
4
+ String location = " https://raw.githubusercontent.com/ParsePlatform/parse-embedded-sdks/1.0.2 /yun/linux_package/" ;
5
5
6
6
void downloadPackage (String file) {
7
7
Serial.println (" Download: " + location + file + revision + " .ipk" );
@@ -17,7 +17,7 @@ void downloadPackage(String file) {
17
17
p.addParameter (" /tmp/" + file + revision + " .ipk" );
18
18
p.addParameter (location + file + revision + " .ipk" );
19
19
p.run ();
20
- while (p.available ()) {
20
+ while (p.available ()) {
21
21
Serial.print ((char )p.read ());
22
22
}
23
23
}
@@ -39,16 +39,16 @@ void installPackage(String file) {
39
39
void setup () {
40
40
Bridge.begin ();
41
41
Serial.begin (115200 );
42
-
42
+
43
43
while (!Serial);
44
-
44
+
45
45
Serial.println (" Downloading packages" );
46
46
downloadPackage (" parse-embedded_" );
47
47
downloadPackage (" parse-embedded-yun_" );
48
48
Serial.println (" Installing packages" );
49
49
installPackage (" parse-embedded_" );
50
50
installPackage (" parse-embedded-yun_" );
51
-
51
+
52
52
Serial.println (" \n Done." );
53
53
}
54
54
Original file line number Diff line number Diff line change 1
- name =Parse Arduino Yún SDK
2
- version =1.0.1
1
+ name =Parse Arduino SDK
2
+ version =1.0.2
3
3
author =Parse, LLC.
4
4
maintainer =Parse, LLC.
5
5
sentence =A library that provides access to Parse
6
6
paragraph =Provides convenience methods to access the REST API on Parse.com from Arduino
7
- url =https://github.com/ParsePlatform/parse-embedded-sdks
7
+ url =https://github.com/ParsePlatform/Parse-SDK-Arduino
8
8
architectures =avr
You can’t perform that action at this time.
0 commit comments