GY-63_MS5611/libraries/PCF8575/examples/PCF8575_array/PCF8575_array.ino
2021-12-23 13:53:35 +01:00

57 lines
801 B
C++

//
// FILE: PCF8575_array.ino
// AUTHOR: Rob Tillaart
// DATE: 2021-12-13
// PUPROSE: demo array of PCF - not tested
#include "PCF8575.h"
// adjust addresses if needed
PCF8575 A(0x38);
PCF8575 B(0x39);
PCF8575 C(0x3A);
PCF8575 PCF[3] = { A, B, C };
void setup()
{
Serial.begin(115200);
Serial.println(__FILE__);
Serial.print("PCF8575_LIB_VERSION:\t");
Serial.println(PCF8575_LIB_VERSION);
for (int i = 0; i < 3; i++)
{
PCF[i].begin();
}
}
void loop()
{
for (int i = 0; i < 3; i++)
{
for (uint8_t port = 0; port < 15; port++)
{
PCF[i].write(port, 1);
delay(200);
}
}
for (int i = 0; i < 3; i++)
{
for (uint8_t port = 0; port < 15; port++)
{
PCF[i].write(port, 0);
delay(400);
}
}
}
// -- END OF FILE --