Offline
Jr. Member
Karma: 0
Posts: 51
|
 |
« Reply #30 on: October 04, 2012, 07:29:21 am » |
Lose the excess subscript increments. How so? The task mentions that i need to make a simple lookout table based on 2D array (without using the steinhart-hart equation).
Ok, I'll repeat: you get an analog value and you search it with equality among a (small) set of predefined values. An analog value in Arduino is an integer number between 0 and 1023. If you compare it to, say, 10 values you roughly have 1% probability to "catch" it each time. Back to your code, it's clear that you're trying to identify the type of battery based on its weight. Each battery type has a minimum and maximum weight. You want to determine in which weight range your analog value falls. For this you need to test it against the minimum and maximum value of each range. And for this you need >= and <=, not ==. I don't understand why using a lookup table implies using (only) ==. If you insist on using ==, you could probably make a 1024-elements lookup table and use the analogRead result as an index into it. Total waste of RAM, IMHO, but using just 1 byte per element it could be doable (you'd be using half RAM just for that...). (edit: sorry I assumed you would search using an integer value. If you use floats, then == is _definitely out of question_) I think i pointed out that i've removed the for loop in replacement for adding an if statement based on the range between values.
|
|
|
|
« Last Edit: October 04, 2012, 08:02:35 am by Jonraptor »
|
Logged
|
|
|
|
|
Offline
Edison Member
Karma: 26
Posts: 1339
You do some programming to solve a problem, and some to solve it in a particular language. (CC2)
|
 |
« Reply #31 on: October 04, 2012, 07:32:00 am » |
I think i pointed out that i've removed the for loop in replacement for adding and if statement based on the range between values. I'm sorry, I wrote that comment before seeing your last code.
|
|
|
|
|
Logged
|
|
|
|
|
Global Moderator
UK
Offline
Brattain Member
Karma: 138
Posts: 19067
I don't think you connected the grounds, Dave.
|
 |
« Reply #32 on: October 04, 2012, 07:34:24 am » |
Value = 756.00 Voltage = 3.70 V Resistance = 3527.08 Ohm 29 C What's the problem?
|
|
|
|
|
Logged
|
Pete, it's a fool looks for logic in the chambers of the human heart.
|
|
|
|
Offline
Jr. Member
Karma: 0
Posts: 51
|
 |
« Reply #33 on: October 04, 2012, 08:00:55 am » |
Value = 756.00 Voltage = 3.70 V Resistance = 3527.08 Ohm 29 C What's the problem? I'll point out the issue in this. Here is the code that i've implemented for my if statement: - if(ThermResist >= Table[5][1] &&ThermResist <= Table[4][1] ) { Serial.print(Table[4][0]); Serial.println(" C"); }
And here is the output of the function trigger less than 3530: - Value = 754.00 Voltage = 3.69 V Resistance = 3562.91 Ohm Value = 755.00 Voltage = 3.69 V Resistance = 3544.97 Ohm Value = 755.00 Voltage = 3.69 V Resistance = 3544.97 Ohm Value = 756.00 Voltage = 3.70 V Resistance = 3527.08 Ohm 29 C Value = 754.00 Voltage = 3.69 V Resistance = 3562.91 Ohm Value = 753.00 Voltage = 3.68 V Resistance = 3580.90 Ohm Value = 756.00 Voltage = 3.70 V Resistance = 3527.08 Ohm 29 C Value = 754.00 Voltage = 3.69 V Resistance = 3562.91 Ohm Value = 756.00 Voltage = 3.70 V Resistance = 3527.08 Ohm 29 C
I am simply trying to print out the statement that is way out of the range which i am trying to implement (between 3800 & 3530). Instead, i get the printout below 3530.. which for me, is a catastrophe..
|
|
|
|
« Last Edit: October 04, 2012, 08:04:04 am by Jonraptor »
|
Logged
|
|
|
|
|
Global Moderator
UK
Offline
Brattain Member
Karma: 138
Posts: 19067
I don't think you connected the grounds, Dave.
|
 |
« Reply #34 on: October 04, 2012, 08:10:59 am » |
I'm sorry, I really don't see the problem.
3527.08 is greater than 3270 AND it is less than 3530.
|
|
|
|
|
Logged
|
Pete, it's a fool looks for logic in the chambers of the human heart.
|
|
|
|
Offline
Jr. Member
Karma: 0
Posts: 51
|
 |
« Reply #35 on: October 04, 2012, 08:14:00 am » |
I'm sorry, I really don't see the problem.
3527.08 is greater than 3270 AND it is less than 3530.
if(ThermResist >= Table[5][1](3530) &&ThermResist <= Table[4][1](3800) ) { Serial.print(Table[4][0]); Serial.println(" C"); }
|
|
|
|
|
Logged
|
|
|
|
|
Global Moderator
UK
Offline
Brattain Member
Karma: 138
Posts: 19067
I don't think you connected the grounds, Dave.
|
 |
« Reply #36 on: October 04, 2012, 08:15:56 am » |
f(ThermResist >= Table[5][1](3270) &&ThermResist <= Table[4][1](3530) ) is what you meant to type, I guess.
|
|
|
|
|
Logged
|
Pete, it's a fool looks for logic in the chambers of the human heart.
|
|
|
|
Offline
Jr. Member
Karma: 0
Posts: 51
|
 |
« Reply #37 on: October 04, 2012, 08:25:46 am » |
f(ThermResist >= Table[5][1](3270) &&ThermResist <= Table[4][1](3530) ) is what you meant to type, I guess. OMG, i have completely forgotten that the array starts with 0, rather than 1. My apologies for the misunderstanding, ill get this sort out ASAP and show you the output  .
|
|
|
|
« Last Edit: October 04, 2012, 08:31:54 am by Jonraptor »
|
Logged
|
|
|
|
|
Offline
Jr. Member
Karma: 0
Posts: 51
|
 |
« Reply #38 on: October 04, 2012, 08:31:23 am » |
I've solved the problem by counting the array from 0-9, turned out i have mistaken 4 with 3530, and 5 with 3270. Here the code that i've altered after a while: - if(ThermResist >= Table[4][1] && ThermResist <= Table[3][1] ) { Serial.print(Table[4][0]); Serial.println(" C"); }
And here is the output that i am quite happy on (between 3800 && 3530): - Value = 738.00 Voltage = 3.61 V Resistance = 3856.56 Ohm Value = 739.00 Voltage = 3.61 V Resistance = 3837.84 Ohm Value = 741.00 Voltage = 3.62 V Resistance = 3800.54 Ohm Value = 741.00 Voltage = 3.62 V Resistance = 3800.54 Ohm Value = 741.00 Voltage = 3.62 V Resistance = 3800.54 Ohm Value = 743.00 Voltage = 3.63 V Resistance = 3763.44 Ohm 29 C Value = 741.00 Voltage = 3.62 V Resistance = 3800.54 Ohm Value = 743.00 Voltage = 3.63 V Resistance = 3763.44 Ohm 29 C Value = 743.00 Voltage = 3.63 V Resistance = 3763.44 Ohm 29 C Value = 745.00 Voltage = 3.64 V Resistance = 3726.54 Ohm 29 C Value = 742.00 Voltage = 3.63 V Resistance = 3781.96 Ohm 29 C Value = 745.00 Voltage = 3.64 V Resistance = 3726.54 Ohm 29 C 29 C Value = 755.00 Voltage = 3.69 V Resistance = 3544.97 Ohm 29 C Value = 756.00 Voltage = 3.70 V Resistance = 3527.08 Ohm Value = 753.00 Voltage = 3.68 V Resistance = 3580.90 Ohm 29 C Value = 756.00 Voltage = 3.70 V Resistance = 3527.08 Ohm Value = 756.00 Voltage = 3.70 V Resistance = 3527.08 Ohm Value = 758.00 Voltage = 3.71 V Resistance = 3491.44 Ohm Value = 756.00 Voltage = 3.70 V Resistance = 3527.08 Ohm Value = 758.00 Voltage = 3.71 V Resistance = 3491.44 Ohm Value = 757.00 Voltage = 3.70 V Resistance = 3509.23 Ohm Value = 757.00 Voltage = 3.70 V Resistance = 3509.23 Ohm Value = 757.00 Voltage = 3.70 V Resistance = 3509.23 Ohm
|
|
|
|
|
Logged
|
|
|
|
|
Global Moderator
UK
Offline
Brattain Member
Karma: 138
Posts: 19067
I don't think you connected the grounds, Dave.
|
 |
« Reply #39 on: October 04, 2012, 08:33:52 am » |
Time to put your for loops back.
Thanks for sticking with it.
|
|
|
|
|
Logged
|
Pete, it's a fool looks for logic in the chambers of the human heart.
|
|
|
|
Offline
Jr. Member
Karma: 0
Posts: 51
|
 |
« Reply #40 on: October 04, 2012, 08:35:19 am » |
All i can say is, thanks a lot for your time and patience for solving this issue with me. I am sorry if i have been harsh trying to solve this problem. But, it's sure is worth to know that the Array usually starts at 0 and ends with 9 if the row is equals to 10, and the column starts with 0 and ends with 1 if the cols is equals to 2. Thank you a lot for your time and patience with me  . There is another task that i am trying to solve as well, but for now. let me get this code organized.
|
|
|
|
|
Logged
|
|
|
|
|
Offline
Jr. Member
Karma: 0
Posts: 51
|
 |
« Reply #41 on: October 04, 2012, 08:38:26 am » |
Yes, ill put the for loops back once im done with arranging my code. Once im done, ill display what i've altered with the output 
|
|
|
|
|
Logged
|
|
|
|
|
Global Moderator
UK
Offline
Brattain Member
Karma: 138
Posts: 19067
I don't think you connected the grounds, Dave.
|
 |
« Reply #42 on: October 04, 2012, 08:42:20 am » |
The thing to remember here is that the compiled code (when it is that simple and that explicit) rarely lies. If you see that a result that is being printed when perhaps you don't expect it to be, check and double check the conditions and fit the result to the observation.
I realised as soon as you typed your interpretation of the table values what the problem was, but you found it yourself from my correction, and you gained a valuable lesson about arrays which will stick in your mind better than if I had simply told you.
|
|
|
|
|
Logged
|
Pete, it's a fool looks for logic in the chambers of the human heart.
|
|
|
|
Seattle, WA USA
Offline
Brattain Member
Karma: 316
Posts: 35566
Seattle, WA USA
|
 |
« Reply #43 on: October 04, 2012, 08:56:51 am » |
I'm curious why the values in the 2nd column of the lookup table are in decreasing order. I find it easier to understand when a value is in range when the lookup table is in increasing order.
|
|
|
|
|
Logged
|
|
|
|
|
Offline
Jr. Member
Karma: 0
Posts: 51
|
 |
« Reply #44 on: October 04, 2012, 09:00:54 am » |
Here is my modified version of my code: - const int ThermPin = A0; const int rows = 10; const int cols = 2; int Table[rows][cols] ={ //col 0||col 1 { 25, 4470 }, //row 0 { 26, 4250 }, //row 1 { 27, 4030 }, //row 2 { 28, 3800 }, //row 3 { 29, 3530 }, //row 4 { 30, 3270 }, //row 5 { 31, 3200 }, //row 6 { 32, 3170 }, //row 7 { 33, 3100 }, //row 8 { 34, 3070 } //row 9 }; void setup() { Serial.begin(9600); }
void loop() {
float Vin = 5.0; float ThermResist = 0.0; float R2 = 10000.0; float SensorValue = 0.0; float Vout = 0.0; SensorValue = analogRead(ThermPin); Serial.print("Value = "); Serial.print(SensorValue); Vout = (((SensorValue+1)*Vin)/1024.0); Serial.print("\t Voltage = "); Serial.print(Vout); Serial.print(" V"); ThermResist =((R2*Vin)/Vout)-R2; Serial.print("\t Resistance = "); Serial.print(ThermResist); Serial.println(" Ohm"); for (int i = 0; i<rows; i++) { for(int j = 0;j<cols; j++) { if(ThermResist >= Table[2][1] && ThermResist <= Table[0][1] ) { Serial.print(Table[0][0]); Serial.println(" C"); } if(ThermResist >= Table[4][1] && ThermResist <= Table[3][1] ) { Serial.print(Table[3][0]); Serial.println(" C"); } if(ThermResist >= Table[6][1] && ThermResist <= Table[5][1] ) { Serial.print(Table[5][0]); Serial.println(" C"); } if(ThermResist >= Table[9][1] && ThermResist <= Table[7][1] ) { Serial.print(Table[9][0]); Serial.println(" C"); } i++; } j++; }
}
And here is the output to that (Works like a charm  !): - Value = 685.00 Voltage = 3.35 V Resistance = 4927.11 Ohm Value = 688.00 Voltage = 3.36 V Resistance = 4862.12 Ohm Value = 693.00 Voltage = 3.39 V Resistance = 4755.04 Ohm Value = 695.00 Voltage = 3.40 V Resistance = 4712.64 Ohm Value = 698.00 Voltage = 3.41 V Resistance = 4649.50 Ohm Value = 701.00 Voltage = 3.43 V Resistance = 4586.89 Ohm Value = 704.00 Voltage = 3.44 V Resistance = 4524.82 Ohm Value = 707.00 Voltage = 3.46 V Resistance = 4463.28 Ohm 25 C 25 C 25 C 25 C 25 C 25 C 25 C Value = 729.00 Voltage = 3.56 V Resistance = 4027.40 Ohm Value = 733.00 Voltage = 3.58 V Resistance = 3950.95 Ohm Value = 731.00 Voltage = 3.57 V Resistance = 3989.07 Ohm Value = 731.00 Voltage = 3.57 V Resistance = 3989.07 Ohm Value = 733.00 Voltage = 3.58 V Resistance = 3950.95 Ohm Value = 733.00 Voltage = 3.58 V Resistance = 3950.95 Ohm Value = 739.00 Voltage = 3.61 V Resistance = 3837.84 Ohm Value = 737.00 Voltage = 3.60 V Resistance = 3875.34 Ohm Value = 739.00 Voltage = 3.61 V Resistance = 3837.84 Ohm Value = 740.00 Voltage = 3.62 V Resistance = 3819.16 Ohm Value = 740.00 Voltage = 3.62 V Resistance = 3819.16 Ohm Value = 742.00 Voltage = 3.63 V Resistance = 3781.96 Ohm 28 C 28 C 28 C 28 C 28 C 28 C Value = 756.00 Voltage = 3.70 V Resistance = 3527.08 Ohm Value = 756.00 Voltage = 3.70 V Resistance = 3527.08 Ohm Value = 756.00 Voltage = 3.70 V Resistance = 3527.08 Ohm Value = 756.00 Voltage = 3.70 V Resistance = 3527.08 Ohm Value = 768.00 Voltage = 3.75 V Resistance = 3316.00 Ohm Value = 768.00 Voltage = 3.75 V Resistance = 3316.00 Ohm Value = 769.00 Voltage = 3.76 V Resistance = 3298.70 Ohm Value = 771.00 Voltage = 3.77 V Resistance = 3264.25 Ohm 30 C 30 C 30 C 30 C 30 C 30 C Value = 775.00 Voltage = 3.79 V Resistance = 3195.88 Ohm Value = 776.00 Voltage = 3.79 V Resistance = 3178.89 Ohm Value = 776.00 Voltage = 3.79 V Resistance = 3178.89 Ohm Value = 776.00 Voltage = 3.79 V Resistance = 3178.89 Ohm Value = 775.00 Voltage = 3.79 V Resistance = 3195.88 Ohm Value = 776.00 Voltage = 3.79 V Resistance = 3178.89 Ohm Value = 775.00 Voltage = 3.79 V Resistance = 3195.88 Ohm Value = 776.00 Voltage = 3.79 V Resistance = 3178.89 Ohm Value = 777.00 Voltage = 3.80 V Resistance = 3161.95 Ohm 34 C 34 C 34 C 34 C 34 C Value = 775.00 Voltage = 3.79 V Resistance = 3195.88 Ohm Value = 775.00 Voltage = 3.79 V Resistance = 3195.88 Ohm Value = 776.00 Voltage = 3.79 V Resistance = 3178.89 Ohm Value = 776.00 Voltage = 3.79 V Resistance = 3178.89 Ohm Value = 776.00 Voltage = 3.79 V Resistance = 3178.89 Ohm Value = 776.00 Voltage = 3.79 V Resistance = 3178.89 Ohm
|
|
|
|
« Last Edit: October 04, 2012, 10:18:47 am by Jonraptor »
|
Logged
|
|
|
|
|
|