mirror of
https://github.com/IoTManagerProject/IoTManager.git
synced 2026-03-27 06:32:19 +03:00
19 lines
462 B
C
19 lines
462 B
C
#pragma once
|
|
|
|
#include <Arduino.h>
|
|
|
|
uint8_t hexStringToUint8(String hex);
|
|
|
|
uint16_t hexStringToUint16(String hex);
|
|
|
|
String selectToMarkerLast(String str, String found);
|
|
|
|
String selectToMarker(String str, String found);
|
|
|
|
String deleteAfterDelimiter(String str, String found);
|
|
|
|
String deleteBeforeDelimiter(String str, String found);
|
|
|
|
String deleteBeforeDelimiterTo(String str, String found);
|
|
|
|
String selectFromMarkerToMarker(String str, String found, int number); |