Commit Graph

78 Commits

Author SHA1 Message Date
08c70104ef Converted to C++ and esp-idf 2021-07-13 12:53:36 +02:00
6cea0d9c55 Bump to 1.1.4 1.1.4 2020-06-29 14:37:07 -04:00
3a8b54ab50 fix https://github.com/adafruit/Adafruit_Sensor/issues/33 2020-06-28 17:33:34 -04:00
9b59a72778 Added syntax highlighting to README 1.1.3 2020-05-26 15:50:21 -04:00
add8c644ef Merge pull request #31 from HappyFacade/patch-1
Add syntax highlighting to readme
2020-04-05 20:16:50 -04:00
df43f2a3fd Add syntax highlighting to readme 2020-04-05 11:45:08 -07:00
29c609a11a clang 1.1.2 2020-02-02 04:00:45 -05:00
6d81aaea96 clang 2020-02-02 03:55:46 -05:00
82a56eaaab Merge branch 'master' of github.com:adafruit/Adafruit_Sensor 2020-02-02 03:29:54 -05:00
151a26af64 add SENSORS_RADS_TO_DPS 2020-02-02 03:29:48 -05:00
7b346161f9 add repository_dispatch event 2020-01-07 14:06:25 +07:00
5fa41392d8 fix missing enum 1.1.1 2019-12-29 02:13:22 -05:00
739172c539 clang doesnt like unicodes 1.1.0 2019-12-28 21:31:51 -05:00
cb74461b75 doxyd 2019-12-28 21:26:18 -05:00
1d5bac83e5 clang2 2019-12-28 20:43:08 -05:00
0588e9b8bb bump & clang 2019-12-28 20:39:21 -05:00
0eb0a45560 change it to adxl343 example 2019-12-28 20:34:46 -05:00
122c8615dc add mock example from bmp280 2019-12-28 20:31:13 -05:00
11606e6778 add https://github.com/adafruit/Adafruit_Sensor/issues/28 2019-12-28 20:29:43 -05:00
0e465a4d1f add workflow actions 2019-12-28 20:28:01 -05:00
1f2319ea53 add pretty printer 2019-12-28 20:26:22 -05:00
ab724dd4d8 Merge branch 'master' of github.com:adafruit/Adafruit_Sensor 2019-05-24 20:57:22 -04:00
6f4785cd49 Update library.properties 1.0.3 2019-03-11 11:37:28 -04:00
1395351123 Merge pull request #26 from madhephaestus/patch-1
Adding the includes line to the library.properties
2019-03-11 11:37:03 -04:00
073746a60b Adding the includes line to the library.properties
This line allows the Arduino framework to discover that this library provides this header file.
2019-03-11 10:08:54 -04:00
a78507261d Merge pull request #22 from patridge/patch-1
Include Adafruit BME280 driver in list.
2018-09-25 08:57:03 -07:00
418efaa53f Include Adafruit BME280 driver in list. 2018-09-25 07:38:28 -07:00
a4f8d5d8d5 Merge pull request #12 from malachi-iot/master
non-Arduino compatibility
2018-09-17 21:25:41 +02:00
0c7eebfd42 Merge pull request #14 from DoNck/master
Update README.md
2018-09-17 21:24:55 +02:00
88a09a15d3 Merge pull request #17 from mrjimenez/pr_2
Fixes an ISO-8859-1 vs UTF-8 issue
2018-09-17 21:24:26 +02:00
4c373fbed1 Merge pull request #16 from mrjimenez/pr_1
Adding a .gitignore to the project
2018-09-17 21:23:50 +02:00
ce4b31ece8 Merge pull request #21 from phildubach/master
Suppress unused argument warning in enableAutoRange()
2018-09-17 21:21:23 +02:00
01c5133ecc Suppress unused argument warning in enableAutoRange() 2018-09-17 11:47:53 -07:00
9138c60af7 Fixes an ISO-8859-1 vs UTF-8 issue
Files should be enconded with UTF-8, ISO-8859-1 and variants are
outdated.

This patch fixes an issue with the degree sign, which was coded
in ISO-8859-1 rather than UTF-8.
2018-02-17 12:17:51 -02:00
c2358294eb Adding a .gitignore to the project 2018-02-17 10:59:28 -02:00
ee114d0f59 Merge branch 'master' of github.com:adafruit/Adafruit_Sensor 2017-10-02 16:29:34 -04:00
1e2482f855 Update README.md 2017-09-21 11:03:17 +02:00
ec509fc335 non-Arduino compatibility
Should work with most standard C++ implementations
2017-04-18 01:50:32 -07:00
e985f2253a Updated link to DHT repo 2016-10-26 23:50:47 +02:00
d2a5ad7f5b Merge branch 'master' of github.com:adafruit/Adafruit_Sensor 2015-11-19 10:28:27 -05:00
f2af6f4efc Added BNO055 to readme 2015-09-01 15:57:59 +02:00
30a9012088 Remove unused .cpp file. Code was previously moved into the header. 1.0.2 2015-07-07 21:29:48 -07:00
04a0f64390 Remove unused avr/pgmspace.h reference to fix #8. 2015-07-07 21:22:15 -07:00
23455ff3e9 Bump library.properties to make most recent code the current version. 1.0.1 2015-06-26 13:55:08 -07:00
e094932954 Merge branch 'master' of github.com:adafruit/Adafruit_Sensor 2015-05-13 13:43:03 -04:00
efe12d940f Merge pull request #6 from stappon/virtual_dtor
Add virtual destructor
2015-05-07 18:30:16 +02:00
73a4e73c87 mark unimplemented virtual functions as abstract 2015-05-06 23:15:56 -07:00
c7b5e92311 add default constructor in place of constructor() method 2015-05-06 23:15:44 -07:00
1a266c24bf add virtual destructor
base classes without virtual destructors risk undefined behavior if their children are deleted through a pointer to base. see https://isocpp.org/wiki/faq/virtual-functions#virtual-dtors
2015-05-06 23:05:01 -07:00
c28954844f adds library.properties 1.0.0 2015-05-01 12:36:20 -04:00