Battery-Emulator/test/emul/Arduino.cpp
2025-07-26 15:53:24 +03:00

5 lines
74 B
C++

#include "Arduino.h"
int max(int a, int b) {
return (a > b) ? a : b;
}