1/*
2 * Copyright (c) 2019 PHYTEC Messtechnik GmbH
3 *
4 * SPDX-License-Identifier: Apache-2.0
5 */
6
7/ {
8	chosen {
9		zephyr,display = &ssd1306_ssd1306_128x32;
10	};
11};
12
13&arduino_i2c {
14	status = "okay";
15
16	ssd1306_ssd1306_128x32: ssd1306@3c {
17		compatible = "solomon,ssd1306fb";
18		reg = <0x3c>;
19		width = <128>;
20		height = <32>;
21		segment-offset = <0>;
22		page-offset = <0>;
23		display-offset = <0>;
24		multiplex-ratio = <31>;
25		segment-remap;
26		com-invdir;
27		com-sequential;
28		prechargep = <0x22>;
29	};
30};
31