{"id":2527,"date":"2014-01-11T15:30:06","date_gmt":"2014-01-11T13:30:06","guid":{"rendered":"http:\/\/www.final-memory.org\/?p=2527"},"modified":"2014-01-11T15:30:06","modified_gmt":"2014-01-11T13:30:06","slug":"arduino-sketch-zum-auslesen-des-eeprom-inhaltes","status":"publish","type":"post","link":"https:\/\/www.final-memory.org\/?p=2527","title":{"rendered":"Arduino Sketch zum Auslesen des EEPROM Inhaltes"},"content":{"rendered":"<p>Um mein mySmartUSB light Programmierger\u00e4t zu verifizieren, habe ich folgenden Arduino Sketch ausprobiert. Der Arduino zeigt damit seinen EEPROM Inhalt in HEX Notation in der seriellen Konsole an.<\/p>\n<pre>\/* Display EEPROM contents from Arduino UNO\r\n * (c) 2014 by Matthias Arndt\r\n *\/\r\n#include &lt;EEPROM.h&gt;\r\n\r\nvoid setup()\r\n{\r\n  uint16_t addr = 0;\r\n  uint8_t c;\r\n  uint8_t nl = 0;\r\n\r\n  Serial.begin(9600);\r\n  Serial.print(\"Arduino EEPROM contents:\\n\\n\");\r\n\r\n  while(addr &lt; 1024)\r\n  {\r\n    c = (EEPROM.read(addr) &amp; 0xFF);\r\n\r\n    addr++;\r\n\r\n    Serial.print(c, HEX);\r\n    Serial.print(' ');\r\n\r\n    if(nl &lt; 31)\r\n    {\r\n      nl++;\r\n    }\r\n    else\r\n    {\r\n      Serial.print('\\n');\r\n      nl = 0;\r\n    }\r\n\r\n  }\r\n\r\n}\r\n\r\nvoid loop()\r\n{\r\n  for(;;);\r\n}<\/pre>\n<div id=\"facebook_like\"><iframe src=\"http:\/\/www.facebook.com\/plugins\/like.php?href=https%3A%2F%2Fwww.final-memory.org%2F%3Fp%3D2527&amp;layout=standard&amp;show_faces=true&amp;width=500&amp;action=like&amp;font=segoe+ui&amp;colorscheme=light&amp;height=80\" scrolling=\"no\" frameborder=\"0\" style=\"border:none; overflow:hidden; width:500px; height:80px;\" allowTransparency=\"true\"><\/iframe><\/div>","protected":false},"excerpt":{"rendered":"<p>Um mein mySmartUSB light Programmierger\u00e4t zu verifizieren, habe ich folgenden Arduino Sketch ausprobiert. Der Arduino zeigt damit seinen EEPROM Inhalt in HEX Notation in der seriellen Konsole an. \/* Display EEPROM contents from Arduino UNO * (c) 2014 by Matthias Arndt *\/ #include &lt;EEPROM.h&gt; void setup() { uint16_t addr = 0; uint8_t c; uint8_t nl &hellip; <a href=\"https:\/\/www.final-memory.org\/?p=2527\" class=\"more-link\">Continue reading<span class=\"screen-reader-text\"> &#8220;Arduino Sketch zum Auslesen des EEPROM Inhaltes&#8221;<\/span><\/a><\/p>\n","protected":false},"author":2,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[87,7,74],"tags":[],"class_list":["post-2527","post","type-post","status-publish","format-standard","hentry","category-arduino","category-elektronik","category-embedded-systems"],"_links":{"self":[{"href":"https:\/\/www.final-memory.org\/index.php?rest_route=\/wp\/v2\/posts\/2527","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.final-memory.org\/index.php?rest_route=\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.final-memory.org\/index.php?rest_route=\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.final-memory.org\/index.php?rest_route=\/wp\/v2\/users\/2"}],"replies":[{"embeddable":true,"href":"https:\/\/www.final-memory.org\/index.php?rest_route=%2Fwp%2Fv2%2Fcomments&post=2527"}],"version-history":[{"count":3,"href":"https:\/\/www.final-memory.org\/index.php?rest_route=\/wp\/v2\/posts\/2527\/revisions"}],"predecessor-version":[{"id":2530,"href":"https:\/\/www.final-memory.org\/index.php?rest_route=\/wp\/v2\/posts\/2527\/revisions\/2530"}],"wp:attachment":[{"href":"https:\/\/www.final-memory.org\/index.php?rest_route=%2Fwp%2Fv2%2Fmedia&parent=2527"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.final-memory.org\/index.php?rest_route=%2Fwp%2Fv2%2Fcategories&post=2527"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.final-memory.org\/index.php?rest_route=%2Fwp%2Fv2%2Ftags&post=2527"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}