CCS C Software and Maintenance Offers
FAQFAQ   FAQForum Help   FAQOfficial CCS Support   SearchSearch  RegisterRegister 

ProfileProfile   Log in to check your private messagesLog in to check your private messages   Log inLog in 

CCS does not monitor this forum on a regular basis.

Please do not post bug reports on this forum. Send them to support@ccsinfo.com

need help with TC74 digital thermal sensor
Goto page Previous  1, 2
 
Post new topic   Reply to topic    CCS Forum Index -> General CCS C Discussion
View previous topic :: View next topic  
Author Message
pdswar



Joined: 18 Jul 2006
Posts: 33
Location: Maryland, USA

View user's profile Send private message

PostPosted: Mon Sep 18, 2006 7:35 am     Reply with quote

Not reading the datasheet for TC74 was the source of my errors. I am using TC74A0-5.0VCT but I was copying codes written for TC74A5-5.0VCT

Everything worked when I replaced

i2c_start();
i2c_write(0x9A);
i2c_write(0x00);

i2c_start();
i2c_write(0x9B);
temp = i2c_read(0);
i2c_stop();

with correct address for TC74A0-5.0VCT (changed 0x9A->0x90 and 0x9B->0x91)

i2c_start();
i2c_write(0x90); //For
i2c_write(0x00);

i2c_start();
i2c_write(0x91);
temp = i2c_read(0);
i2c_stop();

[/b]

Thank you all for your help.
Display posts from previous:   
Post new topic   Reply to topic    CCS Forum Index -> General CCS C Discussion All times are GMT - 6 Hours
Goto page Previous  1, 2
Page 2 of 2

 
Jump to:  
You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot vote in polls in this forum


Powered by phpBB © 2001, 2005 phpBB Group