Compare commits
3 commits
8d48fd2708
...
ec670f90e4
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
ec670f90e4 | ||
|
|
728bd1be43 | ||
|
|
9c1830cf12 |
4 changed files with 6 additions and 6 deletions
6
.github/workflows/githubci.yml
vendored
6
.github/workflows/githubci.yml
vendored
|
|
@ -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
|
||||
|
|
|
|||
|
|
@ -29,6 +29,8 @@
|
|||
|
||||
#include "Adafruit_SHTC3.h"
|
||||
|
||||
static uint8_t crc8(const uint8_t *data, int len);
|
||||
|
||||
/*!
|
||||
* @brief SHTC3 constructor
|
||||
*/
|
||||
|
|
|
|||
|
|
@ -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;
|
||||
|
||||
/**
|
||||
|
|
|
|||
|
|
@ -1,5 +1,5 @@
|
|||
name=Adafruit SHTC3 Library
|
||||
version=1.0.0
|
||||
version=1.0.1
|
||||
author=Adafruit
|
||||
maintainer=Adafruit <info@adafruit.com>
|
||||
sentence=Arduino library for SHTC3 temperature & humidity sensor.
|
||||
|
|
|
|||
Loading…
Reference in a new issue