mirror of
https://github.com/dalathegreat/Battery-Emulator.git
synced 2025-10-04 02:09:30 +02:00
5 lines
74 B
C++
5 lines
74 B
C++
#include "Arduino.h"
|
|
|
|
int max(int a, int b) {
|
|
return (a > b) ? a : b;
|
|
}
|