Linux Oled显示字符

cpp 复制代码
/*
 * Copyright (c) 2015, Vladimir Komendantskiy
 * MIT License
 *
 * SSD1306 demo of block and font drawing.
 */

//
// fixed for OrangePiZero by HypHop
//

#include <errno.h>
#include <string.h>
#include <stdio.h>
#include <stdlib.h>
#include <time.h>
#include <stdint.h>

#include "oled.h"
#include "font.h"

int oled_show(struct display_info *disp) {
	int i;
	char buf[100];

	oled_putstrto(disp, 0, 9+1, "LiNan:");
	disp->font = font2;

	oled_putstrto(disp, 20, 9+10, "May your birthday   ");
    disp->font = font2;

	oled_putstrto(disp, 0, 9+20, "be full of laughter. ");
	disp->font = font2;

	oled_putstrto(disp,50,9+30,"---2025.1.16");

	oled_send_buffer(disp);

return 0;
}

void show_error(int err, int add) {
	//const gchar* errmsg;
	//errmsg = g_strerror(errno);
	printf("\nERROR: %i, %i\n\n", err, add);
	//printf("\nERROR\n");
}

void show_usage(char *progname) {
	printf("\nUsage:\n%s <I2C bus device node >\n", progname);
}

int main(int argc, char **argv) {
	int e;
	char filename[32];
	struct display_info disp;

	if (argc < 2) {
		show_usage(argv[0]);
		
		return -1;
	}

	memset(&disp, 0, sizeof(disp));
	sprintf(filename, "%s", argv[1]);
	disp.address = OLED_I2C_ADDR;
	disp.font = font2;

	e = oled_open(&disp, filename);

	e = oled_init(&disp);
	oled_show(&disp);

	return 0;
}
相关推荐
Nightwish361 小时前
RHCA练习1
linux·运维
tadus_zeng4 小时前
nginx关闭响应头的Server版本信息
运维·nginx
閤廴聿5 小时前
vmware-ubuntu22.04配置虚拟机win10,重新上网成功
linux·windows·ubuntu
阿杰学编程5 小时前
1、什么是GO
服务器·开发语言·golang
苹果醋36 小时前
Golang的并发编程异常处理
运维·vue.js·spring boot·nginx·课程设计
Danileaf_Guo6 小时前
当你买了一台Linux云主机,应该如何测试主机性能?
linux·运维·服务器
特立独行的猫a8 小时前
linux下的MongoDB手动安装部署详解
linux·运维·mongodb
好记忆不如烂笔头abc8 小时前
netplan apply报错No module named ‘netifaces‘
linux·服务器·数据库
我还能再卷一点8 小时前
linux服务器安装mysql数据库和nginx
linux·服务器·数据库
酥暮沐8 小时前
shell脚本回顾1
linux·运维·服务器