If i had for example 40 cameras the point 1) become very boring...is there an automatic way to start the cameras?
To do this, you need to have external power supplies you can control, and have some way to hold the power buttons down on the cameras. Then when the power supply is turned on, the cameras will start immediately. You should still shut the camera down with software (shut_down() from ptp) and then turn off the power supply.
Alternately, you could rig servos to physically press the power button, or modify it to
You should be able to find some threads about this on the forum.
Beware that that it is possible to damage the physical power switch:
http://chdk.setepontos.com/index.php?topic=11434.0 2) Open CHDK PTP; 3) Click Connect 4) Use the codes;
You only need to click connect if you are working with one camera. If you are using multicam, you can just use the multicam commands.
You may find that the CLI works better than the GUI for this kind of thing. To start chdkptp without the GUI, use chdkptp -i, or a -e option as shown below. You can use -i and -e together to run some commands at startup and then go to interactive mode.
You can also put all your commands in a file, and run them like
chdkptp -e"source myfile.txt"
or put all your code in a lua file, and use something like
chdkptp -e"exec require'myfile.lua'
If you need interactive control, you can still put all your commands in a file and use source or exec (exec is the same as the ! command, but some shells treat ! specially so if you are using it with -e, exec is safer)
with "job group" i mean "working group".....but i understand that is not simple!!!!
chdkptp is open source and I welcome code contributions.