I *just* started messing with electronics so I know very little. I am trying to interface a PIC 16F84 with an LM75 temp sensor and send results to a serial LCD. I am useing PIC BASIC can anyone help me with my code/hardware? I don't think I have it right? thanks a bunch.. I realy want to get this working! Regards, Ryan Symbol con = %10010000 '(pins 5,6,an7 on the LM75 tied to ground) Symbol addr = B5 ' Loop: addr = 17 ' Set address to 17 I2Cin con,addr,B2 ' Read data at address 17 into B2 (equation here?...is data read from LM75 in correct format?) 'send to serial LCD Symbol SO = 0 ' Serial Out (this is pin A0 I think) Serout SO, N9600, (B2) ' Send Character at 9600 to serial LCD Pause 50 Goto Loop ' go again