Files
zmk/app/boards/shields/nice_view/nice_view.overlay
eden 3538843a09 fix(display): add serial VCOM inversion for Nice! View (#3294)
Adds serial VCOM inversion command settings for the Nice! View
shield, which fixes the DC biased state the LCD was previously
in when using this shield
2026-03-31 00:36:53 -04:00

25 lines
432 B
Plaintext

/*
* Copyright (c) 2022 The ZMK Contributors
*
* SPDX-License-Identifier: MIT
*/
&nice_view_spi {
status = "okay";
nice_view: ls0xx@0 {
compatible = "sharp,ls0xx";
spi-max-frequency = <1000000>;
reg = <0>;
width = <160>;
height = <68>;
serial-vcom-inversion;
serial-vcom-interval = <33>;
};
};
/ {
chosen {
zephyr,display = &nice_view;
};
};