<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
	<id>https://onnocenter.or.id/wiki/index.php?action=history&amp;feed=atom&amp;title=Arduino%3A_LCD_Scroll</id>
	<title>Arduino: LCD Scroll - Revision history</title>
	<link rel="self" type="application/atom+xml" href="https://onnocenter.or.id/wiki/index.php?action=history&amp;feed=atom&amp;title=Arduino%3A_LCD_Scroll"/>
	<link rel="alternate" type="text/html" href="https://onnocenter.or.id/wiki/index.php?title=Arduino:_LCD_Scroll&amp;action=history"/>
	<updated>2026-04-03T22:53:44Z</updated>
	<subtitle>Revision history for this page on the wiki</subtitle>
	<generator>MediaWiki 1.35.4</generator>
	<entry>
		<id>https://onnocenter.or.id/wiki/index.php?title=Arduino:_LCD_Scroll&amp;diff=64116&amp;oldid=prev</id>
		<title>Onnowpurbo: Created page with &quot; /*  Arduino 2x16 LCD - LCD Scroll  modified on 18 Feb 2019  by Saeed Hosseini  https://electropeak.com/learn/  */  #include &lt;LiquidCrystal.h&gt;  const int RS = 8;  const int EN...&quot;</title>
		<link rel="alternate" type="text/html" href="https://onnocenter.or.id/wiki/index.php?title=Arduino:_LCD_Scroll&amp;diff=64116&amp;oldid=prev"/>
		<updated>2021-11-23T05:24:23Z</updated>

		<summary type="html">&lt;p&gt;Created page with &amp;quot; &lt;span dir=&quot;auto&quot;&gt;&lt;span class=&quot;autocomment&quot;&gt;Arduino 2x16 LCD - LCD Scroll  modified on 18 Feb 2019  by Saeed Hosseini  https://electropeak.com/learn/: &lt;/span&gt;  #include &amp;lt;LiquidCrystal.h&amp;gt;  const int RS = 8;  const int EN...&amp;quot;&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;b&gt;New page&lt;/b&gt;&lt;/p&gt;&lt;div&gt; /*&lt;br /&gt;
 Arduino 2x16 LCD - LCD Scroll&lt;br /&gt;
 modified on 18 Feb 2019&lt;br /&gt;
 by Saeed Hosseini&lt;br /&gt;
 https://electropeak.com/learn/&lt;br /&gt;
 */&lt;br /&gt;
 #include &amp;lt;LiquidCrystal.h&amp;gt;&lt;br /&gt;
 const int RS = 8;&lt;br /&gt;
 const int EN = 9;&lt;br /&gt;
 const int d4 = 4;&lt;br /&gt;
 const int d5 = 5;&lt;br /&gt;
 const int d6 = 6;&lt;br /&gt;
 const int d7 = 7;&lt;br /&gt;
 const int pin_BL = 10; // arduino pin wired to LCD backlight circuit&lt;br /&gt;
 LiquidCrystal lcd( RS,  EN,  d4,  d5,  d6,  d7);&lt;br /&gt;
 void setup() {&lt;br /&gt;
  lcd.begin(16, 2);&lt;br /&gt;
  lcd.print(&amp;quot;Electropeak&amp;quot;);&lt;br /&gt;
  delay(1000);&lt;br /&gt;
 }&lt;br /&gt;
 void loop() {&lt;br /&gt;
  // scroll 11 positions (&amp;quot;Electropeak&amp;quot; length) to the left&lt;br /&gt;
  for (int positionCounter = 0; positionCounter &amp;lt; 11; positionCounter++) {&lt;br /&gt;
    lcd.scrollDisplayLeft();&lt;br /&gt;
    delay(400);  //Scrolling speed&lt;br /&gt;
  }&lt;br /&gt;
  // scroll 27 positions (&amp;quot;Electropeak&amp;quot; length + display length) to the right&lt;br /&gt;
  for (int positionCounter = 0; positionCounter &amp;lt; 27; positionCounter++) {&lt;br /&gt;
    lcd.scrollDisplayRight();&lt;br /&gt;
    delay(400);&lt;br /&gt;
  }&lt;br /&gt;
  // scroll 16 positions (display length) to the left&lt;br /&gt;
  for (int positionCounter = 0; positionCounter &amp;lt; 16; positionCounter++) {&lt;br /&gt;
    lcd.scrollDisplayLeft();&lt;br /&gt;
    delay(50);&lt;br /&gt;
  }&lt;br /&gt;
  delay(1000);&lt;br /&gt;
 }&lt;/div&gt;</summary>
		<author><name>Onnowpurbo</name></author>
	</entry>
</feed>