2025-03-21 09:59:09 +01:00

133 lines
4.2 KiB
C++

/**
*
* @license MIT License
*
* Copyright (c) 2024 lewis he
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
* in the Software without restriction, including without limitation the rights
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
* copies of the Software, and to permit persons to whom the Software is
* furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included in all
* copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
* SOFTWARE.
*
* @file XL9555_ExtensionIORead.ino
* @author Lewis He (lewishe@outlook.com)
* @date 2024-09-14
*
*/
#include <Arduino.h>
#include "ExtensionIOXL9555.hpp"
#ifndef SENSOR_SDA
#define SENSOR_SDA 17
#endif
#ifndef SENSOR_SCL
#define SENSOR_SCL 18
#endif
#ifndef SENSOR_IRQ
#define SENSOR_IRQ 10
#endif
ExtensionIOXL9555 io;
void setup()
{
Serial.begin(115200);
// Set the interrupt input to input pull-up
pinMode(SENSOR_IRQ, INPUT_PULLUP);
/*
*
* If the device address is not known, the 0xFF parameter can be passed in.
*
* XL9555_UNKOWN_ADDRESS = 0xFF
*
* If the device address is known, the device address is given
*
* XL9555_SLAVE_ADDRESS0 = 0x20
* XL9555_SLAVE_ADDRESS1 = 0x21
* XL9555_SLAVE_ADDRESS2 = 0x22
* XL9555_SLAVE_ADDRESS3 = 0x23
* XL9555_SLAVE_ADDRESS4 = 0x24
* XL9555_SLAVE_ADDRESS5 = 0x25
* XL9555_SLAVE_ADDRESS6 = 0x26
* XL9555_SLAVE_ADDRESS7 = 0x27
*/
const uint8_t chip_address = XL9555_UNKOWN_ADDRESS;
if (!io.begin(Wire, chip_address, SENSOR_SDA, SENSOR_SCL)) {
while (1) {
Serial.println("Failed to find XL9555 - check your wiring!");
delay(1000);
}
}
// Set PORT0 as input,mask = 0xFF = all pin input
io.configPort(ExtensionIOXL9555::PORT0, 0xFF);
// Set PORT1 as input,mask = 0xFF = all pin input
io.configPort(ExtensionIOXL9555::PORT1, 0xFF);
}
void loop()
{
Serial.print("PORT0:0b");
Serial.print(io.readPort(ExtensionIOXL9555::PORT0), BIN);
Serial.print("\tPORT1:0b");
Serial.println(io.readPort(ExtensionIOXL9555::PORT1), BIN);
//Allowable range of parameter input: IO0 ~ IO15
Serial.println("IO0:\tIO1:\tIO2:\tIO3:\tIO4:\tIO5:\tIO6:\tIO7:\tIO8:\tIO9:\tIO10:\tIO11:\tIO12:\tIO13:\tIO14:\tIO15:\t");
Serial.print(io.digitalRead(ExtensionIOXL9555::IO0));
Serial.print("\t");
Serial.print(io.digitalRead(ExtensionIOXL9555::IO1));
Serial.print("\t");
Serial.print(io.digitalRead(ExtensionIOXL9555::IO2));
Serial.print("\t");
Serial.print(io.digitalRead(ExtensionIOXL9555::IO3));
Serial.print("\t");
Serial.print(io.digitalRead(ExtensionIOXL9555::IO4));
Serial.print("\t");
Serial.print(io.digitalRead(ExtensionIOXL9555::IO5));
Serial.print("\t");
Serial.print(io.digitalRead(ExtensionIOXL9555::IO6));
Serial.print("\t");
Serial.print(io.digitalRead(ExtensionIOXL9555::IO7));
Serial.print("\t");
Serial.print(io.digitalRead(ExtensionIOXL9555::IO8));
Serial.print("\t");
Serial.print(io.digitalRead(ExtensionIOXL9555::IO9));
Serial.print("\t");
Serial.print(io.digitalRead(ExtensionIOXL9555::IO10));
Serial.print("\t");
Serial.print(io.digitalRead(ExtensionIOXL9555::IO11));
Serial.print("\t");
Serial.print(io.digitalRead(ExtensionIOXL9555::IO12));
Serial.print("\t");
Serial.print(io.digitalRead(ExtensionIOXL9555::IO13));
Serial.print("\t");
Serial.print(io.digitalRead(ExtensionIOXL9555::IO14));
Serial.print("\t");
Serial.print(io.digitalRead(ExtensionIOXL9555::IO15));
Serial.println();
delay(1000);
}