EcoRenovator  

Go Back   EcoRenovator > Improvements > Geothermal & Heat Pumps
Advanced Search
 


Blog 60+ Home Energy Saving Tips Recent Posts


Reply
 
Thread Tools Display Modes
Old 03-02-13, 05:34 PM   #1
Mikesolar
Master EcoRenovator
 
Mikesolar's Avatar
 
Join Date: Aug 2012
Location: Toronto
Posts: 958
Thanks: 40
Thanked 158 Times in 150 Posts
Default Arduino issues

OK, even though Arduino is supposed to make us older farts equal to the young dudes in programming, I will readily admit that I am useless at it which is even more embarrassing as I was an electronics technologist 30 years ago. ARRRGGGG.

So all I am trying to do is take the Mega, and sensor shield, add a 10k thermister (2 wire, not the digital stuff that I never see in the heating industry) and see the temp change on the screen.

I followed a thread on yourduino to do this and got errors that I cannot explain and it seems, I cannot even find definitions to some of the phrases given at the bottom of the page when trying to verify the program.

Here is an example:

"was not declared in this scope"

What does that mean? I cannot find a glossary of terms used anywhere. HHHheeeellllpppp (please)

Mikesolar is offline   Reply With Quote
Old 03-03-13, 01:35 AM   #2
RobbMeeX
Eco OWNER!!
 
Join Date: Jul 2012
Location: ATL
Posts: 99
Thanks: 25
Thanked 7 Times in 6 Posts
Default

I am no pro, but is this regarding a variable that was not declared initially? Do you want to post up your sketch?
__________________
In it for the money (savings)
RobbMeeX is offline   Reply With Quote
Old 03-03-13, 06:10 AM   #3
Mikesolar
Master EcoRenovator
 
Mikesolar's Avatar
 
Join Date: Aug 2012
Location: Toronto
Posts: 958
Thanks: 40
Thanked 158 Times in 150 Posts
Default

The sketch is not important so here only because it it taken directly from the the adafruit book about how to use a thermister. I cut and paste the exact sketch from the site and voila......errors.

The phrasing doesn't have enough explanation. Here is what i tried to do:

Code:
// the value of the 'other' resistor
#define SERIESRESISTOR 10000    
 
// What pin to connect the sensor to
#define THERMISTORPIN A0 
 
void setup(void) {
  Serial.begin(9600);
}
 
void loop(void) {
  float reading;
 
  reading = analogRead(THERMISTORPIN);
 
  Serial.print("Analog reading "); 
  Serial.println(reading);
 
  // convert the value to resistance
  reading = (1023 / reading)  - 1;
  reading = SERIESRESISTOR / reading;
  Serial.print("Thermistor resistance "); 
  Serial.println(reading);
 
  delay(1000);
}
This works well enough. What I get is the thermister value which changes as it should.

Then I erase this program and copy one that changes the thermister value to deg C (below) and it doesn't recognize the thermister.

Code:
// which analog pin to connect
#define THERMISTORPIN A0         
// resistance at 25 degrees C
#define THERMISTORNOMINAL 10000      
// temp. for nominal resistance (almost always 25 C)
#define TEMPERATURENOMINAL 25   
// how many samples to take and average, more takes longer
// but is more 'smooth'
#define NUMSAMPLES 5
// The beta coefficient of the thermistor (usually 3000-4000)
#define BCOEFFICIENT 3950
// the value of the 'other' resistor
#define SERIESRESISTOR 10000    
 
int samples[NUMSAMPLES];
 
void setup(void) {
  Serial.begin(9600);
  analogReference(EXTERNAL);
}
 
void loop(void) {
  uint8_t i;
  float average;
 
  // take N samples in a row, with a slight delay
  for (i=0; i< NUMSAMPLES; i++) {
   samples[i] = analogRead(THERMISTORPIN);
   delay(10);
  }
 
  // average all the samples out
  average = 0;
  for (i=0; i< NUMSAMPLES; i++) {
     average += samples[i];
  }
  average /= NUMSAMPLES;
 
  Serial.print("Average analog reading "); 
  Serial.println(average);
 
  // convert the value to resistance
  average = 1023 / average - 1;
  average = SERIESRESISTOR / average;
  Serial.print("Thermistor resistance "); 
  Serial.println(average);
 
  float steinhart;
  steinhart = average / THERMISTORNOMINAL;     // (R/Ro)
  steinhart = log(steinhart);                  // ln(R/Ro)
  steinhart /= BCOEFFICIENT;                   // 1/B * ln(R/Ro)
  steinhart += 1.0 / (TEMPERATURENOMINAL + 273.15); // + (1/To)
  steinhart = 1.0 / steinhart;                 // Invert
  steinhart -= 273.15;                         // convert to C
 
  Serial.print("Temperature "); 
  Serial.print(steinhart);
  Serial.println(" *C");
 
  delay(1000);
}
It says it is -273degC and thermister resistance is "inf"

