-
Notifications
You must be signed in to change notification settings - Fork 45
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
tmp102: Initial add of tmp102 driver. (#76)
- Loading branch information
Showing
3 changed files
with
586 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
// Copyright 2024 The Periph Authors. All rights reserved. | ||
// Use of this source code is governed under the Apache License, Version 2.0 | ||
// that can be found in the LICENSE file. | ||
// | ||
// tmp102 provides a package for interfacing a Texas Instruments TMP102 I2C | ||
// temperature sensor. This driver is also compatible with the TMP112 and | ||
// TMP75 sensors. | ||
// | ||
// Range: -40°C - 125°C | ||
// | ||
// Accuracy: +/- 0.5°C | ||
// | ||
// Resolution: 0.0625°C | ||
// | ||
// For detailed information, refer to the [datasheet]. | ||
// | ||
// A [command line example] is available in periph.io/x/devices/cmd/tmp102 | ||
// | ||
// [datasheet]: https://www.ti.com/lit/ds/symlink/tmp102.pdf | ||
// [command line example]: https://github.com/periph/cmd/tree/main/tmp102/ | ||
package tmp102 |
Oops, something went wrong.