Last commit 10 Sep 2012
Description: KS0108 LCD LIB with I2C I/O expander PCF8574 for Databus
You are viewing an out of date revision of KS0108_PCF8574! View latest revision
BusEnums.h
/* BusEnums - Use the MBED Port pins and PCF8574s for controlling the Bus * Copyright (c) 2011 Wim Huiskamp * * Released under the MIT License: http://mbed.org/license/mit * * version 0.2 Initial Release */ #ifndef _BUS_ENUMS_H #define _BUS_ENUMS_H //Enums for Control Bus and Enable Bus enum Bit_Level { LOW, HIGH }; enum Bus_Dir { READ, WRITE }; enum Bus_Ena { ENABLE, DISABLE }; #endif
