Hallo Herculesheld,


probier mal diesen code aus. Bei meinem Atmega 32 funktionier er perfekt

Code:
$regfile = "m32def.dat"
$crystal = 16000000

Config Scl = Portc.0
Config Sda = Portc.1

Const Pcf8574_lcd = &H40
$lib "Lcd_i2c.lib"
Dim _lcd_e As Byte
_lcd_e = 128
Waitms 200
Config Lcd = 16 * 2
Cls

Wait 1

Do

Locate 1 , 1 : Lcd "Hello World"

Loop
End
Gruß Max