Posts Project: Grass Head [time lapse video]
Post
Cancel

Project: Grass Head [time lapse video]

Story

Last week we started to foster a grasshead. After the first day I remembered a cool project which can remotely trigger any DSLR camera which have IR or wired remote shutter option. I have a Pentax K200Dwhich is a regular camera with such a 2.5mm jack based shutter trigger. This DIY trigger is great for a lot project. Some time ago I decided to build it to capture some lightning without observing the thunder during a whole night. Of course I’ve never built it :-) .

So I decided to create a time lapse video of the grasshead while the grass is growing. Needless to say that the linked project is an overkill to achieve this and I had only one day before the grass started to grow as it was already sprinkled :-) . So the quick and dirty solution was selected, which is a small AVR and a solid state relay, nothing more. The selected time interval was one picture in every half hour. Rendering into a 15fps movie, one day will take 3.3 sec.

“Hardware”

I had to achieve the maximum battery life for the camera so I set it to sleep after one minute of idle. To get fairly constant light, I used flash for the pictures and F8 aperture for the good depth of field. There was pretty cloudy days of this week, so the sun wasn’t bother the pictures too much.

ShutterTimer

SONY DSC SONY DSC

I installed one high brightness LED to help the autofocus when the camera is waking up from sleeping during the night.

“Software”

For such a complex hardware, the software is also pretty huge :-) . The 1MHz downclocked ATTINY45 produces 3906 overflow with the 8 bit timers, which is almost 4 tick per a second if I use a 1024 prescaler. More than enough accurate for the quick design. I used only macroes to express the algorithm, so the program contains no function call at all and only need 2 bytes of memory :-) .

The elapsed time is counted in the timer interrupt. First the AF is triggered 4 seconds before the deadline. This was far enough for my camera to wake up from sleep mode and find the focus (if focus is not found when the shutter is triggered, it won’t make the picture). One second before the selected time interval it triggers the shutter as well. Than it releases both trigger contacts.

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
/* 
 * ShutterTimer.c 
 * 
 * Created: 12/7/2014 1:02:25 PM 
 *  Author: libesz (huszty.gergo@digitaltrip.hu) 
 * 
 *  Chip: ATTINY45@1MHz 
 */  
 
#include <avr/interrupt.h> 
#include <avr/io.h> 
 
//AutoFocus pin is driven from PORTB3 (the inverted half on the relay) 
#define AF_OFF() PORTB|=1<<3; 
#define AF_ON() PORTB&=~(1<<3); 
 
//Shutter pin is driven from PORTB4 (the non-inverted half on the relay) 
#define SHUTTER_OFF() PORTB&=~(1<<4); 
#define SHUTTER_ON() PORTB|=1<<4; 
 
//set the two needed pin as output and  
//turn off both output of the solid state relay (LH1502B) 
#define INIT_GPIO() DDRB=(1<<3)|(1<<4);AF_OFF();SHUTTER_OFF(); 
 
//set TIMER0 prescaler to 1024; this will cause 3.8 tick/sec (~4HZ) 
#define INIT_TIMER0() TCCR0B|=1<<CS02|1<<CS00;TIMSK|=1<<TOIE0; 
 
#define SECOND_PRESCALER 4 
#define MINUTE_PRESCALER SECOND_PRESCALER*60 
#define HOUR_PRESCALER MINUTE_PRESCALER*60 
volatile unsigned int overflow_counter = 0; 
 
//set this to adjust the shooting interval 
#define SHOOT_PRESCALER MINUTE_PRESCALER*30 
 
ISR(TIMER0_OVF_vect) { 
  ++overflow_counter; 
  switch(overflow_counter) { 
    case SHOOT_PRESCALER-(5*SECOND_PRESCALER): 
      AF_ON(); 
      break; 
    case SHOOT_PRESCALER-(1*SECOND_PRESCALER): 
      SHUTTER_ON(); 
      break; 
    case SHOOT_PRESCALER: 
      SHUTTER_OFF(); 
      AF_OFF(); 
      overflow_counter = 0; 
      break; 
  }   
} 
 
int main(void) { 
  INIT_GPIO(); 
  INIT_TIMER0(); 
  sei(); 
  while(1); 
}

The result

After a week of taking the 340 pictures I rendered out the result with the help of this article. Check it in 1080p, it is quite cool :-)

You can build such a setup in an hour.

Happy timelapsing!

This post is licensed under CC BY 4.0 by the author.