mirror of
https://github.com/OSURoboticsClub/Rover_2017_2018.git
synced 2025-11-08 18:21:15 +00:00
Add files via upload
This commit is contained in:
18
electrical/Science Node/ScienceNodeLibrary/camera.h
Normal file
18
electrical/Science Node/ScienceNodeLibrary/camera.h
Normal 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();
|
||||
};
|
||||
Reference in New Issue
Block a user