Site icon Renzo Mischianti

PCF8575 and DCS-BIOS library

Can PCF8575 work inside another library such as DCS-BIOS? https://github.com/dcs-bios/dcs-bios-arduino-library/releases I require more inputs and trying to use pcf8575 with Arduino Mega. Base code for DSC is as follows... ******************************************************** /* Tell DCS-BIOS to use a serial connection and use interrupt-driven communication. The main program will be interrupted to prioritize processing incoming data. This should work on any Arduino that has an ATMega328 controller (Uno, Pro Mini, many others). */ #define DCSBIOS_IRQ_SERIAL #include "DcsBios.h" /* paste code snippets from the reference documentation here */ DcsBios::Switch2Pos gearLever("GEAR_LEVER", PPIN); void setup() { DcsBios::setup(); } void loop() { DcsBios::loop(); } *************************************************** please fogive me as i am new to Arduino and Coding.
Exit mobile version