发新帖我要提问
12
返回列表
打印
[PIC32/SAM]

OLED12864 I2C显式示例

[复制链接]
楼主: wiba
手机看帖
扫描二维码
随时随地手机跟帖
21
wiba|  楼主 | 2019-7-25 13:40 | 只看该作者 回帖奖励 |倒序浏览
app.c中调用
#include "oled12864.h"

void APP_Tasks ( void )
{

    /* Check the application's current state. */
    switch ( appState )
    {
        /* Application's initial state. */
        case APP_STATE_INIT:
        {
            bool appInitialized = true;
      
        
            if (appInitialized)
            {
                Uart_Initial();
                Uart_printf("System Initial!\n");
               
                IIC_Initial();
               
                OLED12864_Initial();
                OLED12864_ShowStr(3,2,"Hello Delta",1);
                OLED12864_Printf("hello");

               
                appState = APP_STATE_SERVICE_TASKS;
            }
            break;
        }

        case APP_STATE_SERVICE_TASKS:
        {

            break;
        }

        /* TODO: implement your application state machine.*/
        

        /* The default state should never be executed. */
        default:
        {
            /* TODO: Handle error in application's state machine. */
            break;
        }
    }
}

使用特权

评论回复
发新帖 我要提问
您需要登录后才可以回帖 登录 | 注册

本版积分规则