Skip to content

Commit

Permalink
Merge pull request #16 from gbr1/dev
Browse files Browse the repository at this point in the history
0.0.6
  • Loading branch information
gbr1 authored Jan 12, 2024
2 parents fd7c783 + 6b09621 commit b25117d
Show file tree
Hide file tree
Showing 32 changed files with 280 additions and 1,404 deletions.
Binary file modified examples/.DS_Store
Binary file not shown.
35 changes: 0 additions & 35 deletions examples/battery/battery.ino

This file was deleted.

Binary file added examples/blink/.DS_Store
Binary file not shown.
14 changes: 8 additions & 6 deletions examples/blink/blink.ino
Original file line number Diff line number Diff line change
Expand Up @@ -17,19 +17,21 @@
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/

#include "Arduino_Robot_Firmware.h"

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

Arduino_Robot_Firmware robot;
#include "Arduino_Alvik_Firmware.h"


Arduino_Alvik_Firmware alvik;

void setup(){
Serial.begin(115200);
robot.begin();
alvik.begin();
}

void loop(){
robot.setLedBuiltin(HIGH);
alvik.setLedBuiltin(HIGH);
delay(100);
robot.setLedBuiltin(LOW);
alvik.setLedBuiltin(LOW);
delay(1000);
}
133 changes: 0 additions & 133 deletions examples/demo_01/demo_01.ino

This file was deleted.

149 changes: 0 additions & 149 deletions examples/demo_02/demo_02.ino

This file was deleted.

Loading

0 comments on commit b25117d

Please sign in to comment.