18 lines
299 B
C
18 lines
299 B
C
/*
|
|
* 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
|