Hello, I'm planning to realize a system of wireless tally camera system based upon arduino nano and RF24 modules.
the ref of the RF24 is this one :
These one seems work with very long distances :
Transmission distance: 520m@2Mbps, 750m@ 1Mbps, >1000m@250kbps !!!
I just explain what is tally for the people that doesn't know it.
I'm working with wideo to record live concerts during big festival in europe. So from there are often 5 to 9 cameras to record one concert.
When the art director switches between the different cameras, the camera operator needs to know that he's 'on air'.
This is easily done by the tally system. Every time a camera is switched 'on air' there is a relay contact that is switced on the video mixer of the art director. So from it's easy to get this information and then use it to light on a red led that is on the concerned camera. This is the tally (the Red light on the active camera).
So from my project would be like this schema :
There will be 3 different kind of nano+RF24 modules : Master, Relay, Camera.
Master module : Located on a video truck or somewhere else.
This one is connected to the video mixer and get the relay information from it. Then this module sends the ID of the new camera that will receive the tally signal.
Relay module : this module can be at 200m from the Master one. It has to be located at a good place to receive the better signal from the Master modeule.
His function is to receive the datas (active ID camera) from the Master and send it to the Camera modules.
Camera modules :
Each camera get this module and will get the data transmited by the Relay module.
So from there are only 2 actions to realize :
If the ID of the Camera module is the same of the data transmited by the Relay module then Switch On the Led.
If the ID of the Camera module is different of the data transmited by the Relay module the Switch Off the Led.
I already own few Nano and I'm waiting for the RF24 modules in few days.
My idea to realize this project is quite simple. If someone can get me advices to improve it, please do it !
Master will send data to pipe #1
Relay listen on pipe #1 and send it to pipe #2
Camera Modules (up to 9) listen on pipe#2, and then act considering the data (switch on or off the red led).
Is this way of doing it seems to you ok ? Need the active camera to send back an ACK to say : I received the data ?
Thanks for all of your comments about this project.
Best regards.
Grag38
ps : I want to realize this project because a similar system with only 4 wireless camera tally is selled around 4000 euros !!!!!
ps2 : I'm ok with electronic, developping program in C and I'm feel ok with arduino. I'm just looking for idea to do it well, not for the other to do it for me ;o)
So from getting information from the video mixer with the relays is easy. Lighting a red led is very easy. Just want to work about the protocol.