<?xml version="1.0"?>
<?xml-stylesheet type="text/css" href="http://wiki.mcselec.com/bavr/skins/common/feed.css?303"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
		<id>http://wiki.mcselec.com/bavr/index.php?action=history&amp;feed=atom&amp;title=GlcdR7565R%2Fde</id>
		<title>GlcdR7565R/de - Revision history</title>
		<link rel="self" type="application/atom+xml" href="http://wiki.mcselec.com/bavr/index.php?action=history&amp;feed=atom&amp;title=GlcdR7565R%2Fde"/>
		<link rel="alternate" type="text/html" href="http://wiki.mcselec.com/bavr/index.php?title=GlcdR7565R/de&amp;action=history"/>
		<updated>2026-05-01T14:03:10Z</updated>
		<subtitle>Revision history for this page on the wiki</subtitle>
		<generator>MediaWiki 1.18.6</generator>

	<entry>
		<id>http://wiki.mcselec.com/bavr/index.php?title=GlcdR7565R/de&amp;diff=3105&amp;oldid=prev</id>
		<title>Admin: 1 revision</title>
		<link rel="alternate" type="text/html" href="http://wiki.mcselec.com/bavr/index.php?title=GlcdR7565R/de&amp;diff=3105&amp;oldid=prev"/>
				<updated>2013-02-15T19:17:54Z</updated>
		
		<summary type="html">&lt;p&gt;1 revision&lt;/p&gt;
&lt;table class='diff diff-contentalign-left'&gt;
		&lt;tr valign='top'&gt;
		&lt;td colspan='1' style=&quot;background-color: white; color:black;&quot;&gt;← Older revision&lt;/td&gt;
		&lt;td colspan='1' style=&quot;background-color: white; color:black;&quot;&gt;Revision as of 19:17, 15 February 2013&lt;/td&gt;
		&lt;/tr&gt;&lt;/table&gt;</summary>
		<author><name>Admin</name></author>	</entry>

	<entry>
		<id>http://wiki.mcselec.com/bavr/index.php?title=GlcdR7565R/de&amp;diff=3104&amp;oldid=prev</id>
		<title>Admin: Created page with &quot;he glcdR7565R.lib is intended to be used with 128x64 &amp;nbsp;displays using the ST7565R chip.  &lt;source lang=&quot;bascomavr&quot;&gt; '-------------------------------------------------------...&quot;</title>
		<link rel="alternate" type="text/html" href="http://wiki.mcselec.com/bavr/index.php?title=GlcdR7565R/de&amp;diff=3104&amp;oldid=prev"/>
				<updated>2013-02-13T10:14:38Z</updated>
		
		<summary type="html">&lt;p&gt;Created page with &amp;quot;he glcdR7565R.lib is intended to be used with 128x64  displays using the ST7565R chip.  &amp;lt;source lang=&amp;quot;bascomavr&amp;quot;&amp;gt; &amp;#039;-------------------------------------------------------...&amp;quot;&lt;/p&gt;
&lt;p&gt;&lt;b&gt;New page&lt;/b&gt;&lt;/p&gt;&lt;div&gt;== (**COPIED FROM ENGLISH PAGE**) ==he glcdR7565R.lib is intended to be used with 128x64 &amp;amp;nbsp;displays using the ST7565R chip.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;source lang=&amp;quot;bascomavr&amp;quot;&amp;gt;&lt;br /&gt;
'----------------------------------------------------------------&lt;br /&gt;
' (c) 1995-2011, MCS&lt;br /&gt;
' xm128A1-ST7565R.bas&lt;br /&gt;
' This sample demonstrates the ST7565R chip with an Xmega128A1&lt;br /&gt;
' Display used : 64128N SERIES from DisplayTech&lt;br /&gt;
' this is a parallel display with read/write options&lt;br /&gt;
'-----------------------------------------------------------------&lt;br /&gt;
 &lt;br /&gt;
$regfile = &amp;quot;xm128a1def.dat&amp;quot;&lt;br /&gt;
$crystal = 32000000&lt;br /&gt;
$hwstack = 64&lt;br /&gt;
$swstack = 40&lt;br /&gt;
$framesize = 40&lt;br /&gt;
 &lt;br /&gt;
