To my understanding these two codes should be as equal as possible. One is using a constant, the other variable (i).
Code:Lcd_SDA = FC.0(7) : Lcd_CLK = 1 : Lcd_CLK = 0This extra operation i=7 shouldn't be a problem if arrays support variable(s).Code:i=7 : Lcd_SDA = FC.0(i) : Lcd_CLK = 1 : Lcd_CLK = 0
-Gusse-
Bookmarks