summaryrefslogtreecommitdiff
path: root/src/app/ssd1306test/main.cc
blob: d82ce570adb38f40b648d4bb7a05c088bd216097 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
/*
 * Copyright 2021 Daniel Friesel
 *
 * SPDX-License-Identifier: BSD-2-Clause
 */
#include "arch.h"
#include "driver/stdout.h"
#if defined(CONFIG_meta_driver_hardware_i2c)
#include "driver/i2c.h"
#elif defined(CONFIG_driver_softi2c)
#include "driver/soft_i2c.h"
#endif
#include "driver/ssd1306.h"
#include "object/framebuffer.h"
#include "lib/pixelfont/pixeloperator_mirrored.h"

void loop(void)
{
	static unsigned char i = 0;
	fb << i << " ";
	ssd1306.showImage(fb.data, fb.width * fb.height / 8);
	i++;
}

int main(void)
{
	arch.setup();
	kout.setup();
	i2c.setup();
	ssd1306.init();

	fb.clear();
	fb.setFont(pixeloperator_mirrored);
	ssd1306.showImage(fb.data, fb.width * fb.height / 8);

	arch.idle_loop();

	return 0;
}