pi_clock

Crude and unpolished clock for Raspberry Pi
git clone https://git.e1e0.net/pi_clock.git
Log | Files | Refs | README | LICENSE

commit c0e1a0f95458c0e9c23ca0511cfb9404582f8cd0
parent 01d44d92294b276f65c73c99d3cb74178cebcc9b
Author: Paco Esteban <paco@e1e0.net>
Date:   Fri,  3 Jul 2020 17:57:48 +0200

reorder includes

Diffstat:
Mclock.c | 4++--
1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/clock.c b/clock.c @@ -16,15 +16,15 @@ * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. */ -#include <stdio.h> #include <err.h> #include <errno.h> +#include <stdio.h> #include <stdlib.h> #include <string.h> #include <time.h> #include <unistd.h> - #include <wiringPi.h> + #include "lcd_i2c.h" #define I2C_ADDRESS 0x3f