I'm working on ECG data I'm getting from a Movesense 2.0.0 HR+ sensor by using /meas/ECG
API.
I'd like to know what's the unit of measurement for them and if they can be converted to milliVolts.
Asked
Active
Viewed 156 times
1 Answers
2
The correct scaling factor is:
VOLTS_PER_LSB = 1.0f / 20.0f / (1 << 17);
i.e. one LSB corresponds to 0.38147 uV
Full disclosure: I work for the Movesense team

PetriL
- 1,211
- 1
- 7
- 11