• URGANT. NEED HELP NOW
    I am looking for a code snippet do display 8 DMX channel values on a 16x2 LCD (This Line) using Barngraphs + C51 + 8051M. I searched the hole net but could not find any, there are codes for showing...
  • eeprom data initialization
    Hi, Is there any way to initialize EEPROM data except during running time ? Regards, Andre
  • Updated data on external EEPROM
    Hello all, I have a very complicated question 4 U. In my target board I use the T89C51RD2 micro and also two types of external memory devices; SRAM 32KB and parallel EEPROM 8KB. My code runs from micro...
  • External EEPROM data memory
    I connecting external eeprom to atmel 89C52 chip. How do I write c code so that I can write data memory to the chip while using the address lines and the rd wr on the chip.
  • Re: EEPROM Data read
    void I2C_Start(void) { SDA=HIGH; Delay(15); SCLK =HIGH; Delay(15); SDA = LOW; Delay(15); SCLK = LOW; Delay(15); } void I2C_Stop(void) { SCLK=LOW; Delay(15); SDA=LOW; Delay(15); SCLK...