mirror of
https://github.com/caperren/school_archives.git
synced 2025-11-09 21:51:15 +00:00
Added 2017-2018 mars rover repository.
This commit is contained in:
@@ -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();
|
||||
};
|
||||
Reference in New Issue
Block a user