{"id":322,"date":"2020-01-06T12:59:06","date_gmt":"2020-01-06T12:59:06","guid":{"rendered":"https:\/\/starthardware.org\/en\/?p=322"},"modified":"2020-01-06T12:59:08","modified_gmt":"2020-01-06T12:59:08","slug":"arduino-matrix-display-8-x-8-pixels-and-lots-of-fun","status":"publish","type":"post","link":"https:\/\/starthardware.org\/en\/arduino-matrix-display-8-x-8-pixels-and-lots-of-fun\/","title":{"rendered":"Arduino Matrix Display 8 \u00d7 8 pixels and lots of fun"},"content":{"rendered":"\n<p>Controlling with Arduino Matrix Displays is pretty easy if you make it easy! Here is my recommendation on how to do it.<\/p>\n\n\n\n<p>Depending on the design, a matrix display consists of e.g. 8 \u00d7 8 pixels. So there are a total of 64 LEDs. Controlling them with Arduino should be quite difficult with the limited I \/ O pins. Fortunately, there are controller modules (ICs) that make life easier. A great series of this controller ICs is the MAX72XX line containing chips like the MAX7219.<\/p>\n\n\n\n<p>Additional info: XX stands for all possible number combinations such as MAX7218, MAX7219, MAX721 or MAX7228. To go deeper into the matter, you can take a look at the<a href=\"https:\/\/datasheets.maximintegrated.com\/en\/ds\/ICM7218-ICM7228.pdf\"> data sheet<\/a>. This is not necessary for these instructions.<\/p>\n\n\n\n<p>I strongly recommend buying a matrix display with the MAX7219 already integrated. This saves you a lot of work, a lot of cable clutter and sleepless nights.<\/p>\n\n\n\n<figure class=\"wp-block-image size-large\"><img loading=\"lazy\" decoding=\"async\" width=\"860\" height=\"803\" src=\"https:\/\/starthardware.org\/en\/wp-content\/uploads\/2020\/01\/Arduino-Max7219-LED-Matrix-Display.jpg\" alt=\"\" class=\"wp-image-323\" srcset=\"https:\/\/starthardware.org\/en\/wp-content\/uploads\/2020\/01\/Arduino-Max7219-LED-Matrix-Display.jpg 860w, https:\/\/starthardware.org\/en\/wp-content\/uploads\/2020\/01\/Arduino-Max7219-LED-Matrix-Display-300x280.jpg 300w, https:\/\/starthardware.org\/en\/wp-content\/uploads\/2020\/01\/Arduino-Max7219-LED-Matrix-Display-768x717.jpg 768w\" sizes=\"auto, (max-width: 860px) 100vw, 860px\" \/><\/figure>\n\n\n\n<p>I got these:<a href=\"https:\/\/amzn.to\/2N1sAR3\">MAX7219 Dot Matrix Display Module Single-Chip Control LED Module DIY Kit for Arduino with 5pin Line<\/a>* That&#8217;s two matrix displays for around ten bucks. I think that&#8217;s a good price.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Circuit<\/h2>\n\n\n\n<figure class=\"wp-block-image size-full\"><img loading=\"lazy\" decoding=\"async\" width=\"1200\" height=\"523\" src=\"https:\/\/starthardware.org\/en\/wp-content\/uploads\/2020\/01\/arduino-led-matrix-max7219-schaltplan-schaltung-circuit-1.jpg\" alt=\"Arduino Max7219 LED matrix display \" class=\"wp-image-324\" srcset=\"https:\/\/starthardware.org\/en\/wp-content\/uploads\/2020\/01\/arduino-led-matrix-max7219-schaltplan-schaltung-circuit-1.jpg 1200w, https:\/\/starthardware.org\/en\/wp-content\/uploads\/2020\/01\/arduino-led-matrix-max7219-schaltplan-schaltung-circuit-1-300x131.jpg 300w, https:\/\/starthardware.org\/en\/wp-content\/uploads\/2020\/01\/arduino-led-matrix-max7219-schaltplan-schaltung-circuit-1-1024x446.jpg 1024w, https:\/\/starthardware.org\/en\/wp-content\/uploads\/2020\/01\/arduino-led-matrix-max7219-schaltplan-schaltung-circuit-1-768x335.jpg 768w\" sizes=\"auto, (max-width: 1200px) 100vw, 1200px\" \/><\/figure>\n\n\n\n<p>The circuit is very simple. The display gets power through the GND and 5V +. In addition, three data lines are required. The option of switching several displays in series is super useful.<\/p>\n\n\n\n<figure class=\"wp-block-image size-large\"><img loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"315\" src=\"https:\/\/starthardware.org\/en\/wp-content\/uploads\/2020\/01\/arduino-led-matrix-max7219-schaltplan-schaltung-circuit-chain-1024x315.jpg\" alt=\"\" class=\"wp-image-325\" srcset=\"https:\/\/starthardware.org\/en\/wp-content\/uploads\/2020\/01\/arduino-led-matrix-max7219-schaltplan-schaltung-circuit-chain-1024x315.jpg 1024w, https:\/\/starthardware.org\/en\/wp-content\/uploads\/2020\/01\/arduino-led-matrix-max7219-schaltplan-schaltung-circuit-chain-300x92.jpg 300w, https:\/\/starthardware.org\/en\/wp-content\/uploads\/2020\/01\/arduino-led-matrix-max7219-schaltplan-schaltung-circuit-chain-768x236.jpg 768w, https:\/\/starthardware.org\/en\/wp-content\/uploads\/2020\/01\/arduino-led-matrix-max7219-schaltplan-schaltung-circuit-chain.jpg 1200w\" sizes=\"auto, (max-width: 1024px) 100vw, 1024px\" \/><\/figure>\n\n\n\n<h2 class=\"wp-block-heading\">Arduino Matrix Display Code<\/h2>\n\n\n\n<p>To control the Max7219, the LEDControl library has to be installed. Click <em>Sketch>Libraries>Manage libraries<\/em> and search for <em>LEDControl<\/em>. Install the current version of the library.<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>\/\/We always have to include the library\n#include \"LedControl.h\"\n\n\/*\n Now we need a LedControl to work with.\n ***** These pin numbers will probably not work with your hardware *****\n pin 12 is connected to the DataIn \n pin 11 is connected to the CLK \n pin 10 is connected to LOAD \n We have only a single MAX72XX.\n *\/\nLedControl lc=LedControl(12,11,10,1);\n\n\/* we always wait a bit between updates of the display *\/\nunsigned long delaytime=100;\n\nvoid setup() {\n  \/*\n   The MAX72XX is in power-saving mode on startup,\n   we have to do a wakeup call\n   *\/\n  lc.shutdown(0,false);\n  \/* Set the brightness to a medium values *\/\n  lc.setIntensity(0,8);\n  \/* and clear the display *\/\n  lc.clearDisplay(0);\n}\n\n\/*\n This method will display the characters for the\n word \"Arduino\" one after the other on the matrix. \n (you need at least 5x7 leds to see the whole chars)\n *\/\nvoid writeArduinoOnMatrix() {\n  \/* here is the data for the characters *\/\n  byte a&#91;5]={B01111110,B10001000,B10001000,B10001000,B01111110};\n  byte r&#91;5]={B00111110,B00010000,B00100000,B00100000,B00010000};\n  byte d&#91;5]={B00011100,B00100010,B00100010,B00010010,B11111110};\n  byte u&#91;5]={B00111100,B00000010,B00000010,B00000100,B00111110};\n  byte i&#91;5]={B00000000,B00100010,B10111110,B00000010,B00000000};\n  byte n&#91;5]={B00111110,B00010000,B00100000,B00100000,B00011110};\n  byte o&#91;5]={B00011100,B00100010,B00100010,B00100010,B00011100};\n\n  \/* now display them one by one with a small delay *\/\n  lc.setRow(0,0,a&#91;0]);\n  lc.setRow(0,1,a&#91;1]);\n  lc.setRow(0,2,a&#91;2]);\n  lc.setRow(0,3,a&#91;3]);\n  lc.setRow(0,4,a&#91;4]);\n  delay(delaytime);\n  lc.setRow(0,0,r&#91;0]);\n  lc.setRow(0,1,r&#91;1]);\n  lc.setRow(0,2,r&#91;2]);\n  lc.setRow(0,3,r&#91;3]);\n  lc.setRow(0,4,r&#91;4]);\n  delay(delaytime);\n  lc.setRow(0,0,d&#91;0]);\n  lc.setRow(0,1,d&#91;1]);\n  lc.setRow(0,2,d&#91;2]);\n  lc.setRow(0,3,d&#91;3]);\n  lc.setRow(0,4,d&#91;4]);\n  delay(delaytime);\n  lc.setRow(0,0,u&#91;0]);\n  lc.setRow(0,1,u&#91;1]);\n  lc.setRow(0,2,u&#91;2]);\n  lc.setRow(0,3,u&#91;3]);\n  lc.setRow(0,4,u&#91;4]);\n  delay(delaytime);\n  lc.setRow(0,0,i&#91;0]);\n  lc.setRow(0,1,i&#91;1]);\n  lc.setRow(0,2,i&#91;2]);\n  lc.setRow(0,3,i&#91;3]);\n  lc.setRow(0,4,i&#91;4]);\n  delay(delaytime);\n  lc.setRow(0,0,n&#91;0]);\n  lc.setRow(0,1,n&#91;1]);\n  lc.setRow(0,2,n&#91;2]);\n  lc.setRow(0,3,n&#91;3]);\n  lc.setRow(0,4,n&#91;4]);\n  delay(delaytime);\n  lc.setRow(0,0,o&#91;0]);\n  lc.setRow(0,1,o&#91;1]);\n  lc.setRow(0,2,o&#91;2]);\n  lc.setRow(0,3,o&#91;3]);\n  lc.setRow(0,4,o&#91;4]);\n  delay(delaytime);\n  lc.setRow(0,0,0);\n  lc.setRow(0,1,0);\n  lc.setRow(0,2,0);\n  lc.setRow(0,3,0);\n  lc.setRow(0,4,0);\n  delay(delaytime);\n}\n\n\/*\n  This function lights up a some Leds in a row.\n The pattern will be repeated on every row.\n The pattern will blink along with the row-number.\n row number 4 (index==3) will blink 4 times etc.\n *\/\nvoid rows() {\n  for(int row=0;row&lt;8;row++) {\n    delay(delaytime);\n    lc.setRow(0,row,B10100000);\n    delay(delaytime);\n    lc.setRow(0,row,(byte)0);\n    for(int i=0;i&lt;row;i++) {\n      delay(delaytime);\n      lc.setRow(0,row,B10100000);\n      delay(delaytime);\n      lc.setRow(0,row,(byte)0);\n    }\n  }\n}\n\n\/*\n  This function lights up a some Leds in a column.\n The pattern will be repeated on every column.\n The pattern will blink along with the column-number.\n column number 4 (index==3) will blink 4 times etc.\n *\/\nvoid columns() {\n  for(int col=0;col&lt;8;col++) {\n    delay(delaytime);\n    lc.setColumn(0,col,B10100000);\n    delay(delaytime);\n    lc.setColumn(0,col,(byte)0);\n    for(int i=0;i&lt;col;i++) {\n      delay(delaytime);\n      lc.setColumn(0,col,B10100000);\n      delay(delaytime);\n      lc.setColumn(0,col,(byte)0);\n    }\n  }\n}\n\n\/* \n This function will light up every Led on the matrix.\n The led will blink along with the row-number.\n row number 4 (index==3) will blink 4 times etc.\n *\/\nvoid single() {\n  for(int row=0;row&lt;8;row++) {\n    for(int col=0;col&lt;8;col++) {\n      delay(delaytime);\n      lc.setLed(0,row,col,true);\n      delay(delaytime);\n      for(int i=0;i&lt;col;i++) {\n        lc.setLed(0,row,col,false);\n        delay(delaytime);\n        lc.setLed(0,row,col,true);\n        delay(delaytime);\n      }\n    }\n  }\n}\n\nvoid loop() { \n  writeArduinoOnMatrix();\n  rows();\n  columns();\n  single();\n}<\/code><\/pre>\n\n\n\n<p>You can also find this example under <em>File > Examples > LedControl > LCDemoMatrix<\/em>.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Useful commands from the LedControl library<\/h2>\n\n\n\n<p><code>LedControl lc=LedControl(12,11,10,1);<\/code><br>Creates a display object and transfers the connected pins and the number of display modules<\/p>\n\n\n\n<p><code>lc.shutdown(0,false);<\/code><br>Wakes the display from energy saving mode<\/p>\n\n\n\n<p>lc.setIntensity(0,8);<br>Sets the brightness of the display. (Unfortunately, the range of values is unknown to me.)<\/p>\n\n\n\n<p>lc.clearDisplay(0);<br>Deletes the display 0.<\/p>\n\n\n\n<p><code>lc.setRow(0,row,B01111110);<br><\/code>Writes a byte line by line (values 0 &#8211; 255) in the row row (value range 0 &#8211; 7).<\/p>\n\n\n\n<p><code>lc.setColumn(0,col,B10100000);<br><\/code>Writes one byte (values 0 &#8211; 255) into the col column (value range 0 &#8211; 7).<\/p>\n\n\n\n<p><code>lc.setLed(0,row,col,true);<br><\/code>Switches on an LED in display 0 at row, col. (Values true and false).<\/p>\n\n\n\n<p>And what are you going to do with it now? How about a cool <a href=\"https:\/\/starthardware.org\/en\/arduino-jack-olantern-with-animated-eyes\/\">Arduino Halloween LED matrix pumpkin<\/a> or an <a href=\"https:\/\/starthardware.org\/en\/open-fire-on-an-led-matrix-display\/\">Arduino open fire<\/a>? \ud83d\ude42<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Controlling with Arduino Matrix Displays is pretty easy if you make it easy! Here is my recommendation on how to do it. Depending on the design, a matrix display consists of e.g. 8 \u00d7 8 pixels. So there are a total of 64 LEDs. Controlling them with Arduino should be quite difficult with the limited&hellip;&nbsp;<a href=\"https:\/\/starthardware.org\/en\/arduino-matrix-display-8-x-8-pixels-and-lots-of-fun\/\" class=\"\" rel=\"bookmark\">Read More &raquo;<span class=\"screen-reader-text\">Arduino Matrix Display 8 \u00d7 8 pixels and lots of fun<\/span><\/a><\/p>\n","protected":false},"author":1,"featured_media":326,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"neve_meta_sidebar":"","neve_meta_container":"","neve_meta_enable_content_width":"","neve_meta_content_width":0,"neve_meta_title_alignment":"","neve_meta_author_avatar":"","neve_post_elements_order":"","neve_meta_disable_header":"","neve_meta_disable_footer":"","neve_meta_disable_title":"","footnotes":""},"categories":[6],"tags":[],"class_list":["post-322","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-tutorials"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v18.2 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>Arduino Matrix Display 8 \u00d7 8 pixels and lots of fun - StartHardware - Tutorials for Arduino<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/starthardware.org\/en\/arduino-matrix-display-8-x-8-pixels-and-lots-of-fun\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Arduino Matrix Display 8 \u00d7 8 pixels and lots of fun - StartHardware - Tutorials for Arduino\" \/>\n<meta property=\"og:description\" content=\"Controlling with Arduino Matrix Displays is pretty easy if you make it easy! Here is my recommendation on how to do it. Depending on the design, a matrix display consists of e.g. 8 \u00d7 8 pixels. So there are a total of 64 LEDs. Controlling them with Arduino should be quite difficult with the limited&hellip;&nbsp;Read More &raquo;Arduino Matrix Display 8 \u00d7 8 pixels and lots of fun\" \/>\n<meta property=\"og:url\" content=\"https:\/\/starthardware.org\/en\/arduino-matrix-display-8-x-8-pixels-and-lots-of-fun\/\" \/>\n<meta property=\"og:site_name\" content=\"StartHardware - Tutorials for Arduino\" \/>\n<meta property=\"article:published_time\" content=\"2020-01-06T12:59:06+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2020-01-06T12:59:08+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/starthardware.org\/en\/wp-content\/uploads\/2020\/01\/arduino-led-matrix-max7219-titel.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"1200\" \/>\n\t<meta property=\"og:image:height\" content=\"675\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Stefan Hermann\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"5 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"WebSite\",\"@id\":\"https:\/\/starthardware.org\/en\/#website\",\"url\":\"https:\/\/starthardware.org\/en\/\",\"name\":\"StartHardware - Tutorials for Arduino\",\"description\":\"Arduino, Electronics, Fun\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/starthardware.org\/en\/?s={search_term_string}\"},\"query-input\":\"required name=search_term_string\"}],\"inLanguage\":\"en-US\"},{\"@type\":\"ImageObject\",\"@id\":\"https:\/\/starthardware.org\/en\/arduino-matrix-display-8-x-8-pixels-and-lots-of-fun\/#primaryimage\",\"inLanguage\":\"en-US\",\"url\":\"https:\/\/starthardware.org\/en\/wp-content\/uploads\/2020\/01\/arduino-led-matrix-max7219-titel.jpg\",\"contentUrl\":\"https:\/\/starthardware.org\/en\/wp-content\/uploads\/2020\/01\/arduino-led-matrix-max7219-titel.jpg\",\"width\":1200,\"height\":675,\"caption\":\"Arduino LED Matrix Max7219 Tutorial\"},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/starthardware.org\/en\/arduino-matrix-display-8-x-8-pixels-and-lots-of-fun\/#webpage\",\"url\":\"https:\/\/starthardware.org\/en\/arduino-matrix-display-8-x-8-pixels-and-lots-of-fun\/\",\"name\":\"Arduino Matrix Display 8 \u00d7 8 pixels and lots of fun - StartHardware - Tutorials for Arduino\",\"isPartOf\":{\"@id\":\"https:\/\/starthardware.org\/en\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/starthardware.org\/en\/arduino-matrix-display-8-x-8-pixels-and-lots-of-fun\/#primaryimage\"},\"datePublished\":\"2020-01-06T12:59:06+00:00\",\"dateModified\":\"2020-01-06T12:59:08+00:00\",\"author\":{\"@id\":\"https:\/\/starthardware.org\/en\/#\/schema\/person\/811b16fabcbfeef4210ea79cf0990a59\"},\"breadcrumb\":{\"@id\":\"https:\/\/starthardware.org\/en\/arduino-matrix-display-8-x-8-pixels-and-lots-of-fun\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/starthardware.org\/en\/arduino-matrix-display-8-x-8-pixels-and-lots-of-fun\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/starthardware.org\/en\/arduino-matrix-display-8-x-8-pixels-and-lots-of-fun\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/starthardware.org\/en\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Arduino Matrix Display 8 \u00d7 8 pixels and lots of fun\"}]},{\"@type\":\"Person\",\"@id\":\"https:\/\/starthardware.org\/en\/#\/schema\/person\/811b16fabcbfeef4210ea79cf0990a59\",\"name\":\"Stefan Hermann\",\"image\":{\"@type\":\"ImageObject\",\"@id\":\"https:\/\/starthardware.org\/en\/#personlogo\",\"inLanguage\":\"en-US\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/5b5a74ee1d07024fd1eff9b1f7137108089169010a93afaee907b9325ee579a6?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/5b5a74ee1d07024fd1eff9b1f7137108089169010a93afaee907b9325ee579a6?s=96&d=mm&r=g\",\"caption\":\"Stefan Hermann\"}}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Arduino Matrix Display 8 \u00d7 8 pixels and lots of fun - StartHardware - Tutorials for Arduino","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/starthardware.org\/en\/arduino-matrix-display-8-x-8-pixels-and-lots-of-fun\/","og_locale":"en_US","og_type":"article","og_title":"Arduino Matrix Display 8 \u00d7 8 pixels and lots of fun - StartHardware - Tutorials for Arduino","og_description":"Controlling with Arduino Matrix Displays is pretty easy if you make it easy! Here is my recommendation on how to do it. Depending on the design, a matrix display consists of e.g. 8 \u00d7 8 pixels. So there are a total of 64 LEDs. Controlling them with Arduino should be quite difficult with the limited&hellip;&nbsp;Read More &raquo;Arduino Matrix Display 8 \u00d7 8 pixels and lots of fun","og_url":"https:\/\/starthardware.org\/en\/arduino-matrix-display-8-x-8-pixels-and-lots-of-fun\/","og_site_name":"StartHardware - Tutorials for Arduino","article_published_time":"2020-01-06T12:59:06+00:00","article_modified_time":"2020-01-06T12:59:08+00:00","og_image":[{"width":1200,"height":675,"url":"https:\/\/starthardware.org\/en\/wp-content\/uploads\/2020\/01\/arduino-led-matrix-max7219-titel.jpg","type":"image\/jpeg"}],"twitter_card":"summary_large_image","twitter_misc":{"Written by":"Stefan Hermann","Est. reading time":"5 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebSite","@id":"https:\/\/starthardware.org\/en\/#website","url":"https:\/\/starthardware.org\/en\/","name":"StartHardware - Tutorials for Arduino","description":"Arduino, Electronics, Fun","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/starthardware.org\/en\/?s={search_term_string}"},"query-input":"required name=search_term_string"}],"inLanguage":"en-US"},{"@type":"ImageObject","@id":"https:\/\/starthardware.org\/en\/arduino-matrix-display-8-x-8-pixels-and-lots-of-fun\/#primaryimage","inLanguage":"en-US","url":"https:\/\/starthardware.org\/en\/wp-content\/uploads\/2020\/01\/arduino-led-matrix-max7219-titel.jpg","contentUrl":"https:\/\/starthardware.org\/en\/wp-content\/uploads\/2020\/01\/arduino-led-matrix-max7219-titel.jpg","width":1200,"height":675,"caption":"Arduino LED Matrix Max7219 Tutorial"},{"@type":"WebPage","@id":"https:\/\/starthardware.org\/en\/arduino-matrix-display-8-x-8-pixels-and-lots-of-fun\/#webpage","url":"https:\/\/starthardware.org\/en\/arduino-matrix-display-8-x-8-pixels-and-lots-of-fun\/","name":"Arduino Matrix Display 8 \u00d7 8 pixels and lots of fun - StartHardware - Tutorials for Arduino","isPartOf":{"@id":"https:\/\/starthardware.org\/en\/#website"},"primaryImageOfPage":{"@id":"https:\/\/starthardware.org\/en\/arduino-matrix-display-8-x-8-pixels-and-lots-of-fun\/#primaryimage"},"datePublished":"2020-01-06T12:59:06+00:00","dateModified":"2020-01-06T12:59:08+00:00","author":{"@id":"https:\/\/starthardware.org\/en\/#\/schema\/person\/811b16fabcbfeef4210ea79cf0990a59"},"breadcrumb":{"@id":"https:\/\/starthardware.org\/en\/arduino-matrix-display-8-x-8-pixels-and-lots-of-fun\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/starthardware.org\/en\/arduino-matrix-display-8-x-8-pixels-and-lots-of-fun\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/starthardware.org\/en\/arduino-matrix-display-8-x-8-pixels-and-lots-of-fun\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/starthardware.org\/en\/"},{"@type":"ListItem","position":2,"name":"Arduino Matrix Display 8 \u00d7 8 pixels and lots of fun"}]},{"@type":"Person","@id":"https:\/\/starthardware.org\/en\/#\/schema\/person\/811b16fabcbfeef4210ea79cf0990a59","name":"Stefan Hermann","image":{"@type":"ImageObject","@id":"https:\/\/starthardware.org\/en\/#personlogo","inLanguage":"en-US","url":"https:\/\/secure.gravatar.com\/avatar\/5b5a74ee1d07024fd1eff9b1f7137108089169010a93afaee907b9325ee579a6?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/5b5a74ee1d07024fd1eff9b1f7137108089169010a93afaee907b9325ee579a6?s=96&d=mm&r=g","caption":"Stefan Hermann"}}]}},"amp_enabled":true,"_links":{"self":[{"href":"https:\/\/starthardware.org\/en\/wp-json\/wp\/v2\/posts\/322","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/starthardware.org\/en\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/starthardware.org\/en\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/starthardware.org\/en\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/starthardware.org\/en\/wp-json\/wp\/v2\/comments?post=322"}],"version-history":[{"count":1,"href":"https:\/\/starthardware.org\/en\/wp-json\/wp\/v2\/posts\/322\/revisions"}],"predecessor-version":[{"id":327,"href":"https:\/\/starthardware.org\/en\/wp-json\/wp\/v2\/posts\/322\/revisions\/327"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/starthardware.org\/en\/wp-json\/wp\/v2\/media\/326"}],"wp:attachment":[{"href":"https:\/\/starthardware.org\/en\/wp-json\/wp\/v2\/media?parent=322"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/starthardware.org\/en\/wp-json\/wp\/v2\/categories?post=322"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/starthardware.org\/en\/wp-json\/wp\/v2\/tags?post=322"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}