Hallo zusammen,

habe ein simples Programm zum Auslesen des LM75 Temparatursensors
gebastelt (Anfänger).

Es funktioniert, jedoch bei Temparaturen unter 0 Grad bekomme ich nur
Werte wie 247 o.ä. angezeigt.

Wie kann ich Minusgrade auswerten ?


Hier mein Code:
************************************************** ****
$regfile = M8.def
$crystal = 4433619
Config Lcd = 20 * 2
Dim X As Byte , Slave As Byte

Config Sda = Portc.5
Config Scl = Portc.4

Do
Slave = &H91

I2creceive Slave , X '

Cls
Waitms 10

Lcd " * Temparatur * "
Wait 1
Lowerline
Lcd " * " ; X ; " Grad *"

Wait 3
Cls


Loop
************************************************** ******



Gruß, Catweazle.