├── .gitattributes ├── .project ├── LICENSE ├── LICENSE.md ├── PCF8591.cpp ├── PCF8591.h ├── PCF8591_library.h ├── README.md ├── doc └── rtf │ └── refman.rtf ├── examples ├── esp32_pcf8591_second_i2c │ └── esp32_pcf8591_second_i2c.ino ├── pcf8591_analog_read_write │ └── pcf8591_analog_read_write.ino ├── pcf8591_generate_sinusoidal │ └── pcf8591_generate_sinusoidal.ino └── pcf8591_voltage_read_write │ └── pcf8591_voltage_read_write.ino ├── keywords.txt ├── library.json └── library.properties /.gitattributes: -------------------------------------------------------------------------------- 1 | resources export-ignore 2 | -------------------------------------------------------------------------------- /.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xreef/PCF8591_library/HEAD/.project -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xreef/PCF8591_library/HEAD/LICENSE -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xreef/PCF8591_library/HEAD/LICENSE.md -------------------------------------------------------------------------------- /PCF8591.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xreef/PCF8591_library/HEAD/PCF8591.cpp -------------------------------------------------------------------------------- /PCF8591.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xreef/PCF8591_library/HEAD/PCF8591.h -------------------------------------------------------------------------------- /PCF8591_library.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xreef/PCF8591_library/HEAD/PCF8591_library.h -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xreef/PCF8591_library/HEAD/README.md -------------------------------------------------------------------------------- /doc/rtf/refman.rtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xreef/PCF8591_library/HEAD/doc/rtf/refman.rtf -------------------------------------------------------------------------------- /examples/esp32_pcf8591_second_i2c/esp32_pcf8591_second_i2c.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xreef/PCF8591_library/HEAD/examples/esp32_pcf8591_second_i2c/esp32_pcf8591_second_i2c.ino -------------------------------------------------------------------------------- /examples/pcf8591_analog_read_write/pcf8591_analog_read_write.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xreef/PCF8591_library/HEAD/examples/pcf8591_analog_read_write/pcf8591_analog_read_write.ino -------------------------------------------------------------------------------- /examples/pcf8591_generate_sinusoidal/pcf8591_generate_sinusoidal.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xreef/PCF8591_library/HEAD/examples/pcf8591_generate_sinusoidal/pcf8591_generate_sinusoidal.ino -------------------------------------------------------------------------------- /examples/pcf8591_voltage_read_write/pcf8591_voltage_read_write.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xreef/PCF8591_library/HEAD/examples/pcf8591_voltage_read_write/pcf8591_voltage_read_write.ino -------------------------------------------------------------------------------- /keywords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xreef/PCF8591_library/HEAD/keywords.txt -------------------------------------------------------------------------------- /library.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xreef/PCF8591_library/HEAD/library.json -------------------------------------------------------------------------------- /library.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xreef/PCF8591_library/HEAD/library.properties --------------------------------------------------------------------------------