📄 51单片机编程范例(串行口动态扫描显示电路) - 伟纳电子.mht
字号:
From: <由 Microsoft Internet Explorer 5 保存>
Subject: =?gb2312?B?NTG1pcasu/qx4LPMt7bA/aOotK7Q0L/atq/MrMmow+jP1Mq+tefCt6OpIC0g?=
=?gb2312?B?zrDEybXn19M=?=
Date: Sun, 26 Dec 2004 11:42:14 +0800
MIME-Version: 1.0
Content-Type: multipart/related;
boundary="----=_NextPart_000_0000_01C4EB3F.F218E000";
type="text/html"
X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2800.1106
This is a multi-part message in MIME format.
------=_NextPart_000_0000_01C4EB3F.F218E000
Content-Type: text/html;
charset="gb2312"
Content-Transfer-Encoding: quoted-printable
Content-Location: http://www.willar.com/article_view.asp?id=330
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<HTML><HEAD><TITLE>51=B5=A5=C6=AC=BB=FA=B1=E0=B3=CC=B7=B6=C0=FD=A3=A8=B4=AE=
=D0=D0=BF=DA=B6=AF=CC=AC=C9=A8=C3=E8=CF=D4=CA=BE=B5=E7=C2=B7=A3=A9 - =
=CE=B0=C4=C9=B5=E7=D7=D3</TITLE>
<META =
content=3D"=B5=A5=C6=AC=BB=FA|=B1=E0=B3=CC=C6=F7|=B7=C2=D5=E6=C6=F7|=BF=AA=
=B7=A2=B0=E5|EDA=C8=ED=BC=FE=CF=C2=D4=D8|=B5=E7=D7=D3=BC=BC=CA=F5=D7=CA=C1=
=CF=CF=C2=D4=D8=A1=AD=A1=AD=BB=B6=D3=AD=B9=E2=C1=D9=CE=B0=C4=C9=B5=E7=D7=D3=
->www.willar.com,"=20
name=3DDESCRIPTION>
<META =
content=3D=B1=E0=B3=CC=C6=F7=A1=A2=B7=C2=D5=E6=C6=F7=A1=A2=CA=B5=D1=E9=B0=
=E5=A1=A2=B1=E0=B3=CC=C6=F7=D6=C6=D7=F7,=C1=AE=BC=DB=B1=E0=B3=CC=C6=F7,=B5=
=A5=C6=AC=BB=FA,=B5=A5=C6=AC=BB=FA=C8=EB=C3=C5,EDA=C8=ED=BC=FE=CF=C2=D4=D8=
,=B5=E7=D4=B4=BC=BC=CA=F5,=B3=E4=B5=E7=C6=F7=C9=E8=BC=C6,=B5=E7=C4=D4=BC=BC=
=CA=F5=20
name=3Dkeywords>
<META content=3D"=CE=B0=C4=C9=B5=E7=D7=D3--->www.willar.com" =
name=3Dauthor>
<META http-equiv=3DContent-Type content=3D"text/html; =
charset=3Dgb2312"><LINK=20
href=3D"http://www.willar.com/images/joekoe.css" type=3Dtext/css =
rel=3Dstylesheet>
<SCRIPT src=3D"http://www.willar.com/style/open_win.js"=20
langiage=3D"javascript"></SCRIPT>
<SCRIPT src=3D"http://www.willar.com/style/mouse_on_title.js"=20
langiage=3D"javascript"></SCRIPT>
<SCRIPT language=3DJavaScript type=3Dtext/JavaScript>
//=CF=C2=C0=AD=B2=CB=B5=A5=CF=E0=B9=D8=B4=FA=C2=EB
var h;
var w;
var l;
var t;
var topMar =3D 1;
var leftMar =3D -2;
var space =3D 1;
var isvisible;
var =
MENU_SHADOW_COLOR=3D'#999999';//=B6=A8=D2=E5=CF=C2=C0=AD=B2=CB=B5=A5=D2=F5=
=D3=B0=C9=AB
var global =3D window.document
global.fo_currentMenu =3D null
global.fo_shadows =3D new Array
function HideMenu()=20
{
var mX;
var mY;
var vDiv;
var mDiv;
if (isvisible =3D=3D true)
{
vDiv =3D document.all("menuDiv");
mX =3D window.event.clientX + document.body.scrollLeft;
mY =3D window.event.clientY + document.body.scrollTop;
if ((mX < parseInt(vDiv.style.left)) || (mX > =
parseInt(vDiv.style.left)+vDiv.offsetWidth) || (mY < =
parseInt(vDiv.style.top)-h) || (mY > =
parseInt(vDiv.style.top)+vDiv.offsetHeight)){
vDiv.style.visibility =3D "hidden";
isvisible =3D false;
}
}
}
function ShowMenu(vMnuCode,tWidth) {
vSrc =3D window.event.srcElement;
vMnuCode =3D "<table id=3D'submenu' cellspacing=3D1 cellpadding=3D3 =
style=3D'width:"+tWidth+"' class=3Dtable onmouseout=3D'HideMenu()'><tr =
height=3D23><td width=3D25 =
background=3D'images/main/xiala.gif'> </td><td =
nowrap align=3Dleft class=3Dbg_1>" + vMnuCode + "</td></tr></table>";
h =3D vSrc.offsetHeight;
w =3D vSrc.offsetWidth;
l =3D vSrc.offsetLeft + leftMar+4;
t =3D vSrc.offsetTop + topMar + h + space-2;
vParent =3D vSrc.offsetParent;
while (vParent.tagName.toUpperCase() !=3D "BODY")
{
l +=3D vParent.offsetLeft;
t +=3D vParent.offsetTop;
vParent =3D vParent.offsetParent;
}
menuDiv.innerHTML =3D vMnuCode;
menuDiv.style.top =3D t;
menuDiv.style.left =3D l;
menuDiv.style.visibility =3D "visible";
isvisible =3D true;
makeRectangularDropShadow(submenu, MENU_SHADOW_COLOR, 4)
}
function makeRectangularDropShadow(el, color, size)
{
var i;
for (i=3Dsize; i>0; i--)
{
var rect =3D document.createElement('div');
var rs =3D rect.style
rs.position =3D 'absolute';
rs.left =3D (el.style.posLeft + i) + 'px';
rs.top =3D (el.style.posTop + i) + 'px';
rs.width =3D el.offsetWidth + 'px';
rs.height =3D el.offsetHeight + 'px';
rs.zIndex =3D el.style.zIndex - i;
rs.backgroundColor =3D color;
var opacity =3D 1 - i / (i + 1);
rs.filter =3D 'alpha(opacity=3D' + (100 * opacity) + ')';
el.insertAdjacentElement('afterEnd', rect);
global.fo_shadows[global.fo_shadows.length] =3D rect;
}
}
//=B7=A2=B2=BC=D6=D0=D0=C4
var userput=3D '=A1=E8<a style=3Dfont-size:9pt;line-height:12pt; =
href=3D"user_mail.asp">=D5=BE=C4=DA=B6=CC=D0=C5</a><br>=A1=E8<a =
style=3Dfont-size:9pt;line-height:12pt; =
href=3D"user_putview.asp?action=3Dshop">=CE=D2=B5=C4=B6=A9=B5=A5</a><br>=A1=
=E8<a style=3Dfont-size:9pt;line-height:12pt; =
href=3D"user_friend.asp">=CE=D2=B5=C4=BA=C3=D3=D1</a><br>=A1=E8<a =
style=3Dfont-size:9pt;line-height:12pt; =
href=3D"user_edit.asp">=D0=DE=B8=C4=D7=CA=C1=CF</a><br>=A1=E8<a =
style=3Dfont-size:9pt;line-height:12pt; =
href=3D"user_message.asp?action=3Dwrite&accept_uaername=3Dsauwa" =
>=D5=BE=B3=A4=B6=CC=D0=C5</a><br>=A1=E8<a =
style=3Dfont-size:9pt;line-height:12pt; =
href=3D"user_putview.asp">=CE=D2=B5=C4=B7=A2=B2=BC</a><br>=A1=E8<a =
style=3Dfont-size:9pt;line-height:12pt; =
href=3D"user_main.asp">=D3=C3=BB=A7=D6=D0=D0=C4</a><br>=A1=E8<a =
style=3Dfont-size:9pt;line-height:12pt; =
href=3D"login.asp?action=3Dlogout">=CD=CB=B3=F6=B5=C7=C2=BC </a>'
</SCRIPT>
<META content=3D"MSHTML 6.00.2800.1106" name=3DGENERATOR></HEAD>
<BODY onmousemove=3DHideMenu() bgColor=3D#ffffff leftMargin=3D0=20
background=3Dhttp://www.willar.com/images/bg2.gif topMargin=3D0>
<DIV id=3DmenuDiv=20
style=3D"Z-INDEX: 1000; VISIBILITY: hidden; WIDTH: 1px; POSITION: =
absolute; HEIGHT: 1px; BACKGROUND-COLOR: #9cc5f8"></DIV><A=20
name=3Dtop></A>
<CENTER>
<TABLE cellSpacing=3D0 cellPadding=3D0 width=3D777 border=3D0>
<TBODY>
<TR>
<TD width=3D1 bgColor=3D#5f79a1></TD>
<TD align=3Dmiddle width=3D775 bgColor=3D#ffffff>
<TABLE cellSpacing=3D0 cellPadding=3D0 width=3D"100%" border=3D0>
<TBODY>
<TR>
<TD background=3Dhttp://www.willar.com/images/topbg.gif=20
height=3D9></TD></TR>
<TR>
<TD height=3D22>
<TABLE cellSpacing=3D0 cellPadding=3D0 width=3D"100%" =
border=3D0>
<TBODY>
<TR align=3Dmiddle>
<TD align=3Dleft width=3D"30%"> <IMG=20
src=3D"http://www.willar.com/images/main/time.gif"=20
=
border=3D0> =BD=F1=CC=EC=CA=C7=A3=BA2004=C4=EA12=D4=C226=C8=D5 =
=D0=C7=C6=DA=C8=D5</TD>
<TD width=3D10>=A1=A1 </TD>
<TD align=3Dright width=3D"70%"><IMG height=3D11=20
src=3D"http://www.willar.com/images/small/hd1.gif" =
width=3D11=20
align=3Dcenter border=3D0> <A class=3Dtop=20
=
href=3D"http://www.willar.com/login.asp?action=3Dregister"><B><FONT=20
=
color=3D#0066cc>=C3=E2=B7=D1=D7=A2=B2=E1</FONT></B></A> <IMG =
height=3D11=20
src=3D"http://www.willar.com/images/small/hd1.gif" =
width=3D11=20
align=3Dcenter border=3D0> <A=20
=
href=3D"http://www.willar.com/help.asp?action=3Dbuy"><B><FONT=20
=
color=3D#cc3300>=B9=BA=CE=EF=D6=B8=C4=CF</FONT></B></A> <IMG =
height=3D11=20
src=3D"http://www.willar.com/images/small/hd1.gif" =
width=3D11=20
align=3Dcenter border=3D0> <A=20
=
href=3D"http://www.willar.com/help.asp?action=3Dremit"><FONT=20
=
color=3D#0066cc>=BB=E3=BF=EE=B7=BD=CA=BD</FONT></A> <IMG =
height=3D11=20
src=3D"http://www.willar.com/images/small/hd1.gif" =
width=3D11=20
align=3Dcenter border=3D0> <A=20
=
href=3D"http://www.willar.com/help.asp?action=3Daffirm"><FONT=20
=
color=3D#0066cc>=BB=E3=BF=EE=C8=B7=C8=CF</FONT></A> <IMG =
height=3D11=20
src=3D"http://www.willar.com/images/small/hd1.gif" =
width=3D11=20
align=3Dcenter border=3D0> <A class=3Dtop=20
href=3D"http://www.willar.com/shipment.asp" =
target=3D_blank><FONT=20
=
color=3D#0066cc>=B7=A2=BB=F5=B2=E9=D1=AF</FONT></A> <IMG =
height=3D11=20
src=3D"http://www.willar.com/images/small/hd1.gif" =
width=3D11=20
align=3Dcenter border=3D0> <A class=3Dtop=20
=
href=3D"http://www.willar.com/user_putview.asp?action=3Dshop"><B><FONT=20
=
color=3D#0066cc>=CE=D2=B5=C4=B6=A9=B5=A5</FONT></B></A> =
=20
</TD></TR></TBODY></TABLE></TD></TR>
<TR>
<TD align=3Dmiddle>
<TABLE class=3Dtf cellSpacing=3D0 cellPadding=3D0 =
width=3D"100%" border=3D0>
<TBODY>
<TR align=3Dmiddle height=3D70>
<TD width=3D"24%"><A =
href=3D"http://www.willar.com/"><IMG=20
src=3D"http://www.willar.com/images/top_logo.gif"=20
border=3D0></A></TD>
<TD width=3D"65%"><A =
href=3D"http://www.willar.com/shop.asp"><IMG=20
src=3D"http://www.willar.com/images/banner.gif" =
border=3D0></A></TD>
<TD width=3D"11%">
<TABLE cellSpacing=3D0 cellPadding=3D1 align=3Dleft =
border=3D0>
<TBODY>
<TR>
<TD><IMG=20
=
src=3D"http://www.willar.com/images/small/folder6.gif"> </TD>
<TD><A class=3Dtop style=3D"target: "=20
=
href=3D"javascript:window.external.AddFavorite('http://www.willar.com/','=
=A1=BA=CE=B0=C4=C9=B5=E7=D7=D3=A1=BB')"=20
_self?>=BC=D3=C8=EB=CA=D5=B2=D8</A></TD></TR>
<TR>
<TD><IMG=20
=
src=3D"http://www.willar.com/images/small/folder3.gif"> </TD>
<TD><A class=3Dtop=20
=
href=3D"http://www.willar.com/help.asp">=B0=EF=D6=FA=D6=D0=D0=C4</A></TD>=
</TR>
<TR>
<TD><IMG=20
=
src=3D"http://www.willar.com/images/small/contact.gif"> </TD>
<TD><A class=3Dtop=20
=
href=3D"http://www.willar.com/help.asp?action=3Dabout">=C1=AA=CF=B5=CE=D2=
=C3=C7</A></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></TD></TR>
<TR>
<TD =
background=3Dhttp://www.willar.com/images/main/menu_bg2.gif=20
height=3D32>
<TABLE cellSpacing=3D0 cellPadding=3D0 align=3Dright =
border=3D0>
<TBODY>
<TR align=3Dmiddle height=3D26>
<TD align=3Dleft =
width=3D160>=B5=B1=C7=B0=D4=DA=CF=DF=A3=BA53</TD>
<TD width=3D60><A =
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -