Ganglion documentation, conversion from ADC sample to uV
At this document page,
https://docs.openbci.com/Ganglion/GanglionDataFormat/
it says at the bottom:
Scale Factor (Volts/count) = 1.2 Volts * 8388607.0 * 1.5 * 51.0;
which seems off since this is millions of volts per count, and we want microvolts. I think you meant
data_out = ((delta scalp voltage)/1.2 voltage reference) * 8388608 * G (= 51) * 1.5
which is from table 5.3 on the reference sheet-- I can't find Table 7.
This turns out to come out to 0.00186995 microvolts/ digitaltick which makes more sense AFAIK.
https://docs.openbci.com/Ganglion/GanglionDataFormat/
it says at the bottom:
Scale Factor (Volts/count) = 1.2 Volts * 8388607.0 * 1.5 * 51.0;
which seems off since this is millions of volts per count, and we want microvolts. I think you meant
data_out = ((delta scalp voltage)/1.2 voltage reference) * 8388608 * G (= 51) * 1.5
which is from table 5.3 on the reference sheet-- I can't find Table 7.
This turns out to come out to 0.00186995 microvolts/ digitaltick which makes more sense AFAIK.
Comments