ESPHome  2024.4.0
Data Structures | Namespaces | Typedefs
filter.h File Reference

Go to the source code of this file.

Data Structures

class  esphome::text_sensor::Filter
 Apply a filter to text sensor values such as to_upper. More...
 
class  esphome::text_sensor::LambdaFilter
 This class allows for creation of simple template filters. More...
 
class  esphome::text_sensor::ToUpperFilter
 A simple filter that converts all text to uppercase. More...
 
class  esphome::text_sensor::ToLowerFilter
 A simple filter that converts all text to lowercase. More...
 
class  esphome::text_sensor::AppendFilter
 A simple filter that adds a string to the end of another string. More...
 
class  esphome::text_sensor::PrependFilter
 A simple filter that adds a string to the start of another string. More...
 
class  esphome::text_sensor::SubstituteFilter
 A simple filter that replaces a substring with another substring. More...
 
class  esphome::text_sensor::MapFilter
 A filter that maps values from one set to another. More...
 

Namespaces

 esphome
 This is a workaround until we can figure out a way to get the tflite-micro idf component code available in CI.
 
 esphome::text_sensor
 

Typedefs

using esphome::text_sensor::lambda_filter_t = std::function< optional< std::string >(std::string)>