An open API service indexing awesome lists of open source software.

https://github.com/mnvx/mak1

Library for driving Mars rover MAK-1
https://github.com/mnvx/mak1

Last synced: about 1 year ago
JSON representation

Library for driving Mars rover MAK-1

Awesome Lists containing this project

README

          

# Library for driving Mars rover MAK-1

## Installing

Clone repository to Arduino libraries folder.

## Usage

```cpp
#include

MAK1 mak1;

void setup() {

mak1.initialize();

// Begin

mak1.forward(72);
mak1.left(90);
mak1.forward(96);

// End

mak1.stop();
}

void loop() {

}
```