Heat Counter

Hello this project I made heat counter for measuring consuming heat for central heating system.
For how to make click below link:

For test with water heater click below link:

[/url]Isı Syacını Şofbenle Test Ettim - YouTube

Part list:
-Arduino uno
-Breadboard
-two LM35
-16x2 LCD screen

Code and schematics below.

HEAT_COUNTER.ino (1.51 KB)

First of all, please read this.

Then about your post: links are not clickable. Add url tags to make them work, like this and like this.

Also please format code properly (ctrl-T in the IDE) and post code between code tags, so it looks like this:

#include<LiquidCrystal.h>
LiquidCrystal lcd(7, 6, 5, 4, 3, 2);

float gerilimg, sicaklikg, gerilima, sicaklika, isi;

void setup() {
  // put your setup code here, to run once:
  Serial.begin(9600);

  lcd.begin(16, 2);
  lcd.home();
  lcd.print("ISI SAYACI");
  delay(500);
  lcd.clear();
}

(mmm... stupid message board can't handle non-ASCII?!)

Then please post images inline, like this:

.
Which is a screen shot (bad) of a Fritzing wire mess (double bad). Good you at least tried but please add a real circuit diagram, as these are generally not useful.

Finally you didn't add what is usually the most important part of threads opened here: a question.

(board fail - post problem due to non-ascii in the code)

wvmarle:
(board fail - post problem due to non-ascii in the code)

Because of my code include some turkish letters(ASCII table doesn't include some turkish letters).

wvmarle:
First of all, please read this.

Then about your post: links are not clickable. Add url tags to make them work, like this and like this.

Also please format code properly (ctrl-T in the IDE) and post code between code tags, so it looks like this:

#include<LiquidCrystal.h>

LiquidCrystal lcd(7, 6, 5, 4, 3, 2);

float gerilimg, sicaklikg, gerilima, sicaklika, isi;

void setup() {
  // put your setup code here, to run once:
  Serial.begin(9600);

lcd.begin(16, 2);
  lcd.home();
  lcd.print("ISI SAYACI");
  delay(500);
  lcd.clear();
}



(mmm... stupid message board can't handle non-ASCII?!)

Then please post images inline, like this:
![Ekran Görüntüsü (135).png|1280x800](upload://gyLAf0iNxowlXRmt85pZyVFh3hQ.png).
Which is a screen shot (bad) of a Fritzing wire mess (double bad). Good you at least tried but please add a real circuit diagram, as these are generally not useful.

Finally you didn't add what is usually the most important part of threads opened here: a question.

I'll apply your reply in other project.Thanks