Realizing an SMPTE TimeCode reader/generator with arduino.

Nantonos:
Maybe this posting about a SMPTE timecode decoder is helpful. Or this blogpost about generating it.

note that there is an error in that old post's code, the bit for the drop-frame is the wrong one.
You can replace with:

drop_frame_flag = (tc[1]&0x04)!=0;