├── .gitattributes ├── .gitignore ├── .project ├── LICENSE ├── LICENSE.md ├── PCF8575.cpp ├── PCF8575.h ├── PCF8575_library.h ├── README.md ├── examples ├── esp32_second_i2c_bus │ └── esp32_second_i2c_bus.ino ├── esp8266_interrupt_button │ └── esp8266_interrupt_button.ino ├── esp8266_sequential_leds_inverted │ └── esp8266_sequential_leds_inverted.ino ├── generic_asynchronous_read_buffer │ └── generic_asynchronous_read_buffer.ino ├── generic_blink_single_pin │ └── generic_blink_single_pin.ino ├── generic_interrupt_read_all │ └── generic_interrupt_read_all.ino ├── generic_interrupt_read_all_low_memory │ └── generic_interrupt_read_all_low_memory.ino ├── generic_interrupt_single_button │ └── generic_interrupt_single_button.ino └── generic_read_single_button │ └── generic_read_single_button.ino ├── keywords.txt ├── library.json └── library.properties /.gitattributes: -------------------------------------------------------------------------------- 1 | resources export-ignore 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | /.idea/ 2 | -------------------------------------------------------------------------------- /.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xreef/PCF8575_library/HEAD/.project -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xreef/PCF8575_library/HEAD/LICENSE -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xreef/PCF8575_library/HEAD/LICENSE.md -------------------------------------------------------------------------------- /PCF8575.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xreef/PCF8575_library/HEAD/PCF8575.cpp -------------------------------------------------------------------------------- /PCF8575.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xreef/PCF8575_library/HEAD/PCF8575.h -------------------------------------------------------------------------------- /PCF8575_library.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xreef/PCF8575_library/HEAD/PCF8575_library.h -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xreef/PCF8575_library/HEAD/README.md -------------------------------------------------------------------------------- /examples/esp32_second_i2c_bus/esp32_second_i2c_bus.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xreef/PCF8575_library/HEAD/examples/esp32_second_i2c_bus/esp32_second_i2c_bus.ino -------------------------------------------------------------------------------- /examples/esp8266_interrupt_button/esp8266_interrupt_button.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xreef/PCF8575_library/HEAD/examples/esp8266_interrupt_button/esp8266_interrupt_button.ino -------------------------------------------------------------------------------- /examples/esp8266_sequential_leds_inverted/esp8266_sequential_leds_inverted.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xreef/PCF8575_library/HEAD/examples/esp8266_sequential_leds_inverted/esp8266_sequential_leds_inverted.ino -------------------------------------------------------------------------------- /examples/generic_asynchronous_read_buffer/generic_asynchronous_read_buffer.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xreef/PCF8575_library/HEAD/examples/generic_asynchronous_read_buffer/generic_asynchronous_read_buffer.ino -------------------------------------------------------------------------------- /examples/generic_blink_single_pin/generic_blink_single_pin.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xreef/PCF8575_library/HEAD/examples/generic_blink_single_pin/generic_blink_single_pin.ino -------------------------------------------------------------------------------- /examples/generic_interrupt_read_all/generic_interrupt_read_all.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xreef/PCF8575_library/HEAD/examples/generic_interrupt_read_all/generic_interrupt_read_all.ino -------------------------------------------------------------------------------- /examples/generic_interrupt_read_all_low_memory/generic_interrupt_read_all_low_memory.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xreef/PCF8575_library/HEAD/examples/generic_interrupt_read_all_low_memory/generic_interrupt_read_all_low_memory.ino -------------------------------------------------------------------------------- /examples/generic_interrupt_single_button/generic_interrupt_single_button.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xreef/PCF8575_library/HEAD/examples/generic_interrupt_single_button/generic_interrupt_single_button.ino -------------------------------------------------------------------------------- /examples/generic_read_single_button/generic_read_single_button.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xreef/PCF8575_library/HEAD/examples/generic_read_single_button/generic_read_single_button.ino -------------------------------------------------------------------------------- /keywords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xreef/PCF8575_library/HEAD/keywords.txt -------------------------------------------------------------------------------- /library.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xreef/PCF8575_library/HEAD/library.json -------------------------------------------------------------------------------- /library.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xreef/PCF8575_library/HEAD/library.properties --------------------------------------------------------------------------------