v.0.0.8 mv number_to_bitarray_msb in utils-mathematics

This commit is contained in:
tiijay
2025-11-05 17:23:42 +01:00
parent b7f5e924e0
commit 7bdd67f3c3
6 changed files with 66 additions and 46 deletions

View File

@@ -0,0 +1,11 @@
#ifndef MATHEMATICS_H
#define MATHEMATICS_H
#include <Arduino.h>
#include <vector>
using namespace std;
vector<uint16_t> number_to_bitarray_msb(uint16_t number, int bits = 16, boolean four_bits = false);
#endif