Merge pull request #3 from adafruit/fix-ci

fix ci
This commit is contained in:
Paint Your Dragon 2022-11-01 17:17:09 -07:00 committed by GitHub
commit 728bd1be43
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
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;
/**