hey again still getting frustrated by the ir,sound and lightning lol .. been looking at the script
void FireSequence()
{
//See if we are in Intervalometer or Lightning Mode
if((LightningValue > 500) || (IVValue > 500))
{
if(LightningValue > 500)
{
LightningSequence();
}
if(IVValue > 500)
{
IVSequence();
}
}
else
{
//See if we are in IR Trigger or Piezo Trigger Mode
//DetectorValue = analogRead(DetectorSwitch);
if(DetectorValue > 300)
{
// We are in IR Trigger Mode
IRSequence();
}
else
{
// We are in Peizo Trigger Mode
PeizoSequence();
}
}
and was wondering is this line meant to be commented out ?? wot ya think
chris