├── .github └── FUNDING.yml ├── LICENSE.md ├── README.md ├── RV-3028-C7.png ├── examples ├── Example1-SetPrint_Time │ └── Example1-SetPrint_Time.ino ├── Example2-SetPrint_UNIXTime │ └── Example2-SetPrint_UNIXTime.ino ├── Example3-Trickle_Charging │ └── Example3-Trickle_Charging.ino ├── Example4-Alarm_Interrupt │ └── Example4-Alarm_Interrupt.ino └── Example5-BackupSwitchoverMode │ └── Example5-BackupSwitchoverMode.ino ├── keywords.txt ├── library.properties └── src ├── RV-3028-C7.cpp └── RV-3028-C7.h /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | custom: ["https://www.paypal.me/constikoch"] 2 | -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/constiko/RV-3028_C7-Arduino_Library/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/constiko/RV-3028_C7-Arduino_Library/HEAD/README.md -------------------------------------------------------------------------------- /RV-3028-C7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/constiko/RV-3028_C7-Arduino_Library/HEAD/RV-3028-C7.png -------------------------------------------------------------------------------- /examples/Example1-SetPrint_Time/Example1-SetPrint_Time.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/constiko/RV-3028_C7-Arduino_Library/HEAD/examples/Example1-SetPrint_Time/Example1-SetPrint_Time.ino -------------------------------------------------------------------------------- /examples/Example2-SetPrint_UNIXTime/Example2-SetPrint_UNIXTime.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/constiko/RV-3028_C7-Arduino_Library/HEAD/examples/Example2-SetPrint_UNIXTime/Example2-SetPrint_UNIXTime.ino -------------------------------------------------------------------------------- /examples/Example3-Trickle_Charging/Example3-Trickle_Charging.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/constiko/RV-3028_C7-Arduino_Library/HEAD/examples/Example3-Trickle_Charging/Example3-Trickle_Charging.ino -------------------------------------------------------------------------------- /examples/Example4-Alarm_Interrupt/Example4-Alarm_Interrupt.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/constiko/RV-3028_C7-Arduino_Library/HEAD/examples/Example4-Alarm_Interrupt/Example4-Alarm_Interrupt.ino -------------------------------------------------------------------------------- /examples/Example5-BackupSwitchoverMode/Example5-BackupSwitchoverMode.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/constiko/RV-3028_C7-Arduino_Library/HEAD/examples/Example5-BackupSwitchoverMode/Example5-BackupSwitchoverMode.ino -------------------------------------------------------------------------------- /keywords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/constiko/RV-3028_C7-Arduino_Library/HEAD/keywords.txt -------------------------------------------------------------------------------- /library.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/constiko/RV-3028_C7-Arduino_Library/HEAD/library.properties -------------------------------------------------------------------------------- /src/RV-3028-C7.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/constiko/RV-3028_C7-Arduino_Library/HEAD/src/RV-3028-C7.cpp -------------------------------------------------------------------------------- /src/RV-3028-C7.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/constiko/RV-3028_C7-Arduino_Library/HEAD/src/RV-3028-C7.h --------------------------------------------------------------------------------