-
Notifications
You must be signed in to change notification settings - Fork 4
VOC algorithm #2
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Comments
yeah it is not possible at this time because @Sensirion has not release the library code in python only arduino! |
Hello @ladyada |
correct! |
Hello everyone, @Sensirion has published the code in python, please have a look here. Link |
@CrackXT I did find that DFRobot has a python algorithm and have a fork of this respiratory with it working on CircuitPython. See code and examples here I would make a pull request but not sure how Adafruit feels about an algorithm not directly from Sensation. |
sure any PR would be most welcome :) |
Looks like the example for the compensated measurements has the '_index' and '_raw' mixed up. compensated_raw_gas = sgp.measure__index_(temperature=temperature, relative_humidity=humidity should read compensated_raw_gas = sgp.measure_raw(temperature = temperature, relative_humidity = humidity) And voc_index = sgp.measure_raw(temperature=temperature, relative_humidity=humidity) should read voc_index = sgp.measure_index(temperature = temperature, relative_humidity = humidity) Right? |
Hello I would like to measure the VOC value.
I have too little python i2c experience to realize this.
do you have soon for to insert this VOC algorithm?
thank you very much for your work
The text was updated successfully, but these errors were encountered: