Create display module top level

This commit is contained in:
2023-05-15 16:57:41 +01:00
parent 81f5c6aaa0
commit be666164f4
5 changed files with 129 additions and 3 deletions

View File

@@ -0,0 +1,17 @@
/*
* SPDX-License-Identifier: AGPL-3.0-only
* Copyright (c) Camden Dixie O'Brien
*/
#ifndef DISPLAY_H
#define DISPLAY_H
/**
* Initialize the display.
*
* This will configure the relevant GPIO pins and start a task that
* manages updates to the display.
*/
void display_init(void);
#endif