Questions tagged [temperature]

A simple definition of temperature is that it is a measure of heat dissipation, This tag can include programming related questions like temperature conversion, temperature detection through device sensors etc.

The temperature of a device is a quantitative measure which indicates how hot or cold the device is, temperature sensitive sensors can be used to make an alarming signal and can be programmed in various programming languages. It is measured by detection of heat radiation by a temperature sensing material, which may be then calibrated in any of various temperature scales, Celsius, Fahrenheit, Kelvin, etc.

Usage of Tag temperature

The tag temperature on stackoverflow can be used to ask questions related to programming a device or application, to sense temperature of a room/device. Tag temperature should be only used for questions related to programming, Please do not ask here questions related to physics or thermodynamics.

624 questions
1
vote
1 answer

Shading the area of Tmax and Tmin

I have generated a df of 366 days as an index and two columns, TMAX and TMIN, when graphing I get something coherent but by shading both lines the result does not make sense, any advice please?…
1
vote
0 answers

How to get the face temperature in opencv python

I'm new to the forum and I certainly don't know the rules. But I have a question I want to determine the temperature of the face with a Raspberry 4 and two cameras one normal, the other thermal (MLX90640). My question is how can I determine the…
user13687982
  • 19
  • 1
  • 3
1
vote
1 answer

transforming a temperature csv file to tiff

I want to transform a csv file into a tiff image. Each single cell of the csv file contains a temperature value which should be transfered as the value for each individual pixel in the tiff image, similar to an rtiff. So far I only managed to export…
R_newbie
  • 11
  • 1
1
vote
1 answer

set up if statement for temperature conversions?

The given function is: def Temp_Conv(Temp_in, case): Where Temp_in is an integer, and case is a string. Case can be inputted as 'C2F' (celsius to fahrenheit) or 'F2C' (fahrenheit to celsius). I only need to convert celsius to fahrenheit, so when…
Stefan
  • 37
  • 5
1
vote
2 answers

Fix the ambient Temperature in Android

I successfully made an app to measure the ambient temperature in Android studio. But the next step doesn't want to work. here's the point: when I start the app the temperature should be shown in 1 textView (works so far). Then it should stay with…
KDeutsch
  • 25
  • 6
1
vote
1 answer

Seasonal Temperature Boxplots in R

I am currently doing some variable exploration and have generated box plots for 3 different climate parameters (Tmin,Tmean,Tmax) I would like to know how to group those variables in one single box plot with a structure similar to this: I've seen a…
k3r0
  • 357
  • 1
  • 10
1
vote
0 answers

Open Hardware Monitor fan control via standard app GUI

I have downloaded and I am using the Open Hardware Monitor app to display the temperatures of my Intel i7 core in my Sony Vaio VPCF1 laptop ( using windows 7 ). But the downlaoded app GUI does not display any fan speed information or any function…
Robert
  • 33
  • 8
1
vote
1 answer

R programming: I am trying to convert temperature from C to F

I am student working with R programming. I don't have a lot of experience with the software but I am willing to learn. I am trying to convert temperature values from C to F and assigning the new values to soil_temp_f on a new column. I also intend…
Emmanuel O.
  • 183
  • 1
  • 1
  • 9
1
vote
0 answers

spatial interpolation for scattered data using natural neighbor in python

I'm trying to interpolate temperatures in a massive body made out of a scintillator called PbWO4. There are 10 outer temperature sensors called 'satellites' which help me refer to the inner temperatures at only 4 points. The main problem I'm facing…
1
vote
0 answers

Can´t read CPU Temperature - Nodejs or WindowsForms

I´m trying to check my CPU Temperature (on an AMD FX-4100 on Windows 10) using a nodejs app (library https://www.npmjs.com/package/systeminformation): const si = require('systeminformation'); si.graphics() .then(data => console.log(data)) …
1
vote
2 answers

ESP8266 request multiple HTTP GET simultaneously

I started my first project with the ESP8266. It's a Temperature Monitor which shows the data on a webserver. Since I don't want to refresh the page manually to get the new data, I'm using HTTP requests to display it. I'm sending 3 different…
jnkllnbrn
  • 15
  • 1
  • 4
1
vote
1 answer

STM32 Temperature sensor power off

I am using internal ADC temp sensor , in a low power device without the sensor in stop mode ,the uController consumes around 4 uA but when the temp sensor is on the consumption goes up to 8-9 uA the problem is i can not turn the sensor OFF / i just…
S2G
  • 121
  • 7
1
vote
2 answers

STM32L4xx USART Low temperature

I have got a problem with an electronic board based on a TSM32L4xx microcontroler. I am using HAL driver for all peripherals initilization. I use USART3 to communicate in RS232 with a computer When the microcontroler rise under -6°C (in a freeze),…
Baptiste
  • 41
  • 7
1
vote
1 answer

How do I run a thornthwaite function (which computes standard precipitation index) by location and latitude in R?

I have the following data: dat <- read.table(text=" id YEAR MONTH TMED PRCP lat 1 1986 1 -14.5 2.3 42.4863 1 1986 2 -13.9 5.7 42.4863 2 1986 1 -12.9 7.2 42.46 2 1986 2 …
Anastasia
  • 13
  • 3
1
vote
0 answers

Interpolate missing climate data from similar datasets

I am working with climate data of several (5) data loggers I used in a field experiment. I have some missing climate data, partially because the loggers were installed after start of the experiment, partially because of defect loggers. For…
Benno
  • 97
  • 8