Pokus o nejnovejsi upravy kvuli ESP32 - nutno overit na ESP8266!!

This commit is contained in:
2022-06-22 11:39:36 +02:00
parent 4ceb5c02d0
commit 71ab0b8e8c
13 changed files with 1063 additions and 1229 deletions

View File

@ -171,23 +171,4 @@ class LinkedList {
}
};
class StringArray : public LinkedList<String> {
public:
StringArray() : LinkedList(nullptr) {}
bool containsIgnoreCase(const String& str){
for (const auto& s : *this) {
if (str.equalsIgnoreCase(s)) {
return true;
}
}
return false;
}
};
#endif /* STRINGARRAY_H_ */