Files
ETcontroller_PRO/lib/utils/utils.h
2025-07-10 16:01:10 +02:00

14 lines
330 B
C++

#pragma once
#include <Arduino.h>
#include <DebugLog.h>
#include <vector>
///////////// UTIL Functions /////////////////
void printBytes(const char title[], const std::vector<uint8_t> &b);
void printBytes(const char title[], const std::vector<uint16_t> &b);
void printBool(const char title[], const std::vector<bool> &vals);