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
- Host: GitHub
- URL: https://github.com/mnvx/mak1
- Owner: mnvx
- Created: 2018-01-20T18:48:48.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2018-01-20T18:53:23.000Z (over 8 years ago)
- Last Synced: 2025-02-17T03:28:33.272Z (over 1 year ago)
- Language: C++
- Size: 1000 Bytes
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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() {
}
```