Tagged Questions

3
votes
4answers
453 views

C++/C# external temperature/weather sensor

I am trying to build a system that would monitor the temperature and alert me when it becomes too hot/cold - I would like to use a USB interface. Where would I get such a device? Are there some open ...
1
vote
3answers
219 views

Using C isdigit for error checking

While using the boolean check for the int num this loop doesn't work. The lines after it go unrecognized. Enter and integer like 60 and it just closes. Did I use isdigit wrong? int main() { int ...
1
vote
2answers
636 views

Get GPU temperature

I am really puzzled here. I want to create an application that does different events upon different temperatures of my graphics card which is an AMD one. The reason i want to make such an ...
0
votes
2answers
79 views

Has anyone been able to use libsensors properly?

Long story short I am trying to write an application that can check cpu temperatures. Using the libsensors(3) man pages I've been able to at least get the libsensors_version number. As of now, here ...
0
votes
3answers
70 views

What's wrong with my temperature conversions?

In this program Iam trying to take 78 degrees Fahrenheit and return them in a class with the Celsius version and kelvin. But for some odd reason I'm just getting this as the output. What am I doing ...