'include the following lib and code, the routines will be replaced since they are a workaround&lt;br /&gt;
$lib &amp;quot;xmega.lib&amp;quot;&lt;br /&gt;
$external _xmegafix_clear&lt;br /&gt;
$external _xmegafix_rol_r1014&lt;br /&gt;
 &lt;br /&gt;
'first enable the osc of your choice&lt;br /&gt;
Config Osc = Enabled , 32mhzosc = Enabled&lt;br /&gt;
 &lt;br /&gt;
'configure the systemclock&lt;br /&gt;
Config Sysclock = 32mhz , Prescalea = 1 , Prescalebc = 1_1&lt;br /&gt;
 &lt;br /&gt;
Config Com1 = 38400 , Mode = Asynchroneous , Parity = None , Stopbits = 1 , Databits = 8&lt;br /&gt;
$lib &amp;quot;glcdST7565r.lbx&amp;quot; ' specify the used lib&lt;br /&gt;
$lib &amp;quot;glcd.lbx&amp;quot; ' and this one of you use circle/line etc&lt;br /&gt;
 &lt;br /&gt;
'the display was connected with these pins&lt;br /&gt;
Config Graphlcd = 128 * 64eadogm ,dataport=portj, Cs1 = Porth.0 , A0 = Porth.2 , rst= Porth.1 , wr = Porth.3 , Rd = Porth.4,c86=porth.6&lt;br /&gt;
 &lt;br /&gt;
cls&lt;br /&gt;
 &lt;br /&gt;
Setfont Font8x8tt ' set font&lt;br /&gt;
 &lt;br /&gt;
dim y as byte&lt;br /&gt;
 &lt;br /&gt;
'You can use locate but the columns have a range from 1-128&lt;br /&gt;
'When you want to show somthing on the LCD, use the LDAT command&lt;br /&gt;
'LCDAT Y , COL, value&lt;br /&gt;
Lcdat 1 , 1 , &amp;quot;11111111&amp;quot;&lt;br /&gt;
Lcdat 2 , 1 , &amp;quot;ABCDEFGHIJKL1234&amp;quot;&lt;br /&gt;
Lcdat 3 , 1 , &amp;quot;MCS Electronics&amp;quot; , 1 ' inverse&lt;br /&gt;
Lcdat 4 , 1 , &amp;quot;MCS Electronics&amp;quot;&lt;br /&gt;
 &lt;br /&gt;
Waitms 3000&lt;br /&gt;
Setfont My12_16 ' use a bigger font&lt;br /&gt;
 &lt;br /&gt;
Cls&lt;br /&gt;
Lcdat 1 , 1 , &amp;quot;112345678&amp;quot; 'a bigger font&lt;br /&gt;
Waitms 3000 ' wait&lt;br /&gt;
 &lt;br /&gt;
Line(0 , 0) -(127 , 64) , 1 'make line&lt;br /&gt;
Waitms 2000 'wait 2 secs&lt;br /&gt;
Line(0 , 0) -(127 , 64) , 0 'remove line by inverting the color&lt;br /&gt;
 &lt;br /&gt;
For Y = 1 To 20&lt;br /&gt;
 Circle(30 , 30) , Y , 1 ' growing circle&lt;br /&gt;
 Waitms 100&lt;br /&gt;
Next&lt;br /&gt;
 &lt;br /&gt;
End&lt;br /&gt;
 &lt;br /&gt;
 &lt;br /&gt;
$include &amp;quot;font8x8TT.font&amp;quot;&lt;br /&gt;
$include &amp;quot;my12_16.font&amp;quot;&lt;br /&gt;
&amp;lt;/source&amp;gt;&amp;lt;br/&amp;gt;&amp;lt;br/&amp;gt;{{Languages}}&lt;br /&gt;
&lt;br /&gt;
[[Category:LCD/de]]&lt;/div&gt;</summary>
		<author><name>Admin</name></author>	</entry>

	</feed>