OOKwiz
on/off-keying for ESP32 and a variety of supported radio modules
tools.cpp
Go to the documentation of this file.
1 #include "tools.h"
2 #include "config.h"
3 
6 }
7 
8 namespace tools {
9 
10  /// @brief Takes spaces off start and end of supplied string, operates in place on String passed in.
11  /// @param in (String) The string in question, will be modified if need be.
12  void trim(String &in) {
13  while (in.startsWith(" ")) {
14  in = in.substring(1);
15  }
16  while (in.endsWith(" ")) {
17  in = in.substring(0, in.length() - 1);
18  }
19  }
20 
21  /// @brief Identifies contiguous series of digits in String, giving you the toInt() of the nth one.
22  /// @param in (String) The string we're looking at.
23  /// @param num (int) Which series of numbers you'd like evaluated.
24  /// @return (long) The toInt() value you wre looking for, or -1 if there weren't that many series of digits.
25  long nthNumberFrom(String &in, int num) {
26  int index = 0;
27  bool on_numbers = false;
28  int count = 0;
29  while (index < in.length()) {
30  if (isDigit(in.charAt(index)) and !on_numbers) {
31  on_numbers = true;
32  if (count == num) {
33  return in.substring(index).toInt();
34  }
35  }
36  if (!isDigit(in.charAt(index)) and on_numbers) {
37  on_numbers = false;
38  count++;
39  }
40  index++;
41  }
42  return -1;
43  }
44 
45  /// @brief Shifts bits into a range of bytes. Reverse order because length may be unkown at start.
46  /// @param buf pointer to uint8_t array with enough space for the bits to me shifted in.
47  /// @param len number of bits that have been shifted in so far.
48  /// @param bit bool holding the bit to be shifted in this time
49  void shiftInBit(uint8_t* buf, const int len, const bool bit) {
50  int len_bytes = (len + 7) / 8;
51  bool carry = bit;
52  for (int n = 0; n < len_bytes; n++) {
53  bool new_carry = buf[n] & 128;
54  buf[n] <<= 1;
55  buf[n] |= carry;
56  carry = new_carry;
57  }
58  }
59 
60  /// @brief Shifts out the bits in an array of bytes, emptying array in process.
61  /// @param buf (uint8_t*) pointer to array, MSB of leftmost byte gets shifted out first.
62  /// @param len (int) Number of bits in buffer in total.
63  /// @return (bool) the bit shifted out.
64  bool shiftOutBit(uint8_t* buf, const int len) {
65  int len_bytes = (len + 7) / 8;
66  bool carry = 0;
67  for (int n = len_bytes - 1; n >= 0; n--) {
68  bool new_carry = buf[n] & 128;
69  buf[n] <<= 1;
70  buf[n] |= carry;
71  carry = new_carry;
72  }
73  return carry;
74  }
75 
76  /// @brief Will split a srting in two on first occurence of String separator.
77  /// @param in String to be examined
78  /// @param separator substring to be found
79  /// @param before Will be set to part before first occurence of separator
80  /// @param after Will be set to part after first occurence of separator
81  void split(const String &in, const String &separator, String &before, String &after) {
82  int found = in.indexOf(separator);
83  if (found != -1) {
84  after = in.substring(found + separator.length());
85  trim(after);
86  before = in.substring(0, found);
87  trim(before);
88  } else {
89  before = in;
90  after = "";
91  }
92  }
93 
94  /// @brief See if number is between two bounds
95  /// @param compare Number to compare
96  /// @param lower_bound lower bound
97  /// @param upper_bound upper bound
98  /// @return `true` if compare >= lower and <= upper bound
99  bool between(const int &compare, const int &lower_bound, const int &upper_bound) {
100  if (compare >= lower_bound && compare <= upper_bound) {
101  return true;
102  }
103  return false;
104  }
105 
106 }