11 lines
214 B
C++
11 lines
214 B
C++
#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 |