Added 2017-2018 mars rover repository.

This commit is contained in:
2018-08-22 14:54:52 -07:00
parent a56690ca18
commit 7fd2641766
750 changed files with 2019222 additions and 0 deletions

View File

@@ -0,0 +1,18 @@
//camera firmware can be found at chdk.wikia.com
#include <Arduino.h>
class camera{
private:
int pin;
float zm;
void kill();
public:
camera(int);
void pulse();
void shoot();
void slowZoomIn();
void slowZoomOut();
void fullZoomIn();
void fullZoomOut();
void focus();
};