📄 led1.bas.txt
字号:
'program LED1.bas
Dim Led As Bit 'LED is a Bit variable since it will turn on and
'off the LED
Led = 0 'initial value
Do 'Do is a start of a Do-Loop loop
P1.0 = Led 'LED is at the pin p1.0
Wait 1 'wait 1 second
Led = Not Led 'invert LED value
Loop 'end of Do-Loop loop
End 'end of program
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -