Commit Graph

10 Commits

Author SHA1 Message Date
Nicolai Søborg 02ca7a4353
Update dependency requirement
If anyone is reading the file they will know to install `python3-smbus`,
but if someone just do a quick `pip3 install bme680` then make sure to pull smbus from PyPI
2020-11-01 01:11:16 +00:00
Nicolai Søborg 91bb131713
Add dependency: smbus2
Fixes:

```python
>>> import bme680                                                                                                                                                                                          
>>> sensor = bme680.BME680(bme680.I2C_ADDR_PRIMARY)                                                                                                                                                        
Traceback (most recent call last):                                                                                                                                                                         
  File "<stdin>", line 1, in <module>                                                                                                                                                                      
  File "/usr/local/lib/python3.7/dist-packages/bme680/__init__.py", line 22, in __init__                                                                                                                   
    import smbus                                                                                                                                                                                           
ModuleNotFoundError: No module named 'smbus'                                                                                                                                                               
```
2020-05-29 15:35:54 +00:00
Phil Howard 6374bc4241 Test suites and code QA fixes 2018-09-02 11:26:04 +01:00
Phil Howard 50902ac08e Prep for v1.0.5 2018-06-01 17:15:10 +01:00
Phil Howard da6ae97f1f Prep for v1.0.4 2017-12-04 10:37:52 +00:00
Phil Howard 288daed781 Version 1.0.3 prep 2017-11-23 11:25:34 +00:00
Phil Howard 7bc7ef693b Prep for version 1.0.2 2017-10-19 12:21:16 +01:00
Phil Howard 9b18ecf446 Fixed Manifest 2017-10-17 16:02:29 +01:00
Phil Howard 7f2dbdf48e Tweaked 2017-10-17 15:27:30 +01:00
Phil Howard 16853dc4f2 Added packaging, dropped copy of C code 2017-10-17 15:09:19 +01:00