Embedded System Design 2 - Project
|
All code for the DS18B20 temperature sensor. More...
#include <stdint.h>
Go to the source code of this file.
Functions | |
int32_t | readTempDS18B20 (void) |
Get a temperature value from the DS18B20. More... | |
All code for the DS18B20 temperature sensor.
Copyright (C) 2019 - Brecht Van Eeckhoudt
This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version.
This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
A copy of the GNU General Public License can be found in the LICENSE
file along with this source code.
Some methods use code obtained from examples from Silicon Labs' GitHub. These sections are licensed under the Silabs License Agreement. See the file "Silabs_License_Agreement.txt" for details. Before using this software for any purpose, you must agree to the terms of that agreement.
Definition in file DS18B20.h.
int32_t readTempDS18B20 | ( | void | ) |
Get a temperature value from the DS18B20.
USTimer gets initialized, the sensor gets powered, the data-transmission takes place, the timer gets de-initialized to disable the clocks and interrupts, the data and power pin get disabled and finally the read values are converted to an int32_t
value.
Negative temperatures work fine.
Definition at line 113 of file DS18B20.c.