wiringPi/example: Add i2c lcd example

Signed-off-by: Steve Jeong <how2soft@gmail.com>
Change-Id: I491a6aad8da6c606638f885921a7174017507ef1
This commit is contained in:
Steve Jeong
2023-06-01 18:36:00 +09:00
parent c5b41f5397
commit 8a77459313
2 changed files with 142 additions and 1 deletions

View File

@@ -3,7 +3,7 @@ ACLOCAL_AMFLAGS = -I m4 ${ACLOCAL_FLAGS}
COMMON_CFLAGS = $(EXTRA_CFLAGS) $(LIBWIRINGPI_CFLAGS)
LIBS = $(LIBWIRINGPI_LIBS)
bin_PROGRAMS = blink blink12 blink12drcs blink8 clock delayTest ds1302 isr isr-osc lcd lcd-adafruit max31855 nes okLed pwm rht03 serialRead serialTest softPwm softTone speed wfi
bin_PROGRAMS = blink blink12 blink12drcs blink8 clock delayTest ds1302 isr isr-osc i2c-lcd lcd lcd-adafruit max31855 nes okLed pwm rht03 serialRead serialTest softPwm softTone speed wfi
blink_SOURCES = blink.c
blink_CFLAGS = $(COMMON_CFLAGS)
@@ -33,6 +33,9 @@ isr_CFLAGS = $(COMMON_CFLAGS)
isr_osc_SOURCES = isr-osc.c
isr_osc_CFLAGS = $(COMMON_CFLAGS)
i2c_lcd_SOURCES = i2c-lcd.c
i2c_lcd_CFLAGS = $(COMMON_CFLAGS)
lcd_SOURCES = lcd.c
lcd_CFLAGS = $(COMMON_CFLAGS)