Skip to content

Commit b25117d

Browse files
authored
Merge pull request #16 from gbr1/dev
0.0.6
2 parents fd7c783 + 6b09621 commit b25117d

32 files changed

+280
-1404
lines changed

examples/.DS_Store

0 Bytes
Binary file not shown.

examples/battery/battery.ino

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

examples/blink/.DS_Store

6 KB
Binary file not shown.

examples/blink/blink.ino

Lines changed: 8 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -17,19 +17,21 @@
1717
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
1818
*/
1919

20-
#include "Arduino_Robot_Firmware.h"
2120

21+
// This example makes the rear orange led blink. It is also called LED_BUILTIN
2222

23-
Arduino_Robot_Firmware robot;
23+
#include "Arduino_Alvik_Firmware.h"
24+
25+
26+
Arduino_Alvik_Firmware alvik;
2427

2528
void setup(){
26-
Serial.begin(115200);
27-
robot.begin();
29+
alvik.begin();
2830
}
2931

3032
void loop(){
31-
robot.setLedBuiltin(HIGH);
33+
alvik.setLedBuiltin(HIGH);
3234
delay(100);
33-
robot.setLedBuiltin(LOW);
35+
alvik.setLedBuiltin(LOW);
3436
delay(1000);
3537
}

examples/demo_01/demo_01.ino

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

examples/demo_02/demo_02.ino

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

0 commit comments

Comments
 (0)