⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 example1.c

📁 《PIC单片机C语言开发入门》所有章节源程序
💻 C
字号:
/*
 * This is example 1 from "Getting Started with MPLAB C18".
 */

#include <p18cxxx.h>   /* for TRISB and PORTB declarations */

int counter;
void main (void)
{
    counter = 1;
    TRISB = 0;            /* configure PORTB for output */
    while (counter <= 15)
    {
       PORTB = counter;   /* display value of 'counter' on the LEDs */
       counter++;
    }
}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -