Is there a way to have two groups of pulsing outputs? I don't really have any specific ideas of how many outputs in each group. An example I was thinking of is if you used an arduino to control Stans gas processor. One group of outputs could be for the lasing and the other for the high voltage. Each group would have it's own frequency. Not sure if that is needed for the processor or not, could be that the HV pulse should be the same as the LED pulses?
Nate
To have each group it's own total independent frequency is best realized with two arduino boards
:)But there are some settings that could simulate two groups, lets see some examples with two groups of 3 outputs.
Simple train with extra output bits looks funny;
root@pulsefire: pulse_steps 6
root@pulsefire: pulse_mode 2
root@pulsefire: pulse_data_init 9
root@pulsefire: pulse_dir 2
PPMA data for 2 groups;
root@pulsefire: pulse_dir 0
root@pulsefire: pulse_mode 4
root@pulsefire: ppm_data 3 0
root@pulsefire: ppm_data 12 1
root@pulsefire: ppm_data 48 2
root@pulsefire: ppm_data 3 3
root@pulsefire: ppm_data 12 4
root@pulsefire: ppm_data 48 5
root@pulsefire: ppm_data_len 6 (in version 0.6 this is 5)
PPMA data for 2 groups with dubbel speed;
root@pulsefire: pulse_mode 4
root@pulsefire: ppm_data 195 0
root@pulsefire: ppm_data 780 1
root@pulsefire: ppm_data 3120 2
root@pulsefire: ppm_data 15 3 (=1+2+4+8)
root@pulsefire: ppm_data 240 4 (=16+32+64+128)
root@pulsefire: ppm_data 3840 5 (=256+512+1024+2048)
root@pulsefire: ppm_data_len 12 (in version 0.6 this is 11)
root@pulsefire: info_ppm
ppm_data00==0000000011000011
ppm_data01==0000001100001100
ppm_data02==0000110000110000
ppm_data03==0000000000001111
ppm_data04==0000000011110000
ppm_data05==0000111100000000
Hope that helps, gr Willem