This commit is contained in:
hathach 2022-11-01 13:20:14 +07:00
parent 8d48fd2708
commit 9c1830cf12
No known key found for this signature in database
GPG key ID: F5D50C6D51D17CBA
3 changed files with 5 additions and 5 deletions

View file

@ -7,11 +7,11 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/setup-python@v1
- uses: actions/setup-python@v4
with:
python-version: '3.x'
- uses: actions/checkout@v2
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- uses: actions/checkout@v3
with:
repository: adafruit/ci-arduino
path: ci

View file

@ -29,6 +29,8 @@
#include "Adafruit_SHTC3.h"
static uint8_t crc8(const uint8_t *data, int len);
/*!
* @brief SHTC3 constructor
*/

View file

@ -48,8 +48,6 @@
#define SHTC3_SLEEP 0xB098 /**< Enter sleep mode */
#define SHTC3_WAKEUP 0x3517 /**< Wakeup mode */
static uint8_t crc8(const uint8_t *data, int len);
class Adafruit_SHTC3;
/**