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
-2
votes
1 answer

Temperature variation plot in ggplot

I have hourly temperature data from an old experiment. I would like to summarize the dataset into a graph in ggplot showing the mean temperature of each experimental treatment, and the variation in temperatures within each treatment every hour. I…
I Del Toro
  • 913
  • 4
  • 15
  • 36
-2
votes
1 answer

Maximum temp GTX780m Alienware

I have an alienware 17 with an GTX780m. And im currently mining feathercoins. But I noticed that my gpu temperature went to 78 degrees. Is this dangerous? Greetz Vinnie
6kgstront
  • 33
  • 7
-2
votes
3 answers

C SIMPLE Temperature converter / Celsius to Fahrenheit UNKNOWN errors & output

I just started programming in C a few days ago and have a few questions: The following program converts Celsius into Fahrenheit and vice versa. I am getting a Segmentation fault error. #include #include #include float…
Sarah97
  • 59
  • 1
  • 2
  • 10
-3
votes
1 answer

Pls answer. My code is not working. The cout is not working

#include #include int main() { int C; //let C be Celsius int F; //let F be Fahrenheit cout << "Enter the temperature in Celsius: "; cin >> C; cout << "Enter the temperature in Fahrenheit: "; …
NDCjswhjb
  • 1
  • 1
-3
votes
2 answers

Finding which row in an array has the largest average temperature

I need to find the row in an array that has the largest average temperature. There two main variables, one that indicates how many days have temperature measurements and another that indicates how many measurements were taken each day. Fortunately,…
John Smith
  • 11
  • 2
-3
votes
1 answer

Deep learning to predict the temperature

Let's say I have a training data. I train the model for whole number temperatures like 1,2,3,4,5 degrees. Basically, Those output temperatures are the labels. How can I predict the values that lies between two temperatures like 2.5 degree. It is not…
-3
votes
3 answers

convert temperature from decimal to whole using xamarin forms

just curious how will I define the following in forms. c# weather.Temperature = (string)results["main"]["temp"] ; xaml
Pxaml
  • 651
  • 2
  • 12
  • 38
-3
votes
3 answers

How to make the hottest CPU temperature?

Besides just running an infinite loop, are there any tricks (like maybe cache misses?) to making a CPU as hot as possible? This could be architecture specific or not.
s g
  • 5,289
  • 10
  • 49
  • 82
-3
votes
3 answers

converting 5 temperatures from fahrenheit to celsius

Every day, a weather station receives 5 temperatures expressed in degree Fahrenheit. Write a program to accept temperature in Fahrenheit, convert it to Celsius and display the converted temperature on the screen. After 5 temperatures, the message…
gadoora
  • 1
  • 1
  • 1
-4
votes
0 answers

Is there a way for the sensor outputs to be put into columns in C++?

I am working in C++ with the arduino and blue robotics sensor. I want to reformat the outputs into columns. For example: MS5837 Pressure (mbar) MS5837 Temperature (degC) TSYS01 Temperature (degC) 2 6 …
Emma
  • 1
  • 1
-4
votes
1 answer

Trying to read Thermal Data from Hikvision Camera in Python

I'm looking for solution to access thermal data of camera. well i used OpenCV and only could got original image. but there is no more data for process like temperature. I tried available library about HikVision cameras and surfed the net for this.…
-4
votes
1 answer

Is there any way of reading temperature without using SensorManager?

I have to read the environment temperature from mt app what are the ways
-4
votes
1 answer

Python Looping for Store Data

I want to ask about looping. This my Code I'm using Python. Please Help me to get the looping. temp = 0 # temperature valve = 0 #control temperature while True : if temp = 30 valve =+ 20 print "temp now 30 and valve 20" elif temp = 40 …
-4
votes
1 answer

C programming-temperature conversion issue

Question from book: Write a program that does temperature conversion from Fahrenheit to Celsius, your program should : prompt the user for which type of conversion they want to do. prompt the user for the temperature they want to convert. I am…
user3723557
  • 11
  • 2
  • 6
-5
votes
1 answer

WEMOS D1 + DallasTemperature: How to print temperature and temperature comparison in if

I make a controller of heating with DS18B20 and Wemos D1 board, but if i try print or check the temperature in if then give back 0 in int. What is the problem? // This Arduino sketch reads DS18B20 "1-Wire" digital // temperature sensors. // …
AGMT01
  • 13
  • 3
1 2 3
41
42