Skip to content

Commit 7e6e094

Browse files
committed
Updated documentation for initial release
1 parent d512ec9 commit 7e6e094

File tree

2 files changed

+5
-123
lines changed

2 files changed

+5
-123
lines changed

README.md

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,7 @@
1-
HyperDisplay Arduino Library
1+
SparkFun SHTC3 Humidity and Temperature Sensor Library
22
========================================
33

4-
Providing uniform drawing and printing functions for a wide range of displays in the Arduino environment
5-
4+
This Arduino library allows you to take Humidity and Temperature readings using the SHTC3 sensor from Sensirion using the standard Wire (I2C) library built into Arduino. This means the library is compatible with any Arduino-compatible board that has I2C hardware. Key features of the library include the ability to return either raw ADC values or flaoting point values in %RH and deg C/deg F, data validity indicators based on CRC checking, and a unified return status format for easy error checking. For advanced users an on-return callback is implemented to illuminate the order of program execution.
65

76
Repository Contents
87
-------------------
@@ -19,11 +18,11 @@ Documentation
1918

2019
Products that use this Library
2120
---------------------------------
22-
21+
* [SparkX Humidity Sensor Breakout SHTC3 (Qwiic)](https://www.sparkfun.com/products/15074)
2322

2423
Version History
2524
---------------
26-
25+
**1.0.0** - Initial release
2726

2827
License Information
2928
-------------------

keywords.txt

Lines changed: 1 addition & 118 deletions
Original file line numberDiff line numberDiff line change
@@ -30,140 +30,23 @@ checkCRC KEYWORD2
3030
# Constants (LITERAL1)
3131
#######################################
3232

33-
SF_SHTC3 LITERAL1
3433
SHTC3_ADDR_7BIT LITERAL1
3534
SHTC3_ADDR_WRITE LITERAL1
3635
SHTC3_ADDR_READ LITERAL1
3736
SHTC3_MAX_CLOCK_FREQ LITERAL1
3837
SHTC3_CMD_WAKE LITERAL1
39-
0x3517 LITERAL1
4038
SHTC3_CMD_SLEEP LITERAL1
41-
0xB098 LITERAL1
4239
SHTC3_CMD_SFT_RST LITERAL1
43-
0x805D LITERAL1
4440
SHTC3_CMD_READ_ID LITERAL1
45-
0xEFC8 LITERAL1
4641
SHTC3_CMD_CSE_RHF_NPM LITERAL1
47-
0x5C24 LITERAL1
48-
Clock LITERAL1
49-
stretching LITERAL1
50-
RH LITERAL1
51-
first LITERAL1
52-
Normal LITERAL1
53-
power LITERAL1
54-
mode LITERAL1
5542
SHTC3_CMD_CSE_RHF_LPM LITERAL1
56-
0x44DE LITERAL1
57-
Clock LITERAL1
58-
stretching LITERAL1
59-
RH LITERAL1
60-
first LITERAL1
61-
Low LITERAL1
62-
power LITERAL1
63-
mode LITERAL1
6443
SHTC3_CMD_CSE_TF_NPM LITERAL1
65-
0x7CA2 LITERAL1
66-
Clock LITERAL1
67-
stretching LITERAL1
68-
T LITERAL1
69-
first LITERAL1
70-
Normal LITERAL1
71-
power LITERAL1
72-
mode LITERAL1
7344
SHTC3_CMD_CSE_TF_LPM LITERAL1
74-
0x6458 LITERAL1
75-
Clock LITERAL1
76-
stretching LITERAL1
77-
T LITERAL1
78-
first LITERAL1
79-
Low LITERAL1
80-
power LITERAL1
81-
mode LITERAL1
8245
SHTC3_CMD_CSD_RHF_NPM LITERAL1
83-
0x58E0 LITERAL1
84-
Polling LITERAL1
85-
RH LITERAL1
86-
first LITERAL1
87-
Normal LITERAL1
88-
power LITERAL1
89-
mode LITERAL1
9046
SHTC3_CMD_CSD_RHF_LPM LITERAL1
91-
0x401A LITERAL1
92-
Polling LITERAL1
93-
RH LITERAL1
94-
first LITERAL1
95-
Low LITERAL1
96-
power LITERAL1
97-
mode LITERAL1
9847
SHTC3_CMD_CSD_TF_NPM LITERAL1
99-
0x7866 LITERAL1
100-
Polling LITERAL1
101-
T LITERAL1
102-
first LITERAL1
103-
Normal LITERAL1
104-
power LITERAL1
105-
mode LITERAL1
10648
SHTC3_CMD_CSD_TF_LPM LITERAL1
107-
0x609C LITERAL1
108-
Polling LITERAL1
109-
T LITERAL1
110-
first LITERAL1
111-
Low LITERAL1
112-
power LITERAL1
113-
mode LITERAL1
11449
SHTC3_Status_Nominal LITERAL1
115-
0 LITERAL1
116-
The LITERAL1
117-
one LITERAL1
118-
and LITERAL1
119-
only LITERAL1
120-
all LITERAL1
121-
is LITERAL1
122-
good LITERAL1
123-
return LITERAL1
124-
value LITERAL1
12550
SHTC3_Status_Error LITERAL1
126-
The LITERAL1
127-
most LITERAL1
128-
general LITERAL1
129-
of LITERAL1
130-
error LITERAL1
131-
values LITERAL1
132-
can LITERAL1
133-
mean LITERAL1
134-
anything LITERAL1
135-
depending LITERAL1
136-
on LITERAL1
137-
the LITERAL1
138-
context LITERAL1
13951
SHTC3_Status_CRC_Fail LITERAL1
140-
This LITERAL1
141-
return LITERAL1
142-
value LITERAL1
143-
means LITERAL1
144-
the LITERAL1
145-
computed LITERAL1
146-
checksum LITERAL1
147-
did LITERAL1
148-
not LITERAL1
149-
match LITERAL1
150-
the LITERAL1
151-
provided LITERAL1
152-
value LITERAL1
153-
SHTC3_Status_ID_Fail LITERAL1
154-
This LITERAL1
155-
status LITERAL1
156-
means LITERAL1
157-
that LITERAL1
158-
the LITERAL1
159-
ID LITERAL1
160-
of LITERAL1
161-
the LITERAL1
162-
device LITERAL1
163-
did LITERAL1
164-
not LITERAL1
165-
match LITERAL1
166-
the LITERAL1
167-
format LITERAL1
168-
for LITERAL1
169-
SHTC3 LITERAL1
52+
SHTC3_Status_ID_Fail LITERAL1

0 commit comments

Comments
 (0)