Difference between revisions of "MultiCameraIrControl"
From Digipool-Wiki
Line 1: | Line 1: | ||
!Nur kompatibel mit Arduino 1.0.5 - funktioniert nicht mit neueren Arduino Versionen!!! | !Nur kompatibel mit Arduino 1.0.5 - funktioniert nicht mit neueren Arduino Versionen!!! | ||
+ | |||
+ | <br> | ||
[[File:MultiCameraIrControl schematic.png]] | [[File:MultiCameraIrControl schematic.png]] | ||
+ | <br> | ||
+ | |||
+ | Arduino Code: | ||
<source lang="java"> | <source lang="java"> | ||
/******************************************* | /******************************************* | ||
Line 9: | Line 14: | ||
* | * | ||
* Name.......: multiCameraIrControl Library - Canon Example | * Name.......: multiCameraIrControl Library - Canon Example | ||
− | |||
* Author.....: Sebastian Setz | * Author.....: Sebastian Setz | ||
* Version....: 1.2 | * Version....: 1.2 | ||
Line 18: | Line 22: | ||
* To view a copy of this license, visit http://creativecommons.org/licenses/by-nc-sa/3.0/ or send a letter to | * To view a copy of this license, visit http://creativecommons.org/licenses/by-nc-sa/3.0/ or send a letter to | ||
* Creative Commons, 171 Second Street, Suite 300, San Francisco, California, 94105, USA. | * Creative Commons, 171 Second Street, Suite 300, San Francisco, California, 94105, USA. | ||
− | |||
− | |||
− | |||
− | |||
− | |||
********************************************/ | ********************************************/ | ||
Revision as of 12:43, 17 October 2014
!Nur kompatibel mit Arduino 1.0.5 - funktioniert nicht mit neueren Arduino Versionen!!!
Arduino Code: <source lang="java"> /*******************************************
* * !!! Use Arduino 1.0.5 !!!!! * * Name.......: multiCameraIrControl Library - Canon Example * Author.....: Sebastian Setz * Version....: 1.2 * Date.......: 2011-01-25 * Project....: http://sebastian.setz.name/arduino/my-libraries/multi-Camera-IR-Control * Contact....: http://Sebastian.Setz.name * License....: This work is licensed under the Creative Commons Attribution-NonCommercial-ShareAlike 3.0 Unported License. * To view a copy of this license, visit http://creativecommons.org/licenses/by-nc-sa/3.0/ or send a letter to * Creative Commons, 171 Second Street, Suite 300, San Francisco, California, 94105, USA. ********************************************/
- include <multiCameraIrControl.h>
Canon D5(10);
void setup(){
pinMode(13, OUTPUT); // onBoardLED
}
void loop(){
D5.shutterNow(); // trigger // D5.shutterDelayed(); digitalWrite(13, HIGH); // blik delay(500); digitalWrite(13, LOW); delay(3000); // <----- wait
} </source>