How To Build A Bluetooth Camera Shutter Release Trigger Controlled by your Smart Phone or Tablet

This tutorial will show you how to build a smart phone or tablet controlled Bluetooth camera shutter release using a arduino microcontroller and a few simple parts.

Click on the video below for full tutorial.

Parts List:

#affiliate links#

ARDUINO nano

logic lvl converter

PC817 optocoupler

330Ω resistor

speaker

bread board

jumper wires

9 volt battery

cable for your camera

handle bar camera mount

project box

Schematic:

The APP:

Click here to download the app

ARDUINO Code:

int del = 0;
#define cam 10
int val;

void setup() {
pinMode(cam, OUTPUT);
Serial.begin(9600);
}

void loop() {
if (Serial.available() >= 2 )
{
unsigned int a = Serial.read();
unsigned int b = Serial.read();
unsigned int val = (b * 256) + a;

if (val >= 0 && val <= 10000)
{
del = val;
}
else if (val == 11111)
{
delay(del);
digitalWrite(cam, HIGH);
delay(50);
digitalWrite(cam, LOW);
}
}
}