The problem is that the explanations are inadequate.

Last edited by Mikesolar; 03-03-13 at 09:12 PM..
Mikesolar is offline   Reply With Quote
Old 03-03-13, 09:00 AM   #4
AC_Hacker
Supreme EcoRenovator
 
AC_Hacker's Avatar
 
Join Date: Mar 2009
Location: Portland, OR
Posts: 4,004
Thanks: 303
Thanked 723 Times in 534 Posts
Default

Quote:
Originally Posted by Mikesolar View Post
The sketch is not important...
If I understand your post, you are having problems with your sketch. So, it seems that since you are having problems with your sketch, it actually is important... especially if you want someone else to help you. The de-bugger in Arduino is not the best in the world, but it is better than nothing. Sometimes there is an error in some part of the code, and the Arduino de-bugger says it's in another place, so if you do not include your entire sketch, you are wasting everyones time.

It is easiest to see your sketch, if you put it inside CODE tags.

So you would use a square brace "[" and then you would put the letters "CODE" next, and then you would put another square brace "]"... then you put your sketch, your whole sketch next...

...then you would use a square brace "[" and then you would put a slash "/" and then the letters "CODE" next, and then you would put another square brace "]".

It makes your sketch stand out so that it's easier to see what went wrong.

-AC
__________________
I'm not an HVAC technician. In fact, I'm barely even a hacker...
AC_Hacker is offline   Reply With Quote
Old 03-03-13, 09:24 AM   #5
Mikesolar
Master EcoRenovator
 
Mikesolar's Avatar
 
Join Date: Aug 2012
Location: Toronto
Posts: 958
Thanks: 40
Thanked 158 Times in 150 Posts
Default

The two versions of the code are presented in their entirety above. I thought it was evident enough, perhaps not, so I will try again. I edited it again to show the square brackets. As there is 2 separate codes in the post I said "end post". This is not going in the arduino so i assume it is just for the readers benefit.

The main thing is that there is no plain english glossary that really defines the terms as presented in the debugger. I have my talents but this isn't one of them LOL.

Last edited by Mikesolar; 03-03-13 at 09:33 AM..
Mikesolar is offline   Reply With Quote
Old 03-03-13, 12:40 PM   #6
jeff5may
Supreme EcoRenovator
 
Join Date: Jan 2010
Location: elizabethtown, ky, USA
Posts: 2,428
Thanks: 431
Thanked 619 Times in 517 Posts
Send a message via Yahoo to jeff5may
Default

i'm no longer a programming expert, but this line looks fishy to me:
steinhart -= 273.15; // convert to C

it seems you should have something like:
variable = variable + constant
rather than
variable = constant

Last edited by jeff5may; 03-03-13 at 12:43 PM..
jeff5may is offline   Reply With Quote
Old 03-04-13, 04:03 AM   #7
Piwoslaw
Super Moderator
 
Piwoslaw's Avatar
 
Join Date: May 2009
Location: Warsaw, Poland
Posts: 961
Thanks: 188
Thanked 110 Times in 86 Posts
Default

Quote:
Originally Posted by jeff5may View Post
i'm no longer a programming expert, but this line looks fishy to me:
steinhart -= 273.15; // convert to C

it seems you should have something like:
variable = variable + constant
rather than
variable = constant
The line:
Code:
steinhart -= 273.15;
is the same as:
Code:
steinhart = steinhart - 273.15;
so this in itself is not a problem.

As for the
Quote:
was not declared in this scope
, this means that a variable was not defined inside the function using it (inside main(), for example), nor was it defined globally (before main()). This is an error in C/C++ programming, not Arduino-specific.
If possible please give the full error message, so that we know which variable was not declared, etc.
__________________
Ecorenovation - the bottomless piggy bank that tries to tame the energy hog.
Piwoslaw is offline   Reply With Quote
Old 03-04-13, 05:50 AM   #8
Mikesolar
Master EcoRenovator
 
Mikesolar's Avatar
 
Join Date: Aug 2012
Location: Toronto
Posts: 958
Thanks: 40
Thanked 158 Times in 150 Posts
Default

Here is the current code which is purely a copied code from the Adafruit site "using a thermister". Then, I added the last line from Jeffs approach in bold. It seems to ignore the added code and continues to post in ohms. I am looking for a reason for this but the program doesn't come up with any errors.

Code:
// the value of the 'other' resistor
#define SERIESRESISTOR 10000    
 
// What pin to connect the sensor to
#define THERMISTORPIN A0 
 
void setup(void) {
  Serial.begin(9600);
}
 
