Initial commit with action
Some checks failed
Test compiling project / test (push) Failing after 33s

This commit is contained in:
2023-10-02 15:30:30 +02:00
commit bbe5bfdcee
15 changed files with 888 additions and 0 deletions

View File

@@ -0,0 +1,15 @@
## Error codes
1. Voltage Low
2. Voltage High
3. Current low
4. Current high
else if (voltage_low) {
display_error_code(1);
} else if (voltage_high){
display_error_code(2);
} else if (current_low) {
display_error_code(3);
} else if (current_high){
display_error_code(4);
}