本文主要是介绍C语言 | 基于MPU605(六轴传感器)的I2C实现LCD1602显示(代码类),希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
博主github:https://github.com/MichaelBeechan
博主CSDN:https://blog.csdn.net/u011344545
基于MPU605(六轴传感器)的I2C实现LCD1602显示:
#include <REG52.H>
#include <math.h> //Keil library
#include <stdio.h> //Keil library
#include <INTRINS.H>#define Busy 0x80
#define LCDdata P0
//typedef unsigned char uchar;
typedef unsigned short ushort;
//typedef unsigned int uint;
#define uint unsigned int
#define uchar unsigned char
uchar seg0[]="X:";
uchar seg1[]="Y:";
//uchar seg2[]="Z:";//****************************************
// 定义51单片机端口
//****************************************
//#define DataPort P0 //LCD1602数据端口
sbit SCL=P1^0; //IIC时钟引脚定义
sbit SDA=P1^1; //IIC数据引脚定义
/*sbit LCM_RS=P2^4; //LCD1602命令端口
sbit LCM_RW=P2^5; //LCD1602命令端口
这篇关于C语言 | 基于MPU605(六轴传感器)的I2C实现LCD1602显示(代码类)的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!