#include <EEPROM.h>

void setup() {
  Serial.begin(9600);

  for (int adres = 0; adres < EEPROM.length(); adres++) {
    EEPROM.write(adres, 0); // Adrese 0 yaz.
  }

  for (int adres = 0; adres < EEPROM.length(); adres++) {
    Serial.print(adres);
    Serial.print(". adresin içeriği: ");
    Serial.println(EEPROM.read(adres), HEX); // Adresi oku.
  }
}
void loop() {
}

Categories:

Tags:

No responses yet

Bir yanıt yazın

E-posta adresiniz yayınlanmayacak. Gerekli alanlar * ile işaretlenmişlerdir

Dersler