What unit does get_raw_data_mean return?
Closed this issue · 3 comments
We are using the hx711 to just read strain rather than weight
Hello,
you can use the method get_raw_data_mean(readings=30)
to get just raw data (not converted and not subtracted by the offset) from HX711.
The argument reading sets how many readings should read and then return average. If you do not want to even use the filter or average then just set the reading=1 and this will return immediately single reading.
So that raw data does not have a unit attached to it (e.g. micro-ohms)? It is just meaningless without converting?
Yes that is correct the value you get is unitless. You may want to use the data in special situation. For example the outlier filter first filters out data and then the class converts the data to some units. Dou you have any specific problem or thing that you would like to solve?