#cameratrigger
Explore tagged Tumblr posts
Photo
Top 10 Reasons to Back @omnifob | #10 Built-In Remote Camera Trigger 📸 Use your OmniFob to trigger the camera on your phone from across the... field for group pics & selfies. Click the link in our bio to learn more. . . . #OmniFobTop10 #CameraTrigger #SmartFob #Kickstarter #OmniFob #selfie #smartthingstechnology #smartlighting #iot #smartremote #smartfob #fob #smarthome #connected #iotdevice #internetofthings #newtech #vegastech #lifestyle #keyport #iotfob #liferemote #smarttech #smarttechnology #controlyoureverything (at Rockford, Washington) https://www.instagram.com/p/B0woyUMH4pq/?igshid=12g1siab78zrr
#10#omnifobtop10#cameratrigger#smartfob#kickstarter#omnifob#selfie#smartthingstechnology#smartlighting#iot#smartremote#fob#smarthome#connected#iotdevice#internetofthings#newtech#vegastech#lifestyle#keyport#iotfob#liferemote#smarttech#smarttechnology#controlyoureverything
0 notes
Photo
With #shutterrelease, #PlutoTrigger releases your camera shutter wirelessly from your phone. Seven release modes are available: Single, Focus, Hold, Lock, Bulb, Burst and Timed. Learn more at https://plutotrigger.com/
0 notes
Text
CameraMainTrigger
#include<ESP8266WiFi.h> #include<WiFiClient.h> #include<ESP8266WebServer.h>`
const char *ssid = "gromit"; const char *password = ""; int trig = D0; // Camera trigger
ESP8266WebServer server(80);
void handle_led1() { digitalWrite(2, 1); server.send(200, "text/plain", String("Waiting!!")); }
void handle_led0() { digitalWrite(2, 0); server.send(200, "text/plain", String("Motion Detected!!")); }
void setup() { delay(1000); Serial.begin(115200); // prepare GPIO2 pinMode(2, OUTPUT); digitalWrite(2, 0);
Serial.println(); Serial.print("Configuring access point..."); /* You can remove the password parameter if you want the AP to be open. */ WiFi.softAP(ssid, password);
IPAddress myIP = WiFi.softAPIP(); Serial.print("AP IP address: "); Serial.println(myIP); server.begin(); Serial.println("HTTP server started"); server.on("/led1", handle_led0); server.on("/led0", handle_led1);
pinMode(trig, OUTPUT); // trigger for camera }
void loop() { server.handleClient(); digitalWrite(trig, LOW); // CameraTrigger off Serial.println("Camera is on standby..."); delay(500); digitalWrite(trig, HIGH); // CameraTrigger On Serial.println("Camera took a picture!"); delay(1000); }
0 notes
Photo
Want to trigger multiple cameras simultaneously AND wirelessly? Check out the RF Transmitter & Receiver of #PlutoTrigger. Learn more at https://plutotrigger.com/
0 notes
Photo
#PlutoTrigger has infrared(IR) remote control capability, which enables it to support a wide variety of cameras (not just DSLRs). It can also work as a selfie remote for your iPhone (Pluto Camera required). Learn more at https://plutotrigger.com/
0 notes
Photo
#PlutoTrigger enables your DSLR to do high-speed #photography triggered by sound, by light, or by something breaking a laser beam aimed at the Pluto Trigger (the laser is included). Learn more at https://plutotrigger.com/
0 notes
Photo
Looking for a reliable #Trigger supplier? #PlutoTrigger is a high-speed smart camera trigger that's controlled by a free iPhone/Android app over Bluetooth LE(Low Energy) that can be used for remote shooting, time lapse, etc. Learn more at https://plutotrigger.com/
0 notes
Photo
#PlutoTrigger has infrared(IR) remote control capability, which enables it to support a wide variety of cameras (not just DSLRs). It can also work as a selfie remote for your iPhone(Pluto Camera required). Learn more at https://plutotrigger.com/
0 notes
Photo
You know those fancy photos of water droplets colliding in mid-air? You can achieve that with #PlutoTrigger, too! It can also take pictures triggered by motion or vibration. Learn more at https://plutotrigger.com/
0 notes
Photo
#plutotrigger is a high-speed smart #cameratrigger that enable your DSLR to do high-speed photography triggered by sound, by light, or by something breaking a laser beam aimed at the Pluto Trigger (the laser is included). Learn more at https://plutotrigger.com/
0 notes
Photo
#plutotrigger is a high-speed smart #cameratrigger that can be used for remote shooting, time lapse, High Dynamic Range (HDR) photography,etc. With the built-in PIR sensor, Pluto Trigger can detect animals’ body heat and take photos. Learn more at https://plutotrigger.com/
0 notes
Video
tumblr
Working prototype :) Motion Sensor + Camera
Working Code:
/* PIR sensor tester Modified by Brandon */
int ledPin = 13; // choose the pin for the LED (13) ** Black Wire int trig = 11; // Camera trigger pin (11) ** Green Wire int inputPin = 2; // choose the input pin (for PIR sensor) Pin (2) ** Yellow Wire int pirState = LOW; // we start, assuming no motion detected int val = 0; // variable for reading the pin status
void setup() { pinMode(ledPin, OUTPUT); // declare LED as output pinMode(inputPin, INPUT); // declare sensor as input pinMode(trig, OUTPUT); // declare CameraTrigger as output digitalWrite(trig, HIGH); // digital write for the camera trigger
Serial.begin(9600); }
void loop() { val = digitalRead(inputPin); // read input value if (val == HIGH) { // check if the input is HIGH digitalWrite(ledPin, HIGH); // turn LED ON if (pirState == LOW) { // we have just turned on Serial.println("Motion detected!"); // We only want to print on the output change, not state pirState = HIGH; } digitalWrite(trig, LOW); // CameraTrigger off Serial.println("Camera is on standby..."); delay(500); digitalWrite(trig, HIGH); // CameraTrigger On Serial.println("Camera took a picture!"); delay(1000); } else { digitalWrite(ledPin, LOW); // turn LED OFF if (pirState == HIGH) { // we have just turned of Serial.println("Motion ended!"); // We only want to print on the output change, not state pirState = LOW; } } }
0 notes