mirror of
https://github.com/OSURoboticsClub/Rover_2017_2018.git
synced 2025-11-08 18:21:15 +00:00
18 lines
334 B
C++
18 lines
334 B
C++
//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();
|
|
}; |