void loop(void) {
  float reading;
 
  reading = analogRead(THERMISTORPIN);
 
  Serial.print("Analog reading "); 
  Serial.println(reading);
 
  // convert the value to resistance
  reading = (1023 / reading)  - 1;
  reading = SERIESRESISTOR / reading;
  Serial.print("Thermistor resistance "); 
  Serial.println(reading);
  
  float logcubed = log(reading);
logcubed = logcubed * logcubed * logcubed;
float kelvin = 1.0 / (-7.5e-4 + 6.23e-4 * log(reading) - 1.73e-6 * (logcubed));
float celsius = kelvin - 273.15;
 
  delay(1000);
}

Last edited by Piwoslaw; 03-04-13 at 01:55 PM..
Mikesolar is offline   Reply With Quote
Old 03-04-13, 09:30 PM   #9
mrd
Apprentice EcoRenovator
 
Join Date: Feb 2010
Location: Milford, DE
Posts: 106
Thanks: 5
Thanked 9 Times in 9 Posts
Default

Quote:
Originally Posted by Mikesolar View Post
It seems to ignore the added code and continues to post in ohms.
What it 'posts' is the value passed to the function Serial.println. That function name indicates you are utilizing the serial port to print a line.

The value you are passing in your new code is the same passed in the original:
Code:
  Serial.print("Thermistor resistance "); 
  Serial.println(reading);
If you want to print something else you need to specify such, e.g.
Code:
float logcubed = log(reading);
logcubed = logcubed * logcubed * logcubed;
float kelvin = 1.0 / (-7.5e-4 + 6.23e-4 * log(reading) - 1.73e-6 * (logcubed));
float celsius = kelvin - 273.15;

Serial.println(celsius);
And note the correct value is placed into the variable celsius before you pass it to the Serial.println function to be displayed.

Also, you should paste the full error message you are receiving with the other code you are trying to use. Compiler errors typically indicate a line number at the beginning to help pinpoint the source of the mistake. Variable scope relates to which portions of your code may access a given variable. This scope is determined by where the variable is defined. For example, function-local scope is variables defined within a function (within the brackets { } encapsulating the function definition) whereas module/file-level scope is variables defined outside of any function, which can be accessed within any function.

I could go on and on but it sounds like you're just trying to get your feet wet and I don't want to drown you. Also, take everything I say with a grain of salt. I've never coded for the Arduino, but I am familiar with C/C++, and like to make assumptions.
mrd is offline   Reply With Quote
The Following User Says Thank You to mrd For This Useful Post:
Mikesolar (03-05-13)
Old 03-04-13, 10:05 AM   #10
AC_Hacker
Supreme EcoRenovator
 
AC_Hacker's Avatar
 
Join Date: Mar 2009
Location: Portland, OR
Posts: 4,004
Thanks: 303
Thanked 723 Times in 534 Posts
Default

Quote:
Originally Posted by Piwoslaw View Post
The line:
Code:
steinhart -= 273.15;
is the same as:
Code:
steinhart = steinhart - 273.15;
so this in itself is not a problem.


I think this is an illegal line... with the minus in front of the equal sign:

Code:
steinhart -= 273.15;
I you want steinhart to take the value of 273.15, you could say:

Code:
steinhart = 273.15;
I you want steinhart to take the value of -273.15, you could say:

Code:
steinhart = -273.15;
... or even:

Code:
steinhart = 273.15 * -1;
If you want to increase whatever value steinhart already has by 273.25, you could say:

Code:
steinhart = steinhart + 273.15;
If you want to decrease whatever value steinhart already has by 273.25, you could say:

Code:
steinhart = steinhart - 273.15;

& & &


The part of the program that is at the top, in other words above...

Code:
void setup()   {
... is where all variable name must be declared, or else the program will not know what the strange undefined words mean.

steinhart is a variable name and it needs to be defined as such in this section.

The middle part of the program, that is below...

Code:
void setup()   {
but above...

Code:
void loop()
Is where initial values are set... in other words, you can't assume that the first time you use steinhart that it will have a value of zero, you have to make it so.


& & & & & &


You can't expect anyone to give useful advice on a program or on what it's debugger message means unless you have quoted ALL of the program and ALL of the debugger message.

Else, you're wasting everyones time, including your own.

-AC
__________________
I'm not an HVAC technician. In fact, I'm barely even a hacker...
AC_Hacker is offline   Reply With Quote
The Following User Says Thank You to AC_Hacker For This Useful Post:
Mikesolar (03-05-13)
Reply



Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump


All times are GMT -5. The time now is 10:54 AM.


Powered by vBulletin® Version 3.8.11
Copyright ©2000 - 2024, vBulletin Solutions Inc.
Ad Management by RedTyger
Inactive Reminders By Icora Web Design