<?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_Special_Character</id>
	<title>Arduino: LCD Special Character - 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_Special_Character"/>
	<link rel="alternate" type="text/html" href="https://onnocenter.or.id/wiki/index.php?title=Arduino:_LCD_Special_Character&amp;action=history"/>
	<updated>2026-04-03T22:54:22Z</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_Special_Character&amp;diff=64120&amp;oldid=prev</id>
		<title>Onnowpurbo: Created page with &quot; /*  Arduino 2x16 LCD - LCD Special Char  modified on 18 Feb 2019  by Saeed Hosseini  https://electropeak.com/learn/  */  #include &lt;LiquidCrystal.h&gt;  const int RS = 8;  const...&quot;</title>
		<link rel="alternate" type="text/html" href="https://onnocenter.or.id/wiki/index.php?title=Arduino:_LCD_Special_Character&amp;diff=64120&amp;oldid=prev"/>
		<updated>2021-11-23T05:28:16Z</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 Special Char  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...&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 Special Char&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;
 // smily face&lt;br /&gt;
 byte smiley[8] = {&lt;br /&gt;
  B00000,&lt;br /&gt;
  B10001,&lt;br /&gt;
  B00000,&lt;br /&gt;
  B00000,&lt;br /&gt;
  B10001,&lt;br /&gt;
  B01110,&lt;br /&gt;
  B00000,&lt;br /&gt;
 };&lt;br /&gt;
 // Battery sign&lt;br /&gt;
 byte battery[] = {&lt;br /&gt;
  B01110,&lt;br /&gt;
  B01010,&lt;br /&gt;
  B11011,&lt;br /&gt;
  B10001,&lt;br /&gt;
  B11111,&lt;br /&gt;
  B11111,&lt;br /&gt;
  B11111,&lt;br /&gt;
  B11111&lt;br /&gt;
 };&lt;br /&gt;
 // arrow right&lt;br /&gt;
 byte R_arrow[8] = {&lt;br /&gt;
  B00000,&lt;br /&gt;
  B00100,&lt;br /&gt;
  B00010,&lt;br /&gt;
  B11111,&lt;br /&gt;
  B00010,&lt;br /&gt;
  B00100,&lt;br /&gt;
  B00000,&lt;br /&gt;
  B00000&lt;br /&gt;
 };&lt;br /&gt;
 // arrow left&lt;br /&gt;
 byte L_arrow[8] = {&lt;br /&gt;
  B00000,&lt;br /&gt;
  B00100,&lt;br /&gt;
  B01000,&lt;br /&gt;
  B11111,&lt;br /&gt;
  B01000,&lt;br /&gt;
  B00100,&lt;br /&gt;
  B00000,&lt;br /&gt;
  B00000&lt;br /&gt;
 };&lt;br /&gt;
 // Ohm sign &lt;br /&gt;
 byte ohm[8] = {&lt;br /&gt;
  B00000,&lt;br /&gt;
  B01110,&lt;br /&gt;
  B10001,&lt;br /&gt;
  B10001,&lt;br /&gt;
  B10001,&lt;br /&gt;
  B01010,&lt;br /&gt;
  B11011,&lt;br /&gt;
  B00000&lt;br /&gt;
 };&lt;br /&gt;
 // Heart&lt;br /&gt;
 byte heart[8] = {&lt;br /&gt;
  B00000,&lt;br /&gt;
  B01010,&lt;br /&gt;
  B10101,&lt;br /&gt;
  B10001,&lt;br /&gt;
  B10001,&lt;br /&gt;
  B01010,&lt;br /&gt;
  B00100,&lt;br /&gt;
  B00000&lt;br /&gt;
 };&lt;br /&gt;
 int i = 0;&lt;br /&gt;
 void setup() {&lt;br /&gt;
  lcd.begin(16, 2);&lt;br /&gt;
  lcd.createChar(0, smiley);&lt;br /&gt;
  lcd.createChar(1, battery);&lt;br /&gt;
  lcd.createChar(2, R_arrow);&lt;br /&gt;
  lcd.createChar(3, L_arrow);&lt;br /&gt;
  lcd.createChar(4, ohm);&lt;br /&gt;
  lcd.createChar(5, heart);&lt;br /&gt;
  lcd.createChar(6, ohm);&lt;br /&gt;
  for (int n = 0; n &amp;lt; 6; n++)&lt;br /&gt;
  {&lt;br /&gt;
    lcd.setCursor(n * 2, 0);&lt;br /&gt;
    lcd.write(n);&lt;br /&gt;
  }&lt;br /&gt;
 }&lt;br /&gt;
 void loop() {&lt;br /&gt;
 }&lt;/div&gt;</summary>
		<author><name>Onnowpurbo</name></author>
	</entry>
</feed>