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

Python script: Syntax error

I am trying to program a DHT11 temperature and Humidity sensor using my Raspberry Pi 3 model B. I am using a Python script on the shell, but it is not working because here because of a syntax error. I am trying to run it on the raspberry pi terminal…
KGosalia
  • 39
  • 1
  • 5
-5
votes
1 answer

How to construct a loop that produces a temp conversion chart

From input of a starting and ending fahrenheit temperature and a temperature increment, I want to construct a loop that calculates fahrenheit and temperature using the standard formulas and increments the conversion till it gets to the final…
-5
votes
1 answer

Temperature symbols in facet labels

I would like to have a facet plot, the labels should be "13℃","20℃","27℃". I tried to make it in data set, sometimes it works, but not always. Is there some other solutions? Thank you for any comments.
X.Chi
  • 45
  • 8
-5
votes
2 answers

Using goto statement for loop

#include int main() { char choice; float x,y; start: printf("[c] Converts Celsius -> Fahrenheit\n[f] Converts Fahrenheit -> Celsius\n\n\n"); printf("Enter Choice: "); scanf("%c",&choice); if (choice!='c' ||…
-5
votes
1 answer

Object Not found in R code

I'm trying to execute the next code, but in the last lines I found an error because the object 'HRdem' is not found (line 161): library(maptools) library(gstat) library(rgdal) library(lattice) # Download MODIS LST…
Sadae
  • 93
  • 10
-5
votes
2 answers

Operand error in temperature conversion in Java?

I am doing my first Java assignment and I'm struggling with an error here. * To change this license header, choose License Headers in Project Properties. * To change this template file, choose Tools | Templates * and open the template in the…
-5
votes
4 answers

Find High and Low Temp (JAVA) 1st Homework

I cant seem to figure it out. I need to ask the user for 3 floats, got it. Having trouble with the output of the high and low part. Any help would be awesome! package temp; import java.util.Scanner; /** * * @author Pherman */ public class Temp…
-6
votes
2 answers

Java Fahrenheit to Celsius loop (with methods)

I need to convert Fahrenheit to Celsius in a Java program with methods, a for loop statement, and no user input. It is supposed to display Fahrenheit temperatures 0 through 20 and it's Celsius conversions. Any solutions? import…
1 2 3
41
42