mirror of
https://github.com/RobTillaart/Arduino.git
synced 2024-10-03 18:09:02 -04:00
57 lines
801 B
C++
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 --
|
|
|