tinygo.org/x/drivers@v0.27.1-0.20240509133757-7dbca2a54349/shtc3/registers.go (about) 1 package shtc3 2 3 // Constants used for I2C. 4 5 const ( 6 SHTC3_ADDRESS = 0x70 7 SHTC3_CMD_WAKEUP = "\x35\x17" // Wake up 8 SHTC3_CMD_MEASURE_HP = "\x7C\xA2" // Read sensor in high power mode with clock stretching 9 SHTC3_CMD_SLEEP = "\xB0\x98" // Sleep 10 SHTC3_CMD_SOFT_RESET = "\x80\x5D" // Soft Reset 11 )