From 1fada7562a875b89c20b7f86def40b759c1f74cd Mon Sep 17 00:00:00 2001 From: William Emfinger Date: Sat, 23 Dec 2023 13:14:17 -0600 Subject: [PATCH 1/2] feat: update APIs * Update Drv2605 library for better typing on library interface to make it harder to misuse * Update mcp23x17 so it has a similar and compatible interface to the aw9523 to make them easier to swap between * Update lvgl to latest release/v8.3 commits --- .../drv2605/example/main/drv2605_example.cpp | 2 +- components/drv2605/include/drv2605.hpp | 132 +++++++++++++++++- components/lvgl | 2 +- .../example/main/mcp23x17_example.cpp | 20 +-- components/mcp23x17/include/mcp23x17.hpp | 71 ++++++---- 5 files changed, 185 insertions(+), 42 deletions(-) diff --git a/components/drv2605/example/main/drv2605_example.cpp b/components/drv2605/example/main/drv2605_example.cpp index bd2497b01..d3c2fa16c 100644 --- a/components/drv2605/example/main/drv2605_example.cpp +++ b/components/drv2605/example/main/drv2605_example.cpp @@ -58,7 +58,7 @@ extern "C" void app_main(void) { // we're using an ERM motor, so select an ERM library (1-5). // drv2605.select_library(1, ec); // we're using an LRA motor, so select an LRA library (6). - drv2605.select_library(6, ec); + drv2605.select_library(espp::Drv2605::Library::LRA, ec); if (ec) { logger.error("select library failed: {}", ec.message()); } diff --git a/components/drv2605/include/drv2605.hpp b/components/drv2605/include/drv2605.hpp index 5521ee116..549d4aa61 100644 --- a/components/drv2605/include/drv2605.hpp +++ b/components/drv2605/include/drv2605.hpp @@ -91,6 +91,23 @@ class Drv2605 { LRA ///< Linear Resonant Actuator }; + /** + * @brief The library of waveforms to use. + * @note The DRV2605 has 7 different libraries of waveforms. The first + * library is empty, and the next 5 are ERM (eccentric rotating mass) + * libraries. The last library is an LRA (linear resonant actuator) + * library. + */ + enum class Library { + EMPTY = 0, + ERM_0 = 1, + ERM_1 = 2, + ERM_2 = 3, + ERM_3 = 4, + ERM_4 = 5, + LRA = 6, + }; + /** * @brief Configuration structure for the DRV2605 */ @@ -173,9 +190,12 @@ class Drv2605 { * @param lib Library to use, 0=Empty, 1-5 are ERM, 6 is LRA * @param ec Error code to set if there is an error. */ - void select_library(uint8_t lib, std::error_code &ec) { + void select_library(Library lib, std::error_code &ec) { logger_.info("Selecting library {}", lib); - write_one_((uint8_t)Register::LIBRARY, lib, ec); + if (motor_type_ == MotorType::LRA && lib != Library::LRA) { + logger_.warn("LRA motor selected, but library {} is not an LRA library", lib); + } + write_one_((uint8_t)Register::LIBRARY, (uint8_t)lib, ec); } protected: @@ -298,3 +318,111 @@ class Drv2605 { espp::Logger logger_; }; } // namespace espp + +// for easy printing of the enums with the libfmt library: +template <> +struct fmt::formatter { + constexpr auto parse(format_parse_context &ctx) { return ctx.begin(); } + + template + auto format(espp::Drv2605::Mode m, FormatContext &ctx) { + switch (m) { + case espp::Drv2605::Mode::INTTRIG: + return fmt::format_to(ctx.out(), "INTTRIG"); + case espp::Drv2605::Mode::EXTTRIGEDGE: + return fmt::format_to(ctx.out(), "EXTTRIGEDGE"); + case espp::Drv2605::Mode::EXTTRIGLVL: + return fmt::format_to(ctx.out(), "EXTTRIGLVL"); + case espp::Drv2605::Mode::PWMANALOG: + return fmt::format_to(ctx.out(), "PWMANALOG"); + case espp::Drv2605::Mode::AUDIOVIBE: + return fmt::format_to(ctx.out(), "AUDIOVIBE"); + case espp::Drv2605::Mode::REALTIME: + return fmt::format_to(ctx.out(), "REALTIME"); + case espp::Drv2605::Mode::DIAGNOS: + return fmt::format_to(ctx.out(), "DIAGNOS"); + case espp::Drv2605::Mode::AUTOCAL: + return fmt::format_to(ctx.out(), "AUTOCAL"); + default: + return fmt::format_to(ctx.out(), "UNKNOWN"); + } + } +}; + +template <> +struct fmt::formatter { + constexpr auto parse(format_parse_context &ctx) { return ctx.begin(); } + + template + auto format(espp::Drv2605::Waveform w, FormatContext &ctx) { + switch (w) { + case espp::Drv2605::Waveform::END: + return fmt::format_to(ctx.out(), "END"); + case espp::Drv2605::Waveform::STRONG_CLICK: + return fmt::format_to(ctx.out(), "STRONG_CLICK"); + case espp::Drv2605::Waveform::SHARP_CLICK: + return fmt::format_to(ctx.out(), "SHARP_CLICK"); + case espp::Drv2605::Waveform::SOFT_BUMP: + return fmt::format_to(ctx.out(), "SOFT_BUMP"); + case espp::Drv2605::Waveform::DOUBLE_CLICK: + return fmt::format_to(ctx.out(), "DOUBLE_CLICK"); + case espp::Drv2605::Waveform::TRIPLE_CLICK: + return fmt::format_to(ctx.out(), "TRIPLE_CLICK"); + case espp::Drv2605::Waveform::SOFT_FUZZ: + return fmt::format_to(ctx.out(), "SOFT_FUZZ"); + case espp::Drv2605::Waveform::STRONG_BUZZ: + return fmt::format_to(ctx.out(), "STRONG_BUZZ"); + case espp::Drv2605::Waveform::ALERT_750MS: + return fmt::format_to(ctx.out(), "ALERT_750MS"); + case espp::Drv2605::Waveform::ALERT_1000MS: + return fmt::format_to(ctx.out(), "ALERT_1000MS"); + case espp::Drv2605::Waveform::BUZZ1: + return fmt::format_to(ctx.out(), "BUZZ1"); + case espp::Drv2605::Waveform::BUZZ2: + return fmt::format_to(ctx.out(), "BUZZ2"); + case espp::Drv2605::Waveform::BUZZ3: + return fmt::format_to(ctx.out(), "BUZZ3"); + case espp::Drv2605::Waveform::BUZZ4: + return fmt::format_to(ctx.out(), "BUZZ4"); + case espp::Drv2605::Waveform::BUZZ5: + return fmt::format_to(ctx.out(), "BUZZ5"); + case espp::Drv2605::Waveform::PULSING_STRONG_1: + return fmt::format_to(ctx.out(), "PULSING_STRONG_1"); + case espp::Drv2605::Waveform::PULSING_STRONG_2: + return fmt::format_to(ctx.out(), "PULSING_STRONG_2"); + case espp::Drv2605::Waveform::TRANSITION_CLICK_1: + return fmt::format_to(ctx.out(), "TRANSITION_CLICK_1"); + case espp::Drv2605::Waveform::TRANSITION_HUM_1: + return fmt::format_to(ctx.out(), "TRANSITION_HUM_1"); + default: + return fmt::format_to(ctx.out(), "UNKNOWN"); + } + } +}; + +template <> +struct fmt::formatter { + constexpr auto parse(format_parse_context &ctx) { return ctx.begin(); } + + template + auto format(espp::Drv2605::Library l, FormatContext &ctx) { + switch (l) { + case espp::Drv2605::Library::EMPTY: + return fmt::format_to(ctx.out(), "EMPTY"); + case espp::Drv2605::Library::ERM_0: + return fmt::format_to(ctx.out(), "ERM_0"); + case espp::Drv2605::Library::ERM_1: + return fmt::format_to(ctx.out(), "ERM_1"); + case espp::Drv2605::Library::ERM_2: + return fmt::format_to(ctx.out(), "ERM_2"); + case espp::Drv2605::Library::ERM_3: + return fmt::format_to(ctx.out(), "ERM_3"); + case espp::Drv2605::Library::ERM_4: + return fmt::format_to(ctx.out(), "ERM_4"); + case espp::Drv2605::Library::LRA: + return fmt::format_to(ctx.out(), "LRA"); + default: + return fmt::format_to(ctx.out(), "UNKNOWN"); + } + } +}; diff --git a/components/lvgl b/components/lvgl index c16bfdc22..6f75b41ad 160000 --- a/components/lvgl +++ b/components/lvgl @@ -1 +1 @@ -Subproject commit c16bfdc2271174c924ed5c76b38141f6c208a684 +Subproject commit 6f75b41ade96df95bd85fe1a3a9875d3e46b632b diff --git a/components/mcp23x17/example/main/mcp23x17_example.cpp b/components/mcp23x17/example/main/mcp23x17_example.cpp index 7c49b093d..095f72069 100644 --- a/components/mcp23x17/example/main/mcp23x17_example.cpp +++ b/components/mcp23x17/example/main/mcp23x17_example.cpp @@ -48,20 +48,20 @@ extern "C" void app_main(void) { return err == ESP_OK; }; // now make the mcp23x17 which handles GPIO - espp::Mcp23x17 mcp23x17({.port_a_direction_mask = (1 << 0), // input on A0 - .port_a_interrupt_mask = (1 << 0), // interrupt on A0 - .port_b_direction_mask = (1 << 7), // input on B7 - .port_b_interrupt_mask = (1 << 7), // interrupt on B7 + espp::Mcp23x17 mcp23x17({.port_0_direction_mask = (1 << 0), // input on A0 + .port_0_interrupt_mask = (1 << 0), // interrupt on A0 + .port_1_direction_mask = (1 << 7), // input on B7 + .port_1_interrupt_mask = (1 << 7), // interrupt on B7 .write = mcp23x17_write, .read = mcp23x17_read, .log_level = espp::Logger::Verbosity::WARN}); // set pull up on the input pins std::error_code ec; - mcp23x17.set_pull_up(espp::Mcp23x17::Port::A, (1 << 0), ec); + mcp23x17.set_pull_up(espp::Mcp23x17::Port::PORT0, (1 << 0), ec); if (ec) { fmt::print("set_pull_up failed: {}\n", ec.message()); } - mcp23x17.set_pull_up(espp::Mcp23x17::Port::B, (1 << 7), ec); + mcp23x17.set_pull_up(espp::Mcp23x17::Port::PORT1, (1 << 7), ec); if (ec) { fmt::print("set_pull_up failed: {}\n", ec.message()); } @@ -74,21 +74,21 @@ extern "C" void app_main(void) { auto now = std::chrono::high_resolution_clock::now(); auto seconds = std::chrono::duration(now - start).count(); std::error_code ec; - auto a_pins = mcp23x17.get_pins(espp::Mcp23x17::Port::A, ec); + auto a_pins = mcp23x17.get_pins(espp::Mcp23x17::Port::PORT0, ec); if (ec) { fmt::print("get_pins failed: {}\n", ec.message()); return false; } - auto b_pins = mcp23x17.get_pins(espp::Mcp23x17::Port::B, ec); + auto b_pins = mcp23x17.get_pins(espp::Mcp23x17::Port::PORT1, ec); if (ec) { fmt::print("get_pins failed: {}\n", ec.message()); return false; } bool on = !(a_pins & (1 << 0)); if (on) { - mcp23x17.set_pins(espp::Mcp23x17::Port::B, (1 << 3), ec); + mcp23x17.set_pins(espp::Mcp23x17::Port::PORT1, (1 << 3), ec); } else { - mcp23x17.set_pins(espp::Mcp23x17::Port::B, 0x00, ec); + mcp23x17.set_pins(espp::Mcp23x17::Port::PORT1, 0x00, ec); } if (ec) { fmt::print("set_pins failed: {}\n", ec.message()); diff --git a/components/mcp23x17/include/mcp23x17.hpp b/components/mcp23x17/include/mcp23x17.hpp index 59e7c82d7..d4f495dc1 100644 --- a/components/mcp23x17/include/mcp23x17.hpp +++ b/components/mcp23x17/include/mcp23x17.hpp @@ -40,8 +40,8 @@ class Mcp23x17 { * The two GPIO ports the MCP23x17 has. */ enum class Port { - A, ///< Port A - B ///< Port B + PORT0, ///< Port 0 + PORT1 ///< Port 1 }; /** @@ -49,10 +49,10 @@ class Mcp23x17 { */ struct Config { uint8_t device_address = DEFAULT_ADDRESS; ///< I2C address of this device. - uint8_t port_a_direction_mask = 0x00; ///< Direction mask (1 = input) for port a. - uint8_t port_a_interrupt_mask = 0x00; ///< Interrupt mask (1 = interrupt) for port a. - uint8_t port_b_direction_mask = 0x00; ///< Direction mask (1 = input) for port b. - uint8_t port_b_interrupt_mask = 0x00; ///< Interrupt mask (1 = interrupt) for port b. + uint8_t port_0_direction_mask = 0x00; ///< Direction mask (1 = input) for port 0 / A + uint8_t port_0_interrupt_mask = 0x00; ///< Interrupt mask (1 = interrupt) for port 0 / A + uint8_t port_1_direction_mask = 0x00; ///< Direction mask (1 = input) for port 1 / B + uint8_t port_1_interrupt_mask = 0x00; ///< Interrupt mask (1 = interrupt) for port 1 / B write_fn write; ///< Function to write to the device. read_fn read; ///< Function to read from the device. bool auto_init = true; ///< True if the device should be initialized on @@ -66,10 +66,10 @@ class Mcp23x17 { */ Mcp23x17(const Config &config) - : address_(config.device_address), port_a_direction_mask_(config.port_a_direction_mask), - port_a_interrupt_mask_(config.port_a_interrupt_mask), - port_b_direction_mask_(config.port_b_direction_mask), - port_b_interrupt_mask_(config.port_b_interrupt_mask), write_(config.write), + : address_(config.device_address), port_0_direction_mask_(config.port_0_direction_mask), + port_0_interrupt_mask_(config.port_0_interrupt_mask), + port_1_direction_mask_(config.port_1_direction_mask), + port_1_interrupt_mask_(config.port_1_interrupt_mask), write_(config.write), read_(config.read), logger_({.tag = "Mcp23x17", .level = config.log_level}) { if (config.auto_init) { std::error_code ec; @@ -95,7 +95,7 @@ class Mcp23x17 { * @return The pin values as an 8 bit mask. */ uint8_t get_pins(Port port, std::error_code &ec) { - auto addr = port == Port::A ? Registers::GPIOA : Registers::GPIOB; + auto addr = port == Port::PORT0 ? Registers::GPIOA : Registers::GPIOB; auto val = read_one_((uint8_t)addr, ec); if (ec) { logger_.error("Failed to read pins: {}", ec.message()); @@ -104,6 +104,21 @@ class Mcp23x17 { return val; } + /** + * @brief Read the pin values on both Port A and Port B. + * @param ec Error code to set if an error occurs. + * @return The pin values as a 16 bit mask (PA_0 lsb, PB_7 msb). + */ + uint16_t get_pins(std::error_code &ec) { + uint16_t p0 = read_one_((uint8_t)Registers::GPIOA, ec); + if (ec) + return 0; + uint16_t p1 = read_one_((uint8_t)Registers::GPIOB, ec); + if (ec) + return 0; + return (p1 << 8) | p0; + } + /** * @brief Set the pin values on the provided port. * @param port The Port for which to set the pin outputs. @@ -111,7 +126,7 @@ class Mcp23x17 { * @param ec Error code to set if there is an error. */ void set_pins(Port port, uint8_t output, std::error_code &ec) { - auto addr = port == Port::A ? Registers::GPIOA : Registers::GPIOB; + auto addr = port == Port::PORT0 ? Registers::GPIOA : Registers::GPIOB; write_one_((uint8_t)addr, output, ec); } @@ -122,7 +137,7 @@ class Mcp23x17 { * @return An 8 bit mask of pin values for the provided port. */ uint8_t get_interrupt_capture(Port port, std::error_code &ec) { - auto addr = port == Port::A ? Registers::INTCAPA : Registers::INTCAPB; + auto addr = port == Port::PORT0 ? Registers::INTCAPA : Registers::INTCAPB; auto val = read_one_((uint8_t)addr, ec); if (ec) { logger_.error("Failed to read interrupt capture: {}", ec.message()); @@ -139,7 +154,7 @@ class Mcp23x17 { */ void set_interrupt_on_change(Port port, uint8_t mask, std::error_code &ec) { logger_.debug("Setting interrupt on change for {} pins {}", (uint8_t)port, mask); - auto addr = port == Port::A ? Registers::GPINTENA : Registers::GPINTENB; + auto addr = port == Port::PORT0 ? Registers::GPINTENA : Registers::GPINTENB; write_one_((uint8_t)addr, mask, ec); } @@ -154,7 +169,7 @@ class Mcp23x17 { logger_.debug("Setting interrupt on value for {} pins {} to {}", (uint8_t)port, pin_mask, val_mask); // set the pin to enable interrupt - auto addr = port == Port::A ? Registers::GPINTENA : Registers::GPINTENB; + auto addr = port == Port::PORT0 ? Registers::GPINTENA : Registers::GPINTENB; write_one_((uint8_t)addr, pin_mask, ec); if (ec) { logger_.error("Failed to enable interrupt: {}", ec.message()); @@ -162,7 +177,7 @@ class Mcp23x17 { } // set the pin to interrupt on comparison to defval register - addr = port == Port::A ? Registers::INTCONA : Registers::INTCONB; + addr = port == Port::PORT0 ? Registers::INTCONA : Registers::INTCONB; write_one_((uint8_t)addr, pin_mask, ec); if (ec) { logger_.error("Failed to set pin interrupt on comparison: {}", ec.message()); @@ -170,7 +185,7 @@ class Mcp23x17 { } // set the defval register to be the value to compare against - addr = port == Port::A ? Registers::DEFVALA : Registers::DEFVALB; + addr = port == Port::PORT0 ? Registers::DEFVALA : Registers::DEFVALB; write_one_((uint8_t)addr, val_mask, ec); if (ec) { logger_.error("Failed to set defval: {}", ec.message()); @@ -186,7 +201,7 @@ class Mcp23x17 { */ void set_direction(Port port, uint8_t mask, std::error_code &ec) { logger_.debug("Setting direction for {} to {}", (uint8_t)port, mask); - auto addr = port == Port::A ? Registers::IODIRA : Registers::IODIRB; + auto addr = port == Port::PORT0 ? Registers::IODIRA : Registers::IODIRB; write_one_((uint8_t)addr, mask, ec); } @@ -198,7 +213,7 @@ class Mcp23x17 { */ void set_input_polarity(Port port, uint8_t mask, std::error_code &ec) { logger_.debug("Setting input polarity for {} to {}", (uint8_t)port, mask); - auto addr = port == Port::A ? Registers::IOPOLA : Registers::IOPOLB; + auto addr = port == Port::PORT0 ? Registers::IOPOLA : Registers::IOPOLB; write_one_((uint8_t)addr, mask, ec); } @@ -210,7 +225,7 @@ class Mcp23x17 { */ void set_pull_up(Port port, uint8_t mask, std::error_code &ec) { logger_.debug("Setting pull-up for {} to {}", (uint8_t)port, mask); - auto addr = port == Port::A ? Registers::GPPUA : Registers::GPPUB; + auto addr = port == Port::PORT0 ? Registers::GPPUA : Registers::GPPUB; write_one_((uint8_t)addr, mask, ec); } @@ -317,16 +332,16 @@ class Mcp23x17 { }; void init(std::error_code &ec) { - set_direction(Port::A, port_a_direction_mask_, ec); + set_direction(Port::PORT0, port_0_direction_mask_, ec); if (ec) return; - set_direction(Port::B, port_b_direction_mask_, ec); + set_direction(Port::PORT1, port_1_direction_mask_, ec); if (ec) return; - set_interrupt_on_change(Port::A, port_a_interrupt_mask_, ec); + set_interrupt_on_change(Port::PORT0, port_0_interrupt_mask_, ec); if (ec) return; - set_interrupt_on_change(Port::B, port_b_interrupt_mask_, ec); + set_interrupt_on_change(Port::PORT1, port_1_interrupt_mask_, ec); } void write_one_(uint8_t reg_addr, uint8_t write_data, std::error_code &ec) { @@ -348,10 +363,10 @@ class Mcp23x17 { } uint8_t address_; - uint8_t port_a_direction_mask_; - uint8_t port_a_interrupt_mask_; - uint8_t port_b_direction_mask_; - uint8_t port_b_interrupt_mask_; + uint8_t port_0_direction_mask_; + uint8_t port_0_interrupt_mask_; + uint8_t port_1_direction_mask_; + uint8_t port_1_interrupt_mask_; write_fn write_; read_fn read_; Logger logger_; From 18554162155315631a8fc6c8cd37b68f694c630c Mon Sep 17 00:00:00 2001 From: William Emfinger Date: Sat, 23 Dec 2023 13:34:03 -0600 Subject: [PATCH 2/2] doc: reuild --- docs/adc/adc_types.html | 4 +- docs/adc/ads1x15.html | 4 +- docs/adc/ads7138.html | 4 +- docs/adc/continuous_adc.html | 4 +- docs/adc/index.html | 2 +- docs/adc/oneshot_adc.html | 4 +- docs/adc/tla2528.html | 4 +- docs/bldc/bldc_driver.html | 4 +- docs/bldc/bldc_motor.html | 8 +-- docs/bldc/index.html | 2 +- docs/button.html | 4 +- docs/cli.html | 6 +-- docs/color.html | 4 +- docs/controller.html | 4 +- docs/csv.html | 4 +- docs/display/display.html | 4 +- docs/display/display_drivers.html | 6 +-- docs/display/index.html | 2 +- docs/encoder/abi_encoder.html | 4 +- docs/encoder/as5600.html | 4 +- docs/encoder/encoder_types.html | 4 +- docs/encoder/index.html | 2 +- docs/encoder/mt6701.html | 4 +- docs/event_manager.html | 4 +- docs/file_system.html | 4 +- docs/filters/biquad.html | 4 +- docs/filters/butterworth.html | 4 +- docs/filters/index.html | 2 +- docs/filters/lowpass.html | 4 +- docs/filters/sos.html | 4 +- docs/filters/transfer_function.html | 4 +- docs/ftp/ftp_server.html | 8 +-- docs/ftp/index.html | 2 +- docs/genindex.html | 38 +++++++++----- docs/haptics/bldc_haptics.html | 8 +-- docs/haptics/drv2605.html | 56 +++++++++++++++++++-- docs/haptics/index.html | 2 +- docs/i2c.html | 4 +- docs/index.html | 2 +- docs/input/encoder_input.html | 4 +- docs/input/ft5x06.html | 4 +- docs/input/gt911.html | 4 +- docs/input/index.html | 2 +- docs/input/keypad_input.html | 4 +- docs/input/t_keyboard.html | 4 +- docs/input/touchpad_input.html | 4 +- docs/input/tt21100.html | 4 +- docs/io_expander/aw9523.html | 4 +- docs/io_expander/index.html | 2 +- docs/io_expander/mcp23x17.html | 74 +++++++++++++++++----------- docs/joystick.html | 4 +- docs/led.html | 4 +- docs/led_strip.html | 4 +- docs/logger.html | 4 +- docs/math/bezier.html | 4 +- docs/math/fast_math.html | 4 +- docs/math/gaussian.html | 4 +- docs/math/index.html | 2 +- docs/math/range_mapper.html | 4 +- docs/math/vector2d.html | 4 +- docs/monitor.html | 4 +- docs/network/index.html | 2 +- docs/network/socket.html | 4 +- docs/network/tcp_socket.html | 4 +- docs/network/udp_socket.html | 4 +- docs/nfc/index.html | 2 +- docs/nfc/ndef.html | 4 +- docs/nfc/st25dv.html | 4 +- docs/objects.inv | Bin 60423 -> 60740 bytes docs/pid.html | 4 +- docs/qwiicnes.html | 6 +-- docs/rmt.html | 6 +-- docs/rtc/bm8563.html | 10 ++-- docs/rtc/index.html | 2 +- docs/rtsp.html | 18 +++---- docs/searchindex.js | 2 +- docs/serialization.html | 4 +- docs/state_machine.html | 10 ++-- docs/tabulate.html | 4 +- docs/task.html | 4 +- docs/thermistor.html | 4 +- docs/timer.html | 4 +- docs/wifi/index.html | 2 +- docs/wifi/wifi_ap.html | 4 +- docs/wifi/wifi_sta.html | 4 +- 85 files changed, 291 insertions(+), 215 deletions(-) diff --git a/docs/adc/adc_types.html b/docs/adc/adc_types.html index 7c13bea9f..426e2be54 100644 --- a/docs/adc/adc_types.html +++ b/docs/adc/adc_types.html @@ -145,7 +145,7 @@
  • ADC APIs »
  • ADC Types
  • - Edit on GitHub + Edit on GitHub

  • @@ -162,7 +162,7 @@

    API Reference

    Header File

    diff --git a/docs/adc/ads1x15.html b/docs/adc/ads1x15.html index 9bf9a505e..0066a4407 100644 --- a/docs/adc/ads1x15.html +++ b/docs/adc/ads1x15.html @@ -146,7 +146,7 @@
  • ADC APIs »
  • ADS1x15 I2C ADC
  • - Edit on GitHub + Edit on GitHub

  • @@ -163,7 +163,7 @@

    API Reference

    Header File

    diff --git a/docs/adc/ads7138.html b/docs/adc/ads7138.html index 0321dc962..9eb3ec38f 100644 --- a/docs/adc/ads7138.html +++ b/docs/adc/ads7138.html @@ -146,7 +146,7 @@
  • ADC APIs »
  • ADS7138 I2C ADC
  • - Edit on GitHub + Edit on GitHub

  • @@ -168,7 +168,7 @@

    API Reference

    Header File

    diff --git a/docs/adc/continuous_adc.html b/docs/adc/continuous_adc.html index ca5000e10..3ce4c059b 100644 --- a/docs/adc/continuous_adc.html +++ b/docs/adc/continuous_adc.html @@ -146,7 +146,7 @@
  • ADC APIs »
  • Continuous ADC
  • - Edit on GitHub + Edit on GitHub

  • @@ -168,7 +168,7 @@

    API Reference

    Header File

    diff --git a/docs/adc/index.html b/docs/adc/index.html index 5cd11c450..68f339e65 100644 --- a/docs/adc/index.html +++ b/docs/adc/index.html @@ -138,7 +138,7 @@
  • »
  • ADC APIs
  • - Edit on GitHub + Edit on GitHub

  • diff --git a/docs/adc/oneshot_adc.html b/docs/adc/oneshot_adc.html index 583690566..898ab7836 100644 --- a/docs/adc/oneshot_adc.html +++ b/docs/adc/oneshot_adc.html @@ -146,7 +146,7 @@
  • ADC APIs »
  • Oneshot ADC
  • - Edit on GitHub + Edit on GitHub

  • @@ -167,7 +167,7 @@

    API Reference

    Header File

    diff --git a/docs/adc/tla2528.html b/docs/adc/tla2528.html index 8e3a971c5..a1afc8eb5 100644 --- a/docs/adc/tla2528.html +++ b/docs/adc/tla2528.html @@ -146,7 +146,7 @@
  • ADC APIs »
  • TLA2528 I2C ADC
  • - Edit on GitHub + Edit on GitHub

  • @@ -168,7 +168,7 @@

    API Reference

    Header File

    diff --git a/docs/bldc/bldc_driver.html b/docs/bldc/bldc_driver.html index 2c39903e0..e8323c386 100644 --- a/docs/bldc/bldc_driver.html +++ b/docs/bldc/bldc_driver.html @@ -142,7 +142,7 @@
  • BLDC APIs »
  • BLDC Driver
  • - Edit on GitHub + Edit on GitHub

  • @@ -159,7 +159,7 @@

    API Reference

    Header File

    diff --git a/docs/bldc/bldc_motor.html b/docs/bldc/bldc_motor.html index 6c10c1615..be328cda7 100644 --- a/docs/bldc/bldc_motor.html +++ b/docs/bldc/bldc_motor.html @@ -144,7 +144,7 @@
  • BLDC APIs »
  • BLDC Motor
  • - Edit on GitHub + Edit on GitHub

  • @@ -175,7 +175,7 @@

    API Reference

    Header File

    @@ -568,13 +568,13 @@

    Example Usage

    Header File

    Header File

    diff --git a/docs/bldc/index.html b/docs/bldc/index.html index 4cd45b8e2..9860c0cbf 100644 --- a/docs/bldc/index.html +++ b/docs/bldc/index.html @@ -134,7 +134,7 @@
  • »
  • BLDC APIs
  • - Edit on GitHub + Edit on GitHub

  • diff --git a/docs/button.html b/docs/button.html index a19e54615..3083488a0 100644 --- a/docs/button.html +++ b/docs/button.html @@ -137,7 +137,7 @@
  • »
  • Button APIs
  • - Edit on GitHub + Edit on GitHub

  • @@ -163,7 +163,7 @@

    API Reference

    Header File

    diff --git a/docs/cli.html b/docs/cli.html index b396153f7..22bfdfd40 100644 --- a/docs/cli.html +++ b/docs/cli.html @@ -140,7 +140,7 @@
  • »
  • Command Line Interface (CLI) APIs
  • - Edit on GitHub + Edit on GitHub

  • @@ -183,7 +183,7 @@

    API Reference

    Header File

    @@ -347,7 +347,7 @@

    Oneshot CLI Example

    Header File

    diff --git a/docs/color.html b/docs/color.html index b885d5540..f633c4d1f 100644 --- a/docs/color.html +++ b/docs/color.html @@ -137,7 +137,7 @@
  • »
  • Color APIs
  • - Edit on GitHub + Edit on GitHub

  • @@ -160,7 +160,7 @@

    API Reference

    Header File

    diff --git a/docs/controller.html b/docs/controller.html index aed7c6f16..450549140 100644 --- a/docs/controller.html +++ b/docs/controller.html @@ -137,7 +137,7 @@
  • »
  • Controller APIs
  • - Edit on GitHub + Edit on GitHub

  • @@ -158,7 +158,7 @@

    API Reference

    Header File

    diff --git a/docs/csv.html b/docs/csv.html index e359c4b27..912cabd83 100644 --- a/docs/csv.html +++ b/docs/csv.html @@ -138,7 +138,7 @@
  • »
  • CSV APIs
  • - Edit on GitHub + Edit on GitHub

  • @@ -158,7 +158,7 @@

    API Reference

    Header File

    diff --git a/docs/display/display.html b/docs/display/display.html index dbc0dee29..577a6c0dc 100644 --- a/docs/display/display.html +++ b/docs/display/display.html @@ -142,7 +142,7 @@
  • Display APIs »
  • Display
  • - Edit on GitHub + Edit on GitHub

  • @@ -160,7 +160,7 @@

    API Reference

    Header File

    diff --git a/docs/display/display_drivers.html b/docs/display/display_drivers.html index 3aead5335..fae48ed4d 100644 --- a/docs/display/display_drivers.html +++ b/docs/display/display_drivers.html @@ -144,7 +144,7 @@
  • Display APIs »
  • Display Drivers
  • - Edit on GitHub + Edit on GitHub

  • @@ -162,7 +162,7 @@

    API Reference

    Header File

    @@ -440,7 +440,7 @@

    ili9341 Example

    Header File

    diff --git a/docs/display/index.html b/docs/display/index.html index e708ea102..b3f9e9bba 100644 --- a/docs/display/index.html +++ b/docs/display/index.html @@ -134,7 +134,7 @@
  • »
  • Display APIs
  • - Edit on GitHub + Edit on GitHub

  • diff --git a/docs/encoder/abi_encoder.html b/docs/encoder/abi_encoder.html index e2cb6cae4..0d7b5774e 100644 --- a/docs/encoder/abi_encoder.html +++ b/docs/encoder/abi_encoder.html @@ -144,7 +144,7 @@
  • Encoder APIs »
  • ABI Encoder
  • - Edit on GitHub + Edit on GitHub

  • @@ -166,7 +166,7 @@

    API Reference

    Header File

    diff --git a/docs/encoder/as5600.html b/docs/encoder/as5600.html index 2b6822554..405ba847d 100644 --- a/docs/encoder/as5600.html +++ b/docs/encoder/as5600.html @@ -144,7 +144,7 @@
  • Encoder APIs »
  • AS5600 Magnetic Encoder
  • - Edit on GitHub + Edit on GitHub

  • @@ -177,7 +177,7 @@

    API Reference

    Header File

    diff --git a/docs/encoder/encoder_types.html b/docs/encoder/encoder_types.html index 799ebb178..54b08f89a 100644 --- a/docs/encoder/encoder_types.html +++ b/docs/encoder/encoder_types.html @@ -143,7 +143,7 @@
  • Encoder APIs »
  • Encoder Types
  • - Edit on GitHub + Edit on GitHub

  • @@ -160,7 +160,7 @@

    API Reference

    Header File

    diff --git a/docs/encoder/index.html b/docs/encoder/index.html index a10815f95..374f0901e 100644 --- a/docs/encoder/index.html +++ b/docs/encoder/index.html @@ -136,7 +136,7 @@
  • »
  • Encoder APIs
  • - Edit on GitHub + Edit on GitHub

  • diff --git a/docs/encoder/mt6701.html b/docs/encoder/mt6701.html index df165fe71..19ed71347 100644 --- a/docs/encoder/mt6701.html +++ b/docs/encoder/mt6701.html @@ -144,7 +144,7 @@
  • Encoder APIs »
  • MT6701 Magnetic Encoder
  • - Edit on GitHub + Edit on GitHub

  • @@ -177,7 +177,7 @@

    API Reference

    Header File

    diff --git a/docs/event_manager.html b/docs/event_manager.html index 9267ca97e..38d7c0f85 100644 --- a/docs/event_manager.html +++ b/docs/event_manager.html @@ -137,7 +137,7 @@
  • »
  • Event Manager APIs
  • - Edit on GitHub + Edit on GitHub

  • @@ -163,7 +163,7 @@

    API Reference

    Header File

    diff --git a/docs/file_system.html b/docs/file_system.html index c40d19df1..f03a0ae81 100644 --- a/docs/file_system.html +++ b/docs/file_system.html @@ -137,7 +137,7 @@
  • »
  • File System APIs
  • - Edit on GitHub + Edit on GitHub

  • @@ -160,7 +160,7 @@

    API Reference

    Header File

    diff --git a/docs/filters/biquad.html b/docs/filters/biquad.html index 816e82868..9d2f748de 100644 --- a/docs/filters/biquad.html +++ b/docs/filters/biquad.html @@ -146,7 +146,7 @@
  • Filter APIs »
  • Biquad Filter
  • - Edit on GitHub + Edit on GitHub

  • @@ -163,7 +163,7 @@

    API Reference

    Header File

    diff --git a/docs/filters/butterworth.html b/docs/filters/butterworth.html index 2d1e2ae00..0d6007979 100644 --- a/docs/filters/butterworth.html +++ b/docs/filters/butterworth.html @@ -145,7 +145,7 @@
  • Filter APIs »
  • Butterworth Filter
  • - Edit on GitHub + Edit on GitHub

  • @@ -163,7 +163,7 @@

    API Reference

    Header File

    diff --git a/docs/filters/index.html b/docs/filters/index.html index b8733ac55..827976fba 100644 --- a/docs/filters/index.html +++ b/docs/filters/index.html @@ -137,7 +137,7 @@
  • »
  • Filter APIs
  • - Edit on GitHub + Edit on GitHub

  • diff --git a/docs/filters/lowpass.html b/docs/filters/lowpass.html index f4bb22b01..1018786e1 100644 --- a/docs/filters/lowpass.html +++ b/docs/filters/lowpass.html @@ -145,7 +145,7 @@
  • Filter APIs »
  • Lowpass Filter
  • - Edit on GitHub + Edit on GitHub

  • @@ -164,7 +164,7 @@

    API Reference

    Header File

    diff --git a/docs/filters/sos.html b/docs/filters/sos.html index 33969fffa..833984f0a 100644 --- a/docs/filters/sos.html +++ b/docs/filters/sos.html @@ -145,7 +145,7 @@
  • Filter APIs »
  • Second Order Sections (SoS) Filter
  • - Edit on GitHub + Edit on GitHub

  • @@ -163,7 +163,7 @@

    API Reference

    Header File

    diff --git a/docs/filters/transfer_function.html b/docs/filters/transfer_function.html index b23be18ca..f772c770b 100644 --- a/docs/filters/transfer_function.html +++ b/docs/filters/transfer_function.html @@ -144,7 +144,7 @@
  • Filter APIs »
  • Transfer Function API
  • - Edit on GitHub + Edit on GitHub

  • @@ -161,7 +161,7 @@

    API Reference

    Header File

    diff --git a/docs/ftp/ftp_server.html b/docs/ftp/ftp_server.html index bdc7b5c3e..d01ce7e4a 100644 --- a/docs/ftp/ftp_server.html +++ b/docs/ftp/ftp_server.html @@ -144,7 +144,7 @@
  • FTP APIs »
  • FTP Server
  • - Edit on GitHub + Edit on GitHub

  • @@ -166,7 +166,7 @@

    API Reference

    Header File

    @@ -226,14 +226,14 @@

    Classes

    Header File

    Functions

    Warning

    -

    doxygenfunction: Unable to resolve function “to_time_t” with arguments None in doxygen xml output for project “esp-docs” from directory: /Users/bob/backbone/pr24-works-like/components/espp/doc/_build/en/esp32/xml_in/. +

    doxygenfunction: Unable to resolve function “to_time_t” with arguments None in doxygen xml output for project “esp-docs” from directory: /Users/bob/esp-cpp/esp-box-emu/components/espp/doc/_build/en/esp32/xml_in/. Potential matches:

    - template<typename TP> std::time_t to_time_t(TP tp)
    diff --git a/docs/ftp/index.html b/docs/ftp/index.html
    index fa596dc03..c717b05a4 100644
    --- a/docs/ftp/index.html
    +++ b/docs/ftp/index.html
    @@ -133,7 +133,7 @@
           
  • »
  • FTP APIs
  • - Edit on GitHub + Edit on GitHub

  • diff --git a/docs/genindex.html b/docs/genindex.html index 8b0e22033..d6674d905 100644 --- a/docs/genindex.html +++ b/docs/genindex.html @@ -127,7 +127,7 @@
  • »
  • Index
  • - Edit on GitHub + Edit on GitHub

  • @@ -1187,6 +1187,22 @@

    E

  • espp::Drv2605::Drv2605 (C++ function)
  • espp::Drv2605::initalize (C++ function) +
  • +
  • espp::Drv2605::Library (C++ enum) +
  • +
  • espp::Drv2605::Library::EMPTY (C++ enumerator) +
  • +
  • espp::Drv2605::Library::ERM_0 (C++ enumerator) +
  • +
  • espp::Drv2605::Library::ERM_1 (C++ enumerator) +
  • +
  • espp::Drv2605::Library::ERM_2 (C++ enumerator) +
  • +
  • espp::Drv2605::Library::ERM_3 (C++ enumerator) +
  • +
  • espp::Drv2605::Library::ERM_4 (C++ enumerator) +
  • +
  • espp::Drv2605::Library::LRA (C++ enumerator)
  • espp::Drv2605::Mode (C++ enum)
  • @@ -1214,7 +1230,7 @@

    E

  • espp::Drv2605::read_fn (C++ type)
  • -
  • espp::Drv2605::select_library (C++ function) +
  • espp::Drv2605::select_library (C++ function)
  • espp::Drv2605::set_mode (C++ function)
  • @@ -1724,6 +1740,8 @@

    E

  • espp::LineInput::set_handle_resize (C++ function)
  • + + -
    @@ -185,19 +185,19 @@

    API Reference

    Header File

    Header File

    Header File

    diff --git a/docs/haptics/drv2605.html b/docs/haptics/drv2605.html index 212fc3caa..616f5d7e2 100644 --- a/docs/haptics/drv2605.html +++ b/docs/haptics/drv2605.html @@ -142,7 +142,7 @@
  • Haptics APIs »
  • DRV2605 Haptic Motor Driver
  • - Edit on GitHub + Edit on GitHub

  • @@ -164,7 +164,7 @@

    API Reference

    Header File

    @@ -212,7 +212,7 @@

    DRV2605 Example // we're using an ERM motor, so select an ERM library (1-5). // drv2605.select_library(1, ec); // we're using an LRA motor, so select an LRA library (6). - drv2605.select_library(6, ec); + drv2605.select_library(espp::Drv2605::Library::LRA, ec); if (ec) { logger.error("select library failed: {}", ec.message()); } @@ -451,6 +451,52 @@

    DRV2605 Example +
    +enum class Library
    +

    The library of waveforms to use.

    +
    +

    Note

    +

    The DRV2605 has 7 different libraries of waveforms. The first library is empty, and the next 5 are ERM (eccentric rotating mass) libraries. The last library is an LRA (linear resonant actuator) library.

    +
    +

    Values:

    +
    +
    +enumerator EMPTY
    +
    + +
    +
    +enumerator ERM_0
    +
    + +
    +
    +enumerator ERM_1
    +
    + +
    +
    +enumerator ERM_2
    +
    + +
    +
    +enumerator ERM_3
    +
    + +
    +
    +enumerator ERM_4
    +
    + +
    +
    +enumerator LRA
    +
    + +
    +
    typedef std::function<bool(uint8_t dev_addr, uint8_t *data, size_t data_len)> write_fn
    @@ -570,8 +616,8 @@

    DRV2605 Example -
    -inline void select_library(uint8_t lib, std::error_code &ec)
    +
    +inline void select_library(Library lib, std::error_code &ec)

    Select the waveform library to use.

    Parameters
    diff --git a/docs/haptics/index.html b/docs/haptics/index.html index af78622aa..f47504824 100644 --- a/docs/haptics/index.html +++ b/docs/haptics/index.html @@ -134,7 +134,7 @@
  • »
  • Haptics APIs
  • - Edit on GitHub + Edit on GitHub

  • diff --git a/docs/i2c.html b/docs/i2c.html index 0135edfc1..e2201f6e9 100644 --- a/docs/i2c.html +++ b/docs/i2c.html @@ -137,7 +137,7 @@
  • »
  • I2C
  • - Edit on GitHub + Edit on GitHub

  • @@ -154,7 +154,7 @@

    API Reference

    Header File

    diff --git a/docs/index.html b/docs/index.html index d4c487fcb..64d492652 100644 --- a/docs/index.html +++ b/docs/index.html @@ -129,7 +129,7 @@
  • »
  • ESPP Documentation
  • - Edit on GitHub + Edit on GitHub

  • diff --git a/docs/input/encoder_input.html b/docs/input/encoder_input.html index a26c7a06a..a92859871 100644 --- a/docs/input/encoder_input.html +++ b/docs/input/encoder_input.html @@ -147,7 +147,7 @@
  • Input APIs »
  • Encoder Input
  • - Edit on GitHub + Edit on GitHub

  • @@ -165,7 +165,7 @@

    API Reference

    Header File

    diff --git a/docs/input/ft5x06.html b/docs/input/ft5x06.html index 9c5bb9d2f..db10e4430 100644 --- a/docs/input/ft5x06.html +++ b/docs/input/ft5x06.html @@ -147,7 +147,7 @@
  • Input APIs »
  • FT5x06 Touch Controller
  • - Edit on GitHub + Edit on GitHub

  • @@ -163,7 +163,7 @@

    API Reference

    Header File

    diff --git a/docs/input/gt911.html b/docs/input/gt911.html index ae1963959..788430af9 100644 --- a/docs/input/gt911.html +++ b/docs/input/gt911.html @@ -147,7 +147,7 @@
  • Input APIs »
  • GT911 Touch Controller
  • - Edit on GitHub + Edit on GitHub

  • @@ -163,7 +163,7 @@

    API Reference

    Header File

    diff --git a/docs/input/index.html b/docs/input/index.html index c5a343b2e..2b4b71fc4 100644 --- a/docs/input/index.html +++ b/docs/input/index.html @@ -139,7 +139,7 @@
  • »
  • Input APIs
  • - Edit on GitHub + Edit on GitHub

  • diff --git a/docs/input/keypad_input.html b/docs/input/keypad_input.html index deab82f53..dc41da262 100644 --- a/docs/input/keypad_input.html +++ b/docs/input/keypad_input.html @@ -147,7 +147,7 @@
  • Input APIs »
  • Keypad Input
  • - Edit on GitHub + Edit on GitHub

  • @@ -166,7 +166,7 @@

    API Reference

    Header File

    diff --git a/docs/input/t_keyboard.html b/docs/input/t_keyboard.html index bc90bf4a4..86a3fd843 100644 --- a/docs/input/t_keyboard.html +++ b/docs/input/t_keyboard.html @@ -147,7 +147,7 @@
  • Input APIs »
  • LilyGo T-Keyboard
  • - Edit on GitHub + Edit on GitHub

  • @@ -164,7 +164,7 @@

    API Reference

    Header File

    diff --git a/docs/input/touchpad_input.html b/docs/input/touchpad_input.html index abe67c815..4674868c6 100644 --- a/docs/input/touchpad_input.html +++ b/docs/input/touchpad_input.html @@ -147,7 +147,7 @@
  • Input APIs »
  • Touchpad Input
  • - Edit on GitHub + Edit on GitHub

  • @@ -165,7 +165,7 @@

    API Reference

    Header File

    diff --git a/docs/input/tt21100.html b/docs/input/tt21100.html index 5080f70eb..952e273c8 100644 --- a/docs/input/tt21100.html +++ b/docs/input/tt21100.html @@ -147,7 +147,7 @@
  • Input APIs »
  • TT21100 Touch Controller
  • - Edit on GitHub + Edit on GitHub

  • @@ -165,7 +165,7 @@

    API Reference

    Header File

    diff --git a/docs/io_expander/aw9523.html b/docs/io_expander/aw9523.html index 69fa3e2c8..75bb3f5f6 100644 --- a/docs/io_expander/aw9523.html +++ b/docs/io_expander/aw9523.html @@ -142,7 +142,7 @@
  • IO Expander APIs »
  • AW9523 I/O Expander
  • - Edit on GitHub + Edit on GitHub

  • @@ -161,7 +161,7 @@

    API Reference

    Header File

    diff --git a/docs/io_expander/index.html b/docs/io_expander/index.html index 583fca109..be0de7897 100644 --- a/docs/io_expander/index.html +++ b/docs/io_expander/index.html @@ -134,7 +134,7 @@
  • »
  • IO Expander APIs
  • - Edit on GitHub + Edit on GitHub

  • diff --git a/docs/io_expander/mcp23x17.html b/docs/io_expander/mcp23x17.html index cbe6db100..29d1e8338 100644 --- a/docs/io_expander/mcp23x17.html +++ b/docs/io_expander/mcp23x17.html @@ -142,7 +142,7 @@
  • IO Expander APIs »
  • MCP23x17 I/O Expander
  • - Edit on GitHub + Edit on GitHub

  • @@ -159,7 +159,7 @@

    API Reference

    Header File

    @@ -199,20 +199,20 @@

    MCP23x17 Example return err == ESP_OK; }; // now make the mcp23x17 which handles GPIO - espp::Mcp23x17 mcp23x17({.port_a_direction_mask = (1 << 0), // input on A0 - .port_a_interrupt_mask = (1 << 0), // interrupt on A0 - .port_b_direction_mask = (1 << 7), // input on B7 - .port_b_interrupt_mask = (1 << 7), // interrupt on B7 + espp::Mcp23x17 mcp23x17({.port_0_direction_mask = (1 << 0), // input on A0 + .port_0_interrupt_mask = (1 << 0), // interrupt on A0 + .port_1_direction_mask = (1 << 7), // input on B7 + .port_1_interrupt_mask = (1 << 7), // interrupt on B7 .write = mcp23x17_write, .read = mcp23x17_read, .log_level = espp::Logger::Verbosity::WARN}); // set pull up on the input pins std::error_code ec; - mcp23x17.set_pull_up(espp::Mcp23x17::Port::A, (1 << 0), ec); + mcp23x17.set_pull_up(espp::Mcp23x17::Port::PORT0, (1 << 0), ec); if (ec) { fmt::print("set_pull_up failed: {}\n", ec.message()); } - mcp23x17.set_pull_up(espp::Mcp23x17::Port::B, (1 << 7), ec); + mcp23x17.set_pull_up(espp::Mcp23x17::Port::PORT1, (1 << 7), ec); if (ec) { fmt::print("set_pull_up failed: {}\n", ec.message()); } @@ -225,21 +225,21 @@

    MCP23x17 Example auto now = std::chrono::high_resolution_clock::now(); auto seconds = std::chrono::duration<float>(now - start).count(); std::error_code ec; - auto a_pins = mcp23x17.get_pins(espp::Mcp23x17::Port::A, ec); + auto a_pins = mcp23x17.get_pins(espp::Mcp23x17::Port::PORT0, ec); if (ec) { fmt::print("get_pins failed: {}\n", ec.message()); return false; } - auto b_pins = mcp23x17.get_pins(espp::Mcp23x17::Port::B, ec); + auto b_pins = mcp23x17.get_pins(espp::Mcp23x17::Port::PORT1, ec); if (ec) { fmt::print("get_pins failed: {}\n", ec.message()); return false; } bool on = !(a_pins & (1 << 0)); if (on) { - mcp23x17.set_pins(espp::Mcp23x17::Port::B, (1 << 3), ec); + mcp23x17.set_pins(espp::Mcp23x17::Port::PORT1, (1 << 3), ec); } else { - mcp23x17.set_pins(espp::Mcp23x17::Port::B, 0x00, ec); + mcp23x17.set_pins(espp::Mcp23x17::Port::PORT1, 0x00, ec); } if (ec) { fmt::print("set_pins failed: {}\n", ec.message()); @@ -274,15 +274,15 @@

    MCP23x17 Example -
    -enumerator A
    -

    Port A.

    +
    +enumerator PORT0
    +

    Port 0.

    -
    -enumerator B
    -

    Port B.

    +
    +enumerator PORT1
    +

    Port 1.

    @@ -369,6 +369,20 @@

    MCP23x17 Example +
    +inline uint16_t get_pins(std::error_code &ec)
    +

    Read the pin values on both Port A and Port B.

    +
    +
    Parameters
    +

    ec – Error code to set if an error occurs.

    +
    +
    Returns
    +

    The pin values as a 16 bit mask (PA_0 lsb, PB_7 msb).

    +
    +
    +
    +
    inline void set_pins(Port port, uint8_t output, std::error_code &ec)
    @@ -528,27 +542,27 @@

    MCP23x17 Example -
    -uint8_t port_a_direction_mask = 0x00
    -

    Direction mask (1 = input) for port a.

    +
    +uint8_t port_0_direction_mask = 0x00
    +

    Direction mask (1 = input) for port 0 / A.

    -
    -uint8_t port_a_interrupt_mask = 0x00
    -

    Interrupt mask (1 = interrupt) for port a.

    +
    +uint8_t port_0_interrupt_mask = 0x00
    +

    Interrupt mask (1 = interrupt) for port 0 / A.

    -
    -uint8_t port_b_direction_mask = 0x00
    -

    Direction mask (1 = input) for port b.

    +
    +uint8_t port_1_direction_mask = 0x00
    +

    Direction mask (1 = input) for port 1 / B.

    -
    -uint8_t port_b_interrupt_mask = 0x00
    -

    Interrupt mask (1 = interrupt) for port b.

    +
    +uint8_t port_1_interrupt_mask = 0x00
    +

    Interrupt mask (1 = interrupt) for port 1 / B.

    diff --git a/docs/joystick.html b/docs/joystick.html index 427dbd9ca..8638f8486 100644 --- a/docs/joystick.html +++ b/docs/joystick.html @@ -138,7 +138,7 @@
  • »
  • Joystick APIs
  • - Edit on GitHub + Edit on GitHub

  • @@ -161,7 +161,7 @@

    API Reference

    Header File

    diff --git a/docs/led.html b/docs/led.html index 6729ec0be..4b2fc9cd7 100644 --- a/docs/led.html +++ b/docs/led.html @@ -138,7 +138,7 @@
  • »
  • LED APIs
  • - Edit on GitHub + Edit on GitHub

  • @@ -160,7 +160,7 @@

    API Reference

    Header File

    diff --git a/docs/led_strip.html b/docs/led_strip.html index b4dd9ea2b..7fa6fd1c7 100644 --- a/docs/led_strip.html +++ b/docs/led_strip.html @@ -137,7 +137,7 @@
  • »
  • LED Strip APIs
  • - Edit on GitHub + Edit on GitHub

  • @@ -157,7 +157,7 @@

    API Reference

    Header File

    diff --git a/docs/logger.html b/docs/logger.html index f8a44331c..860b93ffe 100644 --- a/docs/logger.html +++ b/docs/logger.html @@ -139,7 +139,7 @@
  • »
  • Logging APIs
  • - Edit on GitHub + Edit on GitHub

  • @@ -166,7 +166,7 @@

    API Reference

    Header File

    diff --git a/docs/math/bezier.html b/docs/math/bezier.html index c5d3d1e25..1f68c2efd 100644 --- a/docs/math/bezier.html +++ b/docs/math/bezier.html @@ -145,7 +145,7 @@
  • Math APIs »
  • Bezier
  • - Edit on GitHub + Edit on GitHub

  • @@ -163,7 +163,7 @@

    API Reference

    Header File

    diff --git a/docs/math/fast_math.html b/docs/math/fast_math.html index 951615976..300287abd 100644 --- a/docs/math/fast_math.html +++ b/docs/math/fast_math.html @@ -144,7 +144,7 @@
  • Math APIs »
  • Fast Math
  • - Edit on GitHub + Edit on GitHub

  • @@ -172,7 +172,7 @@

    API Reference

    Header File

    diff --git a/docs/math/gaussian.html b/docs/math/gaussian.html index 8bee8404c..747260d09 100644 --- a/docs/math/gaussian.html +++ b/docs/math/gaussian.html @@ -146,7 +146,7 @@
  • Math APIs »
  • Gaussian
  • - Edit on GitHub + Edit on GitHub

  • @@ -166,7 +166,7 @@

    API Reference

    Header File

    diff --git a/docs/math/index.html b/docs/math/index.html index 88de6bfb1..bcd2d8c71 100644 --- a/docs/math/index.html +++ b/docs/math/index.html @@ -137,7 +137,7 @@
  • »
  • Math APIs
  • - Edit on GitHub + Edit on GitHub

  • diff --git a/docs/math/range_mapper.html b/docs/math/range_mapper.html index aa22071ac..a31a4662c 100644 --- a/docs/math/range_mapper.html +++ b/docs/math/range_mapper.html @@ -145,7 +145,7 @@
  • Math APIs »
  • Range Mapper
  • - Edit on GitHub + Edit on GitHub

  • @@ -162,7 +162,7 @@

    API Reference

    Header File

    diff --git a/docs/math/vector2d.html b/docs/math/vector2d.html index 2fa488ea6..105f60500 100644 --- a/docs/math/vector2d.html +++ b/docs/math/vector2d.html @@ -145,7 +145,7 @@
  • Math APIs »
  • Vector2d
  • - Edit on GitHub + Edit on GitHub

  • @@ -162,7 +162,7 @@

    API Reference

    Header File

    diff --git a/docs/monitor.html b/docs/monitor.html index 42bfecc51..c06095b18 100644 --- a/docs/monitor.html +++ b/docs/monitor.html @@ -138,7 +138,7 @@
  • »
  • Monitoring APIs
  • - Edit on GitHub + Edit on GitHub

  • @@ -163,7 +163,7 @@

    API Reference

    Header File

    diff --git a/docs/network/index.html b/docs/network/index.html index 8eef8d96c..4e752434b 100644 --- a/docs/network/index.html +++ b/docs/network/index.html @@ -135,7 +135,7 @@
  • »
  • Network APIs
  • - Edit on GitHub + Edit on GitHub

  • diff --git a/docs/network/socket.html b/docs/network/socket.html index 65ce97c2e..7f782d450 100644 --- a/docs/network/socket.html +++ b/docs/network/socket.html @@ -143,7 +143,7 @@
  • Network APIs »
  • Sockets
  • - Edit on GitHub + Edit on GitHub

  • @@ -161,7 +161,7 @@

    API Reference

    Header File

    diff --git a/docs/network/tcp_socket.html b/docs/network/tcp_socket.html index 53619721a..54999b63a 100644 --- a/docs/network/tcp_socket.html +++ b/docs/network/tcp_socket.html @@ -143,7 +143,7 @@
  • Network APIs »
  • TCP Sockets
  • - Edit on GitHub + Edit on GitHub

  • @@ -162,7 +162,7 @@

    API Reference

    Header File

    diff --git a/docs/network/udp_socket.html b/docs/network/udp_socket.html index a128d0fb0..b670c35cb 100644 --- a/docs/network/udp_socket.html +++ b/docs/network/udp_socket.html @@ -143,7 +143,7 @@
  • Network APIs »
  • UDP Sockets
  • - Edit on GitHub + Edit on GitHub

  • @@ -161,7 +161,7 @@

    API Reference

    Header File

    diff --git a/docs/nfc/index.html b/docs/nfc/index.html index 7b534f559..fdee8fc09 100644 --- a/docs/nfc/index.html +++ b/docs/nfc/index.html @@ -134,7 +134,7 @@
  • »
  • NFC APIs
  • - Edit on GitHub + Edit on GitHub

  • diff --git a/docs/nfc/ndef.html b/docs/nfc/ndef.html index 94f438e3f..6a876730d 100644 --- a/docs/nfc/ndef.html +++ b/docs/nfc/ndef.html @@ -143,7 +143,7 @@
  • NFC APIs »
  • NDEF
  • - Edit on GitHub + Edit on GitHub

  • @@ -160,7 +160,7 @@

    API Reference

    Header File

    diff --git a/docs/nfc/st25dv.html b/docs/nfc/st25dv.html index f5ef02f8c..6a6b42623 100644 --- a/docs/nfc/st25dv.html +++ b/docs/nfc/st25dv.html @@ -142,7 +142,7 @@
  • NFC APIs »
  • ST25DV
  • - Edit on GitHub + Edit on GitHub

  • @@ -163,7 +163,7 @@

    API Reference

    Header File

    diff --git a/docs/objects.inv b/docs/objects.inv index ebc0e63a3096ccea3876554d2ac79cd156baa31d..4a915cf709020e3ff99f00400d73e93558c0eb65 100644 GIT binary patch delta 59026 zcmV*6Ky$x`*aO7c1CWbeI*X4y{-#*+pw|CCPH~ZqsSwGz0->o+P@a6~Ci=%(& z|433d4IJ>>Q+N#i&r^EX|4;A#{L4T7{eL*lTHwIql`cOU-c zreSo14KSMf5dO;f7{cF3-R*e~JZ*pN{wX@X-nxh2@*Hd;JC37xK9Aj>|L{(y`5`!L zgBVyIciyL?AM6TC=i>hU*}Bzd7-JLI+RVCt{tQF!7$oevK?3aOi*0Bhy~qb5nVz?I zlLW{G#b=+~ZRnJLKev^aj;@zxo7Yod-&&cPt~F{n0z%uJk6uSC`mjG$X7H@mqhk;5i}Sb-Q}4++CW^||ghcWD%`m+c9_H-> zmv{6)wMV&({ftFC2C0*`D{0KEmZG5i;4uz@ME!`Ux76+1bvg@gm+%w=lQh@a>$`Ur}MUEllU7N4U^ zlhVTON)$h6`Un$aGb!pOB+v(#&;8&z^a98A{WwT}I+1}0QMX{leh(hq@F>rNcs0LhPHA=0>zVgZgdO$BjMYB3-UOC2)PVnL2HRoM!p7=Wg!E{&NM z1Jas*DN7@eVgSwzWk4WB0P3>ilHM~e>B`3?opW5$6^%IAq0bM#&g z_3_qFi5mb)N$I8iW$|#maTb@CD|@{b>HS9?4NU#`T7?NbUB2}d9~ERD&*%2?>$iMX?3 zf%j(AJfajSv1w%qiB5ELikqHgpX0T%zaSE@7Fyub*(YBY0BW|i_P*k+xZ4MUt;@ahk^K{(PJZD-+fmB)*87U?)}5{+P+km;+7s8 ze_2(E8#x^J=z=-5{T!5!eYvWS-m<1^&*#hA_43jdO;DROE~NT^cMls?#7U`zL!M5- z(dW*(abZUkoX;=5EpBh^YiD^Wn1T|aYmE{GcS{Rxm_XKTH@bld>&;^Gu$E(t3lR+E zqBWrM6vU)7Bui#Rp$WQOshdE8PSE8Ee>$CD$P)}Y!IUSMbb=*Mu;_%5JYhs9jO7Vq zI$)}iU-Gqc_z;habZ*_O7@xW%a295LV z`_6N;mr9k^s8CQ04;9#Ow1){DWcV1S?q0s!ELe#F8J$z`P3HjS9TH$e!|Ac(f1lm` zS&FY?1(_X?$@5W1iUOrSz+r1G_y;#IC(C_tgmvgnLSgmjIf(P=Yj}Ljo~(3t%->m_U`6Rcw&{y>sq5jMLBEx zKV(4DN`y$cS=>G>u4NeGLIOj$%SSq)QqZ-=n5qnZzPE3k%hh6eE8GSfe>w1TE!V@n ze^`HW?jNqN6<}wz7!KMR`d0Ng%9WcFM1zGRwMv0ul2$A*;Jfw8q3uoJW=~2*4*Xah zeOw5#!wq%pQLe|1HVwt;HaXyy;&fZ==&_|Z-D3{;RB^g-^*nzU$qBLn)5%|@+wI*) zp=UCNj@7a!=kSxyK-4djz-vB|rY z&$`ZW;JDfIA)x}(M;#R#j#ru|Py7ze=lMS%ZPn9Ep^O^V#o)tw)>_2+ATDOFZn^tC zd4EM;NZJV4TsX;M66QJw_av573l`zWN+wy553Sr5>z88VfJsoZf2*ew;tnxww|P(Z zqz0=2Jxj!j(jv)8RH{TWm!y3vMqS@cU5WPHh}ielxQ+h6?U9P6Kb&j%&yumvoA_8q z!XMqyD)#$`exiP{M;;v&n;$G2o=JHiH;L6}7$rdmB(p)@6RA0&K1GGZ@RIo;;fG+v zJ1%T_$8N?g#e=bBe{xv>o9(*D&$SB#rxlHW&4rVlR`7Aj``vr?@!G!$@2LDL-CL8)3jv~Tr;=8x+h=G?3g zL438GUw1@9pce{o4gPcyKCQa#PkzDf2p zL%By<*JWQKBB(X)wU&6rol~;T_ExUSt+~CGmr9oO-@;vqm0yb_SG%{B@JU6b9NI&< zmCb>jLreBO{G+@|O6TKVB~3=vX;jD|&-tHFwQ*t7)qu2cXYSGEDpkzeosc}+dEK(C zi@S&0&Dy!Qe^<`R{_XDiAv->iaGoxmW$0Kfn+@rF5rdipH6nI%=Um!fSGK(t0_qb) zhlW}$E|-g2c~q%`K~c^w@2MNe8#<6A@qHOSdF&fA9T4p;7Csu~J(dm=-JQ=z>h90) z$e&MscDchTh{H&VqnnTvnfM&+BQH!}on5$3%L740f0?6>7@3NB7l4n2ybVwSs4oMs zHXzFD03~K^U)Vf7!TirS!Tb+h9Z0WLfE<#QGA6u+ z5Y$j!DGw74^5`QWAtXx-3HcG&u&@K8g@yb?e@bZB;S%0_6-XrR{nrjGyK-b7_>Omu z<7y#NCY7U(Aemgw%KbQe4)TQ|=cLKv4GpJC_Td!8siQf57zcTqa1L(rL)r-)E8FWu zcm&;8d_JXWy?|wVywHcq3!N`7^kMQsXU+?BcE%6w&d@pt%*=(Kfy`b?2zBEPUqN9-Fe@&=Uh)$4s%0p{p>>S6i<8?3xD)xK&FwNNd zm=8{zcE5R1DECCBOq4q#SU7dm_5q4Vxi5lwa?(CfH96@Y$(bll-?g^XFCRYcqpiCK zUpuC8w3q1N42vXc<6;9iJQDXUBL>mvEp zoxiCM9MuuCU6KQc*)mz`7H>0^J7}aT>>bJt{`wBtt6BI_mor27e1qDS??oNZnA503A9-BPHeHlP=@CSV-uB2gtB?B)(P=KQ0s?KX{hK$6_kfs zH-vIRzV}vBCFHwoMSiGQe^M8%8MwFXc(~}BcAta4!tx#R>NT>1n?8No=AXBfmYQ9P z6*gTBNUPO_667GQN^*6jTi=6hNjva6@4cynjH%kxclZWLjY1+RX_(gqnS{IV3Br20 z55DMHBbv`(p_HG*VWKMrw?UV~|zH|$=e-9v^QC(txj&(iw zng6Z;Jt>t?q?@uf%&RuQa8rAS5u49bt|q}C8l8%l75??#ggo{3R81*|VeRnGv+IA! zU%0;9=}-kNUc*j4ZS(J-#ioxs);3ADI=-Zv7u2gk?s={-HbJY^logT3$N z8=B!La0@>El>MjJU5yzXbgeP9F>;7>tNQY(LnKU$gGEw^JnbPPfOryt? zMo(cHJ*G4k_nRw#>Uv9$0lah1`&0#2YvkzIeRv2{=Q-M^?xT_vn~-7;9Dj<6SZ9Pe zNCn3{ML&bsNzSL!{#9YR4GkxZcct0to!dx`aHEc#z1y)+DLElI=q)|* z!=!HT!UZuYGgVqAbhR0+K1CQYE;|xDA>VD=E>kog`-oQvvN)U$m8JMVE=GR5K0y=- zTZlW}bK|tySr?h;Iq3bO{8%IHrt%USZF%X!DU-ZDCsmm@y`+-?~5kO*> zU^Ac7T;BcpVf*zWWuylf=rlu zBIHA)FukLbF%cJkHQI{!{xOflM7|fTY8|6x*hvL>V|vW zD84}LPgJ6XM3P1)1rRIKAu-B(6+qgHyZn$W7GoM3P8iDO z%lt3YY{qG*t_Ny7{iQa*K*FV)x?4q`oaCKkr;js>u&eBUt_jI8ffG;|fjV$5M+Mg>i>b=&aaWO!Z)S56(6NtswA~@? zBG1Y9VM?-prj-zt_T$-!-LwjmByh7@iOTDJvct?Hgw`G2@q7TWB4|`6H;fbMN@Kx# zRCKX^7askym%5i0da>@RBU zv&vE(d#eynpo+Oqs3o7R90dEoOXK`LtvuY4NQ$B11o0`$zL`9^yHuK5T;bNz>H}77 zN`^T_>rkYb`nZC^|VH#F0qUw9>#64$-qrFV0z8->fEx8uCzygautOt_Ksy8#yn|{yX#kd_(>(70WpAGSy)^8pHR}#VJtAKgPX3 zlmEf)*h4xkuNb5%Ma;quBu!mQQo_Nk*0AV*BC9lz9C6CYE{&aPb|C1bQ|$Vk%ci>0 zn9HWvwY!&0RpQi3rWoWYmrK=%YFiRVVOp6HUJ8V^?kl&Sxu6LwNumeP-9L%Rj&fU) z@XsLlA?)#_v?hta25u~-Y-Of+*-d!hF0g53NS4eBPM`wU%9c;86NP+Q`7I`&V!aoC z$qZ{ll$y_Sayu1oc*>lRY5j6ei1q_X-7c>zKALn@6UC-)NW~qK!$QIwk8@7b zApRM}>C>0yfemt^K=Up5*+KcPb#)qvK0)*-C=wla3IN^#A{FNdW~$HN5p|(|;mzH{ zEJ}#_fUZ=KaP#>wiVyi^0og8vG}`T)T^#&*4vt=DMk(oxF`Mk|ZkYvpv^ zDzowZb0bUN-6+ez?H%mV#P#ou)O_yd*@fNz#H6enZ3QyNbNBnL>-`X6OeXNN?Wpcem+6gh(vs^jLGu#Nw&B>c5H=U!5U;1X|Ed-2K&&V130=%2caZbnIT#B z6o*kAi54OO36rcA9)ESCt=5aqA_nK${>{FY25XI0FBZfQYN)eX zsh7E0u9ao7-V#H>!E^qmOgX-GH@WqYCWti(2otB>!srp#6(p}Uw(ZRcrSLDII1bw9 zaIp`eUdr2tsG$kIWw%WlyB3ycnwzg~O|SlOole3ejRW^k{1TPFAdLCk@j9d`k~bU( zN4Q{aAX-G2O)1BH4bo*ccl!pu8^y1EWp`Br^-;$Zt~~SkI!M2{M}Hrzf&_CDBrzrW zsFQ#fM}LpjotIW~jpiV#B=y5%_TT8tE@~Kffi@;Ors44%os)&{L0z!xd!M}euMYSX zvyfs!_BLJ?J6jfzM`qAi3dl9kLXW||6IqJ`r_I`K0+f(a;bo+shR1d*mW z(`ntUZbQI@ZhJ@9$7l{vSLEKpn{0Q%;aNdGj0+_|oPpn1psLf(>p_fJsu#dcD=jXt z>csPTfjw73fQp>?B^~bmqsV*>YA~v7R=Zm8Y z#($81Mz2X4dOt9+0IR&A;iTB1%^G|36Yh@XJkYg9m&cppjA)gfj0;I_C${RH*m67Z zU*(5RlD{;k(j`N~5x6~6?^t=%v#39H*QTr{H@e*3yr{24FWgSNs(0d*$BDX%wT3)Z zg){1i^Y}%W7sz=;nj2KEv=#=-Wp`E{@_$Gjl?5q9mt;Bh^#z^qS)TBjPPn}Lek%>J zG8H=KpLc((H_MAFXKi2G7aRF>jXH{S{PkkJaUO0T*7l`5T5qZKVC^sRNwqQ+I%l=~ z`b{1*%4O&zMa4H}DYW%wu~Lw#T!v11xR=Hl5BGG&@A4JzcRJw@dBPufLMJY7FBAST z0-!K`b){>UXLpa8I1NWMFSFJe1Ob1e+?1jU1{pE`3uWDWXR{*m?5tuI@B^Hluoo{h<2R?z##RP zrTU9h#d@J?ze;Hndcph@PTYNetn#y30lO!FwuhX(du{C{zbcnKdsws=KGlD7@$a=V zFXWallH&94m;4GRv|r;gOtKqSpdrXFKKoSui>ggZE4wQ*pD*_N$ji@Z$IPXeh4pb) zhXDl!yz-Oi=Marl$pHQ?a#@RgMYPE#u*D1X7c4JKnHONAI60q6PghF zO3-m3FvWpW_!8{PqHFfoD=CTzqRr${9Hnl3yO;_`rj;TSK8beePd5&n$_oFgsf0hq zh{#~_u)M126vSbquo;_>E|VueL%)04ri2HhTn+E@%pR0c>lsYVKb{id; ziPXn<1E*F!n=R?MFNwu4IG)V}R2ezoykHC-dOVYeAFxjKh7eeP)QsC$hx&(ZtVeRA zH_j9C0FHG)dJM<;Kpn=hZYUecv4z7lm}C8t9nW#@(1vuZ6Us+*oL77UJJwGnV>`aN z_YLn@f1berpsDm@lq-Mo;C1DAofR(?-(c~i5NFkHB<0pyX4G^=ZVlC+vK^hbm+Ong zJ?2~le$uQ~V`DnY+u!Wf2Dh1%AFfYPU8)=RcdN~6vD~PDPb)DdqS|y%5Lt{9>+tdD z?u9DSxUeOP&gWmQAJ*R_(ozyexekSMdv|NgW2{UDLn#6c_{2O8_Ts3lal%pTWhV{n z;vjhvo&FND>~>6^ycAB^;|2U+RiInp5f!Iri^= zo6TzZ6@PdnA4}I;Vtv5t-=yb_449MO?zl7QqlJ9r3#`6bf}!0#qUZuK!?h?f4I(1 zeO_-?cit9ym@NpA_#!FOLa&gX}ldllGOt=7+f`~n)8 zI%cLuXBMUKSrHXva3jb9R@hav6{+aWYH_<>ZkBhq#g`Q|t|_X^>c+Q+8&xg5tJ>qj z@?LF!-B!e)v!%-XUNGU+r&%pQx$G0=5$_Wm2#mRAlzqmITsB(E7BA2^`_^igNG4{_ zUfM!-wMf8_GT2f+Usd`7et1uRXIdvXiAO}*u6lB;)qTh)AvpvBRY6eDI zroPU)?#?*2W$#$ft8(pQ28x&UtAW+y-TY<2PeJi#C;tueN}bWR$E#u=9t)^{Bae}B5aNSY zaUkxID;|wL2o8E zw>DXzzCZ|t&R8UIqBp-3*AZxUNq$}2jeB$-J4c)s7ib-dzhEU>mNr&zK6icJIi0ur zFnK~>@Z}=tCZv^Jsk2Uh$4MH8$4B@V7FV*memF(P>N3D?b$?ga!0-`zAH=QXyiL3~ z+{%`o1&dLfSzTc+Z@cQ=C`9wLbEB(VCcd%b3Tx%tdXBxt^Y4@ZRjqDVuc?V~xJ+wpbu2tJ?v7R1{qf$n{y_>dhG)^$ZNre*i%OSli#uSpslpn1&>eC#Co=eTo) z8Y`Sqws$c}F^eF7%&NN9DD)BXu?WNhVfWs8A=<1K>*qekQTHe@A?7F->gOHL8O4cq z&OSW;NEDFuQAe}iiRkCC?EfSaoeTBzPC;Vl+P<1*2rP0*{DmiTE)(I<&VbZo{pT)H^o*~@bPI6rZ_!$p_ZMVc*;SP zosM3#G3KHBF8>2s(&NIy?kG?m-}fjX5A0#Vo=5e6Y~r|w^Ic57f6xWNSMUg`XLq*7 zL(3M=U@bBg^Ug94s{6ijC4XsuSv*{CoW&?on> zIK##PY0}pqNzXC#ei)PTq%^ciiu3u+-EX#ozjc%gF{_38VE9Wo1z_+!oOl@FCQdGz zt~F9yeLURFm0Yk%DMJC_PcP!4bdD}U5dV31cjGK&>%^p#=>y$8$QIGG(m_$#gbwI} zIpo=UD(2;hP={b>I4R0jH<|~;jdsJk(lQashiXb*tJwF|bF=$t_Jcl?awI7NXta}^ zBti{+f~dBa7ZD#qUjftzlk6lI3ma|0KJp3FmF#ZClMf{$7G5lOIL~45({6fE{DKbE zC6MhW=!i0tNF`2xeM+aN&Lx7J>Z4qO#@Gg_9Ky;JXoN@iaF9$zE`eh}1=^|~tbnF) z(WM-eLR~mgi)@NsAXR0l@8or_u)@zI;p)yy(Y&EKo(g+yxG6z$K2JIQWt6U4l|bng z4N6}13MczakgaYM6)ick(@paismVplSD<@^6@DfOgMZ|IYBJgJ=v1tj{p-I8d++Ug zl%*>+Oh{+Cj(G_4n0=0B!YKc~4VzP*N zi8>78^BNZY?$a8awnKV7lm(z`jRu10JkN1-Zi+rZGdS zTe=JnounXt+3MO;bO@^VMzPn(k~mi_kfCFx+FfNsWLu{10pgd&vAo`ua5{=}5wgbv zu7%~db?oKCc=GyQp5Si*X6g3I3xLT>r4XTKc~%XIyeLc6$1KT0f|#?BSo%^EvTn4$ zCC||C?nV0uGdVZG_aLLj61q;AXq*eIuCjkr$gCa?w+du-#s4Ep^Z66u-fNQ}CmRKC zZzrnglRzgMe>6Ne?lwG(5%?Blf)CkArbwXPQXpQl(Wi#HRs+)Y_CK8D6m;+H>(#C8 z2)d-OzfTtv>_fWsx;3+;m6;IK5^wK>Q5HM#Y3f>INs&IC_xtn7367lVCS*(k_^zn$ zwIxMb-1oLI0g&x^jLxZZNO*m3EIZOw6K%&TB(=Pyf1)#iN{2qx5E1o*y6Lj`H!i+U z32R!a9NGoy-VWJcEwmY6gCHLFWN})-~{R-dsv|OoQake4g2;$sE<572i9!r;q6#F#nj2 z?e^|t^5I;|?wpq&NOBo=hX{VCto6!VQe54Y`K7F$%X^ePUyXLV1U(Xn+ZkPJ#OzhL z8VYGNWn&p9_4UoD*^*y~yTe)5%hkoh^c?! zRx)(h%D&hvZokU&biE~oV?upPtCMDd)cp*)_XY(}=W)ttO+)K!4rU+}ht1a3xZFBr z2cKhJ;>W6Abs7>-8MpRSHp*b26%jRo9ab+JNxIFBuXy!Qliw;U0i%-(Da|E(!X`naKM&DU*=1R~elklKonI&vn_u(&WpfV>`Xk1)#8PTkw| z9vShc=A_6q81L$k{=pm~@BMl!Z#c(>Hk33vw57Rva5#0uKD@2}=h;1`;a~Yg3{$pj zEW^M{*&zovdkpReFKmUW#0Q?yrH#UlFIU0q$@QCmtF+;xQ-0)sC0?Vgx2$cPB;`~V z4ryfCj3M-#q{2_bEz@GTq_a=>krsRe3PkIc6LRJN2M#Vbbfu02W;kPHC@-?A+kf*s z4}IK~#5aoh{FlnChmH%pE?+CI8pb~GF`Lb=+bJ;06m8UHtJBMuOs*DP24|r&*l|kIzB(Rcls?ZbBk-Uj7!j zbBO#v5T-Q>bW-;2a4ZHH<+fdUj`}&q*GsrUCXCKi4=XD(f@)TgoH$6L{TY4e)hDix zI_3n(E)M=Y2S@MKdHRc!V6<%s@`ORJPa8LXxIwzywQk&B+XSlFm{Ps2(c_|tI(a9G z4l$Jubzl<`&DIFA>h~Bh`>1P;k*!grQe1;_gQng(}qwX|67RAB+kYD=mt`0*=d-v}SU1R6b* zudC0}6rj;VS$&nK01X@kA4c{H<049bNU^vu*NN&f=Bh?@ywix#P}x@PUH!yUgfy!q zXdH4p$jrfqh8<3JG9?gAgfY`ffkw%9xNqZZE%1mO!pl=iqmB|4n%zVoSy$ltKGe#e((7ft@O=ZSO zXXCDmzDmrJHGI^|St$;R)SNYcrx%4*apdKASo^Ur4FwH8_s|l{dV}NdS z@%ABR!)^UtjQM>2EllbwU`wBRWG1BvRt|QoeegS7wB_Y9PB%aO%Grm1=o=+H!n)R& z(xekF4uT`ExY0JI$)}N%E!#vpku(?@PNWA{tl9_y4ZI8@ACY(uzEQWbiCP<;8Vy=eZ(-T^m?*e*DWJf7U6zt2we6lyStg1uz|f!0Fg zGFM(6I9sQK^f@hCdv#TfXFU{ms+yJL%gE=SiuAIU*d+3`r|lPf04QTKs=RYy2>K`gir58eA= z*wl5cu_rT9_fbUL1a_!stAN^}bdO?LRG8-|kSzU?jV$B0Al_y#(Z50u&grVN+Q=sB zW%o3Ge)x)c&de%4$_1zhd$qb-$slq8Dq?y2{1IX;DfbWadtqdTu zM*)7YJwNtW`Q_z*$%ceSxuN}xy!di?TCJ=_{FvZT^LhTaJcbAkr#)!nc)fv z=?0}{PoocMHgA4ww$t>Um|aBuTz!hlNO~bx^n*AgQ!55>NWQ{IyOm#OB+?_~hWseW z9zmEY)guT~74!&#Z22Amm67y9wnrGiA-Nu50Eblc2$F7p?V|YLrUF%FTv%pr$Bqk> z&5f0-BWgU5sT68Fkgo-DeuT$eBv1jY%#N$BWd?FZF3OZCWKpJkv5JwU$ASr>BIkqT zNTA*wsc}HPI|@btNvE>)vTC)3eRX6~n%P(66B0UvW>JT8m4uh|46T{4r%5*haszhcW*;flPrTS_?rh>j&h%Db%BPwz}$oAFB-I437 zmAj*&uNHOc=gCcyFX2AzJZRYEA0?mm#WyeqCYX@1jn~9JfZ)}}Jdwa4=JR6~ux8hh z_>Ol@qutJ_-_3^C`~@8_CKN)icYiuN*Gr>Vi7V58N{xs`i?-DZ@KU>ljeD*@rc<9} z4DL#FD%QUL_1|Q3!Q0!reo7XObszkRCYDCTAD7BqpUSgSuil7rf3>^cAx}uYlSU^U*(H`>%!{ii@)UuX zNOSx!4)R*)9NgrG3cR6Xr5St)kDyk^=ToZQ7g)O27k#*V(RuSlA1+^Xj(owK?k0rp zob85!FmD2jk-9GhH>gYd%i`gB<18*OSN3{;Ed|p@9W@*f>W$mSrtz_wo*50vP#FD` zx*^E-QF#(rx!HviVrBL=K^Oe@Zne?S-4-H{QLaTt=?YOg4pp4HSG7OSJ*DS3kgOqw zj#agDSF)X@x>h`R@}P66dYqci15ZUQ8p^vf-fiib|?*OIZyY%s*vyZ7>g&)jEY9 z))T%Ex2cdfV$yJ;_Eyv#Ws#RO93@y#T*&DwcE-XhngyRw-RvQQ->Z3F>>eqio@SN79+| ze(#)5vU5qjr6uKvve~0TkCe?975b!XhA8I~?sOsE3XC2!bd!!JnhtFi2#%QxKrsIk zW^Zj_)76;IFYX?0H*4qKUO6lKx4Y|y&GPOResagCZRl7nMx^sa3~Cb8h}g}Yb7_BF z+4fops80|b8fvw;TrO_qQKb%l28C`MVU$NVj6jma?IL{g*li*m5N(qPAC0m(q{Bp? zyYrE{&)Yll#U7&UQim{-;^-zMMJ7H6`^W=9kh5#{O^Px{9WgQ$v#WrQh3qCM0o1(& ztPO~=hoHo?y3*G0&YFa>Q^h>Hhvca{29&YZ_Ql=pWziGfEN>q+wpgZrO;I5<-?GPP zuIHT(=e?Vv%bgU~6T*Mw$HFm$d~kK5RvJ#Nd7y@G%Jd z#Q7_TBPR*m*n1K#s|g~1g~?aUBW1>PVIC!ynw@b?ExKQaK*|(r>UO3;DvMJN`mKGiQ&$~a?o27JpoK`w?+Liss=exy9Hht4dhfce> zdsy4D4J{X;bMC)?Vb62pI+t?16Tx?c%*RplQg5~Jw&E3PrH~A(vt#s(L zhuf>$yYIKM?Yoqrv%W7j7vE$HFBd^Mb{KPvA*0*?tCHQUcyBLOi`xtSidN|AS|dSV zTwE{KYv=BZb7}v!6bFquIt1F6>&4f#AY+sp6NImAC$GSSE9nB+`21$;l^DS!cenCz|BA@%#(B|`#`?`ORTp#;TVQ6-G+`SLC>ipgg3~V@hnhb$a0PXqn zI@`ZuJ0N!EuIQPnZnPz^4EyGO^M{c5C^yB6{=TtSw;=G|{BduKd2T`)Sjx@v#&&M( z%jH50p)~?n{gu78SHIbpLh94X8Y}&9djYzKuY%gM+MFOR)-`6*q`oj0{%(I?UpwO3 zy4DDE^&diyr^SG;V-!FPvH5yu-}8G1jK_s7LH63XScvIPN@IfX`d&!G~jbJxmWtMo!)#c*uv;Di6x0N+k z`ew1b-rR|GhlMRx_SXI`*w!*jyyO=#MH3j}1x21=6+U7fT;-DYcY=KuFvJS3)}oCy zv&2fSMSB%%P3ltCOTlCVLz19i^~o&pk~g0PeZ2XM72I6h3%AKhX^ejt7FfW{J>8&7 zmX+YGy%B5Ug)LrIxFT&x73pCmHk6tVt6P$wW8Yth6;f$T6Lti4E@axe)(BAb?-ybP zr|T^RDq*$wE=d3iRKjNQRgwS{h=kiO62%LQyTaeYUAQ=>Pr)$_JvUno;9MIu47>yz zXg&u+0e>qXL9I-UmArrcwpa;FI7#erp~p)9e!nmr`xeaU?^jEKZ7d`=^ifBd%b|OF zwZ6L*SbrzFV?w$d&J2<{7A(x;j{2-I+Oj;Z3{+GTL>uQ6=7p-hrC+VFBP-_bQ?*>; zTU~A;bPE=uA%mkAznt6WML_)p+YVs!9MV~Q>)=bm`IA!%HhC1aH44IoZK+00h}q-XBZ88njQ2o zww$zj`v$3E@HXoH$Hq)`6!rpyjqnRSoO$@6la{|09e*D%N16S1NL>|g{}3!3%FRKdTMd5ulIlf*3P{m)4yO_7kR+9SX=E2oWG)+8KHx z2@=MM&3|$Qa6iLc=wJ>SVy?L@foxHswW`^Jqn>Z1n2p=f%y51}X@;z7B|(fo>!q)L z*M|0XOVR{66(ouK7&zPDF+2*jBR)=W^wm?C*Ckual7$sARWClC&qEh|ii$shfz!iW`KUFPHbxD5t{#^va(}uWDh`^>lY2Y{`_4lR5ze%dq5}yR zB8m`k*CFDNXXF4u5t?;|P7rK^I(48`Nx48!l|WBf!xO1J-%$AcG^E3`RB9)s2tdui zul+Q2Ddj}R?oX+dPAe65p1QPhz<(*K$Cp}bkh?EC+NujXg+6L+-nSoF-e>(YruQS7 zB7Z$yOCdYmEDav>M`g~zeStfIK1tnztr-yEQ3eqn35Xv)pRDo2Cn<%zN+C(<#H(~7 zC=o`5K0(|F0O=M-iVKvx)>!sPbCX5b=7?LMl#+X3nDOviluQMX2OZ#sByjhTd&?;%ya9{F!|Sf)>ol_tp1pM1NsE z|9no7`f+qc0O8PTR`V#wUCcCd z6$Qouna{V)KrK*K!l~m2%O{l_%BfFjzMj;FwCZ z$0@2Kh?mO%Q9tlOJH3^nQb`Cg$=7f0o3UkaZ)!%GQ5wvYoLp6ki_P^yyQaFAg2@zqZAfnq4lJ>n(e% zC^mSdier?KNEQPCK}~Q(u4@t`jSHmGe2$Z4h40}YSQL0n$7t^}+bZAmtI z>xxThya{Rc@DJ`wcsL)FkSC>BA2K{DL>6K_$Z};}VTIOBe@K&!AJ;dx%h$2CB!S-T zidv%>FBa~X&{+zJOPv`F>O`^Rkp_p;9*j9mNUmPENY^2@Bnb`lWUI6ZzLo8j z+Ykx!`LmMBe~TeKZlTb~i}n#l#RT88+eVFLE8!I5Twrx&eoLNJ$gEmVOT=Y%#s4Ep z^Z6E=-7<=g$`zlIXF*MDDS%0`au?%A(Tqe(cne1Y6bZdsRUg?+A3LVqOvajDHQs~o z+nv0v9-#hj9--47n+dfR$lIrcF>l#b|1U=yI$if@fAP53ry8@DU^@aiq)_J;A5xsr zA%#q^Q%0gGIyY<-K&9PB-jC+}{W<}Ca=O-75~RK23$e$iJge;py8gj+f}^|L2R^6I zddrj`{&)%_=h&Ui^eIm(GlDANF;Z_+Vpx^a+1`*T)vou|JzGsA?834j!g-HDsG z4d>5ue{c>QKRBgNd?>>t$aJ7pYiKoZqIBLUF!61vLyf3~MDrvZLUs?Qm4$tORj;;Z z&BaOa%AjVusmtfF0AwE=AJeCSFu!=p5ZXVQWqonSX@9q-Yt6T9i~@TH*;c}JlpR6P zU%sY6;*__sws#59TLXq;XgDo8-Dm1SFfh~afAk@Ubm4}W`nWKr1MSXty-JmRkL$5_Ca3(T%qM#7-GAD zYWo_etJBH~@98gz`U3Y?sdu_}y&pj*f=iPVR;B)W%dhnG&r|Tou3|zK1RlXt2<1G_a;bpkzO5I#PoA1f<| z^J%zzjCQ*u_+a_?=l>7f8LmYC)c$7v>VGeP6VE+5YKIgRwRBLohRe-tVp^d< zr~DWAT_P>I35n2Ihx~g_fs32`F%|B(D?6j_A+MbMf zaueCk&uD9qNyL+tn0lnvi9{3vdw+y4m6ihgINvg&U$8s06RcH|jIC;9$bgy8aXf*v zVxi2-t+V>eHfrCM>dlo#t)+`Re?wC%Pc37Wpl7Nu_sXV%#MJEt9WMmflyc&X#T!vV z7%m!THNxZ&OFX=4sgolssqmmhphgDrQ9+B;9}tKS%-t-*j>&>USgVo}Mla!!tL--P zc%f*(l4f&_Q(YQmw2&U2SXjyFVjl)a*5`@U*KLdhegj0W6uJWfQ6%qWe_~a~Zfe4C zqGK_y-^JDOzWglRgjDFjlZ$L@V&zzwEnPj+a!yg4ie_6aK<9w|AiKZ8I#hI@@6WALwqe%InWOhFAlc> zf6AtnDJMxHZQRH(5iU4gYpl6(5`SqF;5Hqaf_vUym|^Gru%ghsA5tgH`@5Wj`%+xxh;c|W4gHRbQ9BeVUkx_{_wAI>f6Y`;QwDk@`*FD#&Xi=TO;7~$DIH!~mQn{_76 zq&3#r(fipms4uw`os{orJ_N#vzK$LrgLw8^5O1R- zOkZtwH@Y1Qe_lwtmAY}tpBtmx4%?Gwn$d}0(#p&TioayqA7;c!>VFmNo^e8Nec#53 z@C-U_F~X<=Y4Q#`7=7}%(;*cLtgM3pj#Ml3kOX>d46d)+E}`Ax?yop)7F_&!Y;-<` zU_RuW(s()Bc&BxgKWHR&v8Wp&9s8U3l*ZBCNh0K->wEb2*y__l=3Q`*D;BJQ?*j4z zMzdG5p92xdthT1edw=@~a~v$Id|^$KFIG>*2)fZ$AW?XhK-=o&vLs2BeI2qbTC5Hd zG>a9BeBQ~kOB2eHaaSb2D6jR#BNI8xHL0c~<%Uf9M;(nU!fLk3uu!GbF5m*^gu9Jv zroT9G87tM`J!;9(R$5l9d_a<$vaL?C{AWJV6Fd7_f_@ zLp~fJH{x=FbQ6-ws%l>J-GIb%jGS6 z;x4SWaEi4A!(*5_;py3usX?<^1zvaW?#m;fi@riS7o@#75!PYfzzOjEECQ7&glQ#$ z3=%EMSOsNFrGKC+YCQU#MKxF&fBHF(e04B6>ijywg(HmG)yQgXUQYoi_i||inL;at zh0LIQn*InMh$C3Z#Zo$e13alOB%PiA)?ng+2m|Fd=trHyd7p-!o21TT9HCDP8Oiz# zqXl3Wi1<_-C+EZgW`f9yHQFMWt|PxhFMsQN!zzvzfS8a9h63in&+Z;` z0XG|9TG_WYwMs}|;kC(bD{6(bWaRh9*VRL`AS_s>zBZxyw+EYbbPo1pwOYUxSZ|Vs7*p9UB8nPSG)ur5PGd2*qWOG%CNc9FESy z^=*dHDt|jQ?z7oF13eL0N6D9PpLQO>@A8il zpafkUvUJK&yE$f)D59%X?H+G7AiGMAlBhU@BSmA6Ic_K77NeF(*!zha0 zz=|jRikZL$6ydU^YmzvK%U-GpR5 z7Hzd$%fO7b%Ew@>zBr4E&GNV9<_}?%-V*sBq_6hIxmkTN<8PJ)-KPx9gwOa ziao*Q$s4uk_2uh{*Ypj6|7Cmqyc$*MA(I&p#iT zR(5U0$z(c%)?@uJ$=+`JRQ~JuahRQziB-*vyJFe3!-0$R1iZ4NT%~jF3H(nzfx~-{ zt*-7P{7VP#;SJ@|ulI0=e9g*xc=PgMJb8V8Pj=ycFWY{sOvJv|&Hb~J*#LuQC%wO# zf#2OYaKX>I27b=lNa>7e5PzJR&odJx8Kc;*;%f)@^bwr{)*sQW-QImnKA2Uon=Ia|V$&U~DS?$Mq zSGW48V~N?!+4X_?p#1F|%1;FFqQk*G`qJ5AwAF0%6$=bA%LWuKoPQ5I9^fw6;04ZV zCHwxW!nK1T?9fmfQRet>?uoh~RN58Fr2nmaNrAHaGn>F7L#If+9CsC|Vf1_W(;l08 z`3eIHc~@S7p&XGaBj8x_K^=Sjs5$ofadJ#m^wntDVMrmVi@n&1uY(ddSHbHxa?59e z)mmKs;?Aek`BDB6^M8&`ZD^xf*w<@#G?7RMktQ4hBmhCr0>Z(vw{n`}B4v2G)`(G= zK-2NI(!6n@Lq!qZC=#IIUM<1^Ptks#HT!&n;j=5x)yG{)Dj$8jNr2gT%?X3Syy+ys z>Av#R0$ti)77y2it;jqmebkY{;^5w*)#dV_T3rXaffxs)&VRy&AZL?QpeK{aNvY9# z*SG~Jnq=om3Rg;M1#CHC_Kk5lk8B|8YD?zMv=X5_biyEsPu&J&W6ucY;UT95L*nRR z!93dCV}o1LxMy`-*@Ql{+qlUOXh=`N2dIXXeGj(61_Tsqbo_6LfbO6?KLPIU`t_!j zAyGJrgX+vx4u9QAX-ASJ46psd*wGY{J|b7-^{ZM(=tewP@Dzs;DEU|JysZpL!k`&= zKk`HQo$YHHB)kAHU+5@wN$c=%+6R0!O*h(BG(~}G2a6MHUx&h32Vn@QD#8r@3JFul z^%CZA)lL|Jt)#FzcUA3_2dT!w6ybUc)B3A#-MzL31AmHq(amOuL_+mmiRPFnMvcW( zcqc?o%wy5XJmVrQ!r~ z9!b4r*H>O@5aT{=(JCRD7F9fa!jjwvN1#SdQPXb4#73(WO*A+yWze{k*7mw#XfE=L zv-5!tW`D{)xQUKo8o@_19g5Fzr&_m6Y@7}@2xZg5#-klsFdhY9K9fep$C&? zp+g^)xTuDXRU~+k&1X3ga7~))7+JmbvPc&qiuC6L0&Z*P%H#VFUn*CfJy-+X}P4)v=}cR)ebKRC+TC!ZfICl52$ zPk+(@#4Q@r8N{qzF6k)Z4lfQ4Q5uL4ue!)lM-LCBT_(g!B;6|nzedJ8zn?(J>#dOmu+r zyvlI2ZcfeKh&|F1kZ-*I}pAF<~S3cHB-foV5j@Ub~^l< zd6>Ufe2}dX(@F;O#_ZMY*bh=S-0KtY{Z08r$~uZ_mq-U-d@RR28IP28^n(=S0Ds;o zFVmrYlq}xrCv~&wfl7KvM+YeMH*;60{C_E0RfV4#Jq7V0Ou7$^()wfEW$BHPjS<3c zU1AhOpBNyz^Z7O?8)vhrfKT4a6zB{;d=7p1k~C48Zoy)7@Gg7_d@zhB;B)ur1y1yI zNTm3Nj@6{QLE7-bhsHjT!O)J;A%8r&d$q|n3958g^39HiXDRfg6rq!n^XasIm1WIp z89Z&3Cq9ZVi#ph9n*o^naPSNrE5$*b&#&*kmuGHg@Z!oAc^5{xESDn>_xD3MlFQ;9 z>GZViC;W_1sN=;vl)}R3TQk&?v$bO{*e4-+nlm#^Z;4>Xs`BV+_bCpJPcs1;gENyX zScd}p5$vDCqj=FZ8Wc#=QOTvK(ILRf{;9i_hB-BjeXFvA8D}So$UZ@(Mw1#;Fn>GB z?TD(RaDhP?8zaE#m|d|9!rcwAuqJNr5sNCi<*1{J-($;CD=^z@VeOuswJa5zwyCy& zHSM_F|IoC{28|gQT8i|6NJgHtF_5N7+N@eBg06GVl?UU(rrqBbT9loyh~8D(L&E0Q zLKVMlk(!G|XV$wKD5;P4wB7CSl~p~b*O*b+}>j43phxxV)) zEj~vzCZ&blm6*>L`yfuQqsP!|2klI1y4Dy|mBG*1O;EP;ZTa;Z8WnTHbiJj=Mg}3g z3b59b9#tTPq5+%!RERWoNgZp?g}6Kr+?BW}=h^q2 z=V&jLZ(5^5LHWUR=mq!<@LV_xR-z%p$1rvG@-@SPl^BrGIR)R$&tsPW8yZfJ9slg^ z&r*CHE6D7COrDQAQWPj*-GQsM;MO0yociJbA%t~+4@>B(N7+e4?%|Xl$C6KPeJV|Da#A;=Cl z)Uijo9y{7J6sOzdfLn^wZLy=rmg01eIp9;p>BiOb_5y8dg_muzTdmb%e;!D5^r_E0 zl)z=)=H{S_6+NuOu-H5St3@H7D-N`QYDhPB<+)67d9?zc?%=!!K5p#1Y0Jr z1+e6sA{hH?rd!`JIN5Q65|4{H%9CxVMbGeTBr%6(Gl`CqzgIBIOlgSr21nE}7^T#!5mBG)5>(0Xr@C{N*0?K4th&F{*IjsfX=>=Yrs2B& z;xD-Is`!iD6`_qIePZay0c-a4os9a}-m*&~c2bOx?vw0FpXI)gJ_PMqbH!-Ho`>ZSpE@~$ADp=0IHHc@|YvqN3-2Iici@R%mTSPiE}qPD&x z3e-m(q2@rF`}!8@d-OhPk{|OqH7ojyeQ5VyKA1nR@9PhFu^|qFfr2yjdcD z(HfZ^O8=4I{7C$H;3T~ArqS|*r(Lw2%4m!xZ8%LSI|*E%#$y7z3? z4HJ@OccOhjoeDq3UFBX^e!5}m>_8Y$St|2of=FYXfddZA!AorDR`h|+n{YU$(WpbvPs)C*I=qor2AV!ktGg54j>z zs7YZxYFkOt*p8xREHLKdm5B~;9!33zelZ_KJ)loL2Sc-w>w|yGBYyGc|E_Mw}VK{&Cy&PjdGx@zdB;ADYG5qU037K`=q8{-KVcAY#X5;pqz}x~S!BKL51hFy+ z+<~O+7;Z>3@rY3t2b8s8sccZ}g=CIo|8ACz%TWYDX#2)Ul59t_5!W~R zW>CQDs{Wb6na`u_h)Hbq8jks*h}V;eq-Tf9Kz@|67t|FjZUW<;3`20r3?&SImgER$n7d{rs0iDY|Sg*Sh3U}>{0RBlWk=yySCkJx08}> zHv#8{>>-$j^G<2s&C}TRL-)uz#=O11FQOGzf3al+uMkCC5b`2_+Z&NQeHBjntF+)1 zqKHfSt8~&KPrrw|aB+fGn0|tfK4t%L+!LxZE-dVh0(MU-lM=EO6&8fwTdnuf@JLU* z?g7YM1YxTy4+OWvwTmeqNdj>v+T||>)E7<*F%1K+NcP|a3g%}N`{K-LB|(NHNhkrZ zGILbCRZ&~5iA}hFtg`5SB3PWdi%9`#T|VDJn+GU3%s%td#_o#rv^A<2wzai1vx9@3 zgX@vXk41c3NKhC(O_~LQZ`2T_w^g%nNbMRTW%~@uE99LxNaHX_WSII4BS^tV$Lh<0 zFU2+5N_3zfCTf_Yju;*L7-hS{qzbfFp^*CeNfr>Hr-V3v*@H#-2B&L{4h=@>msv2F zo;lZV_ifm|nJQj)bHq-w^#fA}Esd*M9<;H$+=jx4(Z^j8OvW|UUJ5nC=wN8!Ns6Mk z>~ZQzrw`(<3A)i1X+^&^(^#D)dF`!f1-y~3JVr^>bZqM1Yn+mMHgvre@S)#!} z-puEhL2&w(-|zRjuHV&VOq^~)U(m;0F=lGExjK!J`JF6(l&iMtX}=pU=)ID%URaqZ zuM-zf;ogsfqiSb#qpi;4)nkw@fEUj}Zmird3)UBZ^6WZrcgh_zA$d-}mc=1<%AL|0 zZBCEC5D!|#8uwnlk}_=R^LPd(ApRa$1V`oVPuE-G_WdmX_p_S>Lf(Pqi8xt>O&`Eh z@^O#yb*^%Jrhu2SF78Cs(s>CM`C6K3GT73F~#>JztoL?bi`6+it@4ksSEV6&hbXjeLgA-_lNUW zSGJMa+A5JrPs(KnQwCn0714K`m<^v@EhVCf&gKP#* zRZa|sc3bK60P8Hz3<2w7}xOwBr<8 z6biXANCzYkxsjYw7-p*UP-R5f@{22fjBFf|4<1{=O&u|2chG?UIoYP71nBv5Kl1+Z z@5SXb^&fKSe=II9{;|n^Ev*v$MIWIy`Nx&TI{(hnxX7$4yNPa2F?QLqFnoKPkUg{5Ah( zK1<1}u%m1=~=qr?cDKXVoWS^yqgBIo$tAZX6d`F zD$L0BXNG5LyPaux!FV(>-JLa=jlGFJnRruGnC;G;>6X76YliQQjP1;S)%B5Kn8rxg zz!;(kGn-AP-Xs|Lny-7lse3zrIvr>CKWN5w?9CKmTw^jbcD^?CX4|bc_IG*!e%$Gr zKl3K0rmAe*?PxZefu78o>~_%w~ zK$1Y#nWm<1H6s`)!c;#5FS=?$LtL;GD%AGfV1aB0GEeh%#%wzBCq@wLrq+0(P2Gt$ z^LD$PHvttwLfV?nCWaRHQ(YVD=0w-btrzINr%w#s2Nh#LX;<5SO$~oKc6Z>Xk?+mM zBX8vCBQU6sroPwhOVzUVnd$4>iLTEkQ_ulwW?-0}H??#>@cf-=4#_sbKoJD9@yu`y z@U@*bn}OcS(tN|*ZS~!3NcMOJ5@=0EBW*gdbaUqUmH|3?FbM3%po{T`WY5ML7-{^; z1dL~%uTMvwYwgT`k*53Gv1tW^miN{(^k8gFtq~Ygy%{KQ-SoCoeY~BRra6;oLerTs z11i2{PJJ-Y`6FxQ=`+tWz__>5q^go@`5@D_mTs9~^!Gs39Pf4@0}Vs-x8~TDkluQl z58{dG#NF;DlW7o4chl)?6!`ks*qW|BptL*M?m(rt#=*>g-0gy~VYs`I?wi2~1ULR{ zW)8`oxgZt+1NC$V{74(fh{Cop_qHH8pKJ17EfL?G(^}L;9fXY_y+@#wLiDK+CtZV7vvLfnj(c z`+aj_4a=T?23oK+t*LH;U{?b}C+H?7AnwsX;`Pa(Y|zacvmJ;)^}w}8+d$9$H<=pK zsj-`kWIEfeKiYvx1G029nplBpn4mwAeV89p~BhYtjvv?Vd zcaP4um0O$JRjh)>2deFs7#ZDx8?Z#M;Vwb?8Hak~rPgR&HC#{g49%SemJ0%y(P%o;K>!0L$kWk~>><03UiN@p$8KvF zelVGT%|@1QSRnScCI$$4M?1rJb*bX?%o!L%&9UiD!OU_pooc(8X^#Ba7E~YIl#wof zKxTGaBEckEL$Rz~;QH=(;!Uirx7Bur1=^G5iS?TGa&FhIUeG1mWpg`i>x1A<8)=|k zf%(u#H#`fJ(Jat_m!2gft-CsiLOl~q=)wGd5k$qFs|6mYM_bPXW3r62IRY_*KXZ51 z)E$F}cekDHwqQ)38si-R$Vh`yGA6-vYWkzCG4ghvVP+uE>uIJn8dBOFnUnD(0KxTc zIthGVH>@2fo?z^6!Bh=QREK1bP16UlAc#p_6Z{c0Ov|)Ds6X}f*+?7BWY~cT8ux5} ztGTY>ZM~5ZOh-FyWcXl~va?2kgftk2r;{=0jE#xA8wVzsOM+>Tr*B{hpIjkL@gfSydU4v7R2Ol$8NQFi7AW5|`Zv-leEF8-w4} zaz;07z-SY;f5O+*u;-oyG%)XK6Q=Z(XqdSeSMgvvFwIm;ff5WG#_`m$&DzFj0sb<9 z38z$4V6;nbQp;#f&xp1(Ftojn-bQF(@wj2Z=zB2&@H3(}Etvth16oB70eroGgc=lt z)OI?vGDM@f&TbJy&{D;?$0BWI+r2~SDbZu}1VQ2J<_SPy1Z@WYh!WEF3q^N<^Dyx- z!FNC%V+NTPfI|40h-urd)IFL3GYuIny6o=wp9NhLwyiIK;uE?H9;pFjid8Ia(Y;Cl zP6E7F2TVKTE6Z-WXl}vtrQ*SV$Qvbj_E3wbd_r{PDNTuC!0G|hC9LL_cZ<~)EL7H0 zqO;cxHfz;QJ?KoKtn4x*guep6Zxd}{V_meiQ(j@<-SwL0STL;7s*Z4>Xuz%H4j1p% zXTUsb84uGnt^tEPmtCs6Y1O>xQs9L(#RlXTGwmbDRV-KPR^pBpK&K3UG!k|bxXm!p zEdX)?g+>oT5Nc#)k1~Qn3q2HY#k0;L2D&V z;LEO_3Pz%V(6ll88QsZ$;Ut=^28`zoE(7Q&0wCmGd1DufhJgj*&}EY(9E5gkvPLXo z1&fsBSL)8dxIMungEU0UCg=@CF}*!5i#1=V8?YAZ1$G~c6(lOs7!(`!qS=_dDZiTo_t9aKd zhf~kJ@kCt%U}VX`YTUKpHP&Vz6k+5GMfYAXX)_S>mbq`IPoR;luOxLRBR_KmJ-6Mp?v%-pbu`}F} zBw1na71tia&H%Y#Sp&BaQZcD%88{oB&2!{o+0Y9`gDfP8pfYV+DxPx7owfi&dIriTmW#w=xjU~VSN7LVI%NZEC7+|?N< zgx3SQ6);SDS*zThPpJZ3s||RqGomMiuQX>OfHGgT#e&rYPP!uA%^Cjn?T5eGN`IS> z6~gLTaWey0+G?u~@Rzv+LCWiuqB}RNs>J33CfzsV)WF}s(g(iUPN9NVbz@HUR7T%x zgU!Vn$>x-QJG!y19?uvDOrbt@46p*Qn&5=p@Z(aDx7gZW#OAzFH1K%F1PzAOwVQ$i z4NVX#Kr@>u;vE+0h`W@Y1LAP!eHeqbuR(63h=UjxdR2qom+-OU4V-v6@2qj-6gof zgn~e0R>qkFKrsW^6bN;kvU%I!`dR_2taytHD1V8Dh_wauul>wf*zOn`AB@x}X57Lr zU~XMT5J1}_`yZddzy2z0_4d0TU&&(`%@}Nr6OO%NDRTQ1!*4@ z`YkSht%YoHGN2sJR?i8q1NN}N6(`&CJAd_J>5Y4{!DdAFNHo=1F5C~x~2B7E@3>}YRW1bVP z@N+&VC25R|RINVwDh$N9k5j^N<2}NNx>QJigYOGb_GqCoYFq5wRIJgut&$5?v$=YJ zVTlq}^4>areM&gYMVV^zn~XB9nS)q@d??n4+{k}xs~jJhymQafk3Cg3J*VJgDikj&YWE8~Dc8DAVHJ}7(} z){o@@00A5Y_^U9zZS-1Z&!L=K{$Kxp{_B*CA4~a{mHQ*I_a7kbWB=`T_3igRzM2k; zF&ul&7(~(@BiEjr%;Jt8qJ}3ZXyQzrN<8(hsvwy7uZ0j9Fjr11$SGp&s;=A_Vu1G* zsy1#5hGA=+e}bG>(=;PMURFj$#Tjd1l&31lx}8@5;&F>Pt2HU`V_?vJ2i9wU40-Z# zUI8d_@;X=QwU!%9ZVrXw`!MgLJ&q{AQUZ%l1rAYRo7V)v78q(UgIMle;~@nb zOVcH8#=>RGYY(kyTL)gQ^9c%n0PBOLRMJWyHo#E|e7_fvIGBDuuRsgnvB#FWGNfJ7 zsyW^gYytpyJik-{@Ew2{FBpD!xiA?ZF|K%H`sqCkKcWB_qJr^&VpUK|Kxer70<<`y zP0iOUfHlfkCd~mGH*EFL0yrIF2o8S(N^t!hxRip$oLXTV2hgP~Sou_cLjaYCqn^Km zo!wKwT#suek%=e91ko9S0N}UN3L5BBz-Z0kG%{f_0akzr;inv^^SlBOHvHUPp^VHg75La~aa zRnAXztI;Ka9nx>tI75wpiDYh1(7#z{{?iN2qq*9*@>;5lg+mC^z6UEM_?5 z-6waA<@^v0rhHFbVQiTEwHPuC-tS?|QOgsc6Hm;Uw{9@_C4mor?J3)VFJPO%_@1Bu z{wl9n=dK$D79gLPL}3$Qa^qZ=D*#byYmo-`6w?6VNEYBoYwl9BwR-&>G}{G)JS-pq z0BeBw5i>2PF;rx<>+b+|$aAr6AgEaZ?MtYD<0)!q!vFQJx${t%Q9@3afaT^EOoE*^Jto@ z!U6(MZxAnVSNJJuo%5#UcHZfI{rd&uf4iiy{_p$yk}bDR!C!yzJNoJ2rhSLabju@KFVE_#|Hm0`XU74(XLb6bQ1ovAK=CUUI1xS@$b7`zn zpvNWK+G3#=(HmnN4Q?BdG&NXcTe2UQ{Qm#^qtAEy{V!jjVD7v3{PpwCKYjh$n}vKk z0WF1zcU8-13A26glm%`(RlBbca7<5nijW)41DZDnH3cJ{+z?IEVgGyf`m&_JaXo!4 zZu>PrqcwqlD`HN2Ms?VbD-Vl#V#0eaw)ox$15_bD7#!6gbH;JU>GRAcYwgmL}b0uoeR#X#;++S}}T0 zdFL>*vuNZQQd<=SZ5j+P#w!D>On=JU_1<#?qlB3U?qq)J!pmt5xCn0QzDUqP9UJIQ z;gCdsmIB~a2YMgE7_Bv6 z5W!v^xxW_({f_ndy+r7L z4==wN4KQH=c4IEb#4G`fj5&j^i~*xs&TGh7F(ZP(bq-7ktmKx8c@M+FY@VK=p-d2< ziU|*%3RY!vm5#@lYSBlYPtahE;Soz&bEPvnVwmR|fCf4U%ri8=?`=Vxm$W%@L0DH<6BtkU<^dqGDBtk zis>E>3+_6(MWl>x@w_KFl9aGwRRDo`d{*F=3v5nHiK*;`W+2*x*^vZ)Bz?b8@qpmL zd{&4|mRQcZu9^zQBZ-WKUmTwm5ZP^J?F@6a4otZL8FZ4y_m+%*rnfBUu%_ZJ&%zkl!TqBz3BV?4*}pV67%ByibDyo6f? z%zaARec}8+RG9zED`>rcu&#hqX77bG8@LE;DS4yy4<7Uqp%0c4d6w44iio^bD+?T8 zf%|CPvFL|dmR4`oqgJ|qsc#ethzP0=)*5Q4yU3`xy%L(Q$eg%icbeg&VqoN}GjVNa zZYz6R7_E@g{Ymc|g|Z@bOSa&e+5`_B5@0kKjAVPZ9xf5ulT{LbdeEGjw~P{NEX*3% z(q@_WA+gWWTCHg*fY(F!fZ1hTpTH7&i`DeoMOtTBj9+k80)TQbyBu~24mXQAk@X_2 ztt834O67)Yt_u?yUU4o18C%va(z<)p0b)6=_LA{tO9v@iY4n6;eC%17KPeTIVg=i4 zh0LgFtbYg$piGB<9_8ELFSaaxe6|1b{;qS!FYkZwU2f-hAWFyESha<~NU#9<+5+@~ zvF1)%4r#%H=V_WINFip-!{QhQ;EcVpQoz1x`{Dq+Ghcgu-vH@~qUQ)B55 zfN)@@p{l0k-X^~)Zkq5kZ!rWd)|MCEsw>aBm{n@&F>(Ck#bo@^MK7BQ{V4_RJ8gwt zl|qu0T9M4%Ra+r3&U1ADOSr{lpaAh{isH(qEu=7c_NsUh1rxBqSvDq{r>7}Oo1qwR z?^|EUVg}3gG(}ko+%kyXw&u?2^b1Bm+yaLSetMcBH6Vz}%5;UBZB{B+ zv9dPZfN`uKN*>{uM-!A#nhhKiV2mZf* z{`!?%1;lAZSgtU&m9)hPs{_!GvpP`erNUX#Jz<)EHf2Ku_z5@-F9shv9j^607wOsB z0CJZ@FplD;(uxrZWTJ0&q1OQcFB?WD30wDsjv8W^CGs4BsUf8Dr1hfu~ zz}VG?Fv>m85OUA=i8{~Lt}MN|BTE&*Ev@Pma3=y#fos+L!h1ejdy|EKbE{v!S zF^blIy^AxI=wj^*L@-v^Re04JS<7fF!#}|UL%ev_)$K(w(^u`7ex! zMV%Ag5^&N4ny5|Hch8u6DS&Sn>)0_`)iG zb;rxwrm=UclV>Z&QteniwVx8c9jm>hq}vyU7*cYF%z7P~d!k!37CFi#2%1cN~sTy|Exu|9Y3v43GvJD_WI*nJu-+A9ZHC?SK7;FV@nc0}WRwC44cu-H%(Q21 zh5<~LPKr+xB)Jte3`i@iFFPjuE-XxC;lg@SJiwZ;Wg!zci|5(!Dtzy%(`CNspYU|? zJt?dO3=w=Q;0q8`Dv8CNL$R*g_SO0ys|WY6ehnSUhOlx{XKY(xUAR>1W|hEya&~H~ zf&gWvu5dGDBUH8&6pBt~OEts&{-} z?W}$*50A`@f@|4%w9F$WT7as3`Z_Cq!DuNKg4<-T$yva}!s;@xCSy7)ewZ+R-hiF9 z03pwrB8(M_^R5A+ds4h(mbb+wwO&eN`wzSim7>sALpyu-t96i3c0n|MsSJB!N4y?@ zH`&tcz6r{y_IbC$iAf@JZvP9S@t1$YA=E=pRd1yT(z1+lz}+xOT-S? zLosVX{_n#XpRb>ZRk?^{Jn?4hUw!^krY%i!DjBTtM8q46*+3|Dfvs)YJEJv!fCXV}uGYVA-Q&~9 zm;GquQg=8Wf@OF|v3FZ`dE(XSSN_3M3A|H^H&T2{-3 zD>9ooX|FspU()7%mA=RIvo34a7TMb{Z1&cI>DmRhV@k^VV)303(%BgdRNQ4HcD?P( z0{hRxnv|>cCk6U{5$SO8V_O9~O|YDBRu<{6FV~;dYnYPPR!NSf)xekcjJ70tHM?B@ zyp?QTK=YNQaRA{ecLD%*BeCbz`X#5Vy-BY7mb?wXIN-smZm;7-aj*;Y1OH;EqX5iD z*fwV~a@N?aEz67j(C6zf5hD)d_BF_D#yodk&fs_^5P7_RT7T8FSP2n0H?>t)Ab zq5--0`xx8j>u=L@#T>{aSd(>eZ5J{8y4Ac?uhwrFe5IxsDrgs+T49q^meR>E{6JNg z>t7oTW_7k0=%L4~x!Po@)KO}V^J@KrB@AzU#9A9W2+c8%gW2P)TDW}ujh(A^Fgh%@ z2FNUh38n^rCzvZw?5@_2xnE6^Dey{;psqY5FARe9?V2xNf39@^xcM+$WVX^ep4zY~ zVilLm=f8JR9bLA<{0gR`ma#{VrNrhfUkxw%WR2u$%5HX;@!$_-JDb~qNBHu~{m(R} zPmbnH59*3P>&kI&{C{I7@vHR%*Y%ux&n(}_jJgqjRj~qhQl0U>f%xMyG^t9Jp43! zdR;$%47{h*XZB3HTG{Cq)$Kt3K2^!$3bF~Y{Tgc zx4c<}`=tKfSy3^7#3hM9PXRDqM2555)Vz;>oqb$9Xh7egg)$?o2+(2gsY>%4@_5lP z@nP`;g9HZz=wG-xBe;*TuwO`nRc+21Czh?6Lvq;}xH@9?15+$vdH)G-d)D@_0-Vy&aF+MZ(4fw`PD?F(;|ohu`z3J4O6MOg|;Tqid<_gP@FIX(%bzi!dUmRDYX zf?)DGCX?IQi3u{p+`N=nUa`Z`I{6&@EUScveiGLH=ZC*6%J7PyZ#CZEz5ngwKfc@* zgX2d({pkyDlEQs{;>EV{y5Qobu{mO6xHl{6ta=|4aY7L=nwFl)msvoxgD7aTD4qhz z)OeaAWq;JPcWhZITcdTB^zV`Wv-&K5Pg8{dCcpun2}TTS2WAaqXcbJKjOkvFEBfd9 z?aRAg`)~c{`?%>p{pwBE^BuE>0URd_J6bS62w7oj3T1!EB0ZU4c^* z5Sy~ctJ{6yfrBc1G}{a2ed=7S5M!+-b}UrYn4h3R05Lo=4K8=sFirih&ziEX8TNk0Q?T@whX$4=v5lY&EZxVfGV+4;v?r*rk+d-v zJuQ={HGuRofof?fSj*3tQQ(t69F&DzYM{6EY@#lZO?5Xh)q#nfBv$5eUWSYpI^M;T260&?|@`mxs}NV>&0=5ZhH{jhk6=2)6+vKP$K zU|_Qj=ERQ5#>Xec7dZJL4UiJhnVWJ_0Y{-&(e`0ZOIU)G@IEiu>@P!h-M7PKvh%^TbXDletJineoI_HCf(&J&&_@50966 zG69xjR%3vj*TQmB5?Lz!toR{pjX+c0fOEsLDmkQEs(A)kI6HGjo0ud~O0GJh_@2u4qi003yB-#M&#P`{>ztmqNGZaOJ@w3hRNx;l+QA*M z4#eJO4=fzH+hiNDaY8h#ACtHlckQ|Ltx=|6Y8QpU^7}pAheXeRSZi_*0Q&@ki}8TD zNdTzYtn_`MXjUdGYsTGDU5!C)csFYf3mxVleV+|HOLybW3X8u~wt8pBjXo;NE36>v zMe@UQb=ziF&IG-<#Fv>h5W=sAgCjE@Bnjz%tvq`mNaeeTCNN z>V7QF`nkGi?Y-rHGIS+akEQD2Hbe82k7B-g;gE zCi^I0jEpImFkD6P`a;wW?3dT9M-=?r|A7h8fBQ~zhX4HPwM%c=X&Tb45lmyxu?E;! zcm|-_Kuc3SCp~#Lk8IWi*cfK@$q1hWAXzg=MLR2heI~Z>z(eFxD%;J@t!nGm&tlj) z=`bNn7Cd_@0$P|_-DCH;Wmn_j*-7a$M01wd+KI(y6a=wjCe+)#Z#^fyIG$esaa#jE z&wwgrWGifu!5R-I@121`^pi0FeBr$+d}miFEYlj>eTkb#rPsyaaYnzz)Z?z8&g@zU z^ua@al63OkZA4eLsGM-f3&^AFQrVw{b>7mk`ToV?cb)p}7eBm;3oyg>thx$WA>eEe z#aXyAtOVb9A9nPJV4g#^jkgUyu?2#)u;M82BYSbK!-B!kSVJRpNk9w90c~=4W7BsOVK0pWkI`Z%V|hO;cvnuaSOTXU7I6jh zu4}N28jC91alwFc5wB@7onJ!>0e9YfXJvYtJ}&rgpZ|HEu>H$lm;J@J2}KNJvl63! zH#huwXT9{qPFA7Fj1nFen8ga45LgG^sH+>RM#R9h>z1R8hXod`*eR8 zocsshy_NfzH3l}@*0RGbc&cG!Qf^*wKkY$rv4Q~4#d)w|6i}4}O9wKhMX)aOgW{M+ zP(rW@@It#cODneoYTOzo#(GekhRz-_>{A%wBh_wU95;J3NIf1Ex5s41OLh#|aB#la ze^OOpIxd5RpARAny4SSNB9N94&hArs2l|1M1f1lBG0+K@alhl-wRuI+$=tc6383x}9+mV33 z)ceEj!)o-_)DJ6(6@lmQ$u7+nR!d>8{z}U118U|p&j3*!UNa8H9kh{y5Vc0B`AKT3 z!zcg*hb3NF>NwGw4XFX}vrK=I8oYq+khf;x1_q=1Gsq5{=`uFMd6pX3lq6Z9e{2g7 z6J`NmO&s8`EOzrOHIvT++t;PQZx8mKvc)9*!8-Z*S%Zer@(oci@p_#9*Br zJ^mpEaa1y zRR#viVZkQ56rjr;W&pb?ePMy{BoB~fC#{DCv+{Bh^9a&|DOwm?9DUpj3Ru-~!GlP) zXApnc>{(|Z$s^5Hq`>sv_lI~uus2Wwwh)UkjgkPAZ`*NmfD#i+9u~YLe}rmt0E_@Q zuy=KBaWzKjIX*u=-Bz!=kkkOv^)S1v#7y1R0$=1kVtS%rfOJWXJM#oW(dh8N>e%T; z1kV_+(`-PNGqEX30jQoM=a3XkB&LQt(&Nv(%K{|X9(vl!F5_XEhyw~`U+KOm+}j2J z_fId(>8mn6uAkrSPyN>ye?3n=e|-HK(uZj^>|K2uo92}i{;U%k^5*9x9C0XwsFFcX+$aD#qOY*n@h2_TcL53Fo} znYaMBH_UQd>*&~4TT2+~UEn`DJGAU&9`a)4@)sxkZx-9;t`Quif0{E_0R#sBn;AyK zy;$1^#afeq6&qM-4lr1Nv_N8l1AP^C{W~glz&fgWfI|ZD21y943b}ITbUQ4zEBnxl z-B+YHbu)Z0Gv1kbN?HzzWh)GJlMl}RLVG(~I_kir1(TKd=qvl%0v`Kx=%QQC;|lg& z@kB8L8?@UI)0%t4e~o9Y>!@7VLri(V85Y1`qI7Po0t%`%7fYZVm5UkKdf3X=o9wok zQ>$!yg2jrdRrgW3m?t)DYA$Rfb=#z2N<|H#3STge%H{5D?(BHN;Km5fzqD@F4+v$Z z`-JJY%U#tcAYF<(>{hTutt{Ar;P6CkKQg|5U;qBt=U*o`fBfVoMlFc?5Pf{Z+4h09mK9#|G2 zUXKY3E*@3$%erI!_}~ZMrE6-|-KuTI<(4{FP_4|;fOXh{DLg1n7lSBTU5Jljf3J$`w7a9`31>MIP&?QG58tq)+K}+*!%kByp4lvysR?gDrogu;yQge; z%?HITp8{6FEG(-T*qR3;%qCwv*}4x$eN`MlITLuC<+0gX2GD@nq8VN@!)}(x#PN?8 zxa@5grH3y1{N>a8k1wwH`thsR(Ot}p2L|9OEeR}7f7;^Uv3T&Y2*6H=j$wdJ7B(R% zJ2x$jiDd?`9U70F&xm$+#=Q(CS1G$e7B=7;ikS(k6i!Bo_3p8>Sn{C3d70h(XL~&yC37$hOjm4 zeFfErbSroo&!XLJCpa}Yp9~M10G2XnZ#^R#e<(5I$p(e8dEQ*QgJHNNv0dL8(cl^@ zRIEU(liDy84ScJOTTTpC(+Sb=;H-8K3ntqHgW~p3w(8!}Z2SlWolq$}YwL(B-kn ze{s>j|M)$(`-+(Nzpd}Ve&HLd$fb&x>}LRz>}~59ZNQWRp0@d!o${aaAtw| zmQ-1{x^yOo0wE+&9_tCbc+3ah)`y>8B*B0E?8jGp<^L&T#+9-fgP`GjF~31CQ%C|( zaY$%_Tj^ewFq6LR!X2gBnhGYle}wxs32ziCI*L~Km;t}il4FrOb6J3Qcm%VK3GLc9 zkAh-kIPNrv)mf))to0Ykb8i%?x5kQq1wtUR63{zLW;O@D8FpWq>8(QXeq{7r8@x5U zTNtCg$^u&&x!>n#y-_IU9!oOfRapcIgD0}Vf^C~g5AA-nyisV|9&g=Wf7E(r!GjE` zm}XV+qO2Z!`var68*oLeql{Vz>26I=xH!kXwRodYm#GOLwygna62PyP11Z}Q!0r3k zmA492*PJ7(e~!?xp7t%4%!Dm8Fb6IX+5zZh>v4{hYLU{kW;j-Ewu@uz>NQ#m3Kk4L@E2@yLmd`q3arm|e~s41($}7*bwmeDS*&@r9grZzn(OF+seJH|*Jz!d!*V#u z(AI{3+$z8#086l^0AUBUt|&n4txeXAV{2}SaF9IZ^HpCkMCiA_UjqNfu71#r|LY_E&E)PcFS40#pMC!6+jrh3e}af#VyFgh)8;a^ zQx?mNZU^|c70Y;z7G>d*y=*rVrm^M>3IOU7a{~^v_#7=QgW0imx3kF?Tes#2btKoK zE9K{C0lDJ-T=202>sW!)?BI+?^#XLa4{7<;Kc@U&FY?wuV2XU~zs>dOr~iE8H3_#& zrx6;+76@BsU?*T~f6N$&%FUVnB7^;yk~~XbI;FZ~j5k)4jvR|F#qzIHo}&bB6Eme@ zwZ_SoxmrLZm|*H4QU09aDw14au%T!GwoC@BGt~jhB75EQDM}2lVYAdQh-Dt0SZBg3 ziv?Qra=*?FDjD2LWbq2EjV)iZM|KBXrh}e_%0#{X{hq@z$X5>i4a< zjw%sM+MPj?Ci|voT$o+#Zopb+?S2>QA|;*0*@eMVd+vo*rKN=y7$6jtIfVaz?!rNV zW@RZGK>yX|6x>;6BVnEJjL%sFV{>D=PWJ5tkT;zIFTQqM%+0#*32;z}hsL(oK`S${ zvA!lNPr-~1f6YzWbDjinfn^ba?h|;@Dnn%hwh)6wn7{BGB^wMfFVTQS-LmwX?ZEP@ zpprT3la#>Pfp9CU2S^ftBF386LT*{~Im>zGy&aUwv%-0T>4WsMJj=%D<#vD6a#YDG z7T`G39L)HDHJX;Y|Xku*~NOkEKN##S7NU0 za>;Twa_eMzU+3$XlK=kc1-g7l-WRRmz9`z)`h`Dz{oRkRyk%^L?E>RoN@dbJ-0lR6 zVH{UV@xJrkgTk300WLUQz{p}?-=G~UAg8eh#(gB|qrw>$-D8|Es0oxDOa)U~J>6>W z`?+Bee+J(JGy7s!b(UjYCC8u)xLxBuoN zq;vDUG2;^xg}q~hl_>)=^km|V?xM4u6uzaikNRF%IooX-2OKm!G5G!53vH}%sm?v! zrN9BRF3TffwBZ!CoO_{G+|o>28{8(_bh)nV?0(llg!Vb%m@cWbm@2&*$a2yE1JKIy zf54_(=Y|F23~c0WiH!t`r7YwvWnskYl6G!|E;e`q1=$#teVdV`EcV~Q^Q3%#WcH}= zQ9@P5Tcwy7!48<*+Q3vdpx1WJD(;dnRTL{;0T`Ebyu^(MD8ON4AZLVs`}<`D(Kktf zFTSHZzit1CpZ@3yI@eI)L#tpxv70Fte_OASnK5|F!S$d}>A;8$;7W74RoZ}=;jvIK zzIMMvC_E}iEG*kFXG;|q;;N_%F;K4nLZEkVJa@7bE8YPC#BB|F`ApTu@4Ca#%C)R;H)u$0tP%coSx5K1^`$&HWzZK?4l95^?<=82IpGBieEEZyHB3{#~rWHI+EpO){;nzxw*B*Ti6l4m^*(L zX?>{u>9e$Qd%g60t7`jJLYU8#6Mn`DNRc)T3Nt#N5abGnOL1M=gzFJON91-B~;-B7gp?K%0<$8 z3$I}xr<}?~S|<<(D+jZ7CWlbidfZuiG3{}mKK3-N@RB)$7s1_Z%stQwdPMy_N{NbCFgyfH5%! z_Jcp~q6N?Z1asfc9LGgk*RsJ@RS}MeZ8cb#O2JP0a%pnWv!;0KlEviWSOJ__gD~Kk zH_&?BbzP(tOT<=ZhQ~H0$hdA$KaeuG4QqOp){QZ(23Qeue*`D!_}56>v4C0cc9GVZ z;T*@hoso2WG2`uSo&W>GmwJtv1+txaZmJpGcvhOYRnjvH5KP$@*2|Vs@Aoev(k)zu`uWD5wkAWd(m?OY>56--#QCFBV#WAkZTBNp8 zm=Y=uh}4<&C_-|8-(6&z6b>BNuA~TT#h&o&g`DAMM-Y0WYqZwjmUGJUR@PHpv|hoDUe{U!K&fh90Kc_QTRY#9 z+GI;9e^>d}VI`#&WHFpw`gXsu?mSmyy5B|q)oW^SJXzW2;ufrgC0uvP>~ByG^7~h{ zu3KPhYhy0vU2T>JXI*&E(*S6G5k_RkOxDedd2CD|E48I8#@;hv=U1_-#mqNXmh5AP zDt21h4B(n9=PU6dPq+3QnZY}FzlzDU9M-Ave?SRVa_L3yb#LK54SXs7WE~PVcPcp< z{!4xpliXXm#kbgF2#RDH`;-(|;Zeadk6DR!+o~7L)G(yA87{TjUHscBicQ*nn!`AXzkx7>IkQYQ0%a2X|u~LObkO%*tMjwaI32_f{vH1|39K zuL3uN=G7N?V8l0+&H3^*T7gzm>S6V9DDDN1q#~GJz>+lwO$T=` zyk}=stC|48>s~2UR$^hhXDFEY5}`fiTm5?2lC^>eKF+CEW4vPmscaW%T|mDpf5+yq z>+IbQCJP_s9CM7LT%+}pleAa0j@X#^l6Ks!Cais+8o;Jr2MG1p^CGRehLkrqqZ^QE zub?~&OEcFkRcE|ND~t~y8;Bh6S*Vub@#^flSeU*ZBs;Hb^#rfj@iIfMb1ikAD2A;V zYIc#jNb3gbPc_Cp;o&n(L!4V9e^yi~>|%e7RyXjfRxo{~d9B=FgNfJ7cpYzk(QLxc zF495(5OE+=^4Q#fK0x4`9^9IKRV$#Q50{$on;BQ0ai+>XO9R%T#EaG|xGQ_84guni zI&6i|n_$3MohlxT_;_9GoCGO82m81U#tTM5lT}%C^kA68t6I0sX`-;gf95P z?!2xQq|{(yRIxJW#`kAxtcw)!pN)Qz)=|9$kWnZ}czFQMY)QoOOe`09(FmuN3M_5O zfIj%vnm|UNk-5Ut02*C1f5Nb)JUal)S~^65PD;Qd0-6|IYq>~kEzo8QKWtCna%D_4 zm&ELbrt>1Lj51i8Ej1<{b4Qq-!H{p;dHF@lv6mIOebgMJbrojJfKU(CQ*cb?gJA4c ztqR!e&f}8aV9?u^WyJ&L(eMTCe34d6Cef~e-H}F<5M~Os5hrXwe}!?8*6P3_8iGdl z#$Z@R0~myN5jJcI7inEUVKwD83&0?T7~TcO-j*p7wDlUT@K+6BNb$IxZ8tYu7*969 zof!VHF48(X)=G4-GTH>*hRehvYAXf@;jR~H-B4z?hS7V~+deD+0v0Z2Faw9K(b|}v z(|ZRJECEnqfuIi7fBAO?C~CV#YY&?NdC-K(%W`MKxx*mzvQ_g%&kDQCbc4W(`1m%@ zSfjC~+1d>p{iu|tM13e3+?SY?{gu#>f47(0KD+FLS_M|tN3WQu z8cd!2Kd=rnu)|IVVUZ0$oH=*~E2WpY@nBO+3DZ)_$KJ{o?(iER91m24!RrxIYqdH- zKFTpize{Fq&jDP59d{MYo8J0s@`^)acgv&hGm;9a7O&a)aH8tQ5}E zYGrek;KIHGp5+ND@W+2Xc#&dwNFWGYfqQ3oMh<)OM3e!naF2aYzYmT-q+;(<;Ru%X zl$8cKXvkpYV&FgfexK)!Dn7oyoA>zO2j9I_YlNu?e*mx9aRYF`*_y+=46G=gqCF_i zBFOQ`BQr;hopegeIoss%RR&6aR9v!dwnsH~6I_d!Xz65gj%9vd2Nx=0X;}9M#SM5A$zSknp1XM$#oVBmC^HjmyN_-K{6Oe%(cgFj%3xaJD( zEeT>De-&r!8PT)>!u7(^RLS;av{k_xyibaMRovonT=pERCRg1&q7$Xhu^yte2gLyr zPzN;hj{6e-8LnATU`S=vwX#`6H4eyi{NrIV>23 zkF9w`7z`jSZ9eaN%0E+bPt36!!a7^w7D|hGhQ|vEBb?;E0{2r@E9Q6E(HII78+d#T z#(e%5hu7TJm8zS}4AWb4$bha(B>>}Tr8y`s>fbz7HPcQs)vy>ixEY5~cmPpZs(Y;a ze}?W)Rc*5@7FC1ctHYh4p+LG;YTtd7`&JiERXqaK?wQ&gz-bPu)E(F-l)QC?d$;gZ z)h^)kvNC%@*EH4|aC2-6Uxk}j`$E;AENjjs@b|1pCOg5?B$#)BZyo)_fP?Y*Zq*rC z#TJ{SKO-44 zgN2NUia@Br4%mFVu#%{m%L&P=ktl~v>;za1IG42z*WSWN`@~vfH9gvp0CKf+f3*?@ z<_Vr-OH9E|_^FLWvTd;K(VWGr2|TI`tC4{prU&Q7r~cc|>)o&Y9_#7>mmMp=haMG~jQ8)fto-k3ntt#m`T6QC?tF_JuikMTM9au9h ztHEQj!z1?defxwDzkK-7w{O#(?b1synHt#j)iP*iTVTmT9T4PcW`}U$G-dhBkgKRM+bb}MGxFCH;Tn1E>OD-(SFIyiJ*IQx1O09N{78Nr^W0R~B|2gL&Q<%H)CZtNaW87z~S znXIh(Ym|M-uG7R(p_`0iu(zppQE???RU%g3+1j!#}l zu9}?H?%{oQ0I*1LS!rN)+>X|4`;=^&M;(bi#90{yj(CF%e@g<8EwawYuBDD*tdIw8 z2h-*$loYTO=?e3VXJlIny~W6q3~=;`(bGAn*itUQ6|0|;okR7x`v@ronxE9;WTRY$ zE7vWjWWy~%3|ovC%cV3R-UOe*U5y~+)P0Xt;pJw9rJEIQiQP*|Q1+p)wrre{J>jKh z^uoquyMQt}f2Pd9T-2)k?3C=;H1k+8U~p&5b=iblVSv4B@>BP{SY)uWsBUZn55Pjw zZDlr!0W5#vY9Esg2nKeSmuUDbW{zI}llJCJa7~X|rN& zKQ$)Ya1!oRVA9Eg`8V#YMQ}T&&D@s@cun>Z`}W_re*${EZqX(HuK>sJrtRsa0WD9Yxc=bM}x5u%uNY39G1%#)wN8XZ~||)Ho}(N zLf;`_e--LcxiJr8Q&!l`TA7Yp@*b=W;3EXp<8nxLyXdP``d?=Rbhu{W_GVzWZf$9|Tx6$N ze*t6o<59VEc%79MOG^n*VD|#IYNol5Bx4`3r zhI*2Xl|K8ZKmjFUFa}}zuH&fO1v8o*6e7#Q9D)4|&ZMGS5m&(f!*bzeVU}4BFzF6O z^M+{#-j|w8VtiQc=g;py{C4ar8g-(Xf6`&qxj;f?w!MfKKpa@KEQbZdW(kNF5O$k= z;ynk9q4&{XE8RjoF4zEjqIQrDxZ}C4h6pp<&AjDV`*FdngWfWv=g^}Fpvvg8xm0L` z%EN-Q`)mP{+r3>7N8wrimK&!-|jA>KwVkqNgweI|J%rf5EW5 z@XDYTohH5utU9X^&>z7L%yC#Sd5b!DVsg&lu+lfC)Cjg%3z01|QQCKQ~-EQ8X$UGV1*FA2bJ>&w4BeER!OUw`-G zD{q~a)AE@4N?77ygg=@!eY$On{A?GwV14;#S=}7uNv_J^*v- zsk=|G&oV#(S}mYxWhSP@^Y{n0yS>Qzef;i==g}h1v*Rd0k!82ibxt~j*;+lV000%1 zk*KmNv)r-L+_98XD0qYyEd?G|0Ee4hF)9udH)b$)3172#;pBT!Q|y3(e;G_y0J7kxW>B}q9+nP{z=k{_OfV5{ zdM9U{{_}S~Vlf`OajxRV;Q{IlGvTe@b`a0M;9C-f?Yv_hU}dg7HI`<{m8D@yJgs2u z0iKfwysfcu9}DI}1N&O;f7tH3eZF=4f85FzzkmHw8h~6Uky-GRw8jmTPtXz8c9nVG zN$6qe#wf@dYfOy0-!fdo#-|`ErQdILJ}Mo21n5PYv8;zCwNcb_(9BY-YaEdNC6)Ql zmr?s)KmYMnw;$KLzrB0+&fk4`_vzg)C*=J6?&G@;C$9hX-8g?Ae?15mHQBk91qTs! z?u>zs+`?~b)#HLk3jy3<*TjyG8cLXX2j{nOw##1EcqvPTXG?6SHV=_VX}reP6!6{X4DaEZW+A^P`>B1 zWac$!jSdS2p-Y(qo4Bprx+WfRk@Rq6bHQZhHcUG%n2uTs zD`hFX&;8K#w^#P^bZ8T+=evePYBHf6XYU&~d>Km0NF(9nr7= zfoN)So9t#$$M^aOyiqVDuFY47c{^&`6$ra?8)T%3p+7#x#zq5xR{~iKxCF}XI|e)m zsP-=Tu;3|c#RMZ!1BN%c^n5!K?#iy}EglxUBO~&_+rg}Wl-~N7aVEq;ewcfYfp6@?@{H6cl*_GnR-vM~k%NNx@rkxY_<;%|>PT%5}cYk01 z9v}LrJCpYQw~zn$^3(6Xef|1dJE98|xh=TCM;ny6yu) zj;SaBEx8#y7-$1X-wG2?yrmqRL8t0m0| zf3)j6Ee1fdHUkteHfrCayEm)opa1^nEBVQfzD*jHCnUw+MtO51@f;{RG36bh_!3Ac2hz z*5hM1LSSLJ3>@lgO2I#22l3W1k90gfZ5YKlI!|^$f*G(h3!o?&WgIYo^0>fNf6^jD zEpsrQrP^8*;0%+K6|x_G%eOyYK!7)2mkwT+4_+q+uPYB;_v?q>-hcUUpZoUp!?#>` zXY102^u z0#;$A;xz+UE`y9U_4x19E*Y6cOKc+;d1xuK-x~y?qWou5Xn_ouj zDf&~CG+>;??j?YnK%Qw8XM`v-+_%U*LO-g6d(pcUumQ}mSsg@hz=!9se|C-SIm2a5 zS`auUjU@}qPh+uLEYr+b)Bh<-Fh&u`ziPqFml$S_8L$Z|io#R3=O|(Mr(tXdt4so7 zTl=OwM~OSwdd_f-#VFMUf`PSnE3nc8jAM2@3oCIxMTu`>a$(OJ3=~hnD^ut5-tMdC z=a>}$5nwkmKjq#`F}5yYfBWTI1E3<$QL=IxZ80wx499X>*_huqj3-g^Im5L_&N1LY znu``2H8Je6R4f-6@|+dVpI`2!o)DFuCn`Tr)bY3exAp1Q_n%)Nkl#Ol{YpC2%)~ga zse?x`9}Mh*RiLN#lsvUl!b^;dh4N}GF9vTdwz-$#n;lZ`n>arxf1H)<;s2{ghb34o zhXym3M`U(eyH6c`Pzaj-S_xlY)AqVdU!ae*ZTl7&HN zdzKXIrZM-I#7*t(!QW4X*7=rB?_k&O)@y8*L%(`H$4{MFe~wLL=E%Lj*~h7x8n%_oRgKWhUEUuT(pk;yD@M7VmQp@9?G39-dmz5{)mMdr^j z$r^rfDMHTWu%;stDxL!KzlmE<9=*sUb6>!LnOPzJ4Z4w($TFq|ti(Ji#`H3i96+fyj#{Yr-p4CTVy63`efDDEAkDX=i}Xzm=7QY@o`Yj6ryjO#6! z8e45k4$E=6$-{r1_NWssb?0B|&%ZRBf9Xjb<85_u9pjm!^Z3O#t|NUgb!wW3m1wi2 zWRVWdISqn7XuHoFOoQm#$S%+$`&CL%%ym>jh!U~ue-ON@=?XV*Sn&+e{LPd!}*4m@e4Zm>LsyrsVQ-{IfQ3!0g)8c%vgIsiU$~MPxZ&I7sa>=cX>?71Xg$ zjh)+gr)5FNkzz5udE;HbplQS}khILy-W6IT8sXGkO?EV$^T}Mv&e+2BXA`W6`E!zk zFXTeg92*#)+IUIqB-~)R%r-DrQqdr+nih(23axv|*U3VqgL_I8P6GV|(Xa&Xxvl^j zf6$nVzHcT7kzpa?1QNKL*wo^|Gfg}PO~)m%PpibeFE&KD1G|80Fjcctj@p5*L&9eG zMZM^Kt3ZN7XbcaTI7388WD=Mnb8w`!Zop>N&>~U2YMf|PE(4mC=v2Em>rK5UnU2;w zPH9iBsxzuG3=8Zz3D9>?Q5#IBXp(_%f1VNT(LjtTx6frQczSq_y2-S&rp3T~RBnJ* zX5YP^OswKl3R~WD5-70_EmqV*mo0?=qn|zv13lii1oSiuI-%!or|Lx|)uFzJ$%RbK zxGkO#Dzybx+N{u&-V9wb+;Jl)9(nQQf~GIo;lGJJ-7GU%Dd=N`C5W=c5wCe9e~}rs zs3(C9NPiHl3Yg{`$7s+;n&ArFxuw$;7IYs4G%-&ttQ`=1Njf^qamyyn_btdUYiV`Ctl=a_Ov2UdQ6y+xpkrWOJa|}-2f#8U!e)? z^x|tsgA?qIdwVa69SzqIGx}Pne_v%by~@;otpC&U7I(#(_s+43W-PdwjLyPAFvfl+< zrIo&A}o$)d|B+nU*JExAI3?~_J%iul)6xP%{aS_HpW>Cp00sHNn3s#GhQQJA^sPHD>E%(2D2_z z;kfJ=c9U_|=wgkNpeaPy1qE*1+75{e7UgA|@rK_xgJo`FP;GjlY@rU_L<9j%++-Ym z-N~?RT4r<|oL*+3e@Vn}PA98+#TQ+_{FVLwxGKT~JF!M}}uck|KdGeth`zxvjt%aphCe!#m_&gv+1 zOIB-hP@lwye|4Zd**bW4v1u^x2o#WWEmZhZ=(i}4<$a^|oT4oORHj>v6C!Rb@ogXs zv&P3Z>sD)r#E&I=?q^{3(}d{LAs9L8T((&UL8&&dwy1TAI6PbKeR!_cXa4fK(Rv;c zG?=A#O^VgpXgcDj%f?yF-fy$+m)sDka7fMtZe1ubf3=`^yAE+_<8Nm&hh{?&HJOuu zz#7>CkoDJ}ELJ?(y0TDxvAw6nv{ziO*PDZ$R-1y08?A$4HY480A(~Q{pz{vL%rvev zxAD0{$U+zxP##}w5QU)ax!b~LQ=e2*IMq5wU!jdb|D7h#p2$p3Hn)~Sopx+&@7Zf) zrSXu8e-;o67S~1hjVbxYBCQ*(SJvIGOq_2_Y@iZqVU?R9i=?vAiwRm|v3UCEJqY^A z;w3;cfdIf=%GmhZO90OwE@z5~(W5s(W=WQsqPwkarU;jvF=GZAU@?)|!{@-$0q0`! z>5bM)9d#B~ZZK0O%L!X1oiZhBjCG@buiobZK(7c_pv)x1`5JU4W=??`T4!cB*?Q#w zg+;qGW&oxHZ6e+{ZUCw4T&<^CZ<+m5;0Q{V;^wp_aEE!t;|d_~8O=GdY@#jAJH)c;ORhe}{Uhv7zzT-0=GyLeo6M`Y+e>`gQ&A_(~r9 z{`k!|E+m(5Og2*-n}P_G*6_hs%S@C_{JNCdNw)b%eTHGb*vReOSK;y1w=QK^VhZtw z=B}ZYBoTU?&9E_RH2uIv>wi;NgEDZVKFdXBgGZKnlrfnM%WtzDOLr<1LTGw$xA0-J zgU2K@Gx|Z=W?f@J{N!?a)+|{nc(ue8laq@j*K6!gwLSt`5DSvG5NmbZ`4zRJtAgTH zgw<`$6{H> z`0)D8vRwZkub1y1n>}1|ykd*lC8D}AGU!EhQ*toLGasV3+OT$+(N%VV+13oJdKKccpOA_KY z@Vf)p&HKBLH*epL)w%aa?=Sd#*5Rt#zdbtr_HW1Ye)`YPCx6`EL$nYsSt2xr?~cQb zA&uFBXVvSpURrWHK3>Zl5#u=!ApKqm8RqJoMSplZWx>i^o?! zdKmBS5ZLW=S027OT>9r%%UMrvWO0<}O!ep0!+iL~5uS%&;&ATrBj)wn@%r{3w|C>+ z!;2prK3w`I9Ju=FaNhleOVZ$W{okLeuC9IX&EfKYK7X9`r{$|J*M7Rge}B38c=zU6 z17E&AT6u8(%G8sm|LBX)_i*>%zL&4zx<9}vK6mButHZVbc06wddwcWjrT3YXuYMYE zB6{^7ANkhtf&KaR>Nh{#{Pf$ksk@K${q00co1fk<=RIfm$w>#8SI5Iwf4aXGH~HPX z`|v&f|9`Of%e}cr-yEOLs~@ipRbG}0pFYt0gI`Wxp5)Kt{g-n;d$9YXhm(KcpWnTy zAJB5~Uf*heef;nc;koaRFaF>D@cXO(bvW|bjDGwZXli`U!ttx42l~r@F6SMtzxwkH zw?Q9V*=Ji%?)K3a2Rldn!(Cq=mzp0>$H(KHx_{q)_r%yk5Af5EKVJRerhj^euDH1O z?+z1Q_kQNfqJhsBKl%ExGx>psj#lPf{JTj{FFzc=e{;(@uQ=QMAf_EH{CroeeQIDi ze7OE!Uh#~tT>i|xe?ENQ7I=e)hq!$A*YS_Xt0f*?`S9C=fqz|&Ji6^we!oWsRw>3n zIe*^%<6myBUj5U*9uI%_-0b@^cAn18A0EP!AM;>>{;`DzbDCGLULDSQ`W$bd3O;}w zF_QgK;&F)T-qMqAk8$q5mNS3&{y(n%c>Mm6rKj&@{pIoPe7XMkjvk!%u77a;@5i*z z&)B*D{ur@-|Ks88M?dQS-5`iu_rE^0aesg8aNYmDKV!jvJ087Ld_2C!KmOtK2_UW? zuRp9#I~@FS@=wb-hf8jLUIoj;k$YGF^Uv4se?FYL43M<(Ki7}Xe{lHdp_ac7r_XxJ z!239;J^tp{6Y&w@`0mZ&x}WQ(+uQ5<{>f$cUmW}2@zdd=ColHP(c^325BYL04}UAv zKe_Bl`TDEB@Ca=1$ajxMi=JHkXc+10KaZcjdv~MH#D@?6_^10Xjz9B8KfN8tNbxXT z);+|7)KNHj`SAHIy|3>eYoH(w;)cBYiL$<@=L?g5_5%0v3*OAzcTXX{B7&a3)}3?h zBVq8&4|rZTe8Y%4$H-l6pWgB(KYx?#?eNV@E_LT$>c4sEajy4C4|(*(p+Wuo;n1-) zJ*qSE+?5Zej<0@N{{C{+Dv8jsn|M}gA>qmY8AAb*D|MpZ@)iKYjP{-J_>>UkUu`FXP?K z-MA092j<)d$>7y*{_^Knzy0pZI=DyIKVBVo_0NCi-^O;d%doY>(gL4m1j|YH`0~I5e#ua#C zMhz??+-+@7oHWA-Se*pm9-pm+#|#a)X_@}!3HK9E@gH@An9OMjV#E98xvdAN!{ ze7yu@u)*t66}aNP)-;A2z8S$CdzaQrQ+I*PKINWRBF1zk%bU@Un6w))eb)6P>@JYP z6y34O=)E+vY-1GHybCT_XV;~rc7bfOM&;(z5<4r3**Tj@++dx!D*h7hvYQG}md2e9 zw`YfpX_Qqfx-wDy1%Dt%5u<9vc^_S{hC3##3Eo%9&9^P@Qg7|wZT$SV!QapIb*{lb zo_mI^rFf=_9a{0AN@B6{!VLR0p{qx+&+S>*1m{N=Bf|Bb1uirN6K09Ib=6o@{LXMG z^;8OPrzGFv7$vdjW;C;NGnMQNx6EpA6@4nX*%orbKX73oHh(YSxox$Z;M(k6eF-fk z=bI}0Crj(0S@ve5Ydgcu0=E$pH}opp^nhkhStCmup%aw49nS99%I%|O=SnpxNazlZ zeYDa$UcZTMz(0lO((P=66DEx6p_%4`t)?zX&~mRM)h4y>440Y-A*07Om~3!HvpE^n zG%oWSd-UN)aDSc7p-*ot%Rj)~CfmeR=K?p+s@oY(qhm5r1hJO77iN{6=w5TgysW(5 z8?GC~4m{HcBH&GvFf^q&5MR3Yy_^M?t(ULzwWAH5bAk=7B&njcDtA~gBVY`3#)02$ zbFoId>;*HHRe33DwW>o{!@wnDjg&s*xxMjc!PtRM)Qi<-l_tl-%&0lhIYwXbKrr_R~piCcpks>AuvcY=x2q#6?J zX5$2Wr{UGG&Vi2M-Q25_LBtnW&x2tm3=gX6D>J$~u7K=Tq3`BCqd6KdA;ftmb5fSZWBr5b_674s5J+?x zq8iq4+s!oMn|00g^%BpGU?o~ac~*gSta}dLYa|M2m^D3*QuYOdE2u#Og3Az@T*cao zg?}g3UP2yeS1>NXg-XtL$wtlc6bW7xH|C<6k@vkbmUo*TFRd0W5a%JXqWKKWkY+Q&Y7E8KCs3ZOjxvLf3Vew}LH6&xzYG)=wrb!)p?*G<{+)g z?s%XJ;_*nC`g<}TbZl*wH(?je@xayF6m1}5UG?A~597!VS` z_R1<`h<%2Ys6C4~JD>ahc&v5~Kh{!qq_oL*NkwD?yi6-w@Q&+8zv_*@y4Ljsi_3pp zuCqnGfF%#dR3CU*Igud*ZqG><0c{Nd6PmAOagfa1(-((NOI0AL>&^8$fp#Nh1V>+- zStZD!Wtv)}EUMR$h|=_RhS1?>c?S!M-I=Q@n2!$LJm zZBfzZy?av2;B?S;H%sxCZ_j0uNXQ(_!U4d~wAV#P24h{MuTm~KYp$G%w>$TMoWR|x zniQj9rD6*K(~W@)t0uYiKKspR4J_FY5V_20UdZ8Cxe!DHf=_LAUo;jsMRW!a>EHn- zXV*9kgrHLlCzbX^tLWUiOj>^js|Yk`ilLj98grz&zVnl;ECV)jWkLaEx&-yjW$yCs z)^*$VMMI0|cI2e2=;~}NcyGnW;0!ahtW)@JMbnHXGJ~CXnD8NVW7CbnnAT&fc3-rC z?p9K%tThps+P0u6_7R|J5{DpmMhl4*#=#H^*Y0`Ovq=H((0~=~?k9io7$Iq9r*w+q z(7g-zaReQxobB2Za6FfH@>>>`{nb(M z$a_`_S=K7>BQ_mbaZuKqg3ko;woT15avUpCTh?K4ELKS&8*RIQG#HMcwOpO(xN5H( zbfD=9T2^l+Yyr_H+uVOozn-K{Sda;i+JzY)(cm_0ZxDhZrYyI2aG1(YgnrOmEjcUYV>VAKC=O*(}jP?fLdKv>@_Cc&BC## z%r!<^aJD{=<4-g;DcV|9=0Qd9aGpKF`I zc7X80ocuO2*)U=|0@HBPoM*X{`XtNFOCY{%xPE=ug8WrC{%!I^)UVHRB@&`85LC)UovVWoBvP#;W!LP|^&ZjwjajKPEW)mny1)ytCs%@r6$ zKvNH(Enb;!7;dRobnt8}3pj(~ntBnFF3lHz4xnSqS%9pOd)2sp*>woLIfiq!Y-~t} z><)+39`Ebho1b6bXFYhfZ>(}poo#h-9nQO@_}xe|1axc7F@zFL^S-R7Yjy;NC&@AP zi1&tg$*Et@f^&fxSka2~V!(->a&SjLXa(|gR?89z1LP)~uwJ~sBXAB=N+884DTF0| zGqH;U3J^?R>zEehsjAN!Wc!=aI#Iy_E<{J8w;=OwUI}Z(Gz4g8MR44Q<_aJrw zRVr<*YIX%Kei|3lg~)ucA?DuU1-Y|zx?(Q|T>U^#ildiQAWt-o(k2sKN_Vq|a5>;o zL#|+N-J?O-h&Me8nsyM^bgWA|>_xUjKZ3SKsdB z2OnEob_~VjT7z;-eW)p|sq>RHKU_?6U7T|VK&t_L!W17|z(X6<4BSGlQADlO{Q*bn zy#-%_8E`yxc)T>Xhx{f0Kuq9vxzclX6b`obpJ*(#70HmC@c*z z&^TlFcH)ti$swriuIxXz;i)!4T}6W^m(8vBQIUqIsxwTJ}YY-~~|arO(-a1b2q8923hx z)iisrVP7;T&pCZ%MbF04OwNor;WJpcJ6ALIMH6M&XzpLP;PK5)$t;$-O!aYSW?wWQ zXyK-eIs)sTb?Bw!hBp>;vhF~09;5Y{gfnSA%jlNVtD`2%@u!}OntjnKD~y$izzKiU zvUMr8E~SiVqI;6rW-D5M<7(#4xC#DYbRwvcLnh;c<))W?(Ylw|!F8nOigp3b6~WFM zynMz@u2-CGMq|a%7^fdo9Fu#`?yGG^1MV0dVqY}8AG|o{!LFk5-L}xGfrxdQrHACV zqCJxb{Y)bZ(Ke-I^jQJCmz@l(}2p%CxVd>EtrL%l)X_pRpO5W{$1c3l1iv%=UP)RYPgZ&M3&*ZJn-EctbOq#)jG`uqo{UrO! zQ3#h68V`vwP^y-EsV@?JQ-*kEjS&M33(qbao5(EV%E=A!J@ zu6vi}xj=H|4lkv}oSF?)H9$)i^9`yM^cw5=6PWzP1uaQXD=R=RP_8GFtKW z?M<(D*YAIRmY_bD5C3G7^l4x_pwmV`uNxe0ud#6aw3R-8CIa?lP_4767eVI)4Sq-SrXB?(R#{HD$nnR%4Bc|VJ=Rz;=(K~*7`UAYg}IEiQ5Ymu2LcIIY~UB zPCA9yj4X)fmYuQ3}hQzS?6}x54Bf>q~gVRQ~baKM+-iz zok3f^(7i$&p&ey7D387y;RRzit$-gzwY&73_c!lfx!M2IP!9qt|A0U_rswx!^sq*ysh3 z!Jve*2c?4pB<>K(OIEdMf{W`!YI`Dwf;$#SC`(zAQ$rMwXvo%z`X~FU_C$_DV?c`n zcxzyP;SqwhD>N}wYw`Vp_nboM__r5pnt^LFc>diQXjKSgXX53M#nw4k_ozUbfl@%C zA^Mf5Ec7(;1@F0eQ(4Wf_gJ{{2&%9S@!UT*a!41v=LUHI5eMOzTei_=@zFSD{xk*Z z!CVd*0f-xbnxAOe#*Nu$q#QQ`zX6^5a>#0bxFM6$OZpiTmtojUWFDe5W@~UUw4FZ=yocRO9mZF@s?UF{7&Q| zPVd)a!JD9%D1k|mdSkjW{MSNg&Ff(kX=0%rM5JDW=&N$NFjQ1geu0vIuX!#o|E?LuTdp&UIUG2KIc= z2UWykCIw!QHjI37o?Yhqp| zL`noH$8;5CPOY);jmMJa$(1EF(ntkiLY=ENL^x^sroHjt21c)b8p{kx*=Bg6oI)+o z*WIos9Jb>j+Kmu;1BY%gg7%06h%y)H05#9O@tA!&FNLRB$sG)OK;^a+l>1tLa^3y@ zYD~qrhJZS9$qSFw#Erhrw`_{+jfaL(r_2}yE(H83Y7Q2(oyEZ+Zv7c}O9`@Xc)$mB z%3fq+S&2Kj8bosqtYPk^>n+tWQV?zi4LiXkt+g_5YJf=bktM;o8CeV`wfuVX*x4{3 za$r%xGfm(yjcKO2Q`cK=oOqIdW9daO_tm3*J>%D-8dEPcv#cAhc;;aD5uPMS2_|*$ z>_a-+C(Bm0Aob`v#JNSk#siYBem3Tv)Qk>ZOWF@}*3bJ!idA1i?eG%Z?ztgOa@3vI|IaEV+w+R?jqko|Sk< zVg7AF45^5fyMQ1_lr*_^6tOUt8GQ(Y>uH#x*t)a}$f#&L+&`sFm`KBPQpmzQGB%2y zaVOXA>$@B7OG1A8x@DSS4BLDHTk}xLocM9U`DweOicA|!bFe2OJk=QzVsAI0;pH)* zaY>-=A253*P7dt9=1-FsUzQMF-b!TTAUYQgGbamppI%sOA)|b4& zG*kpgLFmak0d)r(5>SWitXhcXHB~stG)yX{jaF z4tb?kMlqVCOm1!y8ExnjYJZC9sunaUrRw7p5<~5C4vuF_^R4KA7SltGk5Nr9Qdv@} zrvks-5UVwy@x0vh=Vi%X>u-;WNWRd*GAbCE6(jcyKBvwiwsUE>O3@iXCwBpW4$8&ToB)#dNBA35QKRa zHWIGu6!0&%o;yB&6NDq+kU_DH!2JX@vw}$W1)sr$>OOZeQtF{Ik#q_!cvlQuL0DAS z;7X|zK_1qr{YIRBQquMWdkf(O9Y@DcMr-FD*PtMw!^RmMf^)b4WOeW`+*5`UV|5*^Dw^Fon%$1Z9)n}UB2SJJ{rLr!HHjv@O^rZX2Zfe6f)5%@G|4+eD9^-?S2?FQ4J zi5@Hw@dqr_BBb_;2Qxr-vjyWH8%%?Ag3?ys3#dzf!ryq{T+oE>5}+E|X{MK&)W6og z9#pMcTDZ7K{dL1I>>+{DXwL6HLgRyU%AIPKuF|>&z^;6)QqfSWCgP zVN&Tn*9bWnL7OT>K$oB?r{S7;vfu1{81Q|#y;fV8)B)DVgwBHw+n{yVMJdmQ8KD0y zv9KV2dTohgPUmqSP-SyCD`_tn8qbM`-bus~N?~TyvVVJTL%(M>VJ$4-#ls@CN zv=GtdLSq_~Gn&9sc>U`=;!9oj7hSzfwpX9>G$D%9WWnTS?2sVfO3E;&on_5)$poYOY)0kelw8Y$y!8dF6N1V<1*=I$UWx5ezVK~Hs=9QD+uAhhau77a; z?>4`vHq8CWr;~x&7=Inmf`K5q=U5PWsc{hD5!kua&`MiZ%-RDGZMAaGNt?;gPm~k{ z-DN3(6LZ)d5H1!$kU67f?kvy9sc6%=Wh122((ZsUG<12;<aO2_k2H~GQl8?Gma@-dkAqrL>rk1b3Np~8&HB@>Rgo5(`5Sp z%wh_)u}X6qVShcjvjM1;h_1qE)W(&T30^SyERF+ltRlG^5LC@!v3@HJA>F|V)#gV} zL!c>)+YM-eo@lyi1*AC%OK_gRaha+KLB z$8$4ccSF~kvJ*-x4kV2`;X}7MamAv<)>ZPbxGg;q<>vjkeRFg7%>-i)&O6c8vJVFV zC=81h#eXDlGVuYA-c8dLkvQ!P*TjY1LGhu06)&Hah;oy`MdD1rvNN3W)%Or{4i=bQEB};LZ6EQKdsynjIPOfL^uzlXn_^PTqG8A zBFe}5{^#-fUH$OkTNN4~o_VUdLrN4h>VMfe$2z73ftkj#YOD!0>pCaz9*Ex55LIU= ztmoBg>kmuj>V(@p!so8NGblw5}Z8{6VvcAvv|xVRom;}6bolR!++pf z#r+W_A}r-%Mst%Z+dzw$ZE$4fjvD0xEoXrJ^r#a$tqfrjVDKZ3u|R9L*yL=)cVAx{ zfbU*-9Yu~0!Spg+OC|<&jT>)rP9WE4=j)-T(@ZxT&~kjzkiC;;&73VG8ghzf*0II3 z3W!%lmq-ZDqtqNVdDo4f6^hDjFn`S*A$Fo^f-V=Q4K0)FQYyS$gA|WjOp8<2Zy2sw zwC~nfSxl`4I7@u!8%#^eg7?;(ZRkQi8#swD!4gwMhtjaYbhlPmBE}Ruha0vBABGsX z1kO>U6QA|{evNY*@6+p-g)G*(Bx4#*B9+<7EcoQy@Fm5VcYp}Z!W+7*(0`hmEO*>j z2^?!eKdCY900H+Nx%dX`dAjT^97o`Cjnut!PZDsQ1%aLd<|2bF#KQeGL>1ux<@C@N z>y;+I3UPP);dOs|y(InqYC)dc4<{N}a#LH-@!CLrz{`!d=-HVWbBZ?2uJ3^n5PfEt zX4)CymVyK8&s<(oq;VQ!7k>=y(^FQiMptK^;vDLX9ua5`C<4C+MlY6o6oRwNDw4V4 zPzJmgc&Tk}Jy&}khW6|tx1f$ZxETkm7eOLr=q}GC#iwH2j*q`qUHS|IeAuD6+|_n? z*Uox*EZ)$UI*V*Weh&2guP)TT$c!vf$CPQ>&F5~tH&?(I*br%fI)mr$>Jo&tmu`Y8qk`roq8a*B3 z_V)T$>aCn(VaZ+qe&Q1=3pu)6j~@w{*GekZhd6ct2@N#bO+-!BrUH=<;3&O8G6~{m zu)Bbi&RPzxvw{Uz+kfTWM&W%$rtu!9fZX2nzm9_wxPCuxR>P^|?w6a7fBpV&(o1a| zc9gm?YaZH~#?WKV#z&CNSzCOvcJFK$i zez0-xB`ZZt$J~!kRw$ee6FIwIrgtg9wFl>Fw4Ca%#tnp&y;xu}ORJOtp63J8CN)+^ zF)jy@(9tt?f)NekoXG-uGx7chw{v=~4J^>@>m`9_!>~#9o@a`ZQVQa^z%_M>G0*(! zJHcpxG*IujyC?unn5EY=g|_4Dv+k4O;S_(K2Xp75{_U&YlyfGBQ(kUisk~Qwi?R7Q z%gFF_%vKI=j!1(L>B}x4UaMyn#bIh;%F!hc38gB_CzW-UuQNe(DaV3lGfGg%wlrpo zh?^k(%70fGB~7>;m$+>9WiNnL>c6pub{*JA@O0J-DB`*u@5>NoZcd^zznTZ@14 z4xN=HYZ$`}CbJtQsTnz|GttDI;T%{Tb5YcYhJ@DcHN$m4Fqh)d*4oZ+;)9#UakUY5 z)08Zh^^lXufOB6boZJjoBB&~~faa9^aIA_Dt)eLp^!ZtIZ@6XxyoQOb&mI-W;YoRX`)ZSZ%tONN@8?U)LI>( z#JnDEJJERckUIm8-Q!&rU-3SfaRPjfn@iUjY)>_wg;_E}!fyv7p77)l=G=dyQcSh$ zO2{V~U&cBH*pf}$lNU(7;mIL;dJGc%HsebnfCOgG)Fn{G#tO$&RB}kUmvfBYUcdYB zc5G;Fj|?pPc8BRj3mV-(7*6 z2ZkUTGl#7oiA%5%bEYkh>&1U(L{A#KU_d#5M2y^;c(D;~vUADcoX}Qn9h1+*(84rk zaQA4AoVWscw5G`DrX(kE4~!+}Kw%+8W2_q7#58z-#c^|jS&t=t8{^&0`|HP5zE?9B zhwo1{vaAgBXqR3^6^&&{HU#46(PpEzzOI#aKF-ARhGZHYl+>$JEbmfX3+n}>^^Yi!p0djwGnp&d_Vf#{asSZ zmJ~qgxLRCh(}VH^Z$~FK-d+wEJ-8_INu}uV`oSkF`gin>9^?trJ^}d6`1tPn_SbsG zms3u&vTQxYGh)^X{Oo@wAw()$pKIj?ohNC@HvswN4OCEuTm}allQ2(nF)4!ySGONf za;6Ul)__~c(i!!GjV{84i+d7`&j+F)T#_-5&>Y+#;@mP!I}kqdlhqU(fCR1;=DFP~ zc$p@L*~M}^J`2?Pen7=T3c)DjUu8aT&UR%kP4MDmy>og4&@_LONwf>p^|EaU%`X@e zt8l%Nte3mI1nBzRuZ;IE-@f?TWs735tZ@>es5D`<6)|QMgy&M-+9{rFK6+5+0TyZ@ zA;N^qlBHjy+;l#fOFZ2?3uML6WN97QW^@L)rlHAjD9mm&&%~^P&>27^d{YpA77TJO zPbtObveA4Qp+|r2-3K*d1|`tQ4B4R`jDvevHkz-TU@>{vXky}IlOzmd0&_GTb;*in=t2fD}*(WqqZa%CNHJl9-SyO^-tZ|zo=XyPyY=&lYA?tH1>Cb{m zu1Y}AP2HmfsF}6r6KecpXZK7=+$TQ)^`8_F{OyAw>YaH)e{uUU2I zn!TrN5tI<-;1&B$Fm<>XOkUM{$Y8>nrh%F5CvF3z zGR?-^LUSjW!8GF~N1aa8aGixwG`6xNFtXtsn43@i%}a9$JwEw#o9vQIdlbE~F>(eS zvAerNy|~hov++W(VFZwzIcE*@{`j|u;K}vOaRpZ|1RJM`pbw^Jw|F1JD%H?wd3eJ@ zHy3|`El`5Z<-%$HB_u&g`!)Gyw8~tSiL{v{HD%7-+Og>&-#H6@ z^sV-JIO_x}oPuaUaM<^TM#(S-rZ6F;Mx=~RZ8soxS~J8Kt&o8DkDYiua6{+@zKNa# z^hsYl#`NXX)2uCwtv3dSz-)5XkyV*sO-Fy9MWd>2FTjtZkL$mUop0l@)#Y}QZJZy* zT_Aoo=93SZgRV}yY5iirwq?kzf4J08`GC2EW*WZr7DrlVp|1!oUGY1zy7TcmU55a%9 zPL6p#@a=f7JGa*dCYMwii9riwq8J2zU;2d1a5czq!3=j9)F8q_zb1|>HshVKmP|Es zas_oR;WDV`mJSj?S@6M5khI7gvUqVd0drpHUZIvvGLGd$?3~W@5V;2d?Z+v8OSudx z`T!m;py7O4E``H&7P^R?gS)yegqnZ229_y3h8arM4Pq3gOawohs=o|sg|Cg7`9r)b zAo`Ht5SU#moUYAszQbKMeb=w&IOF%Re~!IUj$A<(~o= zHPbRR^<%Iib59fMk%?XGUO3Y`aZJWt)fcoToOOyB zy72@tm_i9RSN6NJG$@-iJmXG+ie|?O7T+IPod~?A3JWcoL%*T^=SFgUDb-0R? z2#+rKJgac^YWZ$C?bCnzYv%KKX~rMcR_)LYOav_+UdvClh`+fzt1;!?zLmk{3_yBl z1Qvv_nGyR-!jW7ZSFz1`BH(HH6HY~cy0w2R`sD715Wwx5sX7orn;3K?2S&b5O!gFg zY4z859)Ew>622TgG>8AX{?qlLH9U;RPp)_vr;pe4K5lQXe!MBUet&oMo8SHT+wUHA fv*#_`_rHUQpK$YdLRY`}>DBLk``!Ns>L5}k{s|n7 delta 58687 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 z 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 EXX40W7XSbN diff --git a/docs/pid.html b/docs/pid.html index a64a7fd53..c9c4d7146 100644 --- a/docs/pid.html +++ b/docs/pid.html @@ -138,7 +138,7 @@
  • »
  • PID APIs
  • - Edit on GitHub + Edit on GitHub

  • @@ -160,7 +160,7 @@

    API Reference

    Header File

    diff --git a/docs/qwiicnes.html b/docs/qwiicnes.html index 434d2425d..b267c3620 100644 --- a/docs/qwiicnes.html +++ b/docs/qwiicnes.html @@ -139,7 +139,7 @@
  • »
  • QwiicNES
  • - Edit on GitHub + Edit on GitHub

  • @@ -155,14 +155,14 @@

    API Reference

    Header File

    Functions

    Warning

    -

    doxygenfunction: Unable to resolve function “operator==” with arguments None in doxygen xml output for project “esp-docs” from directory: /Users/bob/backbone/pr24-works-like/components/espp/doc/_build/en/esp32/xml_in/. +

    doxygenfunction: Unable to resolve function “operator==” with arguments None in doxygen xml output for project “esp-docs” from directory: /Users/bob/esp-cpp/esp-box-emu/components/espp/doc/_build/en/esp32/xml_in/. Potential matches:

    - bool operator==(const AdcConfig &lhs, const AdcConfig &rhs)
    diff --git a/docs/rmt.html b/docs/rmt.html
    index 3a69c2766..3855492f6 100644
    --- a/docs/rmt.html
    +++ b/docs/rmt.html
    @@ -139,7 +139,7 @@
           
  • »
  • Remote Control Transceiver (RMT)
  • - Edit on GitHub + Edit on GitHub

  • @@ -166,7 +166,7 @@

    API Reference

    Header File

    @@ -330,7 +330,7 @@

    Example 1: Transmitting data

    Header File

    diff --git a/docs/rtc/bm8563.html b/docs/rtc/bm8563.html index 47c630e40..76738b45b 100644 --- a/docs/rtc/bm8563.html +++ b/docs/rtc/bm8563.html @@ -142,7 +142,7 @@
  • RTC APIs »
  • BM8563
  • - Edit on GitHub + Edit on GitHub

  • @@ -158,14 +158,14 @@

    API Reference

    Header File

    Functions

    Warning

    -

    doxygenfunction: Unable to resolve function “operator==” with arguments None in doxygen xml output for project “esp-docs” from directory: /Users/bob/backbone/pr24-works-like/components/espp/doc/_build/en/esp32/xml_in/. +

    doxygenfunction: Unable to resolve function “operator==” with arguments None in doxygen xml output for project “esp-docs” from directory: /Users/bob/esp-cpp/esp-box-emu/components/espp/doc/_build/en/esp32/xml_in/. Potential matches:

    - bool operator==(const AdcConfig &lhs, const AdcConfig &rhs)
    @@ -182,7 +182,7 @@ 

    Functions

    Warning

    -

    doxygenfunction: Unable to resolve function “operator==” with arguments None in doxygen xml output for project “esp-docs” from directory: /Users/bob/backbone/pr24-works-like/components/espp/doc/_build/en/esp32/xml_in/. +

    doxygenfunction: Unable to resolve function “operator==” with arguments None in doxygen xml output for project “esp-docs” from directory: /Users/bob/esp-cpp/esp-box-emu/components/espp/doc/_build/en/esp32/xml_in/. Potential matches:

    @@ -454,7 +454,7 @@

    Example

    Header File

    @@ -612,7 +612,7 @@

    example

    Header File

    @@ -769,7 +769,7 @@

    Classes

    Header File

    @@ -911,7 +911,7 @@

    Classes

    Header File

    @@ -1210,7 +1210,7 @@

    Classes

    Header File

    @@ -1226,7 +1226,7 @@

    Classes

    Header File

    @@ -1313,7 +1313,7 @@

    Classes

    Header File

    diff --git a/docs/searchindex.js b/docs/searchindex.js index a3bc8d090..784e2ef3e 100644 --- a/docs/searchindex.js +++ b/docs/searchindex.js @@ -1 +1 @@ -Search.setIndex({docnames:["adc/adc_types","adc/ads1x15","adc/ads7138","adc/continuous_adc","adc/index","adc/oneshot_adc","adc/tla2528","bldc/bldc_driver","bldc/bldc_motor","bldc/index","button","cli","color","controller","csv","display/display","display/display_drivers","display/index","encoder/abi_encoder","encoder/as5600","encoder/encoder_types","encoder/index","encoder/mt6701","event_manager","file_system","filters/biquad","filters/butterworth","filters/index","filters/lowpass","filters/sos","filters/transfer_function","ftp/ftp_server","ftp/index","haptics/bldc_haptics","haptics/drv2605","haptics/index","i2c","index","input/encoder_input","input/ft5x06","input/gt911","input/index","input/keypad_input","input/t_keyboard","input/touchpad_input","input/tt21100","io_expander/aw9523","io_expander/index","io_expander/mcp23x17","joystick","led","led_strip","logger","math/bezier","math/fast_math","math/gaussian","math/index","math/range_mapper","math/vector2d","monitor","network/index","network/socket","network/tcp_socket","network/udp_socket","nfc/index","nfc/ndef","nfc/st25dv","pid","qwiicnes","rmt","rtc/bm8563","rtc/index","rtsp","serialization","state_machine","tabulate","task","thermistor","timer","wifi/index","wifi/wifi_ap","wifi/wifi_sta"],envversion:{"sphinx.domains.c":2,"sphinx.domains.changeset":1,"sphinx.domains.citation":1,"sphinx.domains.cpp":5,"sphinx.domains.index":1,"sphinx.domains.javascript":2,"sphinx.domains.math":2,"sphinx.domains.python":3,"sphinx.domains.rst":2,"sphinx.domains.std":2,"sphinx.ext.todo":2,sphinx:56},filenames:["adc/adc_types.rst","adc/ads1x15.rst","adc/ads7138.rst","adc/continuous_adc.rst","adc/index.rst","adc/oneshot_adc.rst","adc/tla2528.rst","bldc/bldc_driver.rst","bldc/bldc_motor.rst","bldc/index.rst","button.rst","cli.rst","color.rst","controller.rst","csv.rst","display/display.rst","display/display_drivers.rst","display/index.rst","encoder/abi_encoder.rst","encoder/as5600.rst","encoder/encoder_types.rst","encoder/index.rst","encoder/mt6701.rst","event_manager.rst","file_system.rst","filters/biquad.rst","filters/butterworth.rst","filters/index.rst","filters/lowpass.rst","filters/sos.rst","filters/transfer_function.rst","ftp/ftp_server.rst","ftp/index.rst","haptics/bldc_haptics.rst","haptics/drv2605.rst","haptics/index.rst","i2c.rst","index.rst","input/encoder_input.rst","input/ft5x06.rst","input/gt911.rst","input/index.rst","input/keypad_input.rst","input/t_keyboard.rst","input/touchpad_input.rst","input/tt21100.rst","io_expander/aw9523.rst","io_expander/index.rst","io_expander/mcp23x17.rst","joystick.rst","led.rst","led_strip.rst","logger.rst","math/bezier.rst","math/fast_math.rst","math/gaussian.rst","math/index.rst","math/range_mapper.rst","math/vector2d.rst","monitor.rst","network/index.rst","network/socket.rst","network/tcp_socket.rst","network/udp_socket.rst","nfc/index.rst","nfc/ndef.rst","nfc/st25dv.rst","pid.rst","qwiicnes.rst","rmt.rst","rtc/bm8563.rst","rtc/index.rst","rtsp.rst","serialization.rst","state_machine.rst","tabulate.rst","task.rst","thermistor.rst","timer.rst","wifi/index.rst","wifi/wifi_ap.rst","wifi/wifi_sta.rst"],objects:{"":[[74,0,1,"c.MAGIC_ENUM_NO_CHECK_SUPPORT","MAGIC_ENUM_NO_CHECK_SUPPORT"],[14,0,1,"c.__gnu_linux__","__gnu_linux__"],[73,0,1,"c.__gnu_linux__","__gnu_linux__"],[11,0,1,"c.__linux__","__linux__"],[75,0,1,"c.__unix__","__unix__"],[65,1,1,"_CPPv4N19PhonyNameDueToError3rawE","PhonyNameDueToError::raw"],[68,1,1,"_CPPv4N19PhonyNameDueToError3rawE","PhonyNameDueToError::raw"],[18,2,1,"_CPPv4I_11EncoderTypeEN4espp10AbiEncoderE","espp::AbiEncoder"],[18,3,1,"_CPPv4I_11EncoderTypeEN4espp10AbiEncoder10AbiEncoderERK6Config","espp::AbiEncoder::AbiEncoder"],[18,4,1,"_CPPv4I_11EncoderTypeEN4espp10AbiEncoder10AbiEncoderERK6Config","espp::AbiEncoder::AbiEncoder::config"],[18,5,1,"_CPPv4I_11EncoderTypeEN4espp10AbiEncoder10AbiEncoderERK6Config","espp::AbiEncoder::AbiEncoder::type"],[18,2,1,"_CPPv4N4espp10AbiEncoder6ConfigE","espp::AbiEncoder::Config"],[18,1,1,"_CPPv4N4espp10AbiEncoder6Config6a_gpioE","espp::AbiEncoder::Config::a_gpio"],[18,1,1,"_CPPv4N4espp10AbiEncoder6Config6b_gpioE","espp::AbiEncoder::Config::b_gpio"],[18,1,1,"_CPPv4N4espp10AbiEncoder6Config21counts_per_revolutionE","espp::AbiEncoder::Config::counts_per_revolution"],[18,1,1,"_CPPv4N4espp10AbiEncoder6Config10high_limitE","espp::AbiEncoder::Config::high_limit"],[18,1,1,"_CPPv4N4espp10AbiEncoder6Config6i_gpioE","espp::AbiEncoder::Config::i_gpio"],[18,1,1,"_CPPv4N4espp10AbiEncoder6Config9log_levelE","espp::AbiEncoder::Config::log_level"],[18,1,1,"_CPPv4N4espp10AbiEncoder6Config9low_limitE","espp::AbiEncoder::Config::low_limit"],[18,1,1,"_CPPv4N4espp10AbiEncoder6Config13max_glitch_nsE","espp::AbiEncoder::Config::max_glitch_ns"],[18,5,1,"_CPPv4I_11EncoderTypeEN4espp10AbiEncoderE","espp::AbiEncoder::T"],[18,3,1,"_CPPv4N4espp10AbiEncoder5clearEv","espp::AbiEncoder::clear"],[18,3,1,"_CPPv4N4espp10AbiEncoder9get_countEv","espp::AbiEncoder::get_count"],[18,3,1,"_CPPv4I_11EncoderTypeEN4espp10AbiEncoder11get_degreesENSt9enable_ifIXeq4typeN11EncoderType10ROTATIONALEEfE4typeEv","espp::AbiEncoder::get_degrees"],[18,5,1,"_CPPv4I_11EncoderTypeEN4espp10AbiEncoder11get_degreesENSt9enable_ifIXeq4typeN11EncoderType10ROTATIONALEEfE4typeEv","espp::AbiEncoder::get_degrees::type"],[18,3,1,"_CPPv4I_11EncoderTypeEN4espp10AbiEncoder11get_radiansENSt9enable_ifIXeq4typeN11EncoderType10ROTATIONALEEfE4typeEv","espp::AbiEncoder::get_radians"],[18,5,1,"_CPPv4I_11EncoderTypeEN4espp10AbiEncoder11get_radiansENSt9enable_ifIXeq4typeN11EncoderType10ROTATIONALEEfE4typeEv","espp::AbiEncoder::get_radians::type"],[18,3,1,"_CPPv4I_11EncoderTypeEN4espp10AbiEncoder15get_revolutionsENSt9enable_ifIXeq4typeN11EncoderType10ROTATIONALEEfE4typeEv","espp::AbiEncoder::get_revolutions"],[18,5,1,"_CPPv4I_11EncoderTypeEN4espp10AbiEncoder15get_revolutionsENSt9enable_ifIXeq4typeN11EncoderType10ROTATIONALEEfE4typeEv","espp::AbiEncoder::get_revolutions::type"],[18,3,1,"_CPPv4N4espp10AbiEncoder5startEv","espp::AbiEncoder::start"],[18,3,1,"_CPPv4N4espp10AbiEncoder4stopEv","espp::AbiEncoder::stop"],[18,3,1,"_CPPv4N4espp10AbiEncoderD0Ev","espp::AbiEncoder::~AbiEncoder"],[1,2,1,"_CPPv4N4espp7Ads1x15E","espp::Ads1x15"],[1,2,1,"_CPPv4N4espp7Ads1x1513Ads1015ConfigE","espp::Ads1x15::Ads1015Config"],[1,1,1,"_CPPv4N4espp7Ads1x1513Ads1015Config14device_addressE","espp::Ads1x15::Ads1015Config::device_address"],[1,1,1,"_CPPv4N4espp7Ads1x1513Ads1015Config4gainE","espp::Ads1x15::Ads1015Config::gain"],[1,1,1,"_CPPv4N4espp7Ads1x1513Ads1015Config9log_levelE","espp::Ads1x15::Ads1015Config::log_level"],[1,1,1,"_CPPv4N4espp7Ads1x1513Ads1015Config4readE","espp::Ads1x15::Ads1015Config::read"],[1,1,1,"_CPPv4N4espp7Ads1x1513Ads1015Config11sample_rateE","espp::Ads1x15::Ads1015Config::sample_rate"],[1,1,1,"_CPPv4N4espp7Ads1x1513Ads1015Config5writeE","espp::Ads1x15::Ads1015Config::write"],[1,6,1,"_CPPv4N4espp7Ads1x1511Ads1015RateE","espp::Ads1x15::Ads1015Rate"],[1,7,1,"_CPPv4N4espp7Ads1x1511Ads1015Rate6SPS128E","espp::Ads1x15::Ads1015Rate::SPS128"],[1,7,1,"_CPPv4N4espp7Ads1x1511Ads1015Rate7SPS1600E","espp::Ads1x15::Ads1015Rate::SPS1600"],[1,7,1,"_CPPv4N4espp7Ads1x1511Ads1015Rate7SPS2400E","espp::Ads1x15::Ads1015Rate::SPS2400"],[1,7,1,"_CPPv4N4espp7Ads1x1511Ads1015Rate6SPS250E","espp::Ads1x15::Ads1015Rate::SPS250"],[1,7,1,"_CPPv4N4espp7Ads1x1511Ads1015Rate7SPS3300E","espp::Ads1x15::Ads1015Rate::SPS3300"],[1,7,1,"_CPPv4N4espp7Ads1x1511Ads1015Rate6SPS490E","espp::Ads1x15::Ads1015Rate::SPS490"],[1,7,1,"_CPPv4N4espp7Ads1x1511Ads1015Rate6SPS920E","espp::Ads1x15::Ads1015Rate::SPS920"],[1,2,1,"_CPPv4N4espp7Ads1x1513Ads1115ConfigE","espp::Ads1x15::Ads1115Config"],[1,1,1,"_CPPv4N4espp7Ads1x1513Ads1115Config14device_addressE","espp::Ads1x15::Ads1115Config::device_address"],[1,1,1,"_CPPv4N4espp7Ads1x1513Ads1115Config4gainE","espp::Ads1x15::Ads1115Config::gain"],[1,1,1,"_CPPv4N4espp7Ads1x1513Ads1115Config9log_levelE","espp::Ads1x15::Ads1115Config::log_level"],[1,1,1,"_CPPv4N4espp7Ads1x1513Ads1115Config4readE","espp::Ads1x15::Ads1115Config::read"],[1,1,1,"_CPPv4N4espp7Ads1x1513Ads1115Config11sample_rateE","espp::Ads1x15::Ads1115Config::sample_rate"],[1,1,1,"_CPPv4N4espp7Ads1x1513Ads1115Config5writeE","espp::Ads1x15::Ads1115Config::write"],[1,6,1,"_CPPv4N4espp7Ads1x1511Ads1115RateE","espp::Ads1x15::Ads1115Rate"],[1,7,1,"_CPPv4N4espp7Ads1x1511Ads1115Rate6SPS128E","espp::Ads1x15::Ads1115Rate::SPS128"],[1,7,1,"_CPPv4N4espp7Ads1x1511Ads1115Rate5SPS16E","espp::Ads1x15::Ads1115Rate::SPS16"],[1,7,1,"_CPPv4N4espp7Ads1x1511Ads1115Rate6SPS250E","espp::Ads1x15::Ads1115Rate::SPS250"],[1,7,1,"_CPPv4N4espp7Ads1x1511Ads1115Rate5SPS32E","espp::Ads1x15::Ads1115Rate::SPS32"],[1,7,1,"_CPPv4N4espp7Ads1x1511Ads1115Rate6SPS475E","espp::Ads1x15::Ads1115Rate::SPS475"],[1,7,1,"_CPPv4N4espp7Ads1x1511Ads1115Rate5SPS64E","espp::Ads1x15::Ads1115Rate::SPS64"],[1,7,1,"_CPPv4N4espp7Ads1x1511Ads1115Rate4SPS8E","espp::Ads1x15::Ads1115Rate::SPS8"],[1,7,1,"_CPPv4N4espp7Ads1x1511Ads1115Rate6SPS860E","espp::Ads1x15::Ads1115Rate::SPS860"],[1,3,1,"_CPPv4N4espp7Ads1x157Ads1x15ERK13Ads1015Config","espp::Ads1x15::Ads1x15"],[1,3,1,"_CPPv4N4espp7Ads1x157Ads1x15ERK13Ads1115Config","espp::Ads1x15::Ads1x15"],[1,4,1,"_CPPv4N4espp7Ads1x157Ads1x15ERK13Ads1015Config","espp::Ads1x15::Ads1x15::config"],[1,4,1,"_CPPv4N4espp7Ads1x157Ads1x15ERK13Ads1115Config","espp::Ads1x15::Ads1x15::config"],[1,1,1,"_CPPv4N4espp7Ads1x1515DEFAULT_ADDRESSE","espp::Ads1x15::DEFAULT_ADDRESS"],[1,6,1,"_CPPv4N4espp7Ads1x154GainE","espp::Ads1x15::Gain"],[1,7,1,"_CPPv4N4espp7Ads1x154Gain5EIGHTE","espp::Ads1x15::Gain::EIGHT"],[1,7,1,"_CPPv4N4espp7Ads1x154Gain4FOURE","espp::Ads1x15::Gain::FOUR"],[1,7,1,"_CPPv4N4espp7Ads1x154Gain3ONEE","espp::Ads1x15::Gain::ONE"],[1,7,1,"_CPPv4N4espp7Ads1x154Gain7SIXTEENE","espp::Ads1x15::Gain::SIXTEEN"],[1,7,1,"_CPPv4N4espp7Ads1x154Gain3TWOE","espp::Ads1x15::Gain::TWO"],[1,7,1,"_CPPv4N4espp7Ads1x154Gain9TWOTHIRDSE","espp::Ads1x15::Gain::TWOTHIRDS"],[1,8,1,"_CPPv4N4espp7Ads1x157read_fnE","espp::Ads1x15::read_fn"],[1,3,1,"_CPPv4N4espp7Ads1x159sample_mvEiRNSt10error_codeE","espp::Ads1x15::sample_mv"],[1,4,1,"_CPPv4N4espp7Ads1x159sample_mvEiRNSt10error_codeE","espp::Ads1x15::sample_mv::channel"],[1,4,1,"_CPPv4N4espp7Ads1x159sample_mvEiRNSt10error_codeE","espp::Ads1x15::sample_mv::ec"],[1,8,1,"_CPPv4N4espp7Ads1x158write_fnE","espp::Ads1x15::write_fn"],[2,2,1,"_CPPv4N4espp7Ads7138E","espp::Ads7138"],[2,3,1,"_CPPv4N4espp7Ads71387Ads7138ERK6Config","espp::Ads7138::Ads7138"],[2,4,1,"_CPPv4N4espp7Ads71387Ads7138ERK6Config","espp::Ads7138::Ads7138::config"],[2,6,1,"_CPPv4N4espp7Ads713810AlertLogicE","espp::Ads7138::AlertLogic"],[2,7,1,"_CPPv4N4espp7Ads713810AlertLogic11ACTIVE_HIGHE","espp::Ads7138::AlertLogic::ACTIVE_HIGH"],[2,7,1,"_CPPv4N4espp7Ads713810AlertLogic10ACTIVE_LOWE","espp::Ads7138::AlertLogic::ACTIVE_LOW"],[2,7,1,"_CPPv4N4espp7Ads713810AlertLogic11PULSED_HIGHE","espp::Ads7138::AlertLogic::PULSED_HIGH"],[2,7,1,"_CPPv4N4espp7Ads713810AlertLogic10PULSED_LOWE","espp::Ads7138::AlertLogic::PULSED_LOW"],[2,6,1,"_CPPv4N4espp7Ads713811AnalogEventE","espp::Ads7138::AnalogEvent"],[2,7,1,"_CPPv4N4espp7Ads713811AnalogEvent6INSIDEE","espp::Ads7138::AnalogEvent::INSIDE"],[2,7,1,"_CPPv4N4espp7Ads713811AnalogEvent7OUTSIDEE","espp::Ads7138::AnalogEvent::OUTSIDE"],[2,6,1,"_CPPv4N4espp7Ads71386AppendE","espp::Ads7138::Append"],[2,7,1,"_CPPv4N4espp7Ads71386Append10CHANNEL_IDE","espp::Ads7138::Append::CHANNEL_ID"],[2,7,1,"_CPPv4N4espp7Ads71386Append4NONEE","espp::Ads7138::Append::NONE"],[2,7,1,"_CPPv4N4espp7Ads71386Append6STATUSE","espp::Ads7138::Append::STATUS"],[2,6,1,"_CPPv4N4espp7Ads71387ChannelE","espp::Ads7138::Channel"],[2,7,1,"_CPPv4N4espp7Ads71387Channel3CH0E","espp::Ads7138::Channel::CH0"],[2,7,1,"_CPPv4N4espp7Ads71387Channel3CH1E","espp::Ads7138::Channel::CH1"],[2,7,1,"_CPPv4N4espp7Ads71387Channel3CH2E","espp::Ads7138::Channel::CH2"],[2,7,1,"_CPPv4N4espp7Ads71387Channel3CH3E","espp::Ads7138::Channel::CH3"],[2,7,1,"_CPPv4N4espp7Ads71387Channel3CH4E","espp::Ads7138::Channel::CH4"],[2,7,1,"_CPPv4N4espp7Ads71387Channel3CH5E","espp::Ads7138::Channel::CH5"],[2,7,1,"_CPPv4N4espp7Ads71387Channel3CH6E","espp::Ads7138::Channel::CH6"],[2,7,1,"_CPPv4N4espp7Ads71387Channel3CH7E","espp::Ads7138::Channel::CH7"],[2,2,1,"_CPPv4N4espp7Ads71386ConfigE","espp::Ads7138::Config"],[2,1,1,"_CPPv4N4espp7Ads71386Config13analog_inputsE","espp::Ads7138::Config::analog_inputs"],[2,1,1,"_CPPv4N4espp7Ads71386Config9auto_initE","espp::Ads7138::Config::auto_init"],[2,1,1,"_CPPv4N4espp7Ads71386Config10avdd_voltsE","espp::Ads7138::Config::avdd_volts"],[2,1,1,"_CPPv4N4espp7Ads71386Config14device_addressE","espp::Ads7138::Config::device_address"],[2,1,1,"_CPPv4N4espp7Ads71386Config14digital_inputsE","espp::Ads7138::Config::digital_inputs"],[2,1,1,"_CPPv4N4espp7Ads71386Config20digital_output_modesE","espp::Ads7138::Config::digital_output_modes"],[2,1,1,"_CPPv4N4espp7Ads71386Config21digital_output_valuesE","espp::Ads7138::Config::digital_output_values"],[2,1,1,"_CPPv4N4espp7Ads71386Config15digital_outputsE","espp::Ads7138::Config::digital_outputs"],[2,1,1,"_CPPv4N4espp7Ads71386Config9log_levelE","espp::Ads7138::Config::log_level"],[2,1,1,"_CPPv4N4espp7Ads71386Config4modeE","espp::Ads7138::Config::mode"],[2,1,1,"_CPPv4N4espp7Ads71386Config18oversampling_ratioE","espp::Ads7138::Config::oversampling_ratio"],[2,1,1,"_CPPv4N4espp7Ads71386Config4readE","espp::Ads7138::Config::read"],[2,1,1,"_CPPv4N4espp7Ads71386Config18statistics_enabledE","espp::Ads7138::Config::statistics_enabled"],[2,1,1,"_CPPv4N4espp7Ads71386Config5writeE","espp::Ads7138::Config::write"],[2,1,1,"_CPPv4N4espp7Ads713815DEFAULT_ADDRESSE","espp::Ads7138::DEFAULT_ADDRESS"],[2,6,1,"_CPPv4N4espp7Ads713810DataFormatE","espp::Ads7138::DataFormat"],[2,7,1,"_CPPv4N4espp7Ads713810DataFormat8AVERAGEDE","espp::Ads7138::DataFormat::AVERAGED"],[2,7,1,"_CPPv4N4espp7Ads713810DataFormat3RAWE","espp::Ads7138::DataFormat::RAW"],[2,6,1,"_CPPv4N4espp7Ads713812DigitalEventE","espp::Ads7138::DigitalEvent"],[2,7,1,"_CPPv4N4espp7Ads713812DigitalEvent4HIGHE","espp::Ads7138::DigitalEvent::HIGH"],[2,7,1,"_CPPv4N4espp7Ads713812DigitalEvent3LOWE","espp::Ads7138::DigitalEvent::LOW"],[2,6,1,"_CPPv4N4espp7Ads71384ModeE","espp::Ads7138::Mode"],[2,7,1,"_CPPv4N4espp7Ads71384Mode10AUTONOMOUSE","espp::Ads7138::Mode::AUTONOMOUS"],[2,7,1,"_CPPv4N4espp7Ads71384Mode8AUTO_SEQE","espp::Ads7138::Mode::AUTO_SEQ"],[2,7,1,"_CPPv4N4espp7Ads71384Mode6MANUALE","espp::Ads7138::Mode::MANUAL"],[2,6,1,"_CPPv4N4espp7Ads713810OutputModeE","espp::Ads7138::OutputMode"],[2,7,1,"_CPPv4N4espp7Ads713810OutputMode10OPEN_DRAINE","espp::Ads7138::OutputMode::OPEN_DRAIN"],[2,7,1,"_CPPv4N4espp7Ads713810OutputMode9PUSH_PULLE","espp::Ads7138::OutputMode::PUSH_PULL"],[2,6,1,"_CPPv4N4espp7Ads713817OversamplingRatioE","espp::Ads7138::OversamplingRatio"],[2,7,1,"_CPPv4N4espp7Ads713817OversamplingRatio4NONEE","espp::Ads7138::OversamplingRatio::NONE"],[2,7,1,"_CPPv4N4espp7Ads713817OversamplingRatio7OSR_128E","espp::Ads7138::OversamplingRatio::OSR_128"],[2,7,1,"_CPPv4N4espp7Ads713817OversamplingRatio6OSR_16E","espp::Ads7138::OversamplingRatio::OSR_16"],[2,7,1,"_CPPv4N4espp7Ads713817OversamplingRatio5OSR_2E","espp::Ads7138::OversamplingRatio::OSR_2"],[2,7,1,"_CPPv4N4espp7Ads713817OversamplingRatio6OSR_32E","espp::Ads7138::OversamplingRatio::OSR_32"],[2,7,1,"_CPPv4N4espp7Ads713817OversamplingRatio5OSR_4E","espp::Ads7138::OversamplingRatio::OSR_4"],[2,7,1,"_CPPv4N4espp7Ads713817OversamplingRatio6OSR_64E","espp::Ads7138::OversamplingRatio::OSR_64"],[2,7,1,"_CPPv4N4espp7Ads713817OversamplingRatio5OSR_8E","espp::Ads7138::OversamplingRatio::OSR_8"],[2,3,1,"_CPPv4N4espp7Ads713821clear_event_high_flagE7uint8_tRNSt10error_codeE","espp::Ads7138::clear_event_high_flag"],[2,4,1,"_CPPv4N4espp7Ads713821clear_event_high_flagE7uint8_tRNSt10error_codeE","espp::Ads7138::clear_event_high_flag::ec"],[2,4,1,"_CPPv4N4espp7Ads713821clear_event_high_flagE7uint8_tRNSt10error_codeE","espp::Ads7138::clear_event_high_flag::flags"],[2,3,1,"_CPPv4N4espp7Ads713820clear_event_low_flagE7uint8_tRNSt10error_codeE","espp::Ads7138::clear_event_low_flag"],[2,4,1,"_CPPv4N4espp7Ads713820clear_event_low_flagE7uint8_tRNSt10error_codeE","espp::Ads7138::clear_event_low_flag::ec"],[2,4,1,"_CPPv4N4espp7Ads713820clear_event_low_flagE7uint8_tRNSt10error_codeE","espp::Ads7138::clear_event_low_flag::flags"],[2,3,1,"_CPPv4N4espp7Ads713815configure_alertE10OutputMode10AlertLogicRNSt10error_codeE","espp::Ads7138::configure_alert"],[2,4,1,"_CPPv4N4espp7Ads713815configure_alertE10OutputMode10AlertLogicRNSt10error_codeE","espp::Ads7138::configure_alert::alert_logic"],[2,4,1,"_CPPv4N4espp7Ads713815configure_alertE10OutputMode10AlertLogicRNSt10error_codeE","espp::Ads7138::configure_alert::ec"],[2,4,1,"_CPPv4N4espp7Ads713815configure_alertE10OutputMode10AlertLogicRNSt10error_codeE","espp::Ads7138::configure_alert::output_mode"],[2,3,1,"_CPPv4N4espp7Ads713810get_all_mvERNSt10error_codeE","espp::Ads7138::get_all_mv"],[2,4,1,"_CPPv4N4espp7Ads713810get_all_mvERNSt10error_codeE","espp::Ads7138::get_all_mv::ec"],[2,3,1,"_CPPv4N4espp7Ads713814get_all_mv_mapERNSt10error_codeE","espp::Ads7138::get_all_mv_map"],[2,4,1,"_CPPv4N4espp7Ads713814get_all_mv_mapERNSt10error_codeE","espp::Ads7138::get_all_mv_map::ec"],[2,3,1,"_CPPv4N4espp7Ads713823get_digital_input_valueE7ChannelRNSt10error_codeE","espp::Ads7138::get_digital_input_value"],[2,4,1,"_CPPv4N4espp7Ads713823get_digital_input_valueE7ChannelRNSt10error_codeE","espp::Ads7138::get_digital_input_value::channel"],[2,4,1,"_CPPv4N4espp7Ads713823get_digital_input_valueE7ChannelRNSt10error_codeE","espp::Ads7138::get_digital_input_value::ec"],[2,3,1,"_CPPv4N4espp7Ads713824get_digital_input_valuesERNSt10error_codeE","espp::Ads7138::get_digital_input_values"],[2,4,1,"_CPPv4N4espp7Ads713824get_digital_input_valuesERNSt10error_codeE","espp::Ads7138::get_digital_input_values::ec"],[2,3,1,"_CPPv4N4espp7Ads713814get_event_dataEP7uint8_tP7uint8_tP7uint8_tRNSt10error_codeE","espp::Ads7138::get_event_data"],[2,4,1,"_CPPv4N4espp7Ads713814get_event_dataEP7uint8_tP7uint8_tP7uint8_tRNSt10error_codeE","espp::Ads7138::get_event_data::ec"],[2,4,1,"_CPPv4N4espp7Ads713814get_event_dataEP7uint8_tP7uint8_tP7uint8_tRNSt10error_codeE","espp::Ads7138::get_event_data::event_flags"],[2,4,1,"_CPPv4N4espp7Ads713814get_event_dataEP7uint8_tP7uint8_tP7uint8_tRNSt10error_codeE","espp::Ads7138::get_event_data::event_high_flags"],[2,4,1,"_CPPv4N4espp7Ads713814get_event_dataEP7uint8_tP7uint8_tP7uint8_tRNSt10error_codeE","espp::Ads7138::get_event_data::event_low_flags"],[2,3,1,"_CPPv4N4espp7Ads713815get_event_flagsERNSt10error_codeE","espp::Ads7138::get_event_flags"],[2,4,1,"_CPPv4N4espp7Ads713815get_event_flagsERNSt10error_codeE","espp::Ads7138::get_event_flags::ec"],[2,3,1,"_CPPv4N4espp7Ads713819get_event_high_flagERNSt10error_codeE","espp::Ads7138::get_event_high_flag"],[2,4,1,"_CPPv4N4espp7Ads713819get_event_high_flagERNSt10error_codeE","espp::Ads7138::get_event_high_flag::ec"],[2,3,1,"_CPPv4N4espp7Ads713818get_event_low_flagERNSt10error_codeE","espp::Ads7138::get_event_low_flag"],[2,4,1,"_CPPv4N4espp7Ads713818get_event_low_flagERNSt10error_codeE","espp::Ads7138::get_event_low_flag::ec"],[2,3,1,"_CPPv4N4espp7Ads71386get_mvE7ChannelRNSt10error_codeE","espp::Ads7138::get_mv"],[2,4,1,"_CPPv4N4espp7Ads71386get_mvE7ChannelRNSt10error_codeE","espp::Ads7138::get_mv::channel"],[2,4,1,"_CPPv4N4espp7Ads71386get_mvE7ChannelRNSt10error_codeE","espp::Ads7138::get_mv::ec"],[2,3,1,"_CPPv4N4espp7Ads713810initializeERNSt10error_codeE","espp::Ads7138::initialize"],[2,4,1,"_CPPv4N4espp7Ads713810initializeERNSt10error_codeE","espp::Ads7138::initialize::ec"],[2,8,1,"_CPPv4N4espp7Ads71387read_fnE","espp::Ads7138::read_fn"],[2,3,1,"_CPPv4N4espp7Ads71385resetERNSt10error_codeE","espp::Ads7138::reset"],[2,4,1,"_CPPv4N4espp7Ads71385resetERNSt10error_codeE","espp::Ads7138::reset::ec"],[2,3,1,"_CPPv4N4espp7Ads713816set_analog_alertE7Channelff11AnalogEventiRNSt10error_codeE","espp::Ads7138::set_analog_alert"],[2,4,1,"_CPPv4N4espp7Ads713816set_analog_alertE7Channelff11AnalogEventiRNSt10error_codeE","espp::Ads7138::set_analog_alert::channel"],[2,4,1,"_CPPv4N4espp7Ads713816set_analog_alertE7Channelff11AnalogEventiRNSt10error_codeE","espp::Ads7138::set_analog_alert::ec"],[2,4,1,"_CPPv4N4espp7Ads713816set_analog_alertE7Channelff11AnalogEventiRNSt10error_codeE","espp::Ads7138::set_analog_alert::event"],[2,4,1,"_CPPv4N4espp7Ads713816set_analog_alertE7Channelff11AnalogEventiRNSt10error_codeE","espp::Ads7138::set_analog_alert::event_count"],[2,4,1,"_CPPv4N4espp7Ads713816set_analog_alertE7Channelff11AnalogEventiRNSt10error_codeE","espp::Ads7138::set_analog_alert::high_threshold_mv"],[2,4,1,"_CPPv4N4espp7Ads713816set_analog_alertE7Channelff11AnalogEventiRNSt10error_codeE","espp::Ads7138::set_analog_alert::low_threshold_mv"],[2,3,1,"_CPPv4N4espp7Ads713817set_digital_alertE7Channel12DigitalEventRNSt10error_codeE","espp::Ads7138::set_digital_alert"],[2,4,1,"_CPPv4N4espp7Ads713817set_digital_alertE7Channel12DigitalEventRNSt10error_codeE","espp::Ads7138::set_digital_alert::channel"],[2,4,1,"_CPPv4N4espp7Ads713817set_digital_alertE7Channel12DigitalEventRNSt10error_codeE","espp::Ads7138::set_digital_alert::ec"],[2,4,1,"_CPPv4N4espp7Ads713817set_digital_alertE7Channel12DigitalEventRNSt10error_codeE","espp::Ads7138::set_digital_alert::event"],[2,3,1,"_CPPv4N4espp7Ads713823set_digital_output_modeE7Channel10OutputModeRNSt10error_codeE","espp::Ads7138::set_digital_output_mode"],[2,4,1,"_CPPv4N4espp7Ads713823set_digital_output_modeE7Channel10OutputModeRNSt10error_codeE","espp::Ads7138::set_digital_output_mode::channel"],[2,4,1,"_CPPv4N4espp7Ads713823set_digital_output_modeE7Channel10OutputModeRNSt10error_codeE","espp::Ads7138::set_digital_output_mode::ec"],[2,4,1,"_CPPv4N4espp7Ads713823set_digital_output_modeE7Channel10OutputModeRNSt10error_codeE","espp::Ads7138::set_digital_output_mode::output_mode"],[2,3,1,"_CPPv4N4espp7Ads713824set_digital_output_valueE7ChannelbRNSt10error_codeE","espp::Ads7138::set_digital_output_value"],[2,4,1,"_CPPv4N4espp7Ads713824set_digital_output_valueE7ChannelbRNSt10error_codeE","espp::Ads7138::set_digital_output_value::channel"],[2,4,1,"_CPPv4N4espp7Ads713824set_digital_output_valueE7ChannelbRNSt10error_codeE","espp::Ads7138::set_digital_output_value::ec"],[2,4,1,"_CPPv4N4espp7Ads713824set_digital_output_valueE7ChannelbRNSt10error_codeE","espp::Ads7138::set_digital_output_value::value"],[2,8,1,"_CPPv4N4espp7Ads71388write_fnE","espp::Ads7138::write_fn"],[19,2,1,"_CPPv4N4espp6As5600E","espp::As5600"],[19,3,1,"_CPPv4N4espp6As56006As5600ERK6Config","espp::As5600::As5600"],[19,4,1,"_CPPv4N4espp6As56006As5600ERK6Config","espp::As5600::As5600::config"],[19,1,1,"_CPPv4N4espp6As560021COUNTS_PER_REVOLUTIONE","espp::As5600::COUNTS_PER_REVOLUTION"],[19,1,1,"_CPPv4N4espp6As560023COUNTS_PER_REVOLUTION_FE","espp::As5600::COUNTS_PER_REVOLUTION_F"],[19,1,1,"_CPPv4N4espp6As560017COUNTS_TO_DEGREESE","espp::As5600::COUNTS_TO_DEGREES"],[19,1,1,"_CPPv4N4espp6As560017COUNTS_TO_RADIANSE","espp::As5600::COUNTS_TO_RADIANS"],[19,2,1,"_CPPv4N4espp6As56006ConfigE","espp::As5600::Config"],[19,1,1,"_CPPv4N4espp6As56006Config9auto_initE","espp::As5600::Config::auto_init"],[19,1,1,"_CPPv4N4espp6As56006Config14device_addressE","espp::As5600::Config::device_address"],[19,1,1,"_CPPv4N4espp6As56006Config4readE","espp::As5600::Config::read"],[19,1,1,"_CPPv4N4espp6As56006Config13update_periodE","espp::As5600::Config::update_period"],[19,1,1,"_CPPv4N4espp6As56006Config15velocity_filterE","espp::As5600::Config::velocity_filter"],[19,1,1,"_CPPv4N4espp6As56006Config5writeE","espp::As5600::Config::write"],[19,1,1,"_CPPv4N4espp6As560015DEFAULT_ADDRESSE","espp::As5600::DEFAULT_ADDRESS"],[19,1,1,"_CPPv4N4espp6As560018SECONDS_PER_MINUTEE","espp::As5600::SECONDS_PER_MINUTE"],[19,3,1,"_CPPv4NK4espp6As560015get_accumulatorEv","espp::As5600::get_accumulator"],[19,3,1,"_CPPv4NK4espp6As56009get_countEv","espp::As5600::get_count"],[19,3,1,"_CPPv4NK4espp6As560011get_degreesEv","espp::As5600::get_degrees"],[19,3,1,"_CPPv4NK4espp6As560022get_mechanical_degreesEv","espp::As5600::get_mechanical_degrees"],[19,3,1,"_CPPv4NK4espp6As560022get_mechanical_radiansEv","espp::As5600::get_mechanical_radians"],[19,3,1,"_CPPv4NK4espp6As560011get_radiansEv","espp::As5600::get_radians"],[19,3,1,"_CPPv4NK4espp6As56007get_rpmEv","espp::As5600::get_rpm"],[19,3,1,"_CPPv4N4espp6As560010initializeERNSt10error_codeE","espp::As5600::initialize"],[19,4,1,"_CPPv4N4espp6As560010initializeERNSt10error_codeE","espp::As5600::initialize::ec"],[19,3,1,"_CPPv4NK4espp6As560017needs_zero_searchEv","espp::As5600::needs_zero_search"],[19,8,1,"_CPPv4N4espp6As56007read_fnE","espp::As5600::read_fn"],[19,8,1,"_CPPv4N4espp6As560018velocity_filter_fnE","espp::As5600::velocity_filter_fn"],[19,8,1,"_CPPv4N4espp6As56008write_fnE","espp::As5600::write_fn"],[46,2,1,"_CPPv4N4espp6Aw9523E","espp::Aw9523"],[46,3,1,"_CPPv4N4espp6Aw95236Aw9523ERK6Config","espp::Aw9523::Aw9523"],[46,4,1,"_CPPv4N4espp6Aw95236Aw9523ERK6Config","espp::Aw9523::Aw9523::config"],[46,2,1,"_CPPv4N4espp6Aw95236ConfigE","espp::Aw9523::Config"],[46,1,1,"_CPPv4N4espp6Aw95236Config9auto_initE","espp::Aw9523::Config::auto_init"],[46,1,1,"_CPPv4N4espp6Aw95236Config14device_addressE","espp::Aw9523::Config::device_address"],[46,1,1,"_CPPv4N4espp6Aw95236Config9log_levelE","espp::Aw9523::Config::log_level"],[46,1,1,"_CPPv4N4espp6Aw95236Config15max_led_currentE","espp::Aw9523::Config::max_led_current"],[46,1,1,"_CPPv4N4espp6Aw95236Config20output_drive_mode_p0E","espp::Aw9523::Config::output_drive_mode_p0"],[46,1,1,"_CPPv4N4espp6Aw95236Config21port_0_direction_maskE","espp::Aw9523::Config::port_0_direction_mask"],[46,1,1,"_CPPv4N4espp6Aw95236Config21port_0_interrupt_maskE","espp::Aw9523::Config::port_0_interrupt_mask"],[46,1,1,"_CPPv4N4espp6Aw95236Config21port_1_direction_maskE","espp::Aw9523::Config::port_1_direction_mask"],[46,1,1,"_CPPv4N4espp6Aw95236Config21port_1_interrupt_maskE","espp::Aw9523::Config::port_1_interrupt_mask"],[46,1,1,"_CPPv4N4espp6Aw95236Config4readE","espp::Aw9523::Config::read"],[46,1,1,"_CPPv4N4espp6Aw95236Config5writeE","espp::Aw9523::Config::write"],[46,1,1,"_CPPv4N4espp6Aw952315DEFAULT_ADDRESSE","espp::Aw9523::DEFAULT_ADDRESS"],[46,6,1,"_CPPv4N4espp6Aw952313MaxLedCurrentE","espp::Aw9523::MaxLedCurrent"],[46,7,1,"_CPPv4N4espp6Aw952313MaxLedCurrent4IMAXE","espp::Aw9523::MaxLedCurrent::IMAX"],[46,7,1,"_CPPv4N4espp6Aw952313MaxLedCurrent7IMAX_25E","espp::Aw9523::MaxLedCurrent::IMAX_25"],[46,7,1,"_CPPv4N4espp6Aw952313MaxLedCurrent7IMAX_50E","espp::Aw9523::MaxLedCurrent::IMAX_50"],[46,7,1,"_CPPv4N4espp6Aw952313MaxLedCurrent7IMAX_75E","espp::Aw9523::MaxLedCurrent::IMAX_75"],[46,6,1,"_CPPv4N4espp6Aw952317OutputDriveModeP0E","espp::Aw9523::OutputDriveModeP0"],[46,7,1,"_CPPv4N4espp6Aw952317OutputDriveModeP010OPEN_DRAINE","espp::Aw9523::OutputDriveModeP0::OPEN_DRAIN"],[46,7,1,"_CPPv4N4espp6Aw952317OutputDriveModeP09PUSH_PULLE","espp::Aw9523::OutputDriveModeP0::PUSH_PULL"],[46,6,1,"_CPPv4N4espp6Aw95234PortE","espp::Aw9523::Port"],[46,7,1,"_CPPv4N4espp6Aw95234Port5PORT0E","espp::Aw9523::Port::PORT0"],[46,7,1,"_CPPv4N4espp6Aw95234Port5PORT1E","espp::Aw9523::Port::PORT1"],[46,3,1,"_CPPv4N4espp6Aw952310clear_pinsE4Port7uint8_tRNSt10error_codeE","espp::Aw9523::clear_pins"],[46,3,1,"_CPPv4N4espp6Aw952310clear_pinsE7uint8_t7uint8_tRNSt10error_codeE","espp::Aw9523::clear_pins"],[46,3,1,"_CPPv4N4espp6Aw952310clear_pinsE8uint16_tRNSt10error_codeE","espp::Aw9523::clear_pins"],[46,4,1,"_CPPv4N4espp6Aw952310clear_pinsE4Port7uint8_tRNSt10error_codeE","espp::Aw9523::clear_pins::ec"],[46,4,1,"_CPPv4N4espp6Aw952310clear_pinsE7uint8_t7uint8_tRNSt10error_codeE","espp::Aw9523::clear_pins::ec"],[46,4,1,"_CPPv4N4espp6Aw952310clear_pinsE8uint16_tRNSt10error_codeE","espp::Aw9523::clear_pins::ec"],[46,4,1,"_CPPv4N4espp6Aw952310clear_pinsE4Port7uint8_tRNSt10error_codeE","espp::Aw9523::clear_pins::mask"],[46,4,1,"_CPPv4N4espp6Aw952310clear_pinsE8uint16_tRNSt10error_codeE","espp::Aw9523::clear_pins::mask"],[46,4,1,"_CPPv4N4espp6Aw952310clear_pinsE7uint8_t7uint8_tRNSt10error_codeE","espp::Aw9523::clear_pins::p0"],[46,4,1,"_CPPv4N4espp6Aw952310clear_pinsE7uint8_t7uint8_tRNSt10error_codeE","espp::Aw9523::clear_pins::p1"],[46,4,1,"_CPPv4N4espp6Aw952310clear_pinsE4Port7uint8_tRNSt10error_codeE","espp::Aw9523::clear_pins::port"],[46,3,1,"_CPPv4N4espp6Aw952324configure_global_controlE17OutputDriveModeP013MaxLedCurrentRNSt10error_codeE","espp::Aw9523::configure_global_control"],[46,4,1,"_CPPv4N4espp6Aw952324configure_global_controlE17OutputDriveModeP013MaxLedCurrentRNSt10error_codeE","espp::Aw9523::configure_global_control::ec"],[46,4,1,"_CPPv4N4espp6Aw952324configure_global_controlE17OutputDriveModeP013MaxLedCurrentRNSt10error_codeE","espp::Aw9523::configure_global_control::max_led_current"],[46,4,1,"_CPPv4N4espp6Aw952324configure_global_controlE17OutputDriveModeP013MaxLedCurrentRNSt10error_codeE","espp::Aw9523::configure_global_control::output_drive_mode_p0"],[46,3,1,"_CPPv4N4espp6Aw952313configure_ledE4Port7uint8_tRNSt10error_codeE","espp::Aw9523::configure_led"],[46,3,1,"_CPPv4N4espp6Aw952313configure_ledE7uint8_t7uint8_tRNSt10error_codeE","espp::Aw9523::configure_led"],[46,3,1,"_CPPv4N4espp6Aw952313configure_ledE8uint16_tRNSt10error_codeE","espp::Aw9523::configure_led"],[46,4,1,"_CPPv4N4espp6Aw952313configure_ledE4Port7uint8_tRNSt10error_codeE","espp::Aw9523::configure_led::ec"],[46,4,1,"_CPPv4N4espp6Aw952313configure_ledE7uint8_t7uint8_tRNSt10error_codeE","espp::Aw9523::configure_led::ec"],[46,4,1,"_CPPv4N4espp6Aw952313configure_ledE8uint16_tRNSt10error_codeE","espp::Aw9523::configure_led::ec"],[46,4,1,"_CPPv4N4espp6Aw952313configure_ledE4Port7uint8_tRNSt10error_codeE","espp::Aw9523::configure_led::mask"],[46,4,1,"_CPPv4N4espp6Aw952313configure_ledE8uint16_tRNSt10error_codeE","espp::Aw9523::configure_led::mask"],[46,4,1,"_CPPv4N4espp6Aw952313configure_ledE7uint8_t7uint8_tRNSt10error_codeE","espp::Aw9523::configure_led::p0"],[46,4,1,"_CPPv4N4espp6Aw952313configure_ledE7uint8_t7uint8_tRNSt10error_codeE","espp::Aw9523::configure_led::p1"],[46,4,1,"_CPPv4N4espp6Aw952313configure_ledE4Port7uint8_tRNSt10error_codeE","espp::Aw9523::configure_led::port"],[46,3,1,"_CPPv4N4espp6Aw952310get_outputE4PortRNSt10error_codeE","espp::Aw9523::get_output"],[46,3,1,"_CPPv4N4espp6Aw952310get_outputERNSt10error_codeE","espp::Aw9523::get_output"],[46,4,1,"_CPPv4N4espp6Aw952310get_outputE4PortRNSt10error_codeE","espp::Aw9523::get_output::ec"],[46,4,1,"_CPPv4N4espp6Aw952310get_outputERNSt10error_codeE","espp::Aw9523::get_output::ec"],[46,4,1,"_CPPv4N4espp6Aw952310get_outputE4PortRNSt10error_codeE","espp::Aw9523::get_output::port"],[46,3,1,"_CPPv4N4espp6Aw95238get_pinsE4PortRNSt10error_codeE","espp::Aw9523::get_pins"],[46,3,1,"_CPPv4N4espp6Aw95238get_pinsERNSt10error_codeE","espp::Aw9523::get_pins"],[46,4,1,"_CPPv4N4espp6Aw95238get_pinsE4PortRNSt10error_codeE","espp::Aw9523::get_pins::ec"],[46,4,1,"_CPPv4N4espp6Aw95238get_pinsERNSt10error_codeE","espp::Aw9523::get_pins::ec"],[46,4,1,"_CPPv4N4espp6Aw95238get_pinsE4PortRNSt10error_codeE","espp::Aw9523::get_pins::port"],[46,3,1,"_CPPv4N4espp6Aw952310initializeERNSt10error_codeE","espp::Aw9523::initialize"],[46,4,1,"_CPPv4N4espp6Aw952310initializeERNSt10error_codeE","espp::Aw9523::initialize::ec"],[46,3,1,"_CPPv4N4espp6Aw95233ledE8uint16_t7uint8_tRNSt10error_codeE","espp::Aw9523::led"],[46,4,1,"_CPPv4N4espp6Aw95233ledE8uint16_t7uint8_tRNSt10error_codeE","espp::Aw9523::led::brightness"],[46,4,1,"_CPPv4N4espp6Aw95233ledE8uint16_t7uint8_tRNSt10error_codeE","espp::Aw9523::led::ec"],[46,4,1,"_CPPv4N4espp6Aw95233ledE8uint16_t7uint8_tRNSt10error_codeE","espp::Aw9523::led::pin"],[46,3,1,"_CPPv4N4espp6Aw95236outputE4Port7uint8_tRNSt10error_codeE","espp::Aw9523::output"],[46,3,1,"_CPPv4N4espp6Aw95236outputE7uint8_t7uint8_tRNSt10error_codeE","espp::Aw9523::output"],[46,3,1,"_CPPv4N4espp6Aw95236outputE8uint16_tRNSt10error_codeE","espp::Aw9523::output"],[46,4,1,"_CPPv4N4espp6Aw95236outputE4Port7uint8_tRNSt10error_codeE","espp::Aw9523::output::ec"],[46,4,1,"_CPPv4N4espp6Aw95236outputE7uint8_t7uint8_tRNSt10error_codeE","espp::Aw9523::output::ec"],[46,4,1,"_CPPv4N4espp6Aw95236outputE8uint16_tRNSt10error_codeE","espp::Aw9523::output::ec"],[46,4,1,"_CPPv4N4espp6Aw95236outputE7uint8_t7uint8_tRNSt10error_codeE","espp::Aw9523::output::p0"],[46,4,1,"_CPPv4N4espp6Aw95236outputE7uint8_t7uint8_tRNSt10error_codeE","espp::Aw9523::output::p1"],[46,4,1,"_CPPv4N4espp6Aw95236outputE4Port7uint8_tRNSt10error_codeE","espp::Aw9523::output::port"],[46,4,1,"_CPPv4N4espp6Aw95236outputE4Port7uint8_tRNSt10error_codeE","espp::Aw9523::output::value"],[46,4,1,"_CPPv4N4espp6Aw95236outputE8uint16_tRNSt10error_codeE","espp::Aw9523::output::value"],[46,8,1,"_CPPv4N4espp6Aw95237read_fnE","espp::Aw9523::read_fn"],[46,3,1,"_CPPv4N4espp6Aw952313set_directionE4Port7uint8_tRNSt10error_codeE","espp::Aw9523::set_direction"],[46,3,1,"_CPPv4N4espp6Aw952313set_directionE7uint8_t7uint8_tRNSt10error_codeE","espp::Aw9523::set_direction"],[46,4,1,"_CPPv4N4espp6Aw952313set_directionE4Port7uint8_tRNSt10error_codeE","espp::Aw9523::set_direction::ec"],[46,4,1,"_CPPv4N4espp6Aw952313set_directionE7uint8_t7uint8_tRNSt10error_codeE","espp::Aw9523::set_direction::ec"],[46,4,1,"_CPPv4N4espp6Aw952313set_directionE4Port7uint8_tRNSt10error_codeE","espp::Aw9523::set_direction::mask"],[46,4,1,"_CPPv4N4espp6Aw952313set_directionE7uint8_t7uint8_tRNSt10error_codeE","espp::Aw9523::set_direction::p0"],[46,4,1,"_CPPv4N4espp6Aw952313set_directionE7uint8_t7uint8_tRNSt10error_codeE","espp::Aw9523::set_direction::p1"],[46,4,1,"_CPPv4N4espp6Aw952313set_directionE4Port7uint8_tRNSt10error_codeE","espp::Aw9523::set_direction::port"],[46,3,1,"_CPPv4N4espp6Aw952313set_interruptE4Port7uint8_tRNSt10error_codeE","espp::Aw9523::set_interrupt"],[46,3,1,"_CPPv4N4espp6Aw952313set_interruptE7uint8_t7uint8_tRNSt10error_codeE","espp::Aw9523::set_interrupt"],[46,4,1,"_CPPv4N4espp6Aw952313set_interruptE4Port7uint8_tRNSt10error_codeE","espp::Aw9523::set_interrupt::ec"],[46,4,1,"_CPPv4N4espp6Aw952313set_interruptE7uint8_t7uint8_tRNSt10error_codeE","espp::Aw9523::set_interrupt::ec"],[46,4,1,"_CPPv4N4espp6Aw952313set_interruptE4Port7uint8_tRNSt10error_codeE","espp::Aw9523::set_interrupt::mask"],[46,4,1,"_CPPv4N4espp6Aw952313set_interruptE7uint8_t7uint8_tRNSt10error_codeE","espp::Aw9523::set_interrupt::p0"],[46,4,1,"_CPPv4N4espp6Aw952313set_interruptE7uint8_t7uint8_tRNSt10error_codeE","espp::Aw9523::set_interrupt::p1"],[46,4,1,"_CPPv4N4espp6Aw952313set_interruptE4Port7uint8_tRNSt10error_codeE","espp::Aw9523::set_interrupt::port"],[46,3,1,"_CPPv4N4espp6Aw95238set_pinsE4Port7uint8_tRNSt10error_codeE","espp::Aw9523::set_pins"],[46,3,1,"_CPPv4N4espp6Aw95238set_pinsE7uint8_t7uint8_tRNSt10error_codeE","espp::Aw9523::set_pins"],[46,3,1,"_CPPv4N4espp6Aw95238set_pinsE8uint16_tRNSt10error_codeE","espp::Aw9523::set_pins"],[46,4,1,"_CPPv4N4espp6Aw95238set_pinsE4Port7uint8_tRNSt10error_codeE","espp::Aw9523::set_pins::ec"],[46,4,1,"_CPPv4N4espp6Aw95238set_pinsE7uint8_t7uint8_tRNSt10error_codeE","espp::Aw9523::set_pins::ec"],[46,4,1,"_CPPv4N4espp6Aw95238set_pinsE8uint16_tRNSt10error_codeE","espp::Aw9523::set_pins::ec"],[46,4,1,"_CPPv4N4espp6Aw95238set_pinsE4Port7uint8_tRNSt10error_codeE","espp::Aw9523::set_pins::mask"],[46,4,1,"_CPPv4N4espp6Aw95238set_pinsE8uint16_tRNSt10error_codeE","espp::Aw9523::set_pins::mask"],[46,4,1,"_CPPv4N4espp6Aw95238set_pinsE7uint8_t7uint8_tRNSt10error_codeE","espp::Aw9523::set_pins::p0"],[46,4,1,"_CPPv4N4espp6Aw95238set_pinsE7uint8_t7uint8_tRNSt10error_codeE","espp::Aw9523::set_pins::p1"],[46,4,1,"_CPPv4N4espp6Aw95238set_pinsE4Port7uint8_tRNSt10error_codeE","espp::Aw9523::set_pins::port"],[46,8,1,"_CPPv4N4espp6Aw95238write_fnE","espp::Aw9523::write_fn"],[53,2,1,"_CPPv4I0EN4espp6BezierE","espp::Bezier"],[53,3,1,"_CPPv4N4espp6Bezier6BezierERK14WeightedConfig","espp::Bezier::Bezier"],[53,3,1,"_CPPv4N4espp6Bezier6BezierERK6Config","espp::Bezier::Bezier"],[53,4,1,"_CPPv4N4espp6Bezier6BezierERK14WeightedConfig","espp::Bezier::Bezier::config"],[53,4,1,"_CPPv4N4espp6Bezier6BezierERK6Config","espp::Bezier::Bezier::config"],[53,2,1,"_CPPv4N4espp6Bezier6ConfigE","espp::Bezier::Config"],[53,1,1,"_CPPv4N4espp6Bezier6Config14control_pointsE","espp::Bezier::Config::control_points"],[53,5,1,"_CPPv4I0EN4espp6BezierE","espp::Bezier::T"],[53,2,1,"_CPPv4N4espp6Bezier14WeightedConfigE","espp::Bezier::WeightedConfig"],[53,1,1,"_CPPv4N4espp6Bezier14WeightedConfig14control_pointsE","espp::Bezier::WeightedConfig::control_points"],[53,1,1,"_CPPv4N4espp6Bezier14WeightedConfig7weightsE","espp::Bezier::WeightedConfig::weights"],[53,3,1,"_CPPv4NK4espp6Bezier2atEf","espp::Bezier::at"],[53,4,1,"_CPPv4NK4espp6Bezier2atEf","espp::Bezier::at::t"],[53,3,1,"_CPPv4NK4espp6BezierclEf","espp::Bezier::operator()"],[53,4,1,"_CPPv4NK4espp6BezierclEf","espp::Bezier::operator()::t"],[25,2,1,"_CPPv4N4espp15BiquadFilterDf1E","espp::BiquadFilterDf1"],[25,3,1,"_CPPv4N4espp15BiquadFilterDf16updateEf","espp::BiquadFilterDf1::update"],[25,4,1,"_CPPv4N4espp15BiquadFilterDf16updateEf","espp::BiquadFilterDf1::update::input"],[25,2,1,"_CPPv4N4espp15BiquadFilterDf2E","espp::BiquadFilterDf2"],[25,3,1,"_CPPv4N4espp15BiquadFilterDf26updateEKf","espp::BiquadFilterDf2::update"],[25,3,1,"_CPPv4N4espp15BiquadFilterDf26updateEPKfPf6size_t","espp::BiquadFilterDf2::update"],[25,4,1,"_CPPv4N4espp15BiquadFilterDf26updateEKf","espp::BiquadFilterDf2::update::input"],[25,4,1,"_CPPv4N4espp15BiquadFilterDf26updateEPKfPf6size_t","espp::BiquadFilterDf2::update::input"],[25,4,1,"_CPPv4N4espp15BiquadFilterDf26updateEPKfPf6size_t","espp::BiquadFilterDf2::update::length"],[25,4,1,"_CPPv4N4espp15BiquadFilterDf26updateEPKfPf6size_t","espp::BiquadFilterDf2::update::output"],[7,2,1,"_CPPv4N4espp10BldcDriverE","espp::BldcDriver"],[7,3,1,"_CPPv4N4espp10BldcDriver10BldcDriverERK6Config","espp::BldcDriver::BldcDriver"],[7,4,1,"_CPPv4N4espp10BldcDriver10BldcDriverERK6Config","espp::BldcDriver::BldcDriver::config"],[7,2,1,"_CPPv4N4espp10BldcDriver6ConfigE","espp::BldcDriver::Config"],[7,1,1,"_CPPv4N4espp10BldcDriver6Config9dead_zoneE","espp::BldcDriver::Config::dead_zone"],[7,1,1,"_CPPv4N4espp10BldcDriver6Config8gpio_a_hE","espp::BldcDriver::Config::gpio_a_h"],[7,1,1,"_CPPv4N4espp10BldcDriver6Config8gpio_a_lE","espp::BldcDriver::Config::gpio_a_l"],[7,1,1,"_CPPv4N4espp10BldcDriver6Config8gpio_b_hE","espp::BldcDriver::Config::gpio_b_h"],[7,1,1,"_CPPv4N4espp10BldcDriver6Config8gpio_b_lE","espp::BldcDriver::Config::gpio_b_l"],[7,1,1,"_CPPv4N4espp10BldcDriver6Config8gpio_c_hE","espp::BldcDriver::Config::gpio_c_h"],[7,1,1,"_CPPv4N4espp10BldcDriver6Config8gpio_c_lE","espp::BldcDriver::Config::gpio_c_l"],[7,1,1,"_CPPv4N4espp10BldcDriver6Config11gpio_enableE","espp::BldcDriver::Config::gpio_enable"],[7,1,1,"_CPPv4N4espp10BldcDriver6Config10gpio_faultE","espp::BldcDriver::Config::gpio_fault"],[7,1,1,"_CPPv4N4espp10BldcDriver6Config13limit_voltageE","espp::BldcDriver::Config::limit_voltage"],[7,1,1,"_CPPv4N4espp10BldcDriver6Config9log_levelE","espp::BldcDriver::Config::log_level"],[7,1,1,"_CPPv4N4espp10BldcDriver6Config20power_supply_voltageE","espp::BldcDriver::Config::power_supply_voltage"],[7,3,1,"_CPPv4N4espp10BldcDriver15configure_powerEff","espp::BldcDriver::configure_power"],[7,4,1,"_CPPv4N4espp10BldcDriver15configure_powerEff","espp::BldcDriver::configure_power::power_supply_voltage"],[7,4,1,"_CPPv4N4espp10BldcDriver15configure_powerEff","espp::BldcDriver::configure_power::voltage_limit"],[7,3,1,"_CPPv4N4espp10BldcDriver7disableEv","espp::BldcDriver::disable"],[7,3,1,"_CPPv4N4espp10BldcDriver6enableEv","espp::BldcDriver::enable"],[7,3,1,"_CPPv4NK4espp10BldcDriver22get_power_supply_limitEv","espp::BldcDriver::get_power_supply_limit"],[7,3,1,"_CPPv4NK4espp10BldcDriver17get_voltage_limitEv","espp::BldcDriver::get_voltage_limit"],[7,3,1,"_CPPv4NK4espp10BldcDriver10is_enabledEv","espp::BldcDriver::is_enabled"],[7,3,1,"_CPPv4N4espp10BldcDriver10is_faultedEv","espp::BldcDriver::is_faulted"],[7,3,1,"_CPPv4N4espp10BldcDriver15set_phase_stateEiii","espp::BldcDriver::set_phase_state"],[7,4,1,"_CPPv4N4espp10BldcDriver15set_phase_stateEiii","espp::BldcDriver::set_phase_state::state_a"],[7,4,1,"_CPPv4N4espp10BldcDriver15set_phase_stateEiii","espp::BldcDriver::set_phase_state::state_b"],[7,4,1,"_CPPv4N4espp10BldcDriver15set_phase_stateEiii","espp::BldcDriver::set_phase_state::state_c"],[7,3,1,"_CPPv4N4espp10BldcDriver7set_pwmEfff","espp::BldcDriver::set_pwm"],[7,4,1,"_CPPv4N4espp10BldcDriver7set_pwmEfff","espp::BldcDriver::set_pwm::duty_a"],[7,4,1,"_CPPv4N4espp10BldcDriver7set_pwmEfff","espp::BldcDriver::set_pwm::duty_b"],[7,4,1,"_CPPv4N4espp10BldcDriver7set_pwmEfff","espp::BldcDriver::set_pwm::duty_c"],[7,3,1,"_CPPv4N4espp10BldcDriver11set_voltageEfff","espp::BldcDriver::set_voltage"],[7,4,1,"_CPPv4N4espp10BldcDriver11set_voltageEfff","espp::BldcDriver::set_voltage::ua"],[7,4,1,"_CPPv4N4espp10BldcDriver11set_voltageEfff","espp::BldcDriver::set_voltage::ub"],[7,4,1,"_CPPv4N4espp10BldcDriver11set_voltageEfff","espp::BldcDriver::set_voltage::uc"],[7,3,1,"_CPPv4N4espp10BldcDriverD0Ev","espp::BldcDriver::~BldcDriver"],[33,2,1,"_CPPv4I_12MotorConceptEN4espp11BldcHapticsE","espp::BldcHaptics"],[33,3,1,"_CPPv4N4espp11BldcHaptics11BldcHapticsERK6Config","espp::BldcHaptics::BldcHaptics"],[33,4,1,"_CPPv4N4espp11BldcHaptics11BldcHapticsERK6Config","espp::BldcHaptics::BldcHaptics::config"],[33,2,1,"_CPPv4N4espp11BldcHaptics6ConfigE","espp::BldcHaptics::Config"],[33,1,1,"_CPPv4N4espp11BldcHaptics6Config13kd_factor_maxE","espp::BldcHaptics::Config::kd_factor_max"],[33,1,1,"_CPPv4N4espp11BldcHaptics6Config13kd_factor_minE","espp::BldcHaptics::Config::kd_factor_min"],[33,1,1,"_CPPv4N4espp11BldcHaptics6Config9kp_factorE","espp::BldcHaptics::Config::kp_factor"],[33,1,1,"_CPPv4N4espp11BldcHaptics6Config9log_levelE","espp::BldcHaptics::Config::log_level"],[33,1,1,"_CPPv4N4espp11BldcHaptics6Config5motorE","espp::BldcHaptics::Config::motor"],[33,5,1,"_CPPv4I_12MotorConceptEN4espp11BldcHapticsE","espp::BldcHaptics::M"],[33,3,1,"_CPPv4NK4espp11BldcHaptics12get_positionEv","espp::BldcHaptics::get_position"],[33,3,1,"_CPPv4NK4espp11BldcHaptics10is_runningEv","espp::BldcHaptics::is_running"],[33,3,1,"_CPPv4N4espp11BldcHaptics11play_hapticERKN6detail12HapticConfigE","espp::BldcHaptics::play_haptic"],[33,4,1,"_CPPv4N4espp11BldcHaptics11play_hapticERKN6detail12HapticConfigE","espp::BldcHaptics::play_haptic::config"],[33,3,1,"_CPPv4N4espp11BldcHaptics5startEv","espp::BldcHaptics::start"],[33,3,1,"_CPPv4N4espp11BldcHaptics4stopEv","espp::BldcHaptics::stop"],[33,3,1,"_CPPv4N4espp11BldcHaptics20update_detent_configERKN6detail12DetentConfigE","espp::BldcHaptics::update_detent_config"],[33,4,1,"_CPPv4N4espp11BldcHaptics20update_detent_configERKN6detail12DetentConfigE","espp::BldcHaptics::update_detent_config::config"],[33,3,1,"_CPPv4N4espp11BldcHapticsD0Ev","espp::BldcHaptics::~BldcHaptics"],[8,2,1,"_CPPv4I_13DriverConcept_13SensorConcept_20CurrentSensorConceptEN4espp9BldcMotorE","espp::BldcMotor"],[8,3,1,"_CPPv4N4espp9BldcMotor9BldcMotorERK6Config","espp::BldcMotor::BldcMotor"],[8,4,1,"_CPPv4N4espp9BldcMotor9BldcMotorERK6Config","espp::BldcMotor::BldcMotor::config"],[8,5,1,"_CPPv4I_13DriverConcept_13SensorConcept_20CurrentSensorConceptEN4espp9BldcMotorE","espp::BldcMotor::CS"],[8,2,1,"_CPPv4N4espp9BldcMotor6ConfigE","espp::BldcMotor::Config"],[8,1,1,"_CPPv4N4espp9BldcMotor6Config12angle_filterE","espp::BldcMotor::Config::angle_filter"],[8,1,1,"_CPPv4N4espp9BldcMotor6Config13current_limitE","espp::BldcMotor::Config::current_limit"],[8,1,1,"_CPPv4N4espp9BldcMotor6Config13current_senseE","espp::BldcMotor::Config::current_sense"],[8,1,1,"_CPPv4N4espp9BldcMotor6Config16d_current_filterE","espp::BldcMotor::Config::d_current_filter"],[8,1,1,"_CPPv4N4espp9BldcMotor6Config6driverE","espp::BldcMotor::Config::driver"],[8,1,1,"_CPPv4N4espp9BldcMotor6Config8foc_typeE","espp::BldcMotor::Config::foc_type"],[8,1,1,"_CPPv4N4espp9BldcMotor6Config9kv_ratingE","espp::BldcMotor::Config::kv_rating"],[8,1,1,"_CPPv4N4espp9BldcMotor6Config9log_levelE","espp::BldcMotor::Config::log_level"],[8,1,1,"_CPPv4N4espp9BldcMotor6Config14num_pole_pairsE","espp::BldcMotor::Config::num_pole_pairs"],[8,1,1,"_CPPv4N4espp9BldcMotor6Config16phase_inductanceE","espp::BldcMotor::Config::phase_inductance"],[8,1,1,"_CPPv4N4espp9BldcMotor6Config16phase_resistanceE","espp::BldcMotor::Config::phase_resistance"],[8,1,1,"_CPPv4N4espp9BldcMotor6Config16q_current_filterE","espp::BldcMotor::Config::q_current_filter"],[8,1,1,"_CPPv4N4espp9BldcMotor6Config6sensorE","espp::BldcMotor::Config::sensor"],[8,1,1,"_CPPv4N4espp9BldcMotor6Config17torque_controllerE","espp::BldcMotor::Config::torque_controller"],[8,1,1,"_CPPv4N4espp9BldcMotor6Config15velocity_filterE","espp::BldcMotor::Config::velocity_filter"],[8,1,1,"_CPPv4N4espp9BldcMotor6Config14velocity_limitE","espp::BldcMotor::Config::velocity_limit"],[8,5,1,"_CPPv4I_13DriverConcept_13SensorConcept_20CurrentSensorConceptEN4espp9BldcMotorE","espp::BldcMotor::D"],[8,5,1,"_CPPv4I_13DriverConcept_13SensorConcept_20CurrentSensorConceptEN4espp9BldcMotorE","espp::BldcMotor::S"],[8,3,1,"_CPPv4N4espp9BldcMotor7disableEv","espp::BldcMotor::disable"],[8,3,1,"_CPPv4N4espp9BldcMotor6enableEv","espp::BldcMotor::enable"],[8,8,1,"_CPPv4N4espp9BldcMotor9filter_fnE","espp::BldcMotor::filter_fn"],[8,3,1,"_CPPv4N4espp9BldcMotor20get_electrical_angleEv","espp::BldcMotor::get_electrical_angle"],[8,3,1,"_CPPv4N4espp9BldcMotor15get_shaft_angleEv","espp::BldcMotor::get_shaft_angle"],[8,3,1,"_CPPv4N4espp9BldcMotor18get_shaft_velocityEv","espp::BldcMotor::get_shaft_velocity"],[8,3,1,"_CPPv4NK4espp9BldcMotor10is_enabledEv","espp::BldcMotor::is_enabled"],[8,3,1,"_CPPv4N4espp9BldcMotor8loop_focEv","espp::BldcMotor::loop_foc"],[8,3,1,"_CPPv4N4espp9BldcMotor4moveEf","espp::BldcMotor::move"],[8,4,1,"_CPPv4N4espp9BldcMotor4moveEf","espp::BldcMotor::move::new_target"],[8,3,1,"_CPPv4N4espp9BldcMotor23set_motion_control_typeEN6detail17MotionControlTypeE","espp::BldcMotor::set_motion_control_type"],[8,4,1,"_CPPv4N4espp9BldcMotor23set_motion_control_typeEN6detail17MotionControlTypeE","espp::BldcMotor::set_motion_control_type::motion_control_type"],[8,3,1,"_CPPv4N4espp9BldcMotor17set_phase_voltageEfff","espp::BldcMotor::set_phase_voltage"],[8,4,1,"_CPPv4N4espp9BldcMotor17set_phase_voltageEfff","espp::BldcMotor::set_phase_voltage::el_angle"],[8,4,1,"_CPPv4N4espp9BldcMotor17set_phase_voltageEfff","espp::BldcMotor::set_phase_voltage::ud"],[8,4,1,"_CPPv4N4espp9BldcMotor17set_phase_voltageEfff","espp::BldcMotor::set_phase_voltage::uq"],[8,3,1,"_CPPv4N4espp9BldcMotorD0Ev","espp::BldcMotor::~BldcMotor"],[70,2,1,"_CPPv4N4espp6Bm8563E","espp::Bm8563"],[70,3,1,"_CPPv4N4espp6Bm85636Bm8563ERK6Config","espp::Bm8563::Bm8563"],[70,4,1,"_CPPv4N4espp6Bm85636Bm8563ERK6Config","espp::Bm8563::Bm8563::config"],[70,2,1,"_CPPv4N4espp6Bm85636ConfigE","espp::Bm8563::Config"],[70,1,1,"_CPPv4N4espp6Bm85636Config9log_levelE","espp::Bm8563::Config::log_level"],[70,1,1,"_CPPv4N4espp6Bm85636Config4readE","espp::Bm8563::Config::read"],[70,1,1,"_CPPv4N4espp6Bm85636Config5writeE","espp::Bm8563::Config::write"],[70,1,1,"_CPPv4N4espp6Bm856315DEFAULT_ADDRESSE","espp::Bm8563::DEFAULT_ADDRESS"],[70,2,1,"_CPPv4N4espp6Bm85634DateE","espp::Bm8563::Date"],[70,1,1,"_CPPv4N4espp6Bm85634Date3dayE","espp::Bm8563::Date::day"],[70,1,1,"_CPPv4N4espp6Bm85634Date5monthE","espp::Bm8563::Date::month"],[70,1,1,"_CPPv4N4espp6Bm85634Date7weekdayE","espp::Bm8563::Date::weekday"],[70,1,1,"_CPPv4N4espp6Bm85634Date4yearE","espp::Bm8563::Date::year"],[70,2,1,"_CPPv4N4espp6Bm85638DateTimeE","espp::Bm8563::DateTime"],[70,1,1,"_CPPv4N4espp6Bm85638DateTime4dateE","espp::Bm8563::DateTime::date"],[70,1,1,"_CPPv4N4espp6Bm85638DateTime4timeE","espp::Bm8563::DateTime::time"],[70,2,1,"_CPPv4N4espp6Bm85634TimeE","espp::Bm8563::Time"],[70,1,1,"_CPPv4N4espp6Bm85634Time4hourE","espp::Bm8563::Time::hour"],[70,1,1,"_CPPv4N4espp6Bm85634Time6minuteE","espp::Bm8563::Time::minute"],[70,1,1,"_CPPv4N4espp6Bm85634Time6secondE","espp::Bm8563::Time::second"],[70,3,1,"_CPPv4N4espp6Bm85638bcd2byteE7uint8_t","espp::Bm8563::bcd2byte"],[70,4,1,"_CPPv4N4espp6Bm85638bcd2byteE7uint8_t","espp::Bm8563::bcd2byte::value"],[70,3,1,"_CPPv4N4espp6Bm85638byte2bcdE7uint8_t","espp::Bm8563::byte2bcd"],[70,4,1,"_CPPv4N4espp6Bm85638byte2bcdE7uint8_t","espp::Bm8563::byte2bcd::value"],[70,3,1,"_CPPv4N4espp6Bm85638get_dateERNSt10error_codeE","espp::Bm8563::get_date"],[70,4,1,"_CPPv4N4espp6Bm85638get_dateERNSt10error_codeE","espp::Bm8563::get_date::ec"],[70,3,1,"_CPPv4N4espp6Bm856313get_date_timeERNSt10error_codeE","espp::Bm8563::get_date_time"],[70,4,1,"_CPPv4N4espp6Bm856313get_date_timeERNSt10error_codeE","espp::Bm8563::get_date_time::ec"],[70,3,1,"_CPPv4N4espp6Bm85638get_timeERNSt10error_codeE","espp::Bm8563::get_time"],[70,4,1,"_CPPv4N4espp6Bm85638get_timeERNSt10error_codeE","espp::Bm8563::get_time::ec"],[70,8,1,"_CPPv4N4espp6Bm85637read_fnE","espp::Bm8563::read_fn"],[70,3,1,"_CPPv4N4espp6Bm85638set_dateERK4DateRNSt10error_codeE","espp::Bm8563::set_date"],[70,4,1,"_CPPv4N4espp6Bm85638set_dateERK4DateRNSt10error_codeE","espp::Bm8563::set_date::d"],[70,4,1,"_CPPv4N4espp6Bm85638set_dateERK4DateRNSt10error_codeE","espp::Bm8563::set_date::ec"],[70,3,1,"_CPPv4N4espp6Bm856313set_date_timeER8DateTimeRNSt10error_codeE","espp::Bm8563::set_date_time"],[70,4,1,"_CPPv4N4espp6Bm856313set_date_timeER8DateTimeRNSt10error_codeE","espp::Bm8563::set_date_time::dt"],[70,4,1,"_CPPv4N4espp6Bm856313set_date_timeER8DateTimeRNSt10error_codeE","espp::Bm8563::set_date_time::ec"],[70,3,1,"_CPPv4N4espp6Bm85638set_timeERK4TimeRNSt10error_codeE","espp::Bm8563::set_time"],[70,4,1,"_CPPv4N4espp6Bm85638set_timeERK4TimeRNSt10error_codeE","espp::Bm8563::set_time::ec"],[70,4,1,"_CPPv4N4espp6Bm85638set_timeERK4TimeRNSt10error_codeE","espp::Bm8563::set_time::t"],[70,8,1,"_CPPv4N4espp6Bm85638write_fnE","espp::Bm8563::write_fn"],[26,2,1,"_CPPv4I_6size_t0EN4espp17ButterworthFilterE","espp::ButterworthFilter"],[26,3,1,"_CPPv4N4espp17ButterworthFilter17ButterworthFilterERK6Config","espp::ButterworthFilter::ButterworthFilter"],[26,4,1,"_CPPv4N4espp17ButterworthFilter17ButterworthFilterERK6Config","espp::ButterworthFilter::ButterworthFilter::config"],[26,2,1,"_CPPv4N4espp17ButterworthFilter6ConfigE","espp::ButterworthFilter::Config"],[26,1,1,"_CPPv4N4espp17ButterworthFilter6Config27normalized_cutoff_frequencyE","espp::ButterworthFilter::Config::normalized_cutoff_frequency"],[26,5,1,"_CPPv4I_6size_t0EN4espp17ButterworthFilterE","espp::ButterworthFilter::Impl"],[26,5,1,"_CPPv4I_6size_t0EN4espp17ButterworthFilterE","espp::ButterworthFilter::ORDER"],[26,3,1,"_CPPv4N4espp17ButterworthFilterclEf","espp::ButterworthFilter::operator()"],[26,4,1,"_CPPv4N4espp17ButterworthFilterclEf","espp::ButterworthFilter::operator()::input"],[26,3,1,"_CPPv4N4espp17ButterworthFilter6updateEf","espp::ButterworthFilter::update"],[26,4,1,"_CPPv4N4espp17ButterworthFilter6updateEf","espp::ButterworthFilter::update::input"],[10,2,1,"_CPPv4N4espp6ButtonE","espp::Button"],[10,6,1,"_CPPv4N4espp6Button11ActiveLevelE","espp::Button::ActiveLevel"],[10,7,1,"_CPPv4N4espp6Button11ActiveLevel4HIGHE","espp::Button::ActiveLevel::HIGH"],[10,7,1,"_CPPv4N4espp6Button11ActiveLevel3LOWE","espp::Button::ActiveLevel::LOW"],[10,3,1,"_CPPv4N4espp6Button6ButtonERK6Config","espp::Button::Button"],[10,4,1,"_CPPv4N4espp6Button6ButtonERK6Config","espp::Button::Button::config"],[10,2,1,"_CPPv4N4espp6Button6ConfigE","espp::Button::Config"],[10,1,1,"_CPPv4N4espp6Button6Config12active_levelE","espp::Button::Config::active_level"],[10,1,1,"_CPPv4N4espp6Button6Config8callbackE","espp::Button::Config::callback"],[10,1,1,"_CPPv4N4espp6Button6Config7core_idE","espp::Button::Config::core_id"],[10,1,1,"_CPPv4N4espp6Button6Config8gpio_numE","espp::Button::Config::gpio_num"],[10,1,1,"_CPPv4N4espp6Button6Config14interrupt_typeE","espp::Button::Config::interrupt_type"],[10,1,1,"_CPPv4N4espp6Button6Config9log_levelE","espp::Button::Config::log_level"],[10,1,1,"_CPPv4N4espp6Button6Config4nameE","espp::Button::Config::name"],[10,1,1,"_CPPv4N4espp6Button6Config8priorityE","espp::Button::Config::priority"],[10,1,1,"_CPPv4N4espp6Button6Config16pulldown_enabledE","espp::Button::Config::pulldown_enabled"],[10,1,1,"_CPPv4N4espp6Button6Config14pullup_enabledE","espp::Button::Config::pullup_enabled"],[10,1,1,"_CPPv4N4espp6Button6Config21task_stack_size_bytesE","espp::Button::Config::task_stack_size_bytes"],[10,2,1,"_CPPv4N4espp6Button5EventE","espp::Button::Event"],[10,1,1,"_CPPv4N4espp6Button5Event8gpio_numE","espp::Button::Event::gpio_num"],[10,1,1,"_CPPv4N4espp6Button5Event7pressedE","espp::Button::Event::pressed"],[10,6,1,"_CPPv4N4espp6Button13InterruptTypeE","espp::Button::InterruptType"],[10,7,1,"_CPPv4N4espp6Button13InterruptType8ANY_EDGEE","espp::Button::InterruptType::ANY_EDGE"],[10,7,1,"_CPPv4N4espp6Button13InterruptType12FALLING_EDGEE","espp::Button::InterruptType::FALLING_EDGE"],[10,7,1,"_CPPv4N4espp6Button13InterruptType10HIGH_LEVELE","espp::Button::InterruptType::HIGH_LEVEL"],[10,7,1,"_CPPv4N4espp6Button13InterruptType9LOW_LEVELE","espp::Button::InterruptType::LOW_LEVEL"],[10,7,1,"_CPPv4N4espp6Button13InterruptType11RISING_EDGEE","espp::Button::InterruptType::RISING_EDGE"],[10,8,1,"_CPPv4N4espp6Button17event_callback_fnE","espp::Button::event_callback_fn"],[10,3,1,"_CPPv4NK4espp6Button10is_pressedEv","espp::Button::is_pressed"],[10,3,1,"_CPPv4N4espp6ButtonD0Ev","espp::Button::~Button"],[11,2,1,"_CPPv4N4espp3CliE","espp::Cli"],[11,3,1,"_CPPv4N4espp3Cli3CliERN3cli3CliERNSt7istreamERNSt7ostreamE","espp::Cli::Cli"],[11,4,1,"_CPPv4N4espp3Cli3CliERN3cli3CliERNSt7istreamERNSt7ostreamE","espp::Cli::Cli::_cli"],[11,4,1,"_CPPv4N4espp3Cli3CliERN3cli3CliERNSt7istreamERNSt7ostreamE","espp::Cli::Cli::_in"],[11,4,1,"_CPPv4N4espp3Cli3CliERN3cli3CliERNSt7istreamERNSt7ostreamE","espp::Cli::Cli::_out"],[11,3,1,"_CPPv4NK4espp3Cli15GetInputHistoryEv","espp::Cli::GetInputHistory"],[11,3,1,"_CPPv4N4espp3Cli15SetHandleResizeEb","espp::Cli::SetHandleResize"],[11,4,1,"_CPPv4N4espp3Cli15SetHandleResizeEb","espp::Cli::SetHandleResize::handle_resize"],[11,3,1,"_CPPv4N4espp3Cli15SetInputHistoryERKN9LineInput7HistoryE","espp::Cli::SetInputHistory"],[11,4,1,"_CPPv4N4espp3Cli15SetInputHistoryERKN9LineInput7HistoryE","espp::Cli::SetInputHistory::history"],[11,3,1,"_CPPv4N4espp3Cli19SetInputHistorySizeE6size_t","espp::Cli::SetInputHistorySize"],[11,4,1,"_CPPv4N4espp3Cli19SetInputHistorySizeE6size_t","espp::Cli::SetInputHistorySize::history_size"],[11,3,1,"_CPPv4N4espp3Cli5StartEv","espp::Cli::Start"],[11,3,1,"_CPPv4N4espp3Cli22configure_stdin_stdoutEv","espp::Cli::configure_stdin_stdout"],[3,2,1,"_CPPv4N4espp13ContinuousAdcE","espp::ContinuousAdc"],[3,2,1,"_CPPv4N4espp13ContinuousAdc6ConfigE","espp::ContinuousAdc::Config"],[3,1,1,"_CPPv4N4espp13ContinuousAdc6Config8channelsE","espp::ContinuousAdc::Config::channels"],[3,1,1,"_CPPv4N4espp13ContinuousAdc6Config12convert_modeE","espp::ContinuousAdc::Config::convert_mode"],[3,1,1,"_CPPv4N4espp13ContinuousAdc6Config9log_levelE","espp::ContinuousAdc::Config::log_level"],[3,1,1,"_CPPv4N4espp13ContinuousAdc6Config14sample_rate_hzE","espp::ContinuousAdc::Config::sample_rate_hz"],[3,1,1,"_CPPv4N4espp13ContinuousAdc6Config13task_priorityE","espp::ContinuousAdc::Config::task_priority"],[3,1,1,"_CPPv4N4espp13ContinuousAdc6Config17window_size_bytesE","espp::ContinuousAdc::Config::window_size_bytes"],[3,3,1,"_CPPv4N4espp13ContinuousAdc13ContinuousAdcERK6Config","espp::ContinuousAdc::ContinuousAdc"],[3,4,1,"_CPPv4N4espp13ContinuousAdc13ContinuousAdcERK6Config","espp::ContinuousAdc::ContinuousAdc::config"],[3,3,1,"_CPPv4N4espp13ContinuousAdc6get_mvERK9AdcConfig","espp::ContinuousAdc::get_mv"],[3,4,1,"_CPPv4N4espp13ContinuousAdc6get_mvERK9AdcConfig","espp::ContinuousAdc::get_mv::config"],[3,3,1,"_CPPv4N4espp13ContinuousAdc8get_rateERK9AdcConfig","espp::ContinuousAdc::get_rate"],[3,4,1,"_CPPv4N4espp13ContinuousAdc8get_rateERK9AdcConfig","espp::ContinuousAdc::get_rate::config"],[3,3,1,"_CPPv4N4espp13ContinuousAdc5startEv","espp::ContinuousAdc::start"],[3,3,1,"_CPPv4N4espp13ContinuousAdc4stopEv","espp::ContinuousAdc::stop"],[3,3,1,"_CPPv4N4espp13ContinuousAdcD0Ev","espp::ContinuousAdc::~ContinuousAdc"],[13,2,1,"_CPPv4N4espp10ControllerE","espp::Controller"],[13,2,1,"_CPPv4N4espp10Controller20AnalogJoystickConfigE","espp::Controller::AnalogJoystickConfig"],[13,1,1,"_CPPv4N4espp10Controller20AnalogJoystickConfig10active_lowE","espp::Controller::AnalogJoystickConfig::active_low"],[13,1,1,"_CPPv4N4espp10Controller20AnalogJoystickConfig6gpio_aE","espp::Controller::AnalogJoystickConfig::gpio_a"],[13,1,1,"_CPPv4N4espp10Controller20AnalogJoystickConfig6gpio_bE","espp::Controller::AnalogJoystickConfig::gpio_b"],[13,1,1,"_CPPv4N4espp10Controller20AnalogJoystickConfig20gpio_joystick_selectE","espp::Controller::AnalogJoystickConfig::gpio_joystick_select"],[13,1,1,"_CPPv4N4espp10Controller20AnalogJoystickConfig11gpio_selectE","espp::Controller::AnalogJoystickConfig::gpio_select"],[13,1,1,"_CPPv4N4espp10Controller20AnalogJoystickConfig10gpio_startE","espp::Controller::AnalogJoystickConfig::gpio_start"],[13,1,1,"_CPPv4N4espp10Controller20AnalogJoystickConfig6gpio_xE","espp::Controller::AnalogJoystickConfig::gpio_x"],[13,1,1,"_CPPv4N4espp10Controller20AnalogJoystickConfig6gpio_yE","espp::Controller::AnalogJoystickConfig::gpio_y"],[13,1,1,"_CPPv4N4espp10Controller20AnalogJoystickConfig15joystick_configE","espp::Controller::AnalogJoystickConfig::joystick_config"],[13,1,1,"_CPPv4N4espp10Controller20AnalogJoystickConfig9log_levelE","espp::Controller::AnalogJoystickConfig::log_level"],[13,6,1,"_CPPv4N4espp10Controller6ButtonE","espp::Controller::Button"],[13,7,1,"_CPPv4N4espp10Controller6Button1AE","espp::Controller::Button::A"],[13,7,1,"_CPPv4N4espp10Controller6Button1BE","espp::Controller::Button::B"],[13,7,1,"_CPPv4N4espp10Controller6Button4DOWNE","espp::Controller::Button::DOWN"],[13,7,1,"_CPPv4N4espp10Controller6Button15JOYSTICK_SELECTE","espp::Controller::Button::JOYSTICK_SELECT"],[13,7,1,"_CPPv4N4espp10Controller6Button11LAST_UNUSEDE","espp::Controller::Button::LAST_UNUSED"],[13,7,1,"_CPPv4N4espp10Controller6Button4LEFTE","espp::Controller::Button::LEFT"],[13,7,1,"_CPPv4N4espp10Controller6Button5RIGHTE","espp::Controller::Button::RIGHT"],[13,7,1,"_CPPv4N4espp10Controller6Button6SELECTE","espp::Controller::Button::SELECT"],[13,7,1,"_CPPv4N4espp10Controller6Button5STARTE","espp::Controller::Button::START"],[13,7,1,"_CPPv4N4espp10Controller6Button2UPE","espp::Controller::Button::UP"],[13,7,1,"_CPPv4N4espp10Controller6Button1XE","espp::Controller::Button::X"],[13,7,1,"_CPPv4N4espp10Controller6Button1YE","espp::Controller::Button::Y"],[13,3,1,"_CPPv4N4espp10Controller10ControllerERK10DualConfig","espp::Controller::Controller"],[13,3,1,"_CPPv4N4espp10Controller10ControllerERK13DigitalConfig","espp::Controller::Controller"],[13,3,1,"_CPPv4N4espp10Controller10ControllerERK20AnalogJoystickConfig","espp::Controller::Controller"],[13,4,1,"_CPPv4N4espp10Controller10ControllerERK10DualConfig","espp::Controller::Controller::config"],[13,4,1,"_CPPv4N4espp10Controller10ControllerERK13DigitalConfig","espp::Controller::Controller::config"],[13,4,1,"_CPPv4N4espp10Controller10ControllerERK20AnalogJoystickConfig","espp::Controller::Controller::config"],[13,2,1,"_CPPv4N4espp10Controller13DigitalConfigE","espp::Controller::DigitalConfig"],[13,1,1,"_CPPv4N4espp10Controller13DigitalConfig10active_lowE","espp::Controller::DigitalConfig::active_low"],[13,1,1,"_CPPv4N4espp10Controller13DigitalConfig6gpio_aE","espp::Controller::DigitalConfig::gpio_a"],[13,1,1,"_CPPv4N4espp10Controller13DigitalConfig6gpio_bE","espp::Controller::DigitalConfig::gpio_b"],[13,1,1,"_CPPv4N4espp10Controller13DigitalConfig9gpio_downE","espp::Controller::DigitalConfig::gpio_down"],[13,1,1,"_CPPv4N4espp10Controller13DigitalConfig9gpio_leftE","espp::Controller::DigitalConfig::gpio_left"],[13,1,1,"_CPPv4N4espp10Controller13DigitalConfig10gpio_rightE","espp::Controller::DigitalConfig::gpio_right"],[13,1,1,"_CPPv4N4espp10Controller13DigitalConfig11gpio_selectE","espp::Controller::DigitalConfig::gpio_select"],[13,1,1,"_CPPv4N4espp10Controller13DigitalConfig10gpio_startE","espp::Controller::DigitalConfig::gpio_start"],[13,1,1,"_CPPv4N4espp10Controller13DigitalConfig7gpio_upE","espp::Controller::DigitalConfig::gpio_up"],[13,1,1,"_CPPv4N4espp10Controller13DigitalConfig6gpio_xE","espp::Controller::DigitalConfig::gpio_x"],[13,1,1,"_CPPv4N4espp10Controller13DigitalConfig6gpio_yE","espp::Controller::DigitalConfig::gpio_y"],[13,1,1,"_CPPv4N4espp10Controller13DigitalConfig9log_levelE","espp::Controller::DigitalConfig::log_level"],[13,2,1,"_CPPv4N4espp10Controller10DualConfigE","espp::Controller::DualConfig"],[13,1,1,"_CPPv4N4espp10Controller10DualConfig10active_lowE","espp::Controller::DualConfig::active_low"],[13,1,1,"_CPPv4N4espp10Controller10DualConfig6gpio_aE","espp::Controller::DualConfig::gpio_a"],[13,1,1,"_CPPv4N4espp10Controller10DualConfig6gpio_bE","espp::Controller::DualConfig::gpio_b"],[13,1,1,"_CPPv4N4espp10Controller10DualConfig9gpio_downE","espp::Controller::DualConfig::gpio_down"],[13,1,1,"_CPPv4N4espp10Controller10DualConfig20gpio_joystick_selectE","espp::Controller::DualConfig::gpio_joystick_select"],[13,1,1,"_CPPv4N4espp10Controller10DualConfig9gpio_leftE","espp::Controller::DualConfig::gpio_left"],[13,1,1,"_CPPv4N4espp10Controller10DualConfig10gpio_rightE","espp::Controller::DualConfig::gpio_right"],[13,1,1,"_CPPv4N4espp10Controller10DualConfig11gpio_selectE","espp::Controller::DualConfig::gpio_select"],[13,1,1,"_CPPv4N4espp10Controller10DualConfig10gpio_startE","espp::Controller::DualConfig::gpio_start"],[13,1,1,"_CPPv4N4espp10Controller10DualConfig7gpio_upE","espp::Controller::DualConfig::gpio_up"],[13,1,1,"_CPPv4N4espp10Controller10DualConfig6gpio_xE","espp::Controller::DualConfig::gpio_x"],[13,1,1,"_CPPv4N4espp10Controller10DualConfig6gpio_yE","espp::Controller::DualConfig::gpio_y"],[13,1,1,"_CPPv4N4espp10Controller10DualConfig9log_levelE","espp::Controller::DualConfig::log_level"],[13,2,1,"_CPPv4N4espp10Controller5StateE","espp::Controller::State"],[13,1,1,"_CPPv4N4espp10Controller5State1aE","espp::Controller::State::a"],[13,1,1,"_CPPv4N4espp10Controller5State1bE","espp::Controller::State::b"],[13,1,1,"_CPPv4N4espp10Controller5State4downE","espp::Controller::State::down"],[13,1,1,"_CPPv4N4espp10Controller5State15joystick_selectE","espp::Controller::State::joystick_select"],[13,1,1,"_CPPv4N4espp10Controller5State4leftE","espp::Controller::State::left"],[13,1,1,"_CPPv4N4espp10Controller5State5rightE","espp::Controller::State::right"],[13,1,1,"_CPPv4N4espp10Controller5State6selectE","espp::Controller::State::select"],[13,1,1,"_CPPv4N4espp10Controller5State5startE","espp::Controller::State::start"],[13,1,1,"_CPPv4N4espp10Controller5State2upE","espp::Controller::State::up"],[13,1,1,"_CPPv4N4espp10Controller5State1xE","espp::Controller::State::x"],[13,1,1,"_CPPv4N4espp10Controller5State1yE","espp::Controller::State::y"],[13,3,1,"_CPPv4N4espp10Controller9get_stateEv","espp::Controller::get_state"],[13,3,1,"_CPPv4N4espp10Controller10is_pressedEK6Button","espp::Controller::is_pressed"],[13,4,1,"_CPPv4N4espp10Controller10is_pressedEK6Button","espp::Controller::is_pressed::input"],[13,3,1,"_CPPv4N4espp10Controller6updateEv","espp::Controller::update"],[13,3,1,"_CPPv4N4espp10ControllerD0Ev","espp::Controller::~Controller"],[15,2,1,"_CPPv4N4espp7DisplayE","espp::Display"],[15,2,1,"_CPPv4N4espp7Display16AllocatingConfigE","espp::Display::AllocatingConfig"],[15,1,1,"_CPPv4N4espp7Display16AllocatingConfig16allocation_flagsE","espp::Display::AllocatingConfig::allocation_flags"],[15,1,1,"_CPPv4N4espp7Display16AllocatingConfig18backlight_on_valueE","espp::Display::AllocatingConfig::backlight_on_value"],[15,1,1,"_CPPv4N4espp7Display16AllocatingConfig13backlight_pinE","espp::Display::AllocatingConfig::backlight_pin"],[15,1,1,"_CPPv4N4espp7Display16AllocatingConfig15double_bufferedE","espp::Display::AllocatingConfig::double_buffered"],[15,1,1,"_CPPv4N4espp7Display16AllocatingConfig14flush_callbackE","espp::Display::AllocatingConfig::flush_callback"],[15,1,1,"_CPPv4N4espp7Display16AllocatingConfig6heightE","espp::Display::AllocatingConfig::height"],[15,1,1,"_CPPv4N4espp7Display16AllocatingConfig9log_levelE","espp::Display::AllocatingConfig::log_level"],[15,1,1,"_CPPv4N4espp7Display16AllocatingConfig17pixel_buffer_sizeE","espp::Display::AllocatingConfig::pixel_buffer_size"],[15,1,1,"_CPPv4N4espp7Display16AllocatingConfig8rotationE","espp::Display::AllocatingConfig::rotation"],[15,1,1,"_CPPv4N4espp7Display16AllocatingConfig25software_rotation_enabledE","espp::Display::AllocatingConfig::software_rotation_enabled"],[15,1,1,"_CPPv4N4espp7Display16AllocatingConfig13update_periodE","espp::Display::AllocatingConfig::update_period"],[15,1,1,"_CPPv4N4espp7Display16AllocatingConfig5widthE","espp::Display::AllocatingConfig::width"],[15,3,1,"_CPPv4N4espp7Display7DisplayERK16AllocatingConfig","espp::Display::Display"],[15,3,1,"_CPPv4N4espp7Display7DisplayERK19NonAllocatingConfig","espp::Display::Display"],[15,4,1,"_CPPv4N4espp7Display7DisplayERK16AllocatingConfig","espp::Display::Display::config"],[15,4,1,"_CPPv4N4espp7Display7DisplayERK19NonAllocatingConfig","espp::Display::Display::config"],[15,2,1,"_CPPv4N4espp7Display19NonAllocatingConfigE","espp::Display::NonAllocatingConfig"],[15,1,1,"_CPPv4N4espp7Display19NonAllocatingConfig18backlight_on_valueE","espp::Display::NonAllocatingConfig::backlight_on_value"],[15,1,1,"_CPPv4N4espp7Display19NonAllocatingConfig13backlight_pinE","espp::Display::NonAllocatingConfig::backlight_pin"],[15,1,1,"_CPPv4N4espp7Display19NonAllocatingConfig14flush_callbackE","espp::Display::NonAllocatingConfig::flush_callback"],[15,1,1,"_CPPv4N4espp7Display19NonAllocatingConfig6heightE","espp::Display::NonAllocatingConfig::height"],[15,1,1,"_CPPv4N4espp7Display19NonAllocatingConfig9log_levelE","espp::Display::NonAllocatingConfig::log_level"],[15,1,1,"_CPPv4N4espp7Display19NonAllocatingConfig17pixel_buffer_sizeE","espp::Display::NonAllocatingConfig::pixel_buffer_size"],[15,1,1,"_CPPv4N4espp7Display19NonAllocatingConfig8rotationE","espp::Display::NonAllocatingConfig::rotation"],[15,1,1,"_CPPv4N4espp7Display19NonAllocatingConfig25software_rotation_enabledE","espp::Display::NonAllocatingConfig::software_rotation_enabled"],[15,1,1,"_CPPv4N4espp7Display19NonAllocatingConfig13update_periodE","espp::Display::NonAllocatingConfig::update_period"],[15,1,1,"_CPPv4N4espp7Display19NonAllocatingConfig5vram0E","espp::Display::NonAllocatingConfig::vram0"],[15,1,1,"_CPPv4N4espp7Display19NonAllocatingConfig5vram1E","espp::Display::NonAllocatingConfig::vram1"],[15,1,1,"_CPPv4N4espp7Display19NonAllocatingConfig5widthE","espp::Display::NonAllocatingConfig::width"],[15,6,1,"_CPPv4N4espp7Display8RotationE","espp::Display::Rotation"],[15,7,1,"_CPPv4N4espp7Display8Rotation9LANDSCAPEE","espp::Display::Rotation::LANDSCAPE"],[15,7,1,"_CPPv4N4espp7Display8Rotation18LANDSCAPE_INVERTEDE","espp::Display::Rotation::LANDSCAPE_INVERTED"],[15,7,1,"_CPPv4N4espp7Display8Rotation8PORTRAITE","espp::Display::Rotation::PORTRAIT"],[15,7,1,"_CPPv4N4espp7Display8Rotation17PORTRAIT_INVERTEDE","espp::Display::Rotation::PORTRAIT_INVERTED"],[15,6,1,"_CPPv4N4espp7Display6SignalE","espp::Display::Signal"],[15,7,1,"_CPPv4N4espp7Display6Signal5FLUSHE","espp::Display::Signal::FLUSH"],[15,7,1,"_CPPv4N4espp7Display6Signal4NONEE","espp::Display::Signal::NONE"],[15,8,1,"_CPPv4N4espp7Display8flush_fnE","espp::Display::flush_fn"],[15,3,1,"_CPPv4N4espp7Display13force_refreshEv","espp::Display::force_refresh"],[15,3,1,"_CPPv4NK4espp7Display14get_brightnessEv","espp::Display::get_brightness"],[15,3,1,"_CPPv4NK4espp7Display6heightEv","espp::Display::height"],[15,3,1,"_CPPv4N4espp7Display5pauseEv","espp::Display::pause"],[15,3,1,"_CPPv4N4espp7Display6resumeEv","espp::Display::resume"],[15,3,1,"_CPPv4N4espp7Display14set_brightnessEf","espp::Display::set_brightness"],[15,4,1,"_CPPv4N4espp7Display14set_brightnessEf","espp::Display::set_brightness::brightness"],[15,3,1,"_CPPv4N4espp7Display5vram0Ev","espp::Display::vram0"],[15,3,1,"_CPPv4N4espp7Display5vram1Ev","espp::Display::vram1"],[15,3,1,"_CPPv4N4espp7Display15vram_size_bytesEv","espp::Display::vram_size_bytes"],[15,3,1,"_CPPv4N4espp7Display12vram_size_pxEv","espp::Display::vram_size_px"],[15,3,1,"_CPPv4NK4espp7Display5widthEv","espp::Display::width"],[15,3,1,"_CPPv4N4espp7DisplayD0Ev","espp::Display::~Display"],[34,2,1,"_CPPv4N4espp7Drv2605E","espp::Drv2605"],[34,2,1,"_CPPv4N4espp7Drv26056ConfigE","espp::Drv2605::Config"],[34,1,1,"_CPPv4N4espp7Drv26056Config9auto_initE","espp::Drv2605::Config::auto_init"],[34,1,1,"_CPPv4N4espp7Drv26056Config14device_addressE","espp::Drv2605::Config::device_address"],[34,1,1,"_CPPv4N4espp7Drv26056Config9log_levelE","espp::Drv2605::Config::log_level"],[34,1,1,"_CPPv4N4espp7Drv26056Config10motor_typeE","espp::Drv2605::Config::motor_type"],[34,1,1,"_CPPv4N4espp7Drv26056Config4readE","espp::Drv2605::Config::read"],[34,1,1,"_CPPv4N4espp7Drv26056Config5writeE","espp::Drv2605::Config::write"],[34,3,1,"_CPPv4N4espp7Drv26057Drv2605ERK6Config","espp::Drv2605::Drv2605"],[34,4,1,"_CPPv4N4espp7Drv26057Drv2605ERK6Config","espp::Drv2605::Drv2605::config"],[34,6,1,"_CPPv4N4espp7Drv26054ModeE","espp::Drv2605::Mode"],[34,7,1,"_CPPv4N4espp7Drv26054Mode9AUDIOVIBEE","espp::Drv2605::Mode::AUDIOVIBE"],[34,7,1,"_CPPv4N4espp7Drv26054Mode7AUTOCALE","espp::Drv2605::Mode::AUTOCAL"],[34,7,1,"_CPPv4N4espp7Drv26054Mode7DIAGNOSE","espp::Drv2605::Mode::DIAGNOS"],[34,7,1,"_CPPv4N4espp7Drv26054Mode11EXTTRIGEDGEE","espp::Drv2605::Mode::EXTTRIGEDGE"],[34,7,1,"_CPPv4N4espp7Drv26054Mode10EXTTRIGLVLE","espp::Drv2605::Mode::EXTTRIGLVL"],[34,7,1,"_CPPv4N4espp7Drv26054Mode7INTTRIGE","espp::Drv2605::Mode::INTTRIG"],[34,7,1,"_CPPv4N4espp7Drv26054Mode9PWMANALOGE","espp::Drv2605::Mode::PWMANALOG"],[34,7,1,"_CPPv4N4espp7Drv26054Mode8REALTIMEE","espp::Drv2605::Mode::REALTIME"],[34,6,1,"_CPPv4N4espp7Drv26059MotorTypeE","espp::Drv2605::MotorType"],[34,7,1,"_CPPv4N4espp7Drv26059MotorType3ERME","espp::Drv2605::MotorType::ERM"],[34,7,1,"_CPPv4N4espp7Drv26059MotorType3LRAE","espp::Drv2605::MotorType::LRA"],[34,6,1,"_CPPv4N4espp7Drv26058WaveformE","espp::Drv2605::Waveform"],[34,7,1,"_CPPv4N4espp7Drv26058Waveform12ALERT_1000MSE","espp::Drv2605::Waveform::ALERT_1000MS"],[34,7,1,"_CPPv4N4espp7Drv26058Waveform11ALERT_750MSE","espp::Drv2605::Waveform::ALERT_750MS"],[34,7,1,"_CPPv4N4espp7Drv26058Waveform5BUZZ1E","espp::Drv2605::Waveform::BUZZ1"],[34,7,1,"_CPPv4N4espp7Drv26058Waveform5BUZZ2E","espp::Drv2605::Waveform::BUZZ2"],[34,7,1,"_CPPv4N4espp7Drv26058Waveform5BUZZ3E","espp::Drv2605::Waveform::BUZZ3"],[34,7,1,"_CPPv4N4espp7Drv26058Waveform5BUZZ4E","espp::Drv2605::Waveform::BUZZ4"],[34,7,1,"_CPPv4N4espp7Drv26058Waveform5BUZZ5E","espp::Drv2605::Waveform::BUZZ5"],[34,7,1,"_CPPv4N4espp7Drv26058Waveform12DOUBLE_CLICKE","espp::Drv2605::Waveform::DOUBLE_CLICK"],[34,7,1,"_CPPv4N4espp7Drv26058Waveform3ENDE","espp::Drv2605::Waveform::END"],[34,7,1,"_CPPv4N4espp7Drv26058Waveform3MAXE","espp::Drv2605::Waveform::MAX"],[34,7,1,"_CPPv4N4espp7Drv26058Waveform16PULSING_STRONG_1E","espp::Drv2605::Waveform::PULSING_STRONG_1"],[34,7,1,"_CPPv4N4espp7Drv26058Waveform16PULSING_STRONG_2E","espp::Drv2605::Waveform::PULSING_STRONG_2"],[34,7,1,"_CPPv4N4espp7Drv26058Waveform11SHARP_CLICKE","espp::Drv2605::Waveform::SHARP_CLICK"],[34,7,1,"_CPPv4N4espp7Drv26058Waveform9SOFT_BUMPE","espp::Drv2605::Waveform::SOFT_BUMP"],[34,7,1,"_CPPv4N4espp7Drv26058Waveform9SOFT_FUZZE","espp::Drv2605::Waveform::SOFT_FUZZ"],[34,7,1,"_CPPv4N4espp7Drv26058Waveform11STRONG_BUZZE","espp::Drv2605::Waveform::STRONG_BUZZ"],[34,7,1,"_CPPv4N4espp7Drv26058Waveform12STRONG_CLICKE","espp::Drv2605::Waveform::STRONG_CLICK"],[34,7,1,"_CPPv4N4espp7Drv26058Waveform18TRANSITION_CLICK_1E","espp::Drv2605::Waveform::TRANSITION_CLICK_1"],[34,7,1,"_CPPv4N4espp7Drv26058Waveform16TRANSITION_HUM_1E","espp::Drv2605::Waveform::TRANSITION_HUM_1"],[34,7,1,"_CPPv4N4espp7Drv26058Waveform12TRIPLE_CLICKE","espp::Drv2605::Waveform::TRIPLE_CLICK"],[34,3,1,"_CPPv4N4espp7Drv26059initalizeERNSt10error_codeE","espp::Drv2605::initalize"],[34,4,1,"_CPPv4N4espp7Drv26059initalizeERNSt10error_codeE","espp::Drv2605::initalize::ec"],[34,8,1,"_CPPv4N4espp7Drv26057read_fnE","espp::Drv2605::read_fn"],[34,3,1,"_CPPv4N4espp7Drv260514select_libraryE7uint8_tRNSt10error_codeE","espp::Drv2605::select_library"],[34,4,1,"_CPPv4N4espp7Drv260514select_libraryE7uint8_tRNSt10error_codeE","espp::Drv2605::select_library::ec"],[34,4,1,"_CPPv4N4espp7Drv260514select_libraryE7uint8_tRNSt10error_codeE","espp::Drv2605::select_library::lib"],[34,3,1,"_CPPv4N4espp7Drv26058set_modeE4ModeRNSt10error_codeE","espp::Drv2605::set_mode"],[34,4,1,"_CPPv4N4espp7Drv26058set_modeE4ModeRNSt10error_codeE","espp::Drv2605::set_mode::ec"],[34,4,1,"_CPPv4N4espp7Drv26058set_modeE4ModeRNSt10error_codeE","espp::Drv2605::set_mode::mode"],[34,3,1,"_CPPv4N4espp7Drv260512set_waveformE7uint8_t8WaveformRNSt10error_codeE","espp::Drv2605::set_waveform"],[34,4,1,"_CPPv4N4espp7Drv260512set_waveformE7uint8_t8WaveformRNSt10error_codeE","espp::Drv2605::set_waveform::ec"],[34,4,1,"_CPPv4N4espp7Drv260512set_waveformE7uint8_t8WaveformRNSt10error_codeE","espp::Drv2605::set_waveform::slot"],[34,4,1,"_CPPv4N4espp7Drv260512set_waveformE7uint8_t8WaveformRNSt10error_codeE","espp::Drv2605::set_waveform::w"],[34,3,1,"_CPPv4N4espp7Drv26055startERNSt10error_codeE","espp::Drv2605::start"],[34,4,1,"_CPPv4N4espp7Drv26055startERNSt10error_codeE","espp::Drv2605::start::ec"],[34,3,1,"_CPPv4N4espp7Drv26054stopERNSt10error_codeE","espp::Drv2605::stop"],[34,4,1,"_CPPv4N4espp7Drv26054stopERNSt10error_codeE","espp::Drv2605::stop::ec"],[34,8,1,"_CPPv4N4espp7Drv26058write_fnE","espp::Drv2605::write_fn"],[38,2,1,"_CPPv4N4espp12EncoderInputE","espp::EncoderInput"],[38,2,1,"_CPPv4N4espp12EncoderInput6ConfigE","espp::EncoderInput::Config"],[38,1,1,"_CPPv4N4espp12EncoderInput6Config9log_levelE","espp::EncoderInput::Config::log_level"],[38,1,1,"_CPPv4N4espp12EncoderInput6Config4readE","espp::EncoderInput::Config::read"],[38,3,1,"_CPPv4N4espp12EncoderInput12EncoderInputERK6Config","espp::EncoderInput::EncoderInput"],[38,4,1,"_CPPv4N4espp12EncoderInput12EncoderInputERK6Config","espp::EncoderInput::EncoderInput::config"],[38,3,1,"_CPPv4N4espp12EncoderInput23get_button_input_deviceEv","espp::EncoderInput::get_button_input_device"],[38,3,1,"_CPPv4N4espp12EncoderInput24get_encoder_input_deviceEv","espp::EncoderInput::get_encoder_input_device"],[38,3,1,"_CPPv4N4espp12EncoderInputD0Ev","espp::EncoderInput::~EncoderInput"],[23,2,1,"_CPPv4N4espp12EventManagerE","espp::EventManager"],[23,3,1,"_CPPv4N4espp12EventManager13add_publisherERKNSt6stringERKNSt6stringE","espp::EventManager::add_publisher"],[23,4,1,"_CPPv4N4espp12EventManager13add_publisherERKNSt6stringERKNSt6stringE","espp::EventManager::add_publisher::component"],[23,4,1,"_CPPv4N4espp12EventManager13add_publisherERKNSt6stringERKNSt6stringE","espp::EventManager::add_publisher::topic"],[23,3,1,"_CPPv4N4espp12EventManager14add_subscriberERKNSt6stringERKNSt6stringERK17event_callback_fnK6size_t","espp::EventManager::add_subscriber"],[23,4,1,"_CPPv4N4espp12EventManager14add_subscriberERKNSt6stringERKNSt6stringERK17event_callback_fnK6size_t","espp::EventManager::add_subscriber::callback"],[23,4,1,"_CPPv4N4espp12EventManager14add_subscriberERKNSt6stringERKNSt6stringERK17event_callback_fnK6size_t","espp::EventManager::add_subscriber::component"],[23,4,1,"_CPPv4N4espp12EventManager14add_subscriberERKNSt6stringERKNSt6stringERK17event_callback_fnK6size_t","espp::EventManager::add_subscriber::stack_size_bytes"],[23,4,1,"_CPPv4N4espp12EventManager14add_subscriberERKNSt6stringERKNSt6stringERK17event_callback_fnK6size_t","espp::EventManager::add_subscriber::topic"],[23,8,1,"_CPPv4N4espp12EventManager17event_callback_fnE","espp::EventManager::event_callback_fn"],[23,3,1,"_CPPv4N4espp12EventManager3getEv","espp::EventManager::get"],[23,3,1,"_CPPv4N4espp12EventManager7publishERKNSt6stringERKNSt6vectorI7uint8_tEE","espp::EventManager::publish"],[23,4,1,"_CPPv4N4espp12EventManager7publishERKNSt6stringERKNSt6vectorI7uint8_tEE","espp::EventManager::publish::data"],[23,4,1,"_CPPv4N4espp12EventManager7publishERKNSt6stringERKNSt6vectorI7uint8_tEE","espp::EventManager::publish::topic"],[23,3,1,"_CPPv4N4espp12EventManager16remove_publisherERKNSt6stringERKNSt6stringE","espp::EventManager::remove_publisher"],[23,4,1,"_CPPv4N4espp12EventManager16remove_publisherERKNSt6stringERKNSt6stringE","espp::EventManager::remove_publisher::component"],[23,4,1,"_CPPv4N4espp12EventManager16remove_publisherERKNSt6stringERKNSt6stringE","espp::EventManager::remove_publisher::topic"],[23,3,1,"_CPPv4N4espp12EventManager17remove_subscriberERKNSt6stringERKNSt6stringE","espp::EventManager::remove_subscriber"],[23,4,1,"_CPPv4N4espp12EventManager17remove_subscriberERKNSt6stringERKNSt6stringE","espp::EventManager::remove_subscriber::component"],[23,4,1,"_CPPv4N4espp12EventManager17remove_subscriberERKNSt6stringERKNSt6stringE","espp::EventManager::remove_subscriber::topic"],[23,3,1,"_CPPv4N4espp12EventManager13set_log_levelEN6Logger9VerbosityE","espp::EventManager::set_log_level"],[23,4,1,"_CPPv4N4espp12EventManager13set_log_levelEN6Logger9VerbosityE","espp::EventManager::set_log_level::level"],[24,2,1,"_CPPv4N4espp10FileSystemE","espp::FileSystem"],[24,2,1,"_CPPv4N4espp10FileSystem10ListConfigE","espp::FileSystem::ListConfig"],[24,1,1,"_CPPv4N4espp10FileSystem10ListConfig9date_timeE","espp::FileSystem::ListConfig::date_time"],[24,1,1,"_CPPv4N4espp10FileSystem10ListConfig5groupE","espp::FileSystem::ListConfig::group"],[24,1,1,"_CPPv4N4espp10FileSystem10ListConfig15number_of_linksE","espp::FileSystem::ListConfig::number_of_links"],[24,1,1,"_CPPv4N4espp10FileSystem10ListConfig5ownerE","espp::FileSystem::ListConfig::owner"],[24,1,1,"_CPPv4N4espp10FileSystem10ListConfig11permissionsE","espp::FileSystem::ListConfig::permissions"],[24,1,1,"_CPPv4N4espp10FileSystem10ListConfig9recursiveE","espp::FileSystem::ListConfig::recursive"],[24,1,1,"_CPPv4N4espp10FileSystem10ListConfig4sizeE","espp::FileSystem::ListConfig::size"],[24,1,1,"_CPPv4N4espp10FileSystem10ListConfig4typeE","espp::FileSystem::ListConfig::type"],[24,3,1,"_CPPv4N4espp10FileSystem3getEv","espp::FileSystem::get"],[24,3,1,"_CPPv4N4espp10FileSystem14get_free_spaceEv","espp::FileSystem::get_free_space"],[24,3,1,"_CPPv4N4espp10FileSystem15get_mount_pointEv","espp::FileSystem::get_mount_point"],[24,3,1,"_CPPv4N4espp10FileSystem19get_partition_labelEv","espp::FileSystem::get_partition_label"],[24,3,1,"_CPPv4N4espp10FileSystem13get_root_pathEv","espp::FileSystem::get_root_path"],[24,3,1,"_CPPv4N4espp10FileSystem15get_total_spaceEv","espp::FileSystem::get_total_space"],[24,3,1,"_CPPv4N4espp10FileSystem14get_used_spaceEv","espp::FileSystem::get_used_space"],[24,3,1,"_CPPv4N4espp10FileSystem14human_readableE6size_t","espp::FileSystem::human_readable"],[24,4,1,"_CPPv4N4espp10FileSystem14human_readableE6size_t","espp::FileSystem::human_readable::bytes"],[24,3,1,"_CPPv4N4espp10FileSystem14list_directoryERKNSt10filesystem4pathERK10ListConfigRKNSt6stringE","espp::FileSystem::list_directory"],[24,3,1,"_CPPv4N4espp10FileSystem14list_directoryERKNSt6stringERK10ListConfigRKNSt6stringE","espp::FileSystem::list_directory"],[24,4,1,"_CPPv4N4espp10FileSystem14list_directoryERKNSt10filesystem4pathERK10ListConfigRKNSt6stringE","espp::FileSystem::list_directory::config"],[24,4,1,"_CPPv4N4espp10FileSystem14list_directoryERKNSt6stringERK10ListConfigRKNSt6stringE","espp::FileSystem::list_directory::config"],[24,4,1,"_CPPv4N4espp10FileSystem14list_directoryERKNSt10filesystem4pathERK10ListConfigRKNSt6stringE","espp::FileSystem::list_directory::path"],[24,4,1,"_CPPv4N4espp10FileSystem14list_directoryERKNSt6stringERK10ListConfigRKNSt6stringE","espp::FileSystem::list_directory::path"],[24,4,1,"_CPPv4N4espp10FileSystem14list_directoryERKNSt10filesystem4pathERK10ListConfigRKNSt6stringE","espp::FileSystem::list_directory::prefix"],[24,4,1,"_CPPv4N4espp10FileSystem14list_directoryERKNSt6stringERK10ListConfigRKNSt6stringE","espp::FileSystem::list_directory::prefix"],[24,3,1,"_CPPv4I0EN4espp10FileSystem9to_time_tENSt6time_tE2TP","espp::FileSystem::to_time_t"],[24,5,1,"_CPPv4I0EN4espp10FileSystem9to_time_tENSt6time_tE2TP","espp::FileSystem::to_time_t::TP"],[24,4,1,"_CPPv4I0EN4espp10FileSystem9to_time_tENSt6time_tE2TP","espp::FileSystem::to_time_t::tp"],[39,2,1,"_CPPv4N4espp6Ft5x06E","espp::Ft5x06"],[39,2,1,"_CPPv4N4espp6Ft5x066ConfigE","espp::Ft5x06::Config"],[39,1,1,"_CPPv4N4espp6Ft5x066Config9log_levelE","espp::Ft5x06::Config::log_level"],[39,1,1,"_CPPv4N4espp6Ft5x066Config16read_at_registerE","espp::Ft5x06::Config::read_at_register"],[39,1,1,"_CPPv4N4espp6Ft5x066Config5writeE","espp::Ft5x06::Config::write"],[39,1,1,"_CPPv4N4espp6Ft5x0615DEFAULT_ADDRESSE","espp::Ft5x06::DEFAULT_ADDRESS"],[39,3,1,"_CPPv4N4espp6Ft5x066Ft5x06ERK6Config","espp::Ft5x06::Ft5x06"],[39,4,1,"_CPPv4N4espp6Ft5x066Ft5x06ERK6Config","espp::Ft5x06::Ft5x06::config"],[39,6,1,"_CPPv4N4espp6Ft5x067GestureE","espp::Ft5x06::Gesture"],[39,7,1,"_CPPv4N4espp6Ft5x067Gesture9MOVE_DOWNE","espp::Ft5x06::Gesture::MOVE_DOWN"],[39,7,1,"_CPPv4N4espp6Ft5x067Gesture9MOVE_LEFTE","espp::Ft5x06::Gesture::MOVE_LEFT"],[39,7,1,"_CPPv4N4espp6Ft5x067Gesture10MOVE_RIGHTE","espp::Ft5x06::Gesture::MOVE_RIGHT"],[39,7,1,"_CPPv4N4espp6Ft5x067Gesture7MOVE_UPE","espp::Ft5x06::Gesture::MOVE_UP"],[39,7,1,"_CPPv4N4espp6Ft5x067Gesture4NONEE","espp::Ft5x06::Gesture::NONE"],[39,7,1,"_CPPv4N4espp6Ft5x067Gesture7ZOOM_INE","espp::Ft5x06::Gesture::ZOOM_IN"],[39,7,1,"_CPPv4N4espp6Ft5x067Gesture8ZOOM_OUTE","espp::Ft5x06::Gesture::ZOOM_OUT"],[39,3,1,"_CPPv4N4espp6Ft5x0620get_num_touch_pointsERNSt10error_codeE","espp::Ft5x06::get_num_touch_points"],[39,4,1,"_CPPv4N4espp6Ft5x0620get_num_touch_pointsERNSt10error_codeE","espp::Ft5x06::get_num_touch_points::ec"],[39,3,1,"_CPPv4N4espp6Ft5x0615get_touch_pointEP7uint8_tP8uint16_tP8uint16_tRNSt10error_codeE","espp::Ft5x06::get_touch_point"],[39,4,1,"_CPPv4N4espp6Ft5x0615get_touch_pointEP7uint8_tP8uint16_tP8uint16_tRNSt10error_codeE","espp::Ft5x06::get_touch_point::ec"],[39,4,1,"_CPPv4N4espp6Ft5x0615get_touch_pointEP7uint8_tP8uint16_tP8uint16_tRNSt10error_codeE","espp::Ft5x06::get_touch_point::num_touch_points"],[39,4,1,"_CPPv4N4espp6Ft5x0615get_touch_pointEP7uint8_tP8uint16_tP8uint16_tRNSt10error_codeE","espp::Ft5x06::get_touch_point::x"],[39,4,1,"_CPPv4N4espp6Ft5x0615get_touch_pointEP7uint8_tP8uint16_tP8uint16_tRNSt10error_codeE","espp::Ft5x06::get_touch_point::y"],[39,8,1,"_CPPv4N4espp6Ft5x0619read_at_register_fnE","espp::Ft5x06::read_at_register_fn"],[39,3,1,"_CPPv4N4espp6Ft5x0612read_gestureERNSt10error_codeE","espp::Ft5x06::read_gesture"],[39,4,1,"_CPPv4N4espp6Ft5x0612read_gestureERNSt10error_codeE","espp::Ft5x06::read_gesture::ec"],[39,8,1,"_CPPv4N4espp6Ft5x068write_fnE","espp::Ft5x06::write_fn"],[31,2,1,"_CPPv4N4espp16FtpClientSessionE","espp::FtpClientSession"],[31,3,1,"_CPPv4NK4espp16FtpClientSession17current_directoryEv","espp::FtpClientSession::current_directory"],[31,3,1,"_CPPv4NK4espp16FtpClientSession2idEv","espp::FtpClientSession::id"],[31,3,1,"_CPPv4NK4espp16FtpClientSession8is_aliveEv","espp::FtpClientSession::is_alive"],[31,3,1,"_CPPv4NK4espp16FtpClientSession12is_connectedEv","espp::FtpClientSession::is_connected"],[31,3,1,"_CPPv4NK4espp16FtpClientSession26is_passive_data_connectionEv","espp::FtpClientSession::is_passive_data_connection"],[31,2,1,"_CPPv4N4espp9FtpServerE","espp::FtpServer"],[31,3,1,"_CPPv4N4espp9FtpServer9FtpServerENSt11string_viewE8uint16_tRKNSt10filesystem4pathE","espp::FtpServer::FtpServer"],[31,4,1,"_CPPv4N4espp9FtpServer9FtpServerENSt11string_viewE8uint16_tRKNSt10filesystem4pathE","espp::FtpServer::FtpServer::ip_address"],[31,4,1,"_CPPv4N4espp9FtpServer9FtpServerENSt11string_viewE8uint16_tRKNSt10filesystem4pathE","espp::FtpServer::FtpServer::port"],[31,4,1,"_CPPv4N4espp9FtpServer9FtpServerENSt11string_viewE8uint16_tRKNSt10filesystem4pathE","espp::FtpServer::FtpServer::root"],[31,3,1,"_CPPv4N4espp9FtpServer5startEv","espp::FtpServer::start"],[31,3,1,"_CPPv4N4espp9FtpServer4stopEv","espp::FtpServer::stop"],[31,3,1,"_CPPv4N4espp9FtpServerD0Ev","espp::FtpServer::~FtpServer"],[55,2,1,"_CPPv4N4espp8GaussianE","espp::Gaussian"],[55,2,1,"_CPPv4N4espp8Gaussian6ConfigE","espp::Gaussian::Config"],[55,1,1,"_CPPv4N4espp8Gaussian6Config5alphaE","espp::Gaussian::Config::alpha"],[55,1,1,"_CPPv4N4espp8Gaussian6Config4betaE","espp::Gaussian::Config::beta"],[55,1,1,"_CPPv4N4espp8Gaussian6Config5gammaE","espp::Gaussian::Config::gamma"],[55,3,1,"_CPPv4N4espp8Gaussian8GaussianERK6Config","espp::Gaussian::Gaussian"],[55,4,1,"_CPPv4N4espp8Gaussian8GaussianERK6Config","espp::Gaussian::Gaussian::config"],[55,3,1,"_CPPv4N4espp8Gaussian5alphaEf","espp::Gaussian::alpha"],[55,3,1,"_CPPv4NK4espp8Gaussian5alphaEv","espp::Gaussian::alpha"],[55,4,1,"_CPPv4N4espp8Gaussian5alphaEf","espp::Gaussian::alpha::a"],[55,3,1,"_CPPv4NK4espp8Gaussian2atEf","espp::Gaussian::at"],[55,4,1,"_CPPv4NK4espp8Gaussian2atEf","espp::Gaussian::at::t"],[55,3,1,"_CPPv4N4espp8Gaussian4betaEf","espp::Gaussian::beta"],[55,3,1,"_CPPv4NK4espp8Gaussian4betaEv","espp::Gaussian::beta"],[55,4,1,"_CPPv4N4espp8Gaussian4betaEf","espp::Gaussian::beta::b"],[55,3,1,"_CPPv4N4espp8Gaussian5gammaEf","espp::Gaussian::gamma"],[55,3,1,"_CPPv4NK4espp8Gaussian5gammaEv","espp::Gaussian::gamma"],[55,4,1,"_CPPv4N4espp8Gaussian5gammaEf","espp::Gaussian::gamma::g"],[55,3,1,"_CPPv4NK4espp8GaussianclEf","espp::Gaussian::operator()"],[55,4,1,"_CPPv4NK4espp8GaussianclEf","espp::Gaussian::operator()::t"],[40,2,1,"_CPPv4N4espp5Gt911E","espp::Gt911"],[40,2,1,"_CPPv4N4espp5Gt9116ConfigE","espp::Gt911::Config"],[40,1,1,"_CPPv4N4espp5Gt9116Config7addressE","espp::Gt911::Config::address"],[40,1,1,"_CPPv4N4espp5Gt9116Config9log_levelE","espp::Gt911::Config::log_level"],[40,1,1,"_CPPv4N4espp5Gt9116Config5writeE","espp::Gt911::Config::write"],[40,1,1,"_CPPv4N4espp5Gt9116Config10write_readE","espp::Gt911::Config::write_read"],[40,1,1,"_CPPv4N4espp5Gt91117DEFAULT_ADDRESS_1E","espp::Gt911::DEFAULT_ADDRESS_1"],[40,1,1,"_CPPv4N4espp5Gt91117DEFAULT_ADDRESS_2E","espp::Gt911::DEFAULT_ADDRESS_2"],[40,3,1,"_CPPv4N4espp5Gt9115Gt911ERK6Config","espp::Gt911::Gt911"],[40,4,1,"_CPPv4N4espp5Gt9115Gt911ERK6Config","espp::Gt911::Gt911::config"],[40,3,1,"_CPPv4NK4espp5Gt91121get_home_button_stateEv","espp::Gt911::get_home_button_state"],[40,3,1,"_CPPv4NK4espp5Gt91120get_num_touch_pointsEv","espp::Gt911::get_num_touch_points"],[40,3,1,"_CPPv4NK4espp5Gt91115get_touch_pointEP7uint8_tP8uint16_tP8uint16_t","espp::Gt911::get_touch_point"],[40,4,1,"_CPPv4NK4espp5Gt91115get_touch_pointEP7uint8_tP8uint16_tP8uint16_t","espp::Gt911::get_touch_point::num_touch_points"],[40,4,1,"_CPPv4NK4espp5Gt91115get_touch_pointEP7uint8_tP8uint16_tP8uint16_t","espp::Gt911::get_touch_point::x"],[40,4,1,"_CPPv4NK4espp5Gt91115get_touch_pointEP7uint8_tP8uint16_tP8uint16_t","espp::Gt911::get_touch_point::y"],[40,3,1,"_CPPv4N4espp5Gt9116updateERNSt10error_codeE","espp::Gt911::update"],[40,4,1,"_CPPv4N4espp5Gt9116updateERNSt10error_codeE","espp::Gt911::update::ec"],[40,8,1,"_CPPv4N4espp5Gt9118write_fnE","espp::Gt911::write_fn"],[40,8,1,"_CPPv4N4espp5Gt91113write_read_fnE","espp::Gt911::write_read_fn"],[12,2,1,"_CPPv4N4espp3HsvE","espp::Hsv"],[12,3,1,"_CPPv4N4espp3Hsv3HsvERK3Hsv","espp::Hsv::Hsv"],[12,3,1,"_CPPv4N4espp3Hsv3HsvERK3Rgb","espp::Hsv::Hsv"],[12,3,1,"_CPPv4N4espp3Hsv3HsvERKfRKfRKf","espp::Hsv::Hsv"],[12,4,1,"_CPPv4N4espp3Hsv3HsvERKfRKfRKf","espp::Hsv::Hsv::h"],[12,4,1,"_CPPv4N4espp3Hsv3HsvERK3Hsv","espp::Hsv::Hsv::hsv"],[12,4,1,"_CPPv4N4espp3Hsv3HsvERK3Rgb","espp::Hsv::Hsv::rgb"],[12,4,1,"_CPPv4N4espp3Hsv3HsvERKfRKfRKf","espp::Hsv::Hsv::s"],[12,4,1,"_CPPv4N4espp3Hsv3HsvERKfRKfRKf","espp::Hsv::Hsv::v"],[12,1,1,"_CPPv4N4espp3Hsv1hE","espp::Hsv::h"],[12,3,1,"_CPPv4NK4espp3Hsv3rgbEv","espp::Hsv::rgb"],[12,1,1,"_CPPv4N4espp3Hsv1sE","espp::Hsv::s"],[12,1,1,"_CPPv4N4espp3Hsv1vE","espp::Hsv::v"],[36,2,1,"_CPPv4N4espp3I2cE","espp::I2c"],[36,2,1,"_CPPv4N4espp3I2c6ConfigE","espp::I2c::Config"],[36,1,1,"_CPPv4N4espp3I2c6Config9auto_initE","espp::I2c::Config::auto_init"],[36,1,1,"_CPPv4N4espp3I2c6Config9clk_speedE","espp::I2c::Config::clk_speed"],[36,1,1,"_CPPv4N4espp3I2c6Config9log_levelE","espp::I2c::Config::log_level"],[36,1,1,"_CPPv4N4espp3I2c6Config4portE","espp::I2c::Config::port"],[36,1,1,"_CPPv4N4espp3I2c6Config10scl_io_numE","espp::I2c::Config::scl_io_num"],[36,1,1,"_CPPv4N4espp3I2c6Config13scl_pullup_enE","espp::I2c::Config::scl_pullup_en"],[36,1,1,"_CPPv4N4espp3I2c6Config10sda_io_numE","espp::I2c::Config::sda_io_num"],[36,1,1,"_CPPv4N4espp3I2c6Config13sda_pullup_enE","espp::I2c::Config::sda_pullup_en"],[36,1,1,"_CPPv4N4espp3I2c6Config10timeout_msE","espp::I2c::Config::timeout_ms"],[36,3,1,"_CPPv4N4espp3I2c3I2cERK6Config","espp::I2c::I2c"],[36,4,1,"_CPPv4N4espp3I2c3I2cERK6Config","espp::I2c::I2c::config"],[36,3,1,"_CPPv4N4espp3I2c6deinitERNSt10error_codeE","espp::I2c::deinit"],[36,4,1,"_CPPv4N4espp3I2c6deinitERNSt10error_codeE","espp::I2c::deinit::ec"],[36,3,1,"_CPPv4N4espp3I2c4initERNSt10error_codeE","espp::I2c::init"],[36,4,1,"_CPPv4N4espp3I2c4initERNSt10error_codeE","espp::I2c::init::ec"],[36,3,1,"_CPPv4N4espp3I2c12probe_deviceE7uint8_t","espp::I2c::probe_device"],[36,4,1,"_CPPv4N4espp3I2c12probe_deviceE7uint8_t","espp::I2c::probe_device::dev_addr"],[36,3,1,"_CPPv4N4espp3I2c4readE7uint8_tP7uint8_t6size_t","espp::I2c::read"],[36,4,1,"_CPPv4N4espp3I2c4readE7uint8_tP7uint8_t6size_t","espp::I2c::read::data"],[36,4,1,"_CPPv4N4espp3I2c4readE7uint8_tP7uint8_t6size_t","espp::I2c::read::data_len"],[36,4,1,"_CPPv4N4espp3I2c4readE7uint8_tP7uint8_t6size_t","espp::I2c::read::dev_addr"],[36,3,1,"_CPPv4N4espp3I2c16read_at_registerE7uint8_t7uint8_tP7uint8_t6size_t","espp::I2c::read_at_register"],[36,4,1,"_CPPv4N4espp3I2c16read_at_registerE7uint8_t7uint8_tP7uint8_t6size_t","espp::I2c::read_at_register::data"],[36,4,1,"_CPPv4N4espp3I2c16read_at_registerE7uint8_t7uint8_tP7uint8_t6size_t","espp::I2c::read_at_register::data_len"],[36,4,1,"_CPPv4N4espp3I2c16read_at_registerE7uint8_t7uint8_tP7uint8_t6size_t","espp::I2c::read_at_register::dev_addr"],[36,4,1,"_CPPv4N4espp3I2c16read_at_registerE7uint8_t7uint8_tP7uint8_t6size_t","espp::I2c::read_at_register::reg_addr"],[36,3,1,"_CPPv4N4espp3I2c5writeE7uint8_tP7uint8_t6size_t","espp::I2c::write"],[36,4,1,"_CPPv4N4espp3I2c5writeE7uint8_tP7uint8_t6size_t","espp::I2c::write::data"],[36,4,1,"_CPPv4N4espp3I2c5writeE7uint8_tP7uint8_t6size_t","espp::I2c::write::data_len"],[36,4,1,"_CPPv4N4espp3I2c5writeE7uint8_tP7uint8_t6size_t","espp::I2c::write::dev_addr"],[36,3,1,"_CPPv4N4espp3I2c10write_readE7uint8_tP7uint8_t6size_tP7uint8_t6size_t","espp::I2c::write_read"],[36,4,1,"_CPPv4N4espp3I2c10write_readE7uint8_tP7uint8_t6size_tP7uint8_t6size_t","espp::I2c::write_read::dev_addr"],[36,4,1,"_CPPv4N4espp3I2c10write_readE7uint8_tP7uint8_t6size_tP7uint8_t6size_t","espp::I2c::write_read::read_data"],[36,4,1,"_CPPv4N4espp3I2c10write_readE7uint8_tP7uint8_t6size_tP7uint8_t6size_t","espp::I2c::write_read::read_size"],[36,4,1,"_CPPv4N4espp3I2c10write_readE7uint8_tP7uint8_t6size_tP7uint8_t6size_t","espp::I2c::write_read::write_data"],[36,4,1,"_CPPv4N4espp3I2c10write_readE7uint8_tP7uint8_t6size_tP7uint8_t6size_t","espp::I2c::write_read::write_size"],[16,2,1,"_CPPv4N4espp7Ili9341E","espp::Ili9341"],[16,3,1,"_CPPv4N4espp7Ili93415clearE6size_t6size_t6size_t6size_t8uint16_t","espp::Ili9341::clear"],[16,4,1,"_CPPv4N4espp7Ili93415clearE6size_t6size_t6size_t6size_t8uint16_t","espp::Ili9341::clear::color"],[16,4,1,"_CPPv4N4espp7Ili93415clearE6size_t6size_t6size_t6size_t8uint16_t","espp::Ili9341::clear::height"],[16,4,1,"_CPPv4N4espp7Ili93415clearE6size_t6size_t6size_t6size_t8uint16_t","espp::Ili9341::clear::width"],[16,4,1,"_CPPv4N4espp7Ili93415clearE6size_t6size_t6size_t6size_t8uint16_t","espp::Ili9341::clear::x"],[16,4,1,"_CPPv4N4espp7Ili93415clearE6size_t6size_t6size_t6size_t8uint16_t","espp::Ili9341::clear::y"],[16,3,1,"_CPPv4N4espp7Ili93414fillEP13lv_disp_drv_tPK9lv_area_tP10lv_color_t8uint32_t","espp::Ili9341::fill"],[16,4,1,"_CPPv4N4espp7Ili93414fillEP13lv_disp_drv_tPK9lv_area_tP10lv_color_t8uint32_t","espp::Ili9341::fill::area"],[16,4,1,"_CPPv4N4espp7Ili93414fillEP13lv_disp_drv_tPK9lv_area_tP10lv_color_t8uint32_t","espp::Ili9341::fill::color_map"],[16,4,1,"_CPPv4N4espp7Ili93414fillEP13lv_disp_drv_tPK9lv_area_tP10lv_color_t8uint32_t","espp::Ili9341::fill::drv"],[16,4,1,"_CPPv4N4espp7Ili93414fillEP13lv_disp_drv_tPK9lv_area_tP10lv_color_t8uint32_t","espp::Ili9341::fill::flags"],[16,3,1,"_CPPv4N4espp7Ili93415flushEP13lv_disp_drv_tPK9lv_area_tP10lv_color_t","espp::Ili9341::flush"],[16,4,1,"_CPPv4N4espp7Ili93415flushEP13lv_disp_drv_tPK9lv_area_tP10lv_color_t","espp::Ili9341::flush::area"],[16,4,1,"_CPPv4N4espp7Ili93415flushEP13lv_disp_drv_tPK9lv_area_tP10lv_color_t","espp::Ili9341::flush::color_map"],[16,4,1,"_CPPv4N4espp7Ili93415flushEP13lv_disp_drv_tPK9lv_area_tP10lv_color_t","espp::Ili9341::flush::drv"],[16,3,1,"_CPPv4N4espp7Ili934110get_offsetERiRi","espp::Ili9341::get_offset"],[16,4,1,"_CPPv4N4espp7Ili934110get_offsetERiRi","espp::Ili9341::get_offset::x"],[16,4,1,"_CPPv4N4espp7Ili934110get_offsetERiRi","espp::Ili9341::get_offset::y"],[16,3,1,"_CPPv4N4espp7Ili934110initializeERKN15display_drivers6ConfigE","espp::Ili9341::initialize"],[16,4,1,"_CPPv4N4espp7Ili934110initializeERKN15display_drivers6ConfigE","espp::Ili9341::initialize::config"],[16,3,1,"_CPPv4N4espp7Ili934112send_commandE7uint8_t","espp::Ili9341::send_command"],[16,4,1,"_CPPv4N4espp7Ili934112send_commandE7uint8_t","espp::Ili9341::send_command::command"],[16,3,1,"_CPPv4N4espp7Ili93419send_dataEPK7uint8_t6size_t8uint32_t","espp::Ili9341::send_data"],[16,4,1,"_CPPv4N4espp7Ili93419send_dataEPK7uint8_t6size_t8uint32_t","espp::Ili9341::send_data::data"],[16,4,1,"_CPPv4N4espp7Ili93419send_dataEPK7uint8_t6size_t8uint32_t","espp::Ili9341::send_data::flags"],[16,4,1,"_CPPv4N4espp7Ili93419send_dataEPK7uint8_t6size_t8uint32_t","espp::Ili9341::send_data::length"],[16,3,1,"_CPPv4N4espp7Ili934116set_drawing_areaE6size_t6size_t6size_t6size_t","espp::Ili9341::set_drawing_area"],[16,3,1,"_CPPv4N4espp7Ili934116set_drawing_areaEPK9lv_area_t","espp::Ili9341::set_drawing_area"],[16,4,1,"_CPPv4N4espp7Ili934116set_drawing_areaEPK9lv_area_t","espp::Ili9341::set_drawing_area::area"],[16,4,1,"_CPPv4N4espp7Ili934116set_drawing_areaE6size_t6size_t6size_t6size_t","espp::Ili9341::set_drawing_area::xe"],[16,4,1,"_CPPv4N4espp7Ili934116set_drawing_areaE6size_t6size_t6size_t6size_t","espp::Ili9341::set_drawing_area::xs"],[16,4,1,"_CPPv4N4espp7Ili934116set_drawing_areaE6size_t6size_t6size_t6size_t","espp::Ili9341::set_drawing_area::ye"],[16,4,1,"_CPPv4N4espp7Ili934116set_drawing_areaE6size_t6size_t6size_t6size_t","espp::Ili9341::set_drawing_area::ys"],[16,3,1,"_CPPv4N4espp7Ili934110set_offsetEii","espp::Ili9341::set_offset"],[16,4,1,"_CPPv4N4espp7Ili934110set_offsetEii","espp::Ili9341::set_offset::x"],[16,4,1,"_CPPv4N4espp7Ili934110set_offsetEii","espp::Ili9341::set_offset::y"],[49,2,1,"_CPPv4N4espp8JoystickE","espp::Joystick"],[49,2,1,"_CPPv4N4espp8Joystick6ConfigE","espp::Joystick::Config"],[49,1,1,"_CPPv4N4espp8Joystick6Config8deadzoneE","espp::Joystick::Config::deadzone"],[49,1,1,"_CPPv4N4espp8Joystick6Config15deadzone_radiusE","espp::Joystick::Config::deadzone_radius"],[49,1,1,"_CPPv4N4espp8Joystick6Config10get_valuesE","espp::Joystick::Config::get_values"],[49,1,1,"_CPPv4N4espp8Joystick6Config9log_levelE","espp::Joystick::Config::log_level"],[49,1,1,"_CPPv4N4espp8Joystick6Config13x_calibrationE","espp::Joystick::Config::x_calibration"],[49,1,1,"_CPPv4N4espp8Joystick6Config13y_calibrationE","espp::Joystick::Config::y_calibration"],[49,6,1,"_CPPv4N4espp8Joystick8DeadzoneE","espp::Joystick::Deadzone"],[49,7,1,"_CPPv4N4espp8Joystick8Deadzone8CIRCULARE","espp::Joystick::Deadzone::CIRCULAR"],[49,7,1,"_CPPv4N4espp8Joystick8Deadzone11RECTANGULARE","espp::Joystick::Deadzone::RECTANGULAR"],[49,3,1,"_CPPv4N4espp8Joystick8JoystickERK6Config","espp::Joystick::Joystick"],[49,4,1,"_CPPv4N4espp8Joystick8JoystickERK6Config","espp::Joystick::Joystick::config"],[49,8,1,"_CPPv4N4espp8Joystick13get_values_fnE","espp::Joystick::get_values_fn"],[49,3,1,"_CPPv4NK4espp8Joystick8positionEv","espp::Joystick::position"],[49,3,1,"_CPPv4NK4espp8Joystick3rawEv","espp::Joystick::raw"],[49,3,1,"_CPPv4N4espp8Joystick15set_calibrationERKN16FloatRangeMapper6ConfigERKN16FloatRangeMapper6ConfigE","espp::Joystick::set_calibration"],[49,4,1,"_CPPv4N4espp8Joystick15set_calibrationERKN16FloatRangeMapper6ConfigERKN16FloatRangeMapper6ConfigE","espp::Joystick::set_calibration::x_calibration"],[49,4,1,"_CPPv4N4espp8Joystick15set_calibrationERKN16FloatRangeMapper6ConfigERKN16FloatRangeMapper6ConfigE","espp::Joystick::set_calibration::y_calibration"],[49,3,1,"_CPPv4N4espp8Joystick12set_deadzoneE8Deadzonef","espp::Joystick::set_deadzone"],[49,4,1,"_CPPv4N4espp8Joystick12set_deadzoneE8Deadzonef","espp::Joystick::set_deadzone::deadzone"],[49,4,1,"_CPPv4N4espp8Joystick12set_deadzoneE8Deadzonef","espp::Joystick::set_deadzone::radius"],[49,3,1,"_CPPv4N4espp8Joystick6updateEv","espp::Joystick::update"],[49,3,1,"_CPPv4NK4espp8Joystick1xEv","espp::Joystick::x"],[49,3,1,"_CPPv4NK4espp8Joystick1yEv","espp::Joystick::y"],[72,2,1,"_CPPv4N4espp9JpegFrameE","espp::JpegFrame"],[72,3,1,"_CPPv4N4espp9JpegFrame9JpegFrameEPKc6size_t","espp::JpegFrame::JpegFrame"],[72,3,1,"_CPPv4N4espp9JpegFrame9JpegFrameERK13RtpJpegPacket","espp::JpegFrame::JpegFrame"],[72,4,1,"_CPPv4N4espp9JpegFrame9JpegFrameEPKc6size_t","espp::JpegFrame::JpegFrame::data"],[72,4,1,"_CPPv4N4espp9JpegFrame9JpegFrameERK13RtpJpegPacket","espp::JpegFrame::JpegFrame::packet"],[72,4,1,"_CPPv4N4espp9JpegFrame9JpegFrameEPKc6size_t","espp::JpegFrame::JpegFrame::size"],[72,3,1,"_CPPv4N4espp9JpegFrame8add_scanERK13RtpJpegPacket","espp::JpegFrame::add_scan"],[72,4,1,"_CPPv4N4espp9JpegFrame8add_scanERK13RtpJpegPacket","espp::JpegFrame::add_scan::packet"],[72,3,1,"_CPPv4N4espp9JpegFrame6appendERK13RtpJpegPacket","espp::JpegFrame::append"],[72,4,1,"_CPPv4N4espp9JpegFrame6appendERK13RtpJpegPacket","espp::JpegFrame::append::packet"],[72,3,1,"_CPPv4NK4espp9JpegFrame8get_dataEv","espp::JpegFrame::get_data"],[72,3,1,"_CPPv4NK4espp9JpegFrame10get_headerEv","espp::JpegFrame::get_header"],[72,3,1,"_CPPv4NK4espp9JpegFrame10get_heightEv","espp::JpegFrame::get_height"],[72,3,1,"_CPPv4NK4espp9JpegFrame13get_scan_dataEv","espp::JpegFrame::get_scan_data"],[72,3,1,"_CPPv4NK4espp9JpegFrame9get_widthEv","espp::JpegFrame::get_width"],[72,3,1,"_CPPv4NK4espp9JpegFrame11is_completeEv","espp::JpegFrame::is_complete"],[72,2,1,"_CPPv4N4espp10JpegHeaderE","espp::JpegHeader"],[72,3,1,"_CPPv4N4espp10JpegHeader10JpegHeaderENSt11string_viewE","espp::JpegHeader::JpegHeader"],[72,3,1,"_CPPv4N4espp10JpegHeader10JpegHeaderEiiNSt11string_viewENSt11string_viewE","espp::JpegHeader::JpegHeader"],[72,4,1,"_CPPv4N4espp10JpegHeader10JpegHeaderENSt11string_viewE","espp::JpegHeader::JpegHeader::data"],[72,4,1,"_CPPv4N4espp10JpegHeader10JpegHeaderEiiNSt11string_viewENSt11string_viewE","espp::JpegHeader::JpegHeader::height"],[72,4,1,"_CPPv4N4espp10JpegHeader10JpegHeaderEiiNSt11string_viewENSt11string_viewE","espp::JpegHeader::JpegHeader::q0_table"],[72,4,1,"_CPPv4N4espp10JpegHeader10JpegHeaderEiiNSt11string_viewENSt11string_viewE","espp::JpegHeader::JpegHeader::q1_table"],[72,4,1,"_CPPv4N4espp10JpegHeader10JpegHeaderEiiNSt11string_viewENSt11string_viewE","espp::JpegHeader::JpegHeader::width"],[72,3,1,"_CPPv4NK4espp10JpegHeader8get_dataEv","espp::JpegHeader::get_data"],[72,3,1,"_CPPv4NK4espp10JpegHeader10get_heightEv","espp::JpegHeader::get_height"],[72,3,1,"_CPPv4NK4espp10JpegHeader22get_quantization_tableEi","espp::JpegHeader::get_quantization_table"],[72,4,1,"_CPPv4NK4espp10JpegHeader22get_quantization_tableEi","espp::JpegHeader::get_quantization_table::index"],[72,3,1,"_CPPv4NK4espp10JpegHeader9get_widthEv","espp::JpegHeader::get_width"],[42,2,1,"_CPPv4N4espp11KeypadInputE","espp::KeypadInput"],[42,2,1,"_CPPv4N4espp11KeypadInput6ConfigE","espp::KeypadInput::Config"],[42,1,1,"_CPPv4N4espp11KeypadInput6Config9log_levelE","espp::KeypadInput::Config::log_level"],[42,1,1,"_CPPv4N4espp11KeypadInput6Config4readE","espp::KeypadInput::Config::read"],[42,3,1,"_CPPv4N4espp11KeypadInput11KeypadInputERK6Config","espp::KeypadInput::KeypadInput"],[42,4,1,"_CPPv4N4espp11KeypadInput11KeypadInputERK6Config","espp::KeypadInput::KeypadInput::config"],[42,3,1,"_CPPv4N4espp11KeypadInput16get_input_deviceEv","espp::KeypadInput::get_input_device"],[42,3,1,"_CPPv4N4espp11KeypadInputD0Ev","espp::KeypadInput::~KeypadInput"],[50,2,1,"_CPPv4N4espp3LedE","espp::Led"],[50,2,1,"_CPPv4N4espp3Led13ChannelConfigE","espp::Led::ChannelConfig"],[50,1,1,"_CPPv4N4espp3Led13ChannelConfig7channelE","espp::Led::ChannelConfig::channel"],[50,1,1,"_CPPv4N4espp3Led13ChannelConfig4dutyE","espp::Led::ChannelConfig::duty"],[50,1,1,"_CPPv4N4espp3Led13ChannelConfig4gpioE","espp::Led::ChannelConfig::gpio"],[50,1,1,"_CPPv4N4espp3Led13ChannelConfig13output_invertE","espp::Led::ChannelConfig::output_invert"],[50,1,1,"_CPPv4N4espp3Led13ChannelConfig10speed_modeE","espp::Led::ChannelConfig::speed_mode"],[50,1,1,"_CPPv4N4espp3Led13ChannelConfig5timerE","espp::Led::ChannelConfig::timer"],[50,2,1,"_CPPv4N4espp3Led6ConfigE","espp::Led::Config"],[50,1,1,"_CPPv4N4espp3Led6Config8channelsE","espp::Led::Config::channels"],[50,1,1,"_CPPv4N4espp3Led6Config15duty_resolutionE","espp::Led::Config::duty_resolution"],[50,1,1,"_CPPv4N4espp3Led6Config12frequency_hzE","espp::Led::Config::frequency_hz"],[50,1,1,"_CPPv4N4espp3Led6Config9log_levelE","espp::Led::Config::log_level"],[50,1,1,"_CPPv4N4espp3Led6Config10speed_modeE","espp::Led::Config::speed_mode"],[50,1,1,"_CPPv4N4espp3Led6Config5timerE","espp::Led::Config::timer"],[50,3,1,"_CPPv4N4espp3Led3LedERK6Config","espp::Led::Led"],[50,4,1,"_CPPv4N4espp3Led3LedERK6Config","espp::Led::Led::config"],[50,3,1,"_CPPv4N4espp3Led10can_changeE14ledc_channel_t","espp::Led::can_change"],[50,4,1,"_CPPv4N4espp3Led10can_changeE14ledc_channel_t","espp::Led::can_change::channel"],[50,3,1,"_CPPv4NK4espp3Led8get_dutyE14ledc_channel_t","espp::Led::get_duty"],[50,4,1,"_CPPv4NK4espp3Led8get_dutyE14ledc_channel_t","espp::Led::get_duty::channel"],[50,3,1,"_CPPv4N4espp3Led8set_dutyE14ledc_channel_tf","espp::Led::set_duty"],[50,4,1,"_CPPv4N4espp3Led8set_dutyE14ledc_channel_tf","espp::Led::set_duty::channel"],[50,4,1,"_CPPv4N4espp3Led8set_dutyE14ledc_channel_tf","espp::Led::set_duty::duty_percent"],[50,3,1,"_CPPv4N4espp3Led18set_fade_with_timeE14ledc_channel_tf8uint32_t","espp::Led::set_fade_with_time"],[50,4,1,"_CPPv4N4espp3Led18set_fade_with_timeE14ledc_channel_tf8uint32_t","espp::Led::set_fade_with_time::channel"],[50,4,1,"_CPPv4N4espp3Led18set_fade_with_timeE14ledc_channel_tf8uint32_t","espp::Led::set_fade_with_time::duty_percent"],[50,4,1,"_CPPv4N4espp3Led18set_fade_with_timeE14ledc_channel_tf8uint32_t","espp::Led::set_fade_with_time::fade_time_ms"],[50,3,1,"_CPPv4N4espp3LedD0Ev","espp::Led::~Led"],[51,2,1,"_CPPv4N4espp8LedStripE","espp::LedStrip"],[51,1,1,"_CPPv4N4espp8LedStrip18APA102_START_FRAMEE","espp::LedStrip::APA102_START_FRAME"],[51,6,1,"_CPPv4N4espp8LedStrip9ByteOrderE","espp::LedStrip::ByteOrder"],[51,7,1,"_CPPv4N4espp8LedStrip9ByteOrder3BGRE","espp::LedStrip::ByteOrder::BGR"],[51,7,1,"_CPPv4N4espp8LedStrip9ByteOrder3GRBE","espp::LedStrip::ByteOrder::GRB"],[51,7,1,"_CPPv4N4espp8LedStrip9ByteOrder3RGBE","espp::LedStrip::ByteOrder::RGB"],[51,2,1,"_CPPv4N4espp8LedStrip6ConfigE","espp::LedStrip::Config"],[51,1,1,"_CPPv4N4espp8LedStrip6Config10byte_orderE","espp::LedStrip::Config::byte_order"],[51,1,1,"_CPPv4N4espp8LedStrip6Config9end_frameE","espp::LedStrip::Config::end_frame"],[51,1,1,"_CPPv4N4espp8LedStrip6Config9log_levelE","espp::LedStrip::Config::log_level"],[51,1,1,"_CPPv4N4espp8LedStrip6Config8num_ledsE","espp::LedStrip::Config::num_leds"],[51,1,1,"_CPPv4N4espp8LedStrip6Config15send_brightnessE","espp::LedStrip::Config::send_brightness"],[51,1,1,"_CPPv4N4espp8LedStrip6Config11start_frameE","espp::LedStrip::Config::start_frame"],[51,1,1,"_CPPv4N4espp8LedStrip6Config5writeE","espp::LedStrip::Config::write"],[51,3,1,"_CPPv4N4espp8LedStrip8LedStripERK6Config","espp::LedStrip::LedStrip"],[51,4,1,"_CPPv4N4espp8LedStrip8LedStripERK6Config","espp::LedStrip::LedStrip::config"],[51,3,1,"_CPPv4NK4espp8LedStrip10byte_orderEv","espp::LedStrip::byte_order"],[51,3,1,"_CPPv4NK4espp8LedStrip8num_ledsEv","espp::LedStrip::num_leds"],[51,3,1,"_CPPv4N4espp8LedStrip7set_allE3Hsvf","espp::LedStrip::set_all"],[51,3,1,"_CPPv4N4espp8LedStrip7set_allE3Rgbf","espp::LedStrip::set_all"],[51,3,1,"_CPPv4N4espp8LedStrip7set_allE7uint8_t7uint8_t7uint8_t7uint8_t","espp::LedStrip::set_all"],[51,4,1,"_CPPv4N4espp8LedStrip7set_allE7uint8_t7uint8_t7uint8_t7uint8_t","espp::LedStrip::set_all::b"],[51,4,1,"_CPPv4N4espp8LedStrip7set_allE3Hsvf","espp::LedStrip::set_all::brightness"],[51,4,1,"_CPPv4N4espp8LedStrip7set_allE3Rgbf","espp::LedStrip::set_all::brightness"],[51,4,1,"_CPPv4N4espp8LedStrip7set_allE7uint8_t7uint8_t7uint8_t7uint8_t","espp::LedStrip::set_all::brightness"],[51,4,1,"_CPPv4N4espp8LedStrip7set_allE7uint8_t7uint8_t7uint8_t7uint8_t","espp::LedStrip::set_all::g"],[51,4,1,"_CPPv4N4espp8LedStrip7set_allE3Hsvf","espp::LedStrip::set_all::hsv"],[51,4,1,"_CPPv4N4espp8LedStrip7set_allE7uint8_t7uint8_t7uint8_t7uint8_t","espp::LedStrip::set_all::r"],[51,4,1,"_CPPv4N4espp8LedStrip7set_allE3Rgbf","espp::LedStrip::set_all::rgb"],[51,3,1,"_CPPv4N4espp8LedStrip9set_pixelEi3Hsvf","espp::LedStrip::set_pixel"],[51,3,1,"_CPPv4N4espp8LedStrip9set_pixelEi3Rgbf","espp::LedStrip::set_pixel"],[51,3,1,"_CPPv4N4espp8LedStrip9set_pixelEi7uint8_t7uint8_t7uint8_t7uint8_t","espp::LedStrip::set_pixel"],[51,4,1,"_CPPv4N4espp8LedStrip9set_pixelEi7uint8_t7uint8_t7uint8_t7uint8_t","espp::LedStrip::set_pixel::b"],[51,4,1,"_CPPv4N4espp8LedStrip9set_pixelEi3Hsvf","espp::LedStrip::set_pixel::brightness"],[51,4,1,"_CPPv4N4espp8LedStrip9set_pixelEi3Rgbf","espp::LedStrip::set_pixel::brightness"],[51,4,1,"_CPPv4N4espp8LedStrip9set_pixelEi7uint8_t7uint8_t7uint8_t7uint8_t","espp::LedStrip::set_pixel::brightness"],[51,4,1,"_CPPv4N4espp8LedStrip9set_pixelEi7uint8_t7uint8_t7uint8_t7uint8_t","espp::LedStrip::set_pixel::g"],[51,4,1,"_CPPv4N4espp8LedStrip9set_pixelEi3Hsvf","espp::LedStrip::set_pixel::hsv"],[51,4,1,"_CPPv4N4espp8LedStrip9set_pixelEi3Hsvf","espp::LedStrip::set_pixel::index"],[51,4,1,"_CPPv4N4espp8LedStrip9set_pixelEi3Rgbf","espp::LedStrip::set_pixel::index"],[51,4,1,"_CPPv4N4espp8LedStrip9set_pixelEi7uint8_t7uint8_t7uint8_t7uint8_t","espp::LedStrip::set_pixel::index"],[51,4,1,"_CPPv4N4espp8LedStrip9set_pixelEi7uint8_t7uint8_t7uint8_t7uint8_t","espp::LedStrip::set_pixel::r"],[51,4,1,"_CPPv4N4espp8LedStrip9set_pixelEi3Rgbf","espp::LedStrip::set_pixel::rgb"],[51,3,1,"_CPPv4N4espp8LedStrip10shift_leftEi","espp::LedStrip::shift_left"],[51,4,1,"_CPPv4N4espp8LedStrip10shift_leftEi","espp::LedStrip::shift_left::shift_by"],[51,3,1,"_CPPv4N4espp8LedStrip11shift_rightEi","espp::LedStrip::shift_right"],[51,4,1,"_CPPv4N4espp8LedStrip11shift_rightEi","espp::LedStrip::shift_right::shift_by"],[51,3,1,"_CPPv4N4espp8LedStrip4showEv","espp::LedStrip::show"],[51,8,1,"_CPPv4N4espp8LedStrip8write_fnE","espp::LedStrip::write_fn"],[11,2,1,"_CPPv4N4espp9LineInputE","espp::LineInput"],[11,8,1,"_CPPv4N4espp9LineInput7HistoryE","espp::LineInput::History"],[11,3,1,"_CPPv4N4espp9LineInput9LineInputEv","espp::LineInput::LineInput"],[11,3,1,"_CPPv4N4espp9LineInput10clear_lineEv","espp::LineInput::clear_line"],[11,3,1,"_CPPv4N4espp9LineInput12clear_screenEv","espp::LineInput::clear_screen"],[11,3,1,"_CPPv4N4espp9LineInput20clear_to_end_of_lineEv","espp::LineInput::clear_to_end_of_line"],[11,3,1,"_CPPv4N4espp9LineInput22clear_to_start_of_lineEv","espp::LineInput::clear_to_start_of_line"],[11,3,1,"_CPPv4NK4espp9LineInput11get_historyEv","espp::LineInput::get_history"],[11,3,1,"_CPPv4N4espp9LineInput17get_terminal_sizeERiRi","espp::LineInput::get_terminal_size"],[11,4,1,"_CPPv4N4espp9LineInput17get_terminal_sizeERiRi","espp::LineInput::get_terminal_size::height"],[11,4,1,"_CPPv4N4espp9LineInput17get_terminal_sizeERiRi","espp::LineInput::get_terminal_size::width"],[11,3,1,"_CPPv4N4espp9LineInput14get_user_inputERNSt7istreamE9prompt_fn","espp::LineInput::get_user_input"],[11,4,1,"_CPPv4N4espp9LineInput14get_user_inputERNSt7istreamE9prompt_fn","espp::LineInput::get_user_input::is"],[11,4,1,"_CPPv4N4espp9LineInput14get_user_inputERNSt7istreamE9prompt_fn","espp::LineInput::get_user_input::prompt"],[11,8,1,"_CPPv4N4espp9LineInput9prompt_fnE","espp::LineInput::prompt_fn"],[11,3,1,"_CPPv4N4espp9LineInput17set_handle_resizeEb","espp::LineInput::set_handle_resize"],[11,4,1,"_CPPv4N4espp9LineInput17set_handle_resizeEb","espp::LineInput::set_handle_resize::handle_resize"],[11,3,1,"_CPPv4N4espp9LineInput11set_historyERK7History","espp::LineInput::set_history"],[11,4,1,"_CPPv4N4espp9LineInput11set_historyERK7History","espp::LineInput::set_history::history"],[11,3,1,"_CPPv4N4espp9LineInput16set_history_sizeE6size_t","espp::LineInput::set_history_size"],[11,4,1,"_CPPv4N4espp9LineInput16set_history_sizeE6size_t","espp::LineInput::set_history_size::new_size"],[11,3,1,"_CPPv4N4espp9LineInputD0Ev","espp::LineInput::~LineInput"],[52,2,1,"_CPPv4N4espp6LoggerE","espp::Logger"],[52,2,1,"_CPPv4N4espp6Logger6ConfigE","espp::Logger::Config"],[52,1,1,"_CPPv4N4espp6Logger6Config5levelE","espp::Logger::Config::level"],[52,1,1,"_CPPv4N4espp6Logger6Config10rate_limitE","espp::Logger::Config::rate_limit"],[52,1,1,"_CPPv4N4espp6Logger6Config3tagE","espp::Logger::Config::tag"],[52,3,1,"_CPPv4N4espp6Logger6LoggerERK6Config","espp::Logger::Logger"],[52,4,1,"_CPPv4N4espp6Logger6LoggerERK6Config","espp::Logger::Logger::config"],[52,6,1,"_CPPv4N4espp6Logger9VerbosityE","espp::Logger::Verbosity"],[52,7,1,"_CPPv4N4espp6Logger9Verbosity5DEBUGE","espp::Logger::Verbosity::DEBUG"],[52,7,1,"_CPPv4N4espp6Logger9Verbosity5ERRORE","espp::Logger::Verbosity::ERROR"],[52,7,1,"_CPPv4N4espp6Logger9Verbosity4INFOE","espp::Logger::Verbosity::INFO"],[52,7,1,"_CPPv4N4espp6Logger9Verbosity4NONEE","espp::Logger::Verbosity::NONE"],[52,7,1,"_CPPv4N4espp6Logger9Verbosity4WARNE","espp::Logger::Verbosity::WARN"],[52,3,1,"_CPPv4IDpEN4espp6Logger5debugEvNSt11string_viewEDpRR4Args","espp::Logger::debug"],[52,5,1,"_CPPv4IDpEN4espp6Logger5debugEvNSt11string_viewEDpRR4Args","espp::Logger::debug::Args"],[52,4,1,"_CPPv4IDpEN4espp6Logger5debugEvNSt11string_viewEDpRR4Args","espp::Logger::debug::args"],[52,4,1,"_CPPv4IDpEN4espp6Logger5debugEvNSt11string_viewEDpRR4Args","espp::Logger::debug::rt_fmt_str"],[52,3,1,"_CPPv4IDpEN4espp6Logger18debug_rate_limitedEvNSt11string_viewEDpRR4Args","espp::Logger::debug_rate_limited"],[52,5,1,"_CPPv4IDpEN4espp6Logger18debug_rate_limitedEvNSt11string_viewEDpRR4Args","espp::Logger::debug_rate_limited::Args"],[52,4,1,"_CPPv4IDpEN4espp6Logger18debug_rate_limitedEvNSt11string_viewEDpRR4Args","espp::Logger::debug_rate_limited::args"],[52,4,1,"_CPPv4IDpEN4espp6Logger18debug_rate_limitedEvNSt11string_viewEDpRR4Args","espp::Logger::debug_rate_limited::rt_fmt_str"],[52,3,1,"_CPPv4IDpEN4espp6Logger5errorEvNSt11string_viewEDpRR4Args","espp::Logger::error"],[52,5,1,"_CPPv4IDpEN4espp6Logger5errorEvNSt11string_viewEDpRR4Args","espp::Logger::error::Args"],[52,4,1,"_CPPv4IDpEN4espp6Logger5errorEvNSt11string_viewEDpRR4Args","espp::Logger::error::args"],[52,4,1,"_CPPv4IDpEN4espp6Logger5errorEvNSt11string_viewEDpRR4Args","espp::Logger::error::rt_fmt_str"],[52,3,1,"_CPPv4IDpEN4espp6Logger18error_rate_limitedEvNSt11string_viewEDpRR4Args","espp::Logger::error_rate_limited"],[52,5,1,"_CPPv4IDpEN4espp6Logger18error_rate_limitedEvNSt11string_viewEDpRR4Args","espp::Logger::error_rate_limited::Args"],[52,4,1,"_CPPv4IDpEN4espp6Logger18error_rate_limitedEvNSt11string_viewEDpRR4Args","espp::Logger::error_rate_limited::args"],[52,4,1,"_CPPv4IDpEN4espp6Logger18error_rate_limitedEvNSt11string_viewEDpRR4Args","espp::Logger::error_rate_limited::rt_fmt_str"],[52,3,1,"_CPPv4IDpEN4espp6Logger6formatENSt6stringENSt11string_viewEDpRR4Args","espp::Logger::format"],[52,5,1,"_CPPv4IDpEN4espp6Logger6formatENSt6stringENSt11string_viewEDpRR4Args","espp::Logger::format::Args"],[52,4,1,"_CPPv4IDpEN4espp6Logger6formatENSt6stringENSt11string_viewEDpRR4Args","espp::Logger::format::args"],[52,4,1,"_CPPv4IDpEN4espp6Logger6formatENSt6stringENSt11string_viewEDpRR4Args","espp::Logger::format::rt_fmt_str"],[52,3,1,"_CPPv4IDpEN4espp6Logger4infoEvNSt11string_viewEDpRR4Args","espp::Logger::info"],[52,5,1,"_CPPv4IDpEN4espp6Logger4infoEvNSt11string_viewEDpRR4Args","espp::Logger::info::Args"],[52,4,1,"_CPPv4IDpEN4espp6Logger4infoEvNSt11string_viewEDpRR4Args","espp::Logger::info::args"],[52,4,1,"_CPPv4IDpEN4espp6Logger4infoEvNSt11string_viewEDpRR4Args","espp::Logger::info::rt_fmt_str"],[52,3,1,"_CPPv4IDpEN4espp6Logger17info_rate_limitedEvNSt11string_viewEDpRR4Args","espp::Logger::info_rate_limited"],[52,5,1,"_CPPv4IDpEN4espp6Logger17info_rate_limitedEvNSt11string_viewEDpRR4Args","espp::Logger::info_rate_limited::Args"],[52,4,1,"_CPPv4IDpEN4espp6Logger17info_rate_limitedEvNSt11string_viewEDpRR4Args","espp::Logger::info_rate_limited::args"],[52,4,1,"_CPPv4IDpEN4espp6Logger17info_rate_limitedEvNSt11string_viewEDpRR4Args","espp::Logger::info_rate_limited::rt_fmt_str"],[52,3,1,"_CPPv4N4espp6Logger7set_tagEKNSt11string_viewE","espp::Logger::set_tag"],[52,4,1,"_CPPv4N4espp6Logger7set_tagEKNSt11string_viewE","espp::Logger::set_tag::tag"],[52,3,1,"_CPPv4N4espp6Logger13set_verbosityEK9Verbosity","espp::Logger::set_verbosity"],[52,4,1,"_CPPv4N4espp6Logger13set_verbosityEK9Verbosity","espp::Logger::set_verbosity::level"],[52,3,1,"_CPPv4IDpEN4espp6Logger4warnEvNSt11string_viewEDpRR4Args","espp::Logger::warn"],[52,5,1,"_CPPv4IDpEN4espp6Logger4warnEvNSt11string_viewEDpRR4Args","espp::Logger::warn::Args"],[52,4,1,"_CPPv4IDpEN4espp6Logger4warnEvNSt11string_viewEDpRR4Args","espp::Logger::warn::args"],[52,4,1,"_CPPv4IDpEN4espp6Logger4warnEvNSt11string_viewEDpRR4Args","espp::Logger::warn::rt_fmt_str"],[52,3,1,"_CPPv4IDpEN4espp6Logger17warn_rate_limitedEvNSt11string_viewEDpRR4Args","espp::Logger::warn_rate_limited"],[52,5,1,"_CPPv4IDpEN4espp6Logger17warn_rate_limitedEvNSt11string_viewEDpRR4Args","espp::Logger::warn_rate_limited::Args"],[52,4,1,"_CPPv4IDpEN4espp6Logger17warn_rate_limitedEvNSt11string_viewEDpRR4Args","espp::Logger::warn_rate_limited::args"],[52,4,1,"_CPPv4IDpEN4espp6Logger17warn_rate_limitedEvNSt11string_viewEDpRR4Args","espp::Logger::warn_rate_limited::rt_fmt_str"],[28,2,1,"_CPPv4N4espp13LowpassFilterE","espp::LowpassFilter"],[28,2,1,"_CPPv4N4espp13LowpassFilter6ConfigE","espp::LowpassFilter::Config"],[28,1,1,"_CPPv4N4espp13LowpassFilter6Config27normalized_cutoff_frequencyE","espp::LowpassFilter::Config::normalized_cutoff_frequency"],[28,1,1,"_CPPv4N4espp13LowpassFilter6Config8q_factorE","espp::LowpassFilter::Config::q_factor"],[28,3,1,"_CPPv4N4espp13LowpassFilter13LowpassFilterERK6Config","espp::LowpassFilter::LowpassFilter"],[28,4,1,"_CPPv4N4espp13LowpassFilter13LowpassFilterERK6Config","espp::LowpassFilter::LowpassFilter::config"],[28,3,1,"_CPPv4N4espp13LowpassFilterclEf","espp::LowpassFilter::operator()"],[28,4,1,"_CPPv4N4espp13LowpassFilterclEf","espp::LowpassFilter::operator()::input"],[28,3,1,"_CPPv4N4espp13LowpassFilter6updateEKf","espp::LowpassFilter::update"],[28,3,1,"_CPPv4N4espp13LowpassFilter6updateEPKfPf6size_t","espp::LowpassFilter::update"],[28,4,1,"_CPPv4N4espp13LowpassFilter6updateEKf","espp::LowpassFilter::update::input"],[28,4,1,"_CPPv4N4espp13LowpassFilter6updateEPKfPf6size_t","espp::LowpassFilter::update::input"],[28,4,1,"_CPPv4N4espp13LowpassFilter6updateEPKfPf6size_t","espp::LowpassFilter::update::length"],[28,4,1,"_CPPv4N4espp13LowpassFilter6updateEPKfPf6size_t","espp::LowpassFilter::update::output"],[48,2,1,"_CPPv4N4espp8Mcp23x17E","espp::Mcp23x17"],[48,2,1,"_CPPv4N4espp8Mcp23x176ConfigE","espp::Mcp23x17::Config"],[48,1,1,"_CPPv4N4espp8Mcp23x176Config9auto_initE","espp::Mcp23x17::Config::auto_init"],[48,1,1,"_CPPv4N4espp8Mcp23x176Config14device_addressE","espp::Mcp23x17::Config::device_address"],[48,1,1,"_CPPv4N4espp8Mcp23x176Config9log_levelE","espp::Mcp23x17::Config::log_level"],[48,1,1,"_CPPv4N4espp8Mcp23x176Config21port_a_direction_maskE","espp::Mcp23x17::Config::port_a_direction_mask"],[48,1,1,"_CPPv4N4espp8Mcp23x176Config21port_a_interrupt_maskE","espp::Mcp23x17::Config::port_a_interrupt_mask"],[48,1,1,"_CPPv4N4espp8Mcp23x176Config21port_b_direction_maskE","espp::Mcp23x17::Config::port_b_direction_mask"],[48,1,1,"_CPPv4N4espp8Mcp23x176Config21port_b_interrupt_maskE","espp::Mcp23x17::Config::port_b_interrupt_mask"],[48,1,1,"_CPPv4N4espp8Mcp23x176Config4readE","espp::Mcp23x17::Config::read"],[48,1,1,"_CPPv4N4espp8Mcp23x176Config5writeE","espp::Mcp23x17::Config::write"],[48,1,1,"_CPPv4N4espp8Mcp23x1715DEFAULT_ADDRESSE","espp::Mcp23x17::DEFAULT_ADDRESS"],[48,3,1,"_CPPv4N4espp8Mcp23x178Mcp23x17ERK6Config","espp::Mcp23x17::Mcp23x17"],[48,4,1,"_CPPv4N4espp8Mcp23x178Mcp23x17ERK6Config","espp::Mcp23x17::Mcp23x17::config"],[48,6,1,"_CPPv4N4espp8Mcp23x174PortE","espp::Mcp23x17::Port"],[48,7,1,"_CPPv4N4espp8Mcp23x174Port1AE","espp::Mcp23x17::Port::A"],[48,7,1,"_CPPv4N4espp8Mcp23x174Port1BE","espp::Mcp23x17::Port::B"],[48,3,1,"_CPPv4N4espp8Mcp23x1721get_interrupt_captureE4PortRNSt10error_codeE","espp::Mcp23x17::get_interrupt_capture"],[48,4,1,"_CPPv4N4espp8Mcp23x1721get_interrupt_captureE4PortRNSt10error_codeE","espp::Mcp23x17::get_interrupt_capture::ec"],[48,4,1,"_CPPv4N4espp8Mcp23x1721get_interrupt_captureE4PortRNSt10error_codeE","espp::Mcp23x17::get_interrupt_capture::port"],[48,3,1,"_CPPv4N4espp8Mcp23x178get_pinsE4PortRNSt10error_codeE","espp::Mcp23x17::get_pins"],[48,4,1,"_CPPv4N4espp8Mcp23x178get_pinsE4PortRNSt10error_codeE","espp::Mcp23x17::get_pins::ec"],[48,4,1,"_CPPv4N4espp8Mcp23x178get_pinsE4PortRNSt10error_codeE","espp::Mcp23x17::get_pins::port"],[48,3,1,"_CPPv4N4espp8Mcp23x1710initializeERNSt10error_codeE","espp::Mcp23x17::initialize"],[48,4,1,"_CPPv4N4espp8Mcp23x1710initializeERNSt10error_codeE","espp::Mcp23x17::initialize::ec"],[48,8,1,"_CPPv4N4espp8Mcp23x177read_fnE","espp::Mcp23x17::read_fn"],[48,3,1,"_CPPv4N4espp8Mcp23x1713set_directionE4Port7uint8_tRNSt10error_codeE","espp::Mcp23x17::set_direction"],[48,4,1,"_CPPv4N4espp8Mcp23x1713set_directionE4Port7uint8_tRNSt10error_codeE","espp::Mcp23x17::set_direction::ec"],[48,4,1,"_CPPv4N4espp8Mcp23x1713set_directionE4Port7uint8_tRNSt10error_codeE","espp::Mcp23x17::set_direction::mask"],[48,4,1,"_CPPv4N4espp8Mcp23x1713set_directionE4Port7uint8_tRNSt10error_codeE","espp::Mcp23x17::set_direction::port"],[48,3,1,"_CPPv4N4espp8Mcp23x1718set_input_polarityE4Port7uint8_tRNSt10error_codeE","espp::Mcp23x17::set_input_polarity"],[48,4,1,"_CPPv4N4espp8Mcp23x1718set_input_polarityE4Port7uint8_tRNSt10error_codeE","espp::Mcp23x17::set_input_polarity::ec"],[48,4,1,"_CPPv4N4espp8Mcp23x1718set_input_polarityE4Port7uint8_tRNSt10error_codeE","espp::Mcp23x17::set_input_polarity::mask"],[48,4,1,"_CPPv4N4espp8Mcp23x1718set_input_polarityE4Port7uint8_tRNSt10error_codeE","espp::Mcp23x17::set_input_polarity::port"],[48,3,1,"_CPPv4N4espp8Mcp23x1720set_interrupt_mirrorEbRNSt10error_codeE","espp::Mcp23x17::set_interrupt_mirror"],[48,4,1,"_CPPv4N4espp8Mcp23x1720set_interrupt_mirrorEbRNSt10error_codeE","espp::Mcp23x17::set_interrupt_mirror::ec"],[48,4,1,"_CPPv4N4espp8Mcp23x1720set_interrupt_mirrorEbRNSt10error_codeE","espp::Mcp23x17::set_interrupt_mirror::mirror"],[48,3,1,"_CPPv4N4espp8Mcp23x1723set_interrupt_on_changeE4Port7uint8_tRNSt10error_codeE","espp::Mcp23x17::set_interrupt_on_change"],[48,4,1,"_CPPv4N4espp8Mcp23x1723set_interrupt_on_changeE4Port7uint8_tRNSt10error_codeE","espp::Mcp23x17::set_interrupt_on_change::ec"],[48,4,1,"_CPPv4N4espp8Mcp23x1723set_interrupt_on_changeE4Port7uint8_tRNSt10error_codeE","espp::Mcp23x17::set_interrupt_on_change::mask"],[48,4,1,"_CPPv4N4espp8Mcp23x1723set_interrupt_on_changeE4Port7uint8_tRNSt10error_codeE","espp::Mcp23x17::set_interrupt_on_change::port"],[48,3,1,"_CPPv4N4espp8Mcp23x1722set_interrupt_on_valueE4Port7uint8_t7uint8_tRNSt10error_codeE","espp::Mcp23x17::set_interrupt_on_value"],[48,4,1,"_CPPv4N4espp8Mcp23x1722set_interrupt_on_valueE4Port7uint8_t7uint8_tRNSt10error_codeE","espp::Mcp23x17::set_interrupt_on_value::ec"],[48,4,1,"_CPPv4N4espp8Mcp23x1722set_interrupt_on_valueE4Port7uint8_t7uint8_tRNSt10error_codeE","espp::Mcp23x17::set_interrupt_on_value::pin_mask"],[48,4,1,"_CPPv4N4espp8Mcp23x1722set_interrupt_on_valueE4Port7uint8_t7uint8_tRNSt10error_codeE","espp::Mcp23x17::set_interrupt_on_value::port"],[48,4,1,"_CPPv4N4espp8Mcp23x1722set_interrupt_on_valueE4Port7uint8_t7uint8_tRNSt10error_codeE","espp::Mcp23x17::set_interrupt_on_value::val_mask"],[48,3,1,"_CPPv4N4espp8Mcp23x1722set_interrupt_polarityEbRNSt10error_codeE","espp::Mcp23x17::set_interrupt_polarity"],[48,4,1,"_CPPv4N4espp8Mcp23x1722set_interrupt_polarityEbRNSt10error_codeE","espp::Mcp23x17::set_interrupt_polarity::active_high"],[48,4,1,"_CPPv4N4espp8Mcp23x1722set_interrupt_polarityEbRNSt10error_codeE","espp::Mcp23x17::set_interrupt_polarity::ec"],[48,3,1,"_CPPv4N4espp8Mcp23x178set_pinsE4Port7uint8_tRNSt10error_codeE","espp::Mcp23x17::set_pins"],[48,4,1,"_CPPv4N4espp8Mcp23x178set_pinsE4Port7uint8_tRNSt10error_codeE","espp::Mcp23x17::set_pins::ec"],[48,4,1,"_CPPv4N4espp8Mcp23x178set_pinsE4Port7uint8_tRNSt10error_codeE","espp::Mcp23x17::set_pins::output"],[48,4,1,"_CPPv4N4espp8Mcp23x178set_pinsE4Port7uint8_tRNSt10error_codeE","espp::Mcp23x17::set_pins::port"],[48,3,1,"_CPPv4N4espp8Mcp23x1711set_pull_upE4Port7uint8_tRNSt10error_codeE","espp::Mcp23x17::set_pull_up"],[48,4,1,"_CPPv4N4espp8Mcp23x1711set_pull_upE4Port7uint8_tRNSt10error_codeE","espp::Mcp23x17::set_pull_up::ec"],[48,4,1,"_CPPv4N4espp8Mcp23x1711set_pull_upE4Port7uint8_tRNSt10error_codeE","espp::Mcp23x17::set_pull_up::mask"],[48,4,1,"_CPPv4N4espp8Mcp23x1711set_pull_upE4Port7uint8_tRNSt10error_codeE","espp::Mcp23x17::set_pull_up::port"],[48,8,1,"_CPPv4N4espp8Mcp23x178write_fnE","espp::Mcp23x17::write_fn"],[22,2,1,"_CPPv4N4espp6Mt6701E","espp::Mt6701"],[22,1,1,"_CPPv4N4espp6Mt670121COUNTS_PER_REVOLUTIONE","espp::Mt6701::COUNTS_PER_REVOLUTION"],[22,1,1,"_CPPv4N4espp6Mt670123COUNTS_PER_REVOLUTION_FE","espp::Mt6701::COUNTS_PER_REVOLUTION_F"],[22,1,1,"_CPPv4N4espp6Mt670117COUNTS_TO_DEGREESE","espp::Mt6701::COUNTS_TO_DEGREES"],[22,1,1,"_CPPv4N4espp6Mt670117COUNTS_TO_RADIANSE","espp::Mt6701::COUNTS_TO_RADIANS"],[22,2,1,"_CPPv4N4espp6Mt67016ConfigE","espp::Mt6701::Config"],[22,1,1,"_CPPv4N4espp6Mt67016Config9auto_initE","espp::Mt6701::Config::auto_init"],[22,1,1,"_CPPv4N4espp6Mt67016Config14device_addressE","espp::Mt6701::Config::device_address"],[22,1,1,"_CPPv4N4espp6Mt67016Config4readE","espp::Mt6701::Config::read"],[22,1,1,"_CPPv4N4espp6Mt67016Config13update_periodE","espp::Mt6701::Config::update_period"],[22,1,1,"_CPPv4N4espp6Mt67016Config15velocity_filterE","espp::Mt6701::Config::velocity_filter"],[22,1,1,"_CPPv4N4espp6Mt67016Config5writeE","espp::Mt6701::Config::write"],[22,1,1,"_CPPv4N4espp6Mt670115DEFAULT_ADDRESSE","espp::Mt6701::DEFAULT_ADDRESS"],[22,3,1,"_CPPv4N4espp6Mt67016Mt6701ERK6Config","espp::Mt6701::Mt6701"],[22,4,1,"_CPPv4N4espp6Mt67016Mt6701ERK6Config","espp::Mt6701::Mt6701::config"],[22,1,1,"_CPPv4N4espp6Mt670118SECONDS_PER_MINUTEE","espp::Mt6701::SECONDS_PER_MINUTE"],[22,3,1,"_CPPv4NK4espp6Mt670115get_accumulatorEv","espp::Mt6701::get_accumulator"],[22,3,1,"_CPPv4NK4espp6Mt67019get_countEv","espp::Mt6701::get_count"],[22,3,1,"_CPPv4NK4espp6Mt670111get_degreesEv","espp::Mt6701::get_degrees"],[22,3,1,"_CPPv4NK4espp6Mt670122get_mechanical_degreesEv","espp::Mt6701::get_mechanical_degrees"],[22,3,1,"_CPPv4NK4espp6Mt670122get_mechanical_radiansEv","espp::Mt6701::get_mechanical_radians"],[22,3,1,"_CPPv4NK4espp6Mt670111get_radiansEv","espp::Mt6701::get_radians"],[22,3,1,"_CPPv4NK4espp6Mt67017get_rpmEv","espp::Mt6701::get_rpm"],[22,3,1,"_CPPv4N4espp6Mt670110initializeERNSt10error_codeE","espp::Mt6701::initialize"],[22,4,1,"_CPPv4N4espp6Mt670110initializeERNSt10error_codeE","espp::Mt6701::initialize::ec"],[22,3,1,"_CPPv4NK4espp6Mt670117needs_zero_searchEv","espp::Mt6701::needs_zero_search"],[22,8,1,"_CPPv4N4espp6Mt67017read_fnE","espp::Mt6701::read_fn"],[22,8,1,"_CPPv4N4espp6Mt670118velocity_filter_fnE","espp::Mt6701::velocity_filter_fn"],[22,8,1,"_CPPv4N4espp6Mt67018write_fnE","espp::Mt6701::write_fn"],[65,2,1,"_CPPv4N4espp4NdefE","espp::Ndef"],[65,6,1,"_CPPv4N4espp4Ndef7BleRoleE","espp::Ndef::BleRole"],[65,7,1,"_CPPv4N4espp4Ndef7BleRole12CENTRAL_ONLYE","espp::Ndef::BleRole::CENTRAL_ONLY"],[65,7,1,"_CPPv4N4espp4Ndef7BleRole18CENTRAL_PERIPHERALE","espp::Ndef::BleRole::CENTRAL_PERIPHERAL"],[65,7,1,"_CPPv4N4espp4Ndef7BleRole18PERIPHERAL_CENTRALE","espp::Ndef::BleRole::PERIPHERAL_CENTRAL"],[65,7,1,"_CPPv4N4espp4Ndef7BleRole15PERIPHERAL_ONLYE","espp::Ndef::BleRole::PERIPHERAL_ONLY"],[65,6,1,"_CPPv4N4espp4Ndef12BtAppearanceE","espp::Ndef::BtAppearance"],[65,7,1,"_CPPv4N4espp4Ndef12BtAppearance5CLOCKE","espp::Ndef::BtAppearance::CLOCK"],[65,7,1,"_CPPv4N4espp4Ndef12BtAppearance8COMPUTERE","espp::Ndef::BtAppearance::COMPUTER"],[65,7,1,"_CPPv4N4espp4Ndef12BtAppearance7DISPLAYE","espp::Ndef::BtAppearance::DISPLAY"],[65,7,1,"_CPPv4N4espp4Ndef12BtAppearance7GAMEPADE","espp::Ndef::BtAppearance::GAMEPAD"],[65,7,1,"_CPPv4N4espp4Ndef12BtAppearance6GAMINGE","espp::Ndef::BtAppearance::GAMING"],[65,7,1,"_CPPv4N4espp4Ndef12BtAppearance11GENERIC_HIDE","espp::Ndef::BtAppearance::GENERIC_HID"],[65,7,1,"_CPPv4N4espp4Ndef12BtAppearance8JOYSTICKE","espp::Ndef::BtAppearance::JOYSTICK"],[65,7,1,"_CPPv4N4espp4Ndef12BtAppearance8KEYBOARDE","espp::Ndef::BtAppearance::KEYBOARD"],[65,7,1,"_CPPv4N4espp4Ndef12BtAppearance5MOUSEE","espp::Ndef::BtAppearance::MOUSE"],[65,7,1,"_CPPv4N4espp4Ndef12BtAppearance5PHONEE","espp::Ndef::BtAppearance::PHONE"],[65,7,1,"_CPPv4N4espp4Ndef12BtAppearance14REMOTE_CONTROLE","espp::Ndef::BtAppearance::REMOTE_CONTROL"],[65,7,1,"_CPPv4N4espp4Ndef12BtAppearance8TOUCHPADE","espp::Ndef::BtAppearance::TOUCHPAD"],[65,7,1,"_CPPv4N4espp4Ndef12BtAppearance7UNKNOWNE","espp::Ndef::BtAppearance::UNKNOWN"],[65,7,1,"_CPPv4N4espp4Ndef12BtAppearance5WATCHE","espp::Ndef::BtAppearance::WATCH"],[65,6,1,"_CPPv4N4espp4Ndef5BtEirE","espp::Ndef::BtEir"],[65,7,1,"_CPPv4N4espp4Ndef5BtEir10APPEARANCEE","espp::Ndef::BtEir::APPEARANCE"],[65,7,1,"_CPPv4N4espp4Ndef5BtEir15CLASS_OF_DEVICEE","espp::Ndef::BtEir::CLASS_OF_DEVICE"],[65,7,1,"_CPPv4N4espp4Ndef5BtEir5FLAGSE","espp::Ndef::BtEir::FLAGS"],[65,7,1,"_CPPv4N4espp4Ndef5BtEir7LE_ROLEE","espp::Ndef::BtEir::LE_ROLE"],[65,7,1,"_CPPv4N4espp4Ndef5BtEir18LE_SC_CONFIRMATIONE","espp::Ndef::BtEir::LE_SC_CONFIRMATION"],[65,7,1,"_CPPv4N4espp4Ndef5BtEir12LE_SC_RANDOME","espp::Ndef::BtEir::LE_SC_RANDOM"],[65,7,1,"_CPPv4N4espp4Ndef5BtEir15LONG_LOCAL_NAMEE","espp::Ndef::BtEir::LONG_LOCAL_NAME"],[65,7,1,"_CPPv4N4espp4Ndef5BtEir3MACE","espp::Ndef::BtEir::MAC"],[65,7,1,"_CPPv4N4espp4Ndef5BtEir22SECURITY_MANAGER_FLAGSE","espp::Ndef::BtEir::SECURITY_MANAGER_FLAGS"],[65,7,1,"_CPPv4N4espp4Ndef5BtEir19SECURITY_MANAGER_TKE","espp::Ndef::BtEir::SECURITY_MANAGER_TK"],[65,7,1,"_CPPv4N4espp4Ndef5BtEir16SHORT_LOCAL_NAMEE","espp::Ndef::BtEir::SHORT_LOCAL_NAME"],[65,7,1,"_CPPv4N4espp4Ndef5BtEir12SP_HASH_C192E","espp::Ndef::BtEir::SP_HASH_C192"],[65,7,1,"_CPPv4N4espp4Ndef5BtEir12SP_HASH_C256E","espp::Ndef::BtEir::SP_HASH_C256"],[65,7,1,"_CPPv4N4espp4Ndef5BtEir12SP_HASH_R256E","espp::Ndef::BtEir::SP_HASH_R256"],[65,7,1,"_CPPv4N4espp4Ndef5BtEir14SP_RANDOM_R192E","espp::Ndef::BtEir::SP_RANDOM_R192"],[65,7,1,"_CPPv4N4espp4Ndef5BtEir14TX_POWER_LEVELE","espp::Ndef::BtEir::TX_POWER_LEVEL"],[65,7,1,"_CPPv4N4espp4Ndef5BtEir22UUIDS_128_BIT_COMPLETEE","espp::Ndef::BtEir::UUIDS_128_BIT_COMPLETE"],[65,7,1,"_CPPv4N4espp4Ndef5BtEir21UUIDS_128_BIT_PARTIALE","espp::Ndef::BtEir::UUIDS_128_BIT_PARTIAL"],[65,7,1,"_CPPv4N4espp4Ndef5BtEir21UUIDS_16_BIT_COMPLETEE","espp::Ndef::BtEir::UUIDS_16_BIT_COMPLETE"],[65,7,1,"_CPPv4N4espp4Ndef5BtEir20UUIDS_16_BIT_PARTIALE","espp::Ndef::BtEir::UUIDS_16_BIT_PARTIAL"],[65,7,1,"_CPPv4N4espp4Ndef5BtEir21UUIDS_32_BIT_COMPLETEE","espp::Ndef::BtEir::UUIDS_32_BIT_COMPLETE"],[65,7,1,"_CPPv4N4espp4Ndef5BtEir20UUIDS_32_BIT_PARTIALE","espp::Ndef::BtEir::UUIDS_32_BIT_PARTIAL"],[65,6,1,"_CPPv4N4espp4Ndef6BtTypeE","espp::Ndef::BtType"],[65,7,1,"_CPPv4N4espp4Ndef6BtType3BLEE","espp::Ndef::BtType::BLE"],[65,7,1,"_CPPv4N4espp4Ndef6BtType5BREDRE","espp::Ndef::BtType::BREDR"],[65,6,1,"_CPPv4N4espp4Ndef17CarrierPowerStateE","espp::Ndef::CarrierPowerState"],[65,7,1,"_CPPv4N4espp4Ndef17CarrierPowerState10ACTIVATINGE","espp::Ndef::CarrierPowerState::ACTIVATING"],[65,7,1,"_CPPv4N4espp4Ndef17CarrierPowerState6ACTIVEE","espp::Ndef::CarrierPowerState::ACTIVE"],[65,7,1,"_CPPv4N4espp4Ndef17CarrierPowerState8INACTIVEE","espp::Ndef::CarrierPowerState::INACTIVE"],[65,7,1,"_CPPv4N4espp4Ndef17CarrierPowerState7UNKNOWNE","espp::Ndef::CarrierPowerState::UNKNOWN"],[65,1,1,"_CPPv4N4espp4Ndef16HANDOVER_VERSIONE","espp::Ndef::HANDOVER_VERSION"],[65,3,1,"_CPPv4N4espp4Ndef4NdefE3TNFNSt11string_viewENSt11string_viewE","espp::Ndef::Ndef"],[65,4,1,"_CPPv4N4espp4Ndef4NdefE3TNFNSt11string_viewENSt11string_viewE","espp::Ndef::Ndef::payload"],[65,4,1,"_CPPv4N4espp4Ndef4NdefE3TNFNSt11string_viewENSt11string_viewE","espp::Ndef::Ndef::tnf"],[65,4,1,"_CPPv4N4espp4Ndef4NdefE3TNFNSt11string_viewENSt11string_viewE","espp::Ndef::Ndef::type"],[65,6,1,"_CPPv4N4espp4Ndef3TNFE","espp::Ndef::TNF"],[65,7,1,"_CPPv4N4espp4Ndef3TNF12ABSOLUTE_URIE","espp::Ndef::TNF::ABSOLUTE_URI"],[65,7,1,"_CPPv4N4espp4Ndef3TNF5EMPTYE","espp::Ndef::TNF::EMPTY"],[65,7,1,"_CPPv4N4espp4Ndef3TNF13EXTERNAL_TYPEE","espp::Ndef::TNF::EXTERNAL_TYPE"],[65,7,1,"_CPPv4N4espp4Ndef3TNF10MIME_MEDIAE","espp::Ndef::TNF::MIME_MEDIA"],[65,7,1,"_CPPv4N4espp4Ndef3TNF8RESERVEDE","espp::Ndef::TNF::RESERVED"],[65,7,1,"_CPPv4N4espp4Ndef3TNF9UNCHANGEDE","espp::Ndef::TNF::UNCHANGED"],[65,7,1,"_CPPv4N4espp4Ndef3TNF7UNKNOWNE","espp::Ndef::TNF::UNKNOWN"],[65,7,1,"_CPPv4N4espp4Ndef3TNF10WELL_KNOWNE","espp::Ndef::TNF::WELL_KNOWN"],[65,6,1,"_CPPv4N4espp4Ndef3UicE","espp::Ndef::Uic"],[65,7,1,"_CPPv4N4espp4Ndef3Uic6BTGOEPE","espp::Ndef::Uic::BTGOEP"],[65,7,1,"_CPPv4N4espp4Ndef3Uic7BTL2CAPE","espp::Ndef::Uic::BTL2CAP"],[65,7,1,"_CPPv4N4espp4Ndef3Uic5BTSPPE","espp::Ndef::Uic::BTSPP"],[65,7,1,"_CPPv4N4espp4Ndef3Uic3DAVE","espp::Ndef::Uic::DAV"],[65,7,1,"_CPPv4N4espp4Ndef3Uic4FILEE","espp::Ndef::Uic::FILE"],[65,7,1,"_CPPv4N4espp4Ndef3Uic3FTPE","espp::Ndef::Uic::FTP"],[65,7,1,"_CPPv4N4espp4Ndef3Uic4FTPSE","espp::Ndef::Uic::FTPS"],[65,7,1,"_CPPv4N4espp4Ndef3Uic8FTP_ANONE","espp::Ndef::Uic::FTP_ANON"],[65,7,1,"_CPPv4N4espp4Ndef3Uic7FTP_FTPE","espp::Ndef::Uic::FTP_FTP"],[65,7,1,"_CPPv4N4espp4Ndef3Uic4HTTPE","espp::Ndef::Uic::HTTP"],[65,7,1,"_CPPv4N4espp4Ndef3Uic5HTTPSE","espp::Ndef::Uic::HTTPS"],[65,7,1,"_CPPv4N4espp4Ndef3Uic9HTTPS_WWWE","espp::Ndef::Uic::HTTPS_WWW"],[65,7,1,"_CPPv4N4espp4Ndef3Uic8HTTP_WWWE","espp::Ndef::Uic::HTTP_WWW"],[65,7,1,"_CPPv4N4espp4Ndef3Uic4IMAPE","espp::Ndef::Uic::IMAP"],[65,7,1,"_CPPv4N4espp4Ndef3Uic8IRDAOBEXE","espp::Ndef::Uic::IRDAOBEX"],[65,7,1,"_CPPv4N4espp4Ndef3Uic6MAILTOE","espp::Ndef::Uic::MAILTO"],[65,7,1,"_CPPv4N4espp4Ndef3Uic4NEWSE","espp::Ndef::Uic::NEWS"],[65,7,1,"_CPPv4N4espp4Ndef3Uic3NFSE","espp::Ndef::Uic::NFS"],[65,7,1,"_CPPv4N4espp4Ndef3Uic4NONEE","espp::Ndef::Uic::NONE"],[65,7,1,"_CPPv4N4espp4Ndef3Uic3POPE","espp::Ndef::Uic::POP"],[65,7,1,"_CPPv4N4espp4Ndef3Uic4RSTPE","espp::Ndef::Uic::RSTP"],[65,7,1,"_CPPv4N4espp4Ndef3Uic4SFTPE","espp::Ndef::Uic::SFTP"],[65,7,1,"_CPPv4N4espp4Ndef3Uic3SIPE","espp::Ndef::Uic::SIP"],[65,7,1,"_CPPv4N4espp4Ndef3Uic4SIPSE","espp::Ndef::Uic::SIPS"],[65,7,1,"_CPPv4N4espp4Ndef3Uic3SMBE","espp::Ndef::Uic::SMB"],[65,7,1,"_CPPv4N4espp4Ndef3Uic7TCPOBEXE","espp::Ndef::Uic::TCPOBEX"],[65,7,1,"_CPPv4N4espp4Ndef3Uic3TELE","espp::Ndef::Uic::TEL"],[65,7,1,"_CPPv4N4espp4Ndef3Uic6TELNETE","espp::Ndef::Uic::TELNET"],[65,7,1,"_CPPv4N4espp4Ndef3Uic4TFTPE","espp::Ndef::Uic::TFTP"],[65,7,1,"_CPPv4N4espp4Ndef3Uic3URNE","espp::Ndef::Uic::URN"],[65,7,1,"_CPPv4N4espp4Ndef3Uic7URN_EPCE","espp::Ndef::Uic::URN_EPC"],[65,7,1,"_CPPv4N4espp4Ndef3Uic10URN_EPC_IDE","espp::Ndef::Uic::URN_EPC_ID"],[65,7,1,"_CPPv4N4espp4Ndef3Uic11URN_EPC_PATE","espp::Ndef::Uic::URN_EPC_PAT"],[65,7,1,"_CPPv4N4espp4Ndef3Uic11URN_EPC_RAWE","espp::Ndef::Uic::URN_EPC_RAW"],[65,7,1,"_CPPv4N4espp4Ndef3Uic11URN_EPC_TAGE","espp::Ndef::Uic::URN_EPC_TAG"],[65,7,1,"_CPPv4N4espp4Ndef3Uic7URN_NFCE","espp::Ndef::Uic::URN_NFC"],[65,6,1,"_CPPv4N4espp4Ndef22WifiAuthenticationTypeE","espp::Ndef::WifiAuthenticationType"],[65,7,1,"_CPPv4N4espp4Ndef22WifiAuthenticationType4OPENE","espp::Ndef::WifiAuthenticationType::OPEN"],[65,7,1,"_CPPv4N4espp4Ndef22WifiAuthenticationType6SHAREDE","espp::Ndef::WifiAuthenticationType::SHARED"],[65,7,1,"_CPPv4N4espp4Ndef22WifiAuthenticationType15WPA2_ENTERPRISEE","espp::Ndef::WifiAuthenticationType::WPA2_ENTERPRISE"],[65,7,1,"_CPPv4N4espp4Ndef22WifiAuthenticationType13WPA2_PERSONALE","espp::Ndef::WifiAuthenticationType::WPA2_PERSONAL"],[65,7,1,"_CPPv4N4espp4Ndef22WifiAuthenticationType14WPA_ENTERPRISEE","espp::Ndef::WifiAuthenticationType::WPA_ENTERPRISE"],[65,7,1,"_CPPv4N4espp4Ndef22WifiAuthenticationType12WPA_PERSONALE","espp::Ndef::WifiAuthenticationType::WPA_PERSONAL"],[65,7,1,"_CPPv4N4espp4Ndef22WifiAuthenticationType17WPA_WPA2_PERSONALE","espp::Ndef::WifiAuthenticationType::WPA_WPA2_PERSONAL"],[65,2,1,"_CPPv4N4espp4Ndef10WifiConfigE","espp::Ndef::WifiConfig"],[65,1,1,"_CPPv4N4espp4Ndef10WifiConfig14authenticationE","espp::Ndef::WifiConfig::authentication"],[65,1,1,"_CPPv4N4espp4Ndef10WifiConfig10encryptionE","espp::Ndef::WifiConfig::encryption"],[65,1,1,"_CPPv4N4espp4Ndef10WifiConfig3keyE","espp::Ndef::WifiConfig::key"],[65,1,1,"_CPPv4N4espp4Ndef10WifiConfig11mac_addressE","espp::Ndef::WifiConfig::mac_address"],[65,1,1,"_CPPv4N4espp4Ndef10WifiConfig4ssidE","espp::Ndef::WifiConfig::ssid"],[65,6,1,"_CPPv4N4espp4Ndef18WifiEncryptionTypeE","espp::Ndef::WifiEncryptionType"],[65,7,1,"_CPPv4N4espp4Ndef18WifiEncryptionType3AESE","espp::Ndef::WifiEncryptionType::AES"],[65,7,1,"_CPPv4N4espp4Ndef18WifiEncryptionType4NONEE","espp::Ndef::WifiEncryptionType::NONE"],[65,7,1,"_CPPv4N4espp4Ndef18WifiEncryptionType4TKIPE","espp::Ndef::WifiEncryptionType::TKIP"],[65,7,1,"_CPPv4N4espp4Ndef18WifiEncryptionType3WEPE","espp::Ndef::WifiEncryptionType::WEP"],[65,3,1,"_CPPv4NK4espp4Ndef6get_idEv","espp::Ndef::get_id"],[65,3,1,"_CPPv4NK4espp4Ndef8get_sizeEv","espp::Ndef::get_size"],[65,3,1,"_CPPv4N4espp4Ndef24make_alternative_carrierERK17CarrierPowerStatei","espp::Ndef::make_alternative_carrier"],[65,4,1,"_CPPv4N4espp4Ndef24make_alternative_carrierERK17CarrierPowerStatei","espp::Ndef::make_alternative_carrier::carrier_data_ref"],[65,4,1,"_CPPv4N4espp4Ndef24make_alternative_carrierERK17CarrierPowerStatei","espp::Ndef::make_alternative_carrier::power_state"],[65,3,1,"_CPPv4N4espp4Ndef21make_android_launcherENSt11string_viewE","espp::Ndef::make_android_launcher"],[65,4,1,"_CPPv4N4espp4Ndef21make_android_launcherENSt11string_viewE","espp::Ndef::make_android_launcher::uri"],[65,3,1,"_CPPv4N4espp4Ndef21make_handover_requestEi","espp::Ndef::make_handover_request"],[65,4,1,"_CPPv4N4espp4Ndef21make_handover_requestEi","espp::Ndef::make_handover_request::carrier_data_ref"],[65,3,1,"_CPPv4N4espp4Ndef20make_handover_selectEi","espp::Ndef::make_handover_select"],[65,4,1,"_CPPv4N4espp4Ndef20make_handover_selectEi","espp::Ndef::make_handover_select::carrier_data_ref"],[65,3,1,"_CPPv4N4espp4Ndef19make_le_oob_pairingE8uint64_t7BleRoleNSt11string_viewE12BtAppearanceNSt11string_viewENSt11string_viewENSt11string_viewE","espp::Ndef::make_le_oob_pairing"],[65,4,1,"_CPPv4N4espp4Ndef19make_le_oob_pairingE8uint64_t7BleRoleNSt11string_viewE12BtAppearanceNSt11string_viewENSt11string_viewENSt11string_viewE","espp::Ndef::make_le_oob_pairing::appearance"],[65,4,1,"_CPPv4N4espp4Ndef19make_le_oob_pairingE8uint64_t7BleRoleNSt11string_viewE12BtAppearanceNSt11string_viewENSt11string_viewENSt11string_viewE","espp::Ndef::make_le_oob_pairing::confirm_value"],[65,4,1,"_CPPv4N4espp4Ndef19make_le_oob_pairingE8uint64_t7BleRoleNSt11string_viewE12BtAppearanceNSt11string_viewENSt11string_viewENSt11string_viewE","espp::Ndef::make_le_oob_pairing::mac_addr"],[65,4,1,"_CPPv4N4espp4Ndef19make_le_oob_pairingE8uint64_t7BleRoleNSt11string_viewE12BtAppearanceNSt11string_viewENSt11string_viewENSt11string_viewE","espp::Ndef::make_le_oob_pairing::name"],[65,4,1,"_CPPv4N4espp4Ndef19make_le_oob_pairingE8uint64_t7BleRoleNSt11string_viewE12BtAppearanceNSt11string_viewENSt11string_viewENSt11string_viewE","espp::Ndef::make_le_oob_pairing::random_value"],[65,4,1,"_CPPv4N4espp4Ndef19make_le_oob_pairingE8uint64_t7BleRoleNSt11string_viewE12BtAppearanceNSt11string_viewENSt11string_viewENSt11string_viewE","espp::Ndef::make_le_oob_pairing::role"],[65,4,1,"_CPPv4N4espp4Ndef19make_le_oob_pairingE8uint64_t7BleRoleNSt11string_viewE12BtAppearanceNSt11string_viewENSt11string_viewENSt11string_viewE","espp::Ndef::make_le_oob_pairing::tk"],[65,3,1,"_CPPv4N4espp4Ndef16make_oob_pairingE8uint64_t8uint32_tNSt11string_viewENSt11string_viewENSt11string_viewE","espp::Ndef::make_oob_pairing"],[65,4,1,"_CPPv4N4espp4Ndef16make_oob_pairingE8uint64_t8uint32_tNSt11string_viewENSt11string_viewENSt11string_viewE","espp::Ndef::make_oob_pairing::confirm_value"],[65,4,1,"_CPPv4N4espp4Ndef16make_oob_pairingE8uint64_t8uint32_tNSt11string_viewENSt11string_viewENSt11string_viewE","espp::Ndef::make_oob_pairing::device_class"],[65,4,1,"_CPPv4N4espp4Ndef16make_oob_pairingE8uint64_t8uint32_tNSt11string_viewENSt11string_viewENSt11string_viewE","espp::Ndef::make_oob_pairing::mac_addr"],[65,4,1,"_CPPv4N4espp4Ndef16make_oob_pairingE8uint64_t8uint32_tNSt11string_viewENSt11string_viewENSt11string_viewE","espp::Ndef::make_oob_pairing::name"],[65,4,1,"_CPPv4N4espp4Ndef16make_oob_pairingE8uint64_t8uint32_tNSt11string_viewENSt11string_viewENSt11string_viewE","espp::Ndef::make_oob_pairing::random_value"],[65,3,1,"_CPPv4N4espp4Ndef9make_textENSt11string_viewE","espp::Ndef::make_text"],[65,4,1,"_CPPv4N4espp4Ndef9make_textENSt11string_viewE","espp::Ndef::make_text::text"],[65,3,1,"_CPPv4N4espp4Ndef8make_uriENSt11string_viewE3Uic","espp::Ndef::make_uri"],[65,4,1,"_CPPv4N4espp4Ndef8make_uriENSt11string_viewE3Uic","espp::Ndef::make_uri::uic"],[65,4,1,"_CPPv4N4espp4Ndef8make_uriENSt11string_viewE3Uic","espp::Ndef::make_uri::uri"],[65,3,1,"_CPPv4N4espp4Ndef16make_wifi_configERK10WifiConfig","espp::Ndef::make_wifi_config"],[65,4,1,"_CPPv4N4espp4Ndef16make_wifi_configERK10WifiConfig","espp::Ndef::make_wifi_config::config"],[65,3,1,"_CPPv4N4espp4Ndef7payloadEv","espp::Ndef::payload"],[65,3,1,"_CPPv4N4espp4Ndef9serializeEbb","espp::Ndef::serialize"],[65,4,1,"_CPPv4N4espp4Ndef9serializeEbb","espp::Ndef::serialize::message_begin"],[65,4,1,"_CPPv4N4espp4Ndef9serializeEbb","espp::Ndef::serialize::message_end"],[65,3,1,"_CPPv4N4espp4Ndef6set_idEi","espp::Ndef::set_id"],[65,4,1,"_CPPv4N4espp4Ndef6set_idEi","espp::Ndef::set_id::id"],[5,2,1,"_CPPv4N4espp10OneshotAdcE","espp::OneshotAdc"],[5,2,1,"_CPPv4N4espp10OneshotAdc6ConfigE","espp::OneshotAdc::Config"],[5,1,1,"_CPPv4N4espp10OneshotAdc6Config8channelsE","espp::OneshotAdc::Config::channels"],[5,1,1,"_CPPv4N4espp10OneshotAdc6Config9log_levelE","espp::OneshotAdc::Config::log_level"],[5,1,1,"_CPPv4N4espp10OneshotAdc6Config4unitE","espp::OneshotAdc::Config::unit"],[5,3,1,"_CPPv4N4espp10OneshotAdc10OneshotAdcERK6Config","espp::OneshotAdc::OneshotAdc"],[5,4,1,"_CPPv4N4espp10OneshotAdc10OneshotAdcERK6Config","espp::OneshotAdc::OneshotAdc::config"],[5,3,1,"_CPPv4N4espp10OneshotAdc7read_mvERK9AdcConfig","espp::OneshotAdc::read_mv"],[5,4,1,"_CPPv4N4espp10OneshotAdc7read_mvERK9AdcConfig","espp::OneshotAdc::read_mv::config"],[5,3,1,"_CPPv4N4espp10OneshotAdc8read_rawERK9AdcConfig","espp::OneshotAdc::read_raw"],[5,4,1,"_CPPv4N4espp10OneshotAdc8read_rawERK9AdcConfig","espp::OneshotAdc::read_raw::config"],[5,3,1,"_CPPv4N4espp10OneshotAdcD0Ev","espp::OneshotAdc::~OneshotAdc"],[67,2,1,"_CPPv4N4espp3PidE","espp::Pid"],[67,2,1,"_CPPv4N4espp3Pid6ConfigE","espp::Pid::Config"],[67,1,1,"_CPPv4N4espp3Pid6Config14integrator_maxE","espp::Pid::Config::integrator_max"],[67,1,1,"_CPPv4N4espp3Pid6Config14integrator_minE","espp::Pid::Config::integrator_min"],[67,1,1,"_CPPv4N4espp3Pid6Config2kdE","espp::Pid::Config::kd"],[67,1,1,"_CPPv4N4espp3Pid6Config2kiE","espp::Pid::Config::ki"],[67,1,1,"_CPPv4N4espp3Pid6Config2kpE","espp::Pid::Config::kp"],[67,1,1,"_CPPv4N4espp3Pid6Config9log_levelE","espp::Pid::Config::log_level"],[67,1,1,"_CPPv4N4espp3Pid6Config10output_maxE","espp::Pid::Config::output_max"],[67,1,1,"_CPPv4N4espp3Pid6Config10output_minE","espp::Pid::Config::output_min"],[67,3,1,"_CPPv4N4espp3Pid3PidERK6Config","espp::Pid::Pid"],[67,4,1,"_CPPv4N4espp3Pid3PidERK6Config","espp::Pid::Pid::config"],[67,3,1,"_CPPv4N4espp3Pid12change_gainsERK6Configb","espp::Pid::change_gains"],[67,4,1,"_CPPv4N4espp3Pid12change_gainsERK6Configb","espp::Pid::change_gains::config"],[67,4,1,"_CPPv4N4espp3Pid12change_gainsERK6Configb","espp::Pid::change_gains::reset_state"],[67,3,1,"_CPPv4N4espp3Pid5clearEv","espp::Pid::clear"],[67,3,1,"_CPPv4NK4espp3Pid10get_configEv","espp::Pid::get_config"],[67,3,1,"_CPPv4NK4espp3Pid9get_errorEv","espp::Pid::get_error"],[67,3,1,"_CPPv4NK4espp3Pid14get_integratorEv","espp::Pid::get_integrator"],[67,3,1,"_CPPv4N4espp3PidclEf","espp::Pid::operator()"],[67,4,1,"_CPPv4N4espp3PidclEf","espp::Pid::operator()::error"],[67,3,1,"_CPPv4N4espp3Pid10set_configERK6Configb","espp::Pid::set_config"],[67,4,1,"_CPPv4N4espp3Pid10set_configERK6Configb","espp::Pid::set_config::config"],[67,4,1,"_CPPv4N4espp3Pid10set_configERK6Configb","espp::Pid::set_config::reset_state"],[67,3,1,"_CPPv4N4espp3Pid6updateEf","espp::Pid::update"],[67,4,1,"_CPPv4N4espp3Pid6updateEf","espp::Pid::update::error"],[68,2,1,"_CPPv4N4espp8QwiicNesE","espp::QwiicNes"],[68,6,1,"_CPPv4N4espp8QwiicNes6ButtonE","espp::QwiicNes::Button"],[68,7,1,"_CPPv4N4espp8QwiicNes6Button1AE","espp::QwiicNes::Button::A"],[68,7,1,"_CPPv4N4espp8QwiicNes6Button1BE","espp::QwiicNes::Button::B"],[68,7,1,"_CPPv4N4espp8QwiicNes6Button4DOWNE","espp::QwiicNes::Button::DOWN"],[68,7,1,"_CPPv4N4espp8QwiicNes6Button4LEFTE","espp::QwiicNes::Button::LEFT"],[68,7,1,"_CPPv4N4espp8QwiicNes6Button5RIGHTE","espp::QwiicNes::Button::RIGHT"],[68,7,1,"_CPPv4N4espp8QwiicNes6Button6SELECTE","espp::QwiicNes::Button::SELECT"],[68,7,1,"_CPPv4N4espp8QwiicNes6Button5STARTE","espp::QwiicNes::Button::START"],[68,7,1,"_CPPv4N4espp8QwiicNes6Button2UPE","espp::QwiicNes::Button::UP"],[68,2,1,"_CPPv4N4espp8QwiicNes11ButtonStateE","espp::QwiicNes::ButtonState"],[68,2,1,"_CPPv4N4espp8QwiicNes6ConfigE","espp::QwiicNes::Config"],[68,1,1,"_CPPv4N4espp8QwiicNes6Config9log_levelE","espp::QwiicNes::Config::log_level"],[68,1,1,"_CPPv4N4espp8QwiicNes6Config5writeE","espp::QwiicNes::Config::write"],[68,1,1,"_CPPv4N4espp8QwiicNes6Config10write_readE","espp::QwiicNes::Config::write_read"],[68,1,1,"_CPPv4N4espp8QwiicNes15DEFAULT_ADDRESSE","espp::QwiicNes::DEFAULT_ADDRESS"],[68,3,1,"_CPPv4N4espp8QwiicNes8QwiicNesERK6Config","espp::QwiicNes::QwiicNes"],[68,4,1,"_CPPv4N4espp8QwiicNes8QwiicNesERK6Config","espp::QwiicNes::QwiicNes::config"],[68,3,1,"_CPPv4NK4espp8QwiicNes16get_button_stateEv","espp::QwiicNes::get_button_state"],[68,3,1,"_CPPv4N4espp8QwiicNes10is_pressedE7uint8_t6Button","espp::QwiicNes::is_pressed"],[68,3,1,"_CPPv4NK4espp8QwiicNes10is_pressedE6Button","espp::QwiicNes::is_pressed"],[68,4,1,"_CPPv4N4espp8QwiicNes10is_pressedE7uint8_t6Button","espp::QwiicNes::is_pressed::button"],[68,4,1,"_CPPv4NK4espp8QwiicNes10is_pressedE6Button","espp::QwiicNes::is_pressed::button"],[68,4,1,"_CPPv4N4espp8QwiicNes10is_pressedE7uint8_t6Button","espp::QwiicNes::is_pressed::state"],[68,3,1,"_CPPv4NK4espp8QwiicNes12read_addressERNSt10error_codeE","espp::QwiicNes::read_address"],[68,4,1,"_CPPv4NK4espp8QwiicNes12read_addressERNSt10error_codeE","espp::QwiicNes::read_address::ec"],[68,3,1,"_CPPv4NK4espp8QwiicNes18read_current_stateERNSt10error_codeE","espp::QwiicNes::read_current_state"],[68,4,1,"_CPPv4NK4espp8QwiicNes18read_current_stateERNSt10error_codeE","espp::QwiicNes::read_current_state::ec"],[68,3,1,"_CPPv4N4espp8QwiicNes6updateERNSt10error_codeE","espp::QwiicNes::update"],[68,4,1,"_CPPv4N4espp8QwiicNes6updateERNSt10error_codeE","espp::QwiicNes::update::ec"],[68,3,1,"_CPPv4N4espp8QwiicNes14update_addressE7uint8_tRNSt10error_codeE","espp::QwiicNes::update_address"],[68,4,1,"_CPPv4N4espp8QwiicNes14update_addressE7uint8_tRNSt10error_codeE","espp::QwiicNes::update_address::ec"],[68,4,1,"_CPPv4N4espp8QwiicNes14update_addressE7uint8_tRNSt10error_codeE","espp::QwiicNes::update_address::new_address"],[68,8,1,"_CPPv4N4espp8QwiicNes8write_fnE","espp::QwiicNes::write_fn"],[68,8,1,"_CPPv4N4espp8QwiicNes13write_read_fnE","espp::QwiicNes::write_read_fn"],[57,2,1,"_CPPv4I0EN4espp11RangeMapperE","espp::RangeMapper"],[57,2,1,"_CPPv4N4espp11RangeMapper6ConfigE","espp::RangeMapper::Config"],[57,1,1,"_CPPv4N4espp11RangeMapper6Config6centerE","espp::RangeMapper::Config::center"],[57,1,1,"_CPPv4N4espp11RangeMapper6Config8deadbandE","espp::RangeMapper::Config::deadband"],[57,1,1,"_CPPv4N4espp11RangeMapper6Config12invert_inputE","espp::RangeMapper::Config::invert_input"],[57,1,1,"_CPPv4N4espp11RangeMapper6Config13invert_outputE","espp::RangeMapper::Config::invert_output"],[57,1,1,"_CPPv4N4espp11RangeMapper6Config7maximumE","espp::RangeMapper::Config::maximum"],[57,1,1,"_CPPv4N4espp11RangeMapper6Config7minimumE","espp::RangeMapper::Config::minimum"],[57,1,1,"_CPPv4N4espp11RangeMapper6Config13output_centerE","espp::RangeMapper::Config::output_center"],[57,1,1,"_CPPv4N4espp11RangeMapper6Config12output_rangeE","espp::RangeMapper::Config::output_range"],[57,3,1,"_CPPv4N4espp11RangeMapper11RangeMapperERK6Config","espp::RangeMapper::RangeMapper"],[57,4,1,"_CPPv4N4espp11RangeMapper11RangeMapperERK6Config","espp::RangeMapper::RangeMapper::config"],[57,5,1,"_CPPv4I0EN4espp11RangeMapperE","espp::RangeMapper::T"],[57,3,1,"_CPPv4N4espp11RangeMapper9configureERK6Config","espp::RangeMapper::configure"],[57,4,1,"_CPPv4N4espp11RangeMapper9configureERK6Config","espp::RangeMapper::configure::config"],[57,3,1,"_CPPv4NK4espp11RangeMapper17get_output_centerEv","espp::RangeMapper::get_output_center"],[57,3,1,"_CPPv4NK4espp11RangeMapper14get_output_maxEv","espp::RangeMapper::get_output_max"],[57,3,1,"_CPPv4NK4espp11RangeMapper14get_output_minEv","espp::RangeMapper::get_output_min"],[57,3,1,"_CPPv4NK4espp11RangeMapper16get_output_rangeEv","espp::RangeMapper::get_output_range"],[57,3,1,"_CPPv4N4espp11RangeMapper3mapERK1T","espp::RangeMapper::map"],[57,4,1,"_CPPv4N4espp11RangeMapper3mapERK1T","espp::RangeMapper::map::v"],[12,2,1,"_CPPv4N4espp3RgbE","espp::Rgb"],[12,3,1,"_CPPv4N4espp3Rgb3RgbERK3Hsv","espp::Rgb::Rgb"],[12,3,1,"_CPPv4N4espp3Rgb3RgbERK3Rgb","espp::Rgb::Rgb"],[12,3,1,"_CPPv4N4espp3Rgb3RgbERKfRKfRKf","espp::Rgb::Rgb"],[12,4,1,"_CPPv4N4espp3Rgb3RgbERKfRKfRKf","espp::Rgb::Rgb::b"],[12,4,1,"_CPPv4N4espp3Rgb3RgbERKfRKfRKf","espp::Rgb::Rgb::g"],[12,4,1,"_CPPv4N4espp3Rgb3RgbERK3Hsv","espp::Rgb::Rgb::hsv"],[12,4,1,"_CPPv4N4espp3Rgb3RgbERKfRKfRKf","espp::Rgb::Rgb::r"],[12,4,1,"_CPPv4N4espp3Rgb3RgbERK3Rgb","espp::Rgb::Rgb::rgb"],[12,1,1,"_CPPv4N4espp3Rgb1bE","espp::Rgb::b"],[12,1,1,"_CPPv4N4espp3Rgb1gE","espp::Rgb::g"],[12,3,1,"_CPPv4NK4espp3Rgb3hsvEv","espp::Rgb::hsv"],[12,3,1,"_CPPv4NK4espp3RgbplERK3Rgb","espp::Rgb::operator+"],[12,4,1,"_CPPv4NK4espp3RgbplERK3Rgb","espp::Rgb::operator+::rhs"],[12,3,1,"_CPPv4N4espp3RgbpLERK3Rgb","espp::Rgb::operator+="],[12,4,1,"_CPPv4N4espp3RgbpLERK3Rgb","espp::Rgb::operator+=::rhs"],[12,1,1,"_CPPv4N4espp3Rgb1rE","espp::Rgb::r"],[69,2,1,"_CPPv4N4espp3RmtE","espp::Rmt"],[69,2,1,"_CPPv4N4espp3Rmt6ConfigE","espp::Rmt::Config"],[69,1,1,"_CPPv4N4espp3Rmt6Config10block_sizeE","espp::Rmt::Config::block_size"],[69,1,1,"_CPPv4N4espp3Rmt6Config9clock_srcE","espp::Rmt::Config::clock_src"],[69,1,1,"_CPPv4N4espp3Rmt6Config11dma_enabledE","espp::Rmt::Config::dma_enabled"],[69,1,1,"_CPPv4N4espp3Rmt6Config8gpio_numE","espp::Rmt::Config::gpio_num"],[69,1,1,"_CPPv4N4espp3Rmt6Config9log_levelE","espp::Rmt::Config::log_level"],[69,1,1,"_CPPv4N4espp3Rmt6Config13resolution_hzE","espp::Rmt::Config::resolution_hz"],[69,1,1,"_CPPv4N4espp3Rmt6Config23transaction_queue_depthE","espp::Rmt::Config::transaction_queue_depth"],[69,3,1,"_CPPv4N4espp3Rmt3RmtERK6Config","espp::Rmt::Rmt"],[69,4,1,"_CPPv4N4espp3Rmt3RmtERK6Config","espp::Rmt::Rmt::config"],[69,3,1,"_CPPv4N4espp3Rmt8transmitEPK7uint8_t6size_t","espp::Rmt::transmit"],[69,4,1,"_CPPv4N4espp3Rmt8transmitEPK7uint8_t6size_t","espp::Rmt::transmit::data"],[69,4,1,"_CPPv4N4espp3Rmt8transmitEPK7uint8_t6size_t","espp::Rmt::transmit::length"],[69,3,1,"_CPPv4N4espp3RmtD0Ev","espp::Rmt::~Rmt"],[69,2,1,"_CPPv4N4espp10RmtEncoderE","espp::RmtEncoder"],[69,2,1,"_CPPv4N4espp10RmtEncoder6ConfigE","espp::RmtEncoder::Config"],[69,1,1,"_CPPv4N4espp10RmtEncoder6Config20bytes_encoder_configE","espp::RmtEncoder::Config::bytes_encoder_config"],[69,1,1,"_CPPv4N4espp10RmtEncoder6Config3delE","espp::RmtEncoder::Config::del"],[69,1,1,"_CPPv4N4espp10RmtEncoder6Config6encodeE","espp::RmtEncoder::Config::encode"],[69,1,1,"_CPPv4N4espp10RmtEncoder6Config5resetE","espp::RmtEncoder::Config::reset"],[69,3,1,"_CPPv4N4espp10RmtEncoder10RmtEncoderERK6Config","espp::RmtEncoder::RmtEncoder"],[69,4,1,"_CPPv4N4espp10RmtEncoder10RmtEncoderERK6Config","espp::RmtEncoder::RmtEncoder::config"],[69,8,1,"_CPPv4N4espp10RmtEncoder9delete_fnE","espp::RmtEncoder::delete_fn"],[69,8,1,"_CPPv4N4espp10RmtEncoder9encode_fnE","espp::RmtEncoder::encode_fn"],[69,3,1,"_CPPv4NK4espp10RmtEncoder6handleEv","espp::RmtEncoder::handle"],[69,8,1,"_CPPv4N4espp10RmtEncoder8reset_fnE","espp::RmtEncoder::reset_fn"],[69,3,1,"_CPPv4N4espp10RmtEncoderD0Ev","espp::RmtEncoder::~RmtEncoder"],[72,2,1,"_CPPv4N4espp10RtcpPacketE","espp::RtcpPacket"],[72,2,1,"_CPPv4N4espp13RtpJpegPacketE","espp::RtpJpegPacket"],[72,3,1,"_CPPv4N4espp13RtpJpegPacket13RtpJpegPacketEKiKiKiKiKiKiNSt11string_viewE","espp::RtpJpegPacket::RtpJpegPacket"],[72,3,1,"_CPPv4N4espp13RtpJpegPacket13RtpJpegPacketEKiKiKiKiKiNSt11string_viewENSt11string_viewENSt11string_viewE","espp::RtpJpegPacket::RtpJpegPacket"],[72,3,1,"_CPPv4N4espp13RtpJpegPacket13RtpJpegPacketENSt11string_viewE","espp::RtpJpegPacket::RtpJpegPacket"],[72,4,1,"_CPPv4N4espp13RtpJpegPacket13RtpJpegPacketENSt11string_viewE","espp::RtpJpegPacket::RtpJpegPacket::data"],[72,4,1,"_CPPv4N4espp13RtpJpegPacket13RtpJpegPacketEKiKiKiKiKiKiNSt11string_viewE","espp::RtpJpegPacket::RtpJpegPacket::frag_type"],[72,4,1,"_CPPv4N4espp13RtpJpegPacket13RtpJpegPacketEKiKiKiKiKiNSt11string_viewENSt11string_viewENSt11string_viewE","espp::RtpJpegPacket::RtpJpegPacket::frag_type"],[72,4,1,"_CPPv4N4espp13RtpJpegPacket13RtpJpegPacketEKiKiKiKiKiKiNSt11string_viewE","espp::RtpJpegPacket::RtpJpegPacket::height"],[72,4,1,"_CPPv4N4espp13RtpJpegPacket13RtpJpegPacketEKiKiKiKiKiNSt11string_viewENSt11string_viewENSt11string_viewE","espp::RtpJpegPacket::RtpJpegPacket::height"],[72,4,1,"_CPPv4N4espp13RtpJpegPacket13RtpJpegPacketEKiKiKiKiKiKiNSt11string_viewE","espp::RtpJpegPacket::RtpJpegPacket::offset"],[72,4,1,"_CPPv4N4espp13RtpJpegPacket13RtpJpegPacketEKiKiKiKiKiKiNSt11string_viewE","espp::RtpJpegPacket::RtpJpegPacket::q"],[72,4,1,"_CPPv4N4espp13RtpJpegPacket13RtpJpegPacketEKiKiKiKiKiNSt11string_viewENSt11string_viewENSt11string_viewE","espp::RtpJpegPacket::RtpJpegPacket::q"],[72,4,1,"_CPPv4N4espp13RtpJpegPacket13RtpJpegPacketEKiKiKiKiKiNSt11string_viewENSt11string_viewENSt11string_viewE","espp::RtpJpegPacket::RtpJpegPacket::q0"],[72,4,1,"_CPPv4N4espp13RtpJpegPacket13RtpJpegPacketEKiKiKiKiKiNSt11string_viewENSt11string_viewENSt11string_viewE","espp::RtpJpegPacket::RtpJpegPacket::q1"],[72,4,1,"_CPPv4N4espp13RtpJpegPacket13RtpJpegPacketEKiKiKiKiKiKiNSt11string_viewE","espp::RtpJpegPacket::RtpJpegPacket::scan_data"],[72,4,1,"_CPPv4N4espp13RtpJpegPacket13RtpJpegPacketEKiKiKiKiKiNSt11string_viewENSt11string_viewENSt11string_viewE","espp::RtpJpegPacket::RtpJpegPacket::scan_data"],[72,4,1,"_CPPv4N4espp13RtpJpegPacket13RtpJpegPacketEKiKiKiKiKiKiNSt11string_viewE","espp::RtpJpegPacket::RtpJpegPacket::type_specific"],[72,4,1,"_CPPv4N4espp13RtpJpegPacket13RtpJpegPacketEKiKiKiKiKiNSt11string_viewENSt11string_viewENSt11string_viewE","espp::RtpJpegPacket::RtpJpegPacket::type_specific"],[72,4,1,"_CPPv4N4espp13RtpJpegPacket13RtpJpegPacketEKiKiKiKiKiKiNSt11string_viewE","espp::RtpJpegPacket::RtpJpegPacket::width"],[72,4,1,"_CPPv4N4espp13RtpJpegPacket13RtpJpegPacketEKiKiKiKiKiNSt11string_viewENSt11string_viewENSt11string_viewE","espp::RtpJpegPacket::RtpJpegPacket::width"],[72,3,1,"_CPPv4NK4espp13RtpJpegPacket8get_dataEv","espp::RtpJpegPacket::get_data"],[72,3,1,"_CPPv4NK4espp13RtpJpegPacket10get_heightEv","espp::RtpJpegPacket::get_height"],[72,3,1,"_CPPv4NK4espp13RtpJpegPacket13get_jpeg_dataEv","espp::RtpJpegPacket::get_jpeg_data"],[72,3,1,"_CPPv4N4espp13RtpJpegPacket16get_mjpeg_headerEv","espp::RtpJpegPacket::get_mjpeg_header"],[72,3,1,"_CPPv4NK4espp13RtpJpegPacket16get_num_q_tablesEv","espp::RtpJpegPacket::get_num_q_tables"],[72,3,1,"_CPPv4NK4espp13RtpJpegPacket10get_offsetEv","espp::RtpJpegPacket::get_offset"],[72,3,1,"_CPPv4N4espp13RtpJpegPacket10get_packetEv","espp::RtpJpegPacket::get_packet"],[72,3,1,"_CPPv4NK4espp13RtpJpegPacket11get_payloadEv","espp::RtpJpegPacket::get_payload"],[72,3,1,"_CPPv4NK4espp13RtpJpegPacket5get_qEv","espp::RtpJpegPacket::get_q"],[72,3,1,"_CPPv4NK4espp13RtpJpegPacket11get_q_tableEi","espp::RtpJpegPacket::get_q_table"],[72,4,1,"_CPPv4NK4espp13RtpJpegPacket11get_q_tableEi","espp::RtpJpegPacket::get_q_table::index"],[72,3,1,"_CPPv4NK4espp13RtpJpegPacket14get_rpt_headerEv","espp::RtpJpegPacket::get_rpt_header"],[72,3,1,"_CPPv4NK4espp13RtpJpegPacket19get_rtp_header_sizeEv","espp::RtpJpegPacket::get_rtp_header_size"],[72,3,1,"_CPPv4NK4espp13RtpJpegPacket17get_type_specificEv","espp::RtpJpegPacket::get_type_specific"],[72,3,1,"_CPPv4NK4espp13RtpJpegPacket11get_versionEv","espp::RtpJpegPacket::get_version"],[72,3,1,"_CPPv4NK4espp13RtpJpegPacket9get_widthEv","espp::RtpJpegPacket::get_width"],[72,3,1,"_CPPv4NK4espp13RtpJpegPacket12has_q_tablesEv","espp::RtpJpegPacket::has_q_tables"],[72,3,1,"_CPPv4N4espp13RtpJpegPacket9serializeEv","espp::RtpJpegPacket::serialize"],[72,3,1,"_CPPv4N4espp13RtpJpegPacket11set_payloadENSt11string_viewE","espp::RtpJpegPacket::set_payload"],[72,4,1,"_CPPv4N4espp13RtpJpegPacket11set_payloadENSt11string_viewE","espp::RtpJpegPacket::set_payload::payload"],[72,3,1,"_CPPv4N4espp13RtpJpegPacket11set_versionEi","espp::RtpJpegPacket::set_version"],[72,4,1,"_CPPv4N4espp13RtpJpegPacket11set_versionEi","espp::RtpJpegPacket::set_version::version"],[72,2,1,"_CPPv4N4espp9RtpPacketE","espp::RtpPacket"],[72,3,1,"_CPPv4N4espp9RtpPacket9RtpPacketE6size_t","espp::RtpPacket::RtpPacket"],[72,3,1,"_CPPv4N4espp9RtpPacket9RtpPacketENSt11string_viewE","espp::RtpPacket::RtpPacket"],[72,3,1,"_CPPv4N4espp9RtpPacket9RtpPacketEv","espp::RtpPacket::RtpPacket"],[72,4,1,"_CPPv4N4espp9RtpPacket9RtpPacketENSt11string_viewE","espp::RtpPacket::RtpPacket::data"],[72,4,1,"_CPPv4N4espp9RtpPacket9RtpPacketE6size_t","espp::RtpPacket::RtpPacket::payload_size"],[72,3,1,"_CPPv4NK4espp9RtpPacket8get_dataEv","espp::RtpPacket::get_data"],[72,3,1,"_CPPv4N4espp9RtpPacket10get_packetEv","espp::RtpPacket::get_packet"],[72,3,1,"_CPPv4NK4espp9RtpPacket11get_payloadEv","espp::RtpPacket::get_payload"],[72,3,1,"_CPPv4NK4espp9RtpPacket14get_rpt_headerEv","espp::RtpPacket::get_rpt_header"],[72,3,1,"_CPPv4NK4espp9RtpPacket19get_rtp_header_sizeEv","espp::RtpPacket::get_rtp_header_size"],[72,3,1,"_CPPv4NK4espp9RtpPacket11get_versionEv","espp::RtpPacket::get_version"],[72,3,1,"_CPPv4N4espp9RtpPacket9serializeEv","espp::RtpPacket::serialize"],[72,3,1,"_CPPv4N4espp9RtpPacket11set_payloadENSt11string_viewE","espp::RtpPacket::set_payload"],[72,4,1,"_CPPv4N4espp9RtpPacket11set_payloadENSt11string_viewE","espp::RtpPacket::set_payload::payload"],[72,3,1,"_CPPv4N4espp9RtpPacket11set_versionEi","espp::RtpPacket::set_version"],[72,4,1,"_CPPv4N4espp9RtpPacket11set_versionEi","espp::RtpPacket::set_version::version"],[72,2,1,"_CPPv4N4espp10RtspClientE","espp::RtspClient"],[72,2,1,"_CPPv4N4espp10RtspClient6ConfigE","espp::RtspClient::Config"],[72,1,1,"_CPPv4N4espp10RtspClient6Config9log_levelE","espp::RtspClient::Config::log_level"],[72,1,1,"_CPPv4N4espp10RtspClient6Config13on_jpeg_frameE","espp::RtspClient::Config::on_jpeg_frame"],[72,1,1,"_CPPv4N4espp10RtspClient6Config4pathE","espp::RtspClient::Config::path"],[72,1,1,"_CPPv4N4espp10RtspClient6Config9rtsp_portE","espp::RtspClient::Config::rtsp_port"],[72,1,1,"_CPPv4N4espp10RtspClient6Config14server_addressE","espp::RtspClient::Config::server_address"],[72,3,1,"_CPPv4N4espp10RtspClient10RtspClientERK6Config","espp::RtspClient::RtspClient"],[72,4,1,"_CPPv4N4espp10RtspClient10RtspClientERK6Config","espp::RtspClient::RtspClient::config"],[72,3,1,"_CPPv4N4espp10RtspClient7connectERNSt10error_codeE","espp::RtspClient::connect"],[72,4,1,"_CPPv4N4espp10RtspClient7connectERNSt10error_codeE","espp::RtspClient::connect::ec"],[72,3,1,"_CPPv4N4espp10RtspClient8describeERNSt10error_codeE","espp::RtspClient::describe"],[72,4,1,"_CPPv4N4espp10RtspClient8describeERNSt10error_codeE","espp::RtspClient::describe::ec"],[72,3,1,"_CPPv4N4espp10RtspClient10disconnectERNSt10error_codeE","espp::RtspClient::disconnect"],[72,4,1,"_CPPv4N4espp10RtspClient10disconnectERNSt10error_codeE","espp::RtspClient::disconnect::ec"],[72,8,1,"_CPPv4N4espp10RtspClient21jpeg_frame_callback_tE","espp::RtspClient::jpeg_frame_callback_t"],[72,3,1,"_CPPv4N4espp10RtspClient5pauseERNSt10error_codeE","espp::RtspClient::pause"],[72,4,1,"_CPPv4N4espp10RtspClient5pauseERNSt10error_codeE","espp::RtspClient::pause::ec"],[72,3,1,"_CPPv4N4espp10RtspClient4playERNSt10error_codeE","espp::RtspClient::play"],[72,4,1,"_CPPv4N4espp10RtspClient4playERNSt10error_codeE","espp::RtspClient::play::ec"],[72,3,1,"_CPPv4N4espp10RtspClient12send_requestERKNSt6stringERKNSt6stringERKNSt13unordered_mapINSt6stringENSt6stringEEERNSt10error_codeE","espp::RtspClient::send_request"],[72,4,1,"_CPPv4N4espp10RtspClient12send_requestERKNSt6stringERKNSt6stringERKNSt13unordered_mapINSt6stringENSt6stringEEERNSt10error_codeE","espp::RtspClient::send_request::ec"],[72,4,1,"_CPPv4N4espp10RtspClient12send_requestERKNSt6stringERKNSt6stringERKNSt13unordered_mapINSt6stringENSt6stringEEERNSt10error_codeE","espp::RtspClient::send_request::extra_headers"],[72,4,1,"_CPPv4N4espp10RtspClient12send_requestERKNSt6stringERKNSt6stringERKNSt13unordered_mapINSt6stringENSt6stringEEERNSt10error_codeE","espp::RtspClient::send_request::method"],[72,4,1,"_CPPv4N4espp10RtspClient12send_requestERKNSt6stringERKNSt6stringERKNSt13unordered_mapINSt6stringENSt6stringEEERNSt10error_codeE","espp::RtspClient::send_request::path"],[72,3,1,"_CPPv4N4espp10RtspClient5setupE6size_t6size_tRNSt10error_codeE","espp::RtspClient::setup"],[72,3,1,"_CPPv4N4espp10RtspClient5setupERNSt10error_codeE","espp::RtspClient::setup"],[72,4,1,"_CPPv4N4espp10RtspClient5setupE6size_t6size_tRNSt10error_codeE","espp::RtspClient::setup::ec"],[72,4,1,"_CPPv4N4espp10RtspClient5setupERNSt10error_codeE","espp::RtspClient::setup::ec"],[72,4,1,"_CPPv4N4espp10RtspClient5setupE6size_t6size_tRNSt10error_codeE","espp::RtspClient::setup::rtcp_port"],[72,4,1,"_CPPv4N4espp10RtspClient5setupE6size_t6size_tRNSt10error_codeE","espp::RtspClient::setup::rtp_port"],[72,3,1,"_CPPv4N4espp10RtspClient8teardownERNSt10error_codeE","espp::RtspClient::teardown"],[72,4,1,"_CPPv4N4espp10RtspClient8teardownERNSt10error_codeE","espp::RtspClient::teardown::ec"],[72,3,1,"_CPPv4N4espp10RtspClientD0Ev","espp::RtspClient::~RtspClient"],[72,2,1,"_CPPv4N4espp10RtspServerE","espp::RtspServer"],[72,2,1,"_CPPv4N4espp10RtspServer6ConfigE","espp::RtspServer::Config"],[72,1,1,"_CPPv4N4espp10RtspServer6Config9log_levelE","espp::RtspServer::Config::log_level"],[72,1,1,"_CPPv4N4espp10RtspServer6Config13max_data_sizeE","espp::RtspServer::Config::max_data_size"],[72,1,1,"_CPPv4N4espp10RtspServer6Config4pathE","espp::RtspServer::Config::path"],[72,1,1,"_CPPv4N4espp10RtspServer6Config4portE","espp::RtspServer::Config::port"],[72,1,1,"_CPPv4N4espp10RtspServer6Config14server_addressE","espp::RtspServer::Config::server_address"],[72,3,1,"_CPPv4N4espp10RtspServer10RtspServerERK6Config","espp::RtspServer::RtspServer"],[72,4,1,"_CPPv4N4espp10RtspServer10RtspServerERK6Config","espp::RtspServer::RtspServer::config"],[72,3,1,"_CPPv4N4espp10RtspServer10send_frameERK9JpegFrame","espp::RtspServer::send_frame"],[72,4,1,"_CPPv4N4espp10RtspServer10send_frameERK9JpegFrame","espp::RtspServer::send_frame::frame"],[72,3,1,"_CPPv4N4espp10RtspServer21set_session_log_levelEN6Logger9VerbosityE","espp::RtspServer::set_session_log_level"],[72,4,1,"_CPPv4N4espp10RtspServer21set_session_log_levelEN6Logger9VerbosityE","espp::RtspServer::set_session_log_level::log_level"],[72,3,1,"_CPPv4N4espp10RtspServer5startEv","espp::RtspServer::start"],[72,3,1,"_CPPv4N4espp10RtspServer4stopEv","espp::RtspServer::stop"],[72,3,1,"_CPPv4N4espp10RtspServerD0Ev","espp::RtspServer::~RtspServer"],[72,2,1,"_CPPv4N4espp11RtspSessionE","espp::RtspSession"],[72,2,1,"_CPPv4N4espp11RtspSession6ConfigE","espp::RtspSession::Config"],[72,1,1,"_CPPv4N4espp11RtspSession6Config9log_levelE","espp::RtspSession::Config::log_level"],[72,1,1,"_CPPv4N4espp11RtspSession6Config9rtsp_pathE","espp::RtspSession::Config::rtsp_path"],[72,1,1,"_CPPv4N4espp11RtspSession6Config14server_addressE","espp::RtspSession::Config::server_address"],[72,3,1,"_CPPv4N4espp11RtspSession11RtspSessionENSt10unique_ptrI9TcpSocketEERK6Config","espp::RtspSession::RtspSession"],[72,4,1,"_CPPv4N4espp11RtspSession11RtspSessionENSt10unique_ptrI9TcpSocketEERK6Config","espp::RtspSession::RtspSession::config"],[72,4,1,"_CPPv4N4espp11RtspSession11RtspSessionENSt10unique_ptrI9TcpSocketEERK6Config","espp::RtspSession::RtspSession::control_socket"],[72,3,1,"_CPPv4NK4espp11RtspSession14get_session_idEv","espp::RtspSession::get_session_id"],[72,3,1,"_CPPv4NK4espp11RtspSession9is_activeEv","espp::RtspSession::is_active"],[72,3,1,"_CPPv4NK4espp11RtspSession9is_closedEv","espp::RtspSession::is_closed"],[72,3,1,"_CPPv4NK4espp11RtspSession12is_connectedEv","espp::RtspSession::is_connected"],[72,3,1,"_CPPv4N4espp11RtspSession5pauseEv","espp::RtspSession::pause"],[72,3,1,"_CPPv4N4espp11RtspSession4playEv","espp::RtspSession::play"],[72,3,1,"_CPPv4N4espp11RtspSession16send_rtcp_packetERK10RtcpPacket","espp::RtspSession::send_rtcp_packet"],[72,4,1,"_CPPv4N4espp11RtspSession16send_rtcp_packetERK10RtcpPacket","espp::RtspSession::send_rtcp_packet::packet"],[72,3,1,"_CPPv4N4espp11RtspSession15send_rtp_packetERK9RtpPacket","espp::RtspSession::send_rtp_packet"],[72,4,1,"_CPPv4N4espp11RtspSession15send_rtp_packetERK9RtpPacket","espp::RtspSession::send_rtp_packet::packet"],[72,3,1,"_CPPv4N4espp11RtspSession8teardownEv","espp::RtspSession::teardown"],[61,2,1,"_CPPv4N4espp6SocketE","espp::Socket"],[61,2,1,"_CPPv4N4espp6Socket4InfoE","espp::Socket::Info"],[61,1,1,"_CPPv4N4espp6Socket4Info7addressE","espp::Socket::Info::address"],[61,3,1,"_CPPv4N4espp6Socket4Info13from_sockaddrERK11sockaddr_in","espp::Socket::Info::from_sockaddr"],[61,3,1,"_CPPv4N4espp6Socket4Info13from_sockaddrERK12sockaddr_in6","espp::Socket::Info::from_sockaddr"],[61,3,1,"_CPPv4N4espp6Socket4Info13from_sockaddrERK16sockaddr_storage","espp::Socket::Info::from_sockaddr"],[61,4,1,"_CPPv4N4espp6Socket4Info13from_sockaddrERK11sockaddr_in","espp::Socket::Info::from_sockaddr::source_address"],[61,4,1,"_CPPv4N4espp6Socket4Info13from_sockaddrERK12sockaddr_in6","espp::Socket::Info::from_sockaddr::source_address"],[61,4,1,"_CPPv4N4espp6Socket4Info13from_sockaddrERK16sockaddr_storage","espp::Socket::Info::from_sockaddr::source_address"],[61,3,1,"_CPPv4N4espp6Socket4Info9init_ipv4ERKNSt6stringE6size_t","espp::Socket::Info::init_ipv4"],[61,4,1,"_CPPv4N4espp6Socket4Info9init_ipv4ERKNSt6stringE6size_t","espp::Socket::Info::init_ipv4::addr"],[61,4,1,"_CPPv4N4espp6Socket4Info9init_ipv4ERKNSt6stringE6size_t","espp::Socket::Info::init_ipv4::prt"],[61,3,1,"_CPPv4N4espp6Socket4Info8ipv4_ptrEv","espp::Socket::Info::ipv4_ptr"],[61,3,1,"_CPPv4N4espp6Socket4Info8ipv6_ptrEv","espp::Socket::Info::ipv6_ptr"],[61,1,1,"_CPPv4N4espp6Socket4Info4portE","espp::Socket::Info::port"],[61,3,1,"_CPPv4N4espp6Socket4Info6updateEv","espp::Socket::Info::update"],[61,3,1,"_CPPv4N4espp6Socket6SocketE4TypeRKN6Logger6ConfigE","espp::Socket::Socket"],[61,3,1,"_CPPv4N4espp6Socket6SocketEiRKN6Logger6ConfigE","espp::Socket::Socket"],[61,4,1,"_CPPv4N4espp6Socket6SocketE4TypeRKN6Logger6ConfigE","espp::Socket::Socket::logger_config"],[61,4,1,"_CPPv4N4espp6Socket6SocketEiRKN6Logger6ConfigE","espp::Socket::Socket::logger_config"],[61,4,1,"_CPPv4N4espp6Socket6SocketEiRKN6Logger6ConfigE","espp::Socket::Socket::socket_fd"],[61,4,1,"_CPPv4N4espp6Socket6SocketE4TypeRKN6Logger6ConfigE","espp::Socket::Socket::type"],[61,3,1,"_CPPv4N4espp6Socket19add_multicast_groupERKNSt6stringE","espp::Socket::add_multicast_group"],[61,4,1,"_CPPv4N4espp6Socket19add_multicast_groupERKNSt6stringE","espp::Socket::add_multicast_group::multicast_group"],[61,3,1,"_CPPv4N4espp6Socket12enable_reuseEv","espp::Socket::enable_reuse"],[61,3,1,"_CPPv4N4espp6Socket13get_ipv4_infoEv","espp::Socket::get_ipv4_info"],[61,3,1,"_CPPv4N4espp6Socket8is_validEi","espp::Socket::is_valid"],[61,3,1,"_CPPv4NK4espp6Socket8is_validEv","espp::Socket::is_valid"],[61,4,1,"_CPPv4N4espp6Socket8is_validEi","espp::Socket::is_valid::socket_fd"],[61,3,1,"_CPPv4N4espp6Socket14make_multicastE7uint8_t7uint8_t","espp::Socket::make_multicast"],[61,4,1,"_CPPv4N4espp6Socket14make_multicastE7uint8_t7uint8_t","espp::Socket::make_multicast::loopback_enabled"],[61,4,1,"_CPPv4N4espp6Socket14make_multicastE7uint8_t7uint8_t","espp::Socket::make_multicast::time_to_live"],[61,8,1,"_CPPv4N4espp6Socket19receive_callback_fnE","espp::Socket::receive_callback_fn"],[61,8,1,"_CPPv4N4espp6Socket20response_callback_fnE","espp::Socket::response_callback_fn"],[61,3,1,"_CPPv4N4espp6Socket19set_receive_timeoutERKNSt6chrono8durationIfEE","espp::Socket::set_receive_timeout"],[61,4,1,"_CPPv4N4espp6Socket19set_receive_timeoutERKNSt6chrono8durationIfEE","espp::Socket::set_receive_timeout::timeout"],[61,3,1,"_CPPv4N4espp6SocketD0Ev","espp::Socket::~Socket"],[29,2,1,"_CPPv4I_6size_t0EN4espp9SosFilterE","espp::SosFilter"],[29,5,1,"_CPPv4I_6size_t0EN4espp9SosFilterE","espp::SosFilter::N"],[29,5,1,"_CPPv4I_6size_t0EN4espp9SosFilterE","espp::SosFilter::SectionImpl"],[29,3,1,"_CPPv4N4espp9SosFilter9SosFilterERKNSt5arrayI16TransferFunctionIXL3EEE1NEE","espp::SosFilter::SosFilter"],[29,4,1,"_CPPv4N4espp9SosFilter9SosFilterERKNSt5arrayI16TransferFunctionIXL3EEE1NEE","espp::SosFilter::SosFilter::config"],[29,3,1,"_CPPv4N4espp9SosFilterclEf","espp::SosFilter::operator()"],[29,4,1,"_CPPv4N4espp9SosFilterclEf","espp::SosFilter::operator()::input"],[29,3,1,"_CPPv4N4espp9SosFilter6updateEf","espp::SosFilter::update"],[29,4,1,"_CPPv4N4espp9SosFilter6updateEf","espp::SosFilter::update::input"],[66,2,1,"_CPPv4N4espp6St25dvE","espp::St25dv"],[66,2,1,"_CPPv4N4espp6St25dv6ConfigE","espp::St25dv::Config"],[66,1,1,"_CPPv4N4espp6St25dv6Config9auto_initE","espp::St25dv::Config::auto_init"],[66,1,1,"_CPPv4N4espp6St25dv6Config9log_levelE","espp::St25dv::Config::log_level"],[66,1,1,"_CPPv4N4espp6St25dv6Config4readE","espp::St25dv::Config::read"],[66,1,1,"_CPPv4N4espp6St25dv6Config5writeE","espp::St25dv::Config::write"],[66,1,1,"_CPPv4N4espp6St25dv12DATA_ADDRESSE","espp::St25dv::DATA_ADDRESS"],[66,2,1,"_CPPv4N4espp6St25dv7EH_CTRLE","espp::St25dv::EH_CTRL"],[66,2,1,"_CPPv4N4espp6St25dv3GPOE","espp::St25dv::GPO"],[66,2,1,"_CPPv4N4espp6St25dv6IT_STSE","espp::St25dv::IT_STS"],[66,2,1,"_CPPv4N4espp6St25dv6IT_STSE","espp::St25dv::IT_STS"],[66,1,1,"_CPPv4N4espp6St25dv6IT_STS13FIELD_FALLINGE","espp::St25dv::IT_STS::FIELD_FALLING"],[66,1,1,"_CPPv4N4espp6St25dv6IT_STS13FIELD_FALLINGE","espp::St25dv::IT_STS::FIELD_FALLING"],[66,1,1,"_CPPv4N4espp6St25dv6IT_STS12FIELD_RISINGE","espp::St25dv::IT_STS::FIELD_RISING"],[66,1,1,"_CPPv4N4espp6St25dv6IT_STS12FIELD_RISINGE","espp::St25dv::IT_STS::FIELD_RISING"],[66,1,1,"_CPPv4N4espp6St25dv6IT_STS11RF_ACTIVITYE","espp::St25dv::IT_STS::RF_ACTIVITY"],[66,1,1,"_CPPv4N4espp6St25dv6IT_STS11RF_ACTIVITYE","espp::St25dv::IT_STS::RF_ACTIVITY"],[66,1,1,"_CPPv4N4espp6St25dv6IT_STS10RF_GET_MSGE","espp::St25dv::IT_STS::RF_GET_MSG"],[66,1,1,"_CPPv4N4espp6St25dv6IT_STS10RF_GET_MSGE","espp::St25dv::IT_STS::RF_GET_MSG"],[66,1,1,"_CPPv4N4espp6St25dv6IT_STS12RF_INTTERUPTE","espp::St25dv::IT_STS::RF_INTTERUPT"],[66,1,1,"_CPPv4N4espp6St25dv6IT_STS12RF_INTTERUPTE","espp::St25dv::IT_STS::RF_INTTERUPT"],[66,1,1,"_CPPv4N4espp6St25dv6IT_STS10RF_PUT_MSGE","espp::St25dv::IT_STS::RF_PUT_MSG"],[66,1,1,"_CPPv4N4espp6St25dv6IT_STS10RF_PUT_MSGE","espp::St25dv::IT_STS::RF_PUT_MSG"],[66,1,1,"_CPPv4N4espp6St25dv6IT_STS7RF_USERE","espp::St25dv::IT_STS::RF_USER"],[66,1,1,"_CPPv4N4espp6St25dv6IT_STS7RF_USERE","espp::St25dv::IT_STS::RF_USER"],[66,1,1,"_CPPv4N4espp6St25dv6IT_STS8RF_WRITEE","espp::St25dv::IT_STS::RF_WRITE"],[66,1,1,"_CPPv4N4espp6St25dv6IT_STS8RF_WRITEE","espp::St25dv::IT_STS::RF_WRITE"],[66,2,1,"_CPPv4N4espp6St25dv7MB_CTRLE","espp::St25dv::MB_CTRL"],[66,1,1,"_CPPv4N4espp6St25dv12SYST_ADDRESSE","espp::St25dv::SYST_ADDRESS"],[66,3,1,"_CPPv4N4espp6St25dv6St25dvERK6Config","espp::St25dv::St25dv"],[66,4,1,"_CPPv4N4espp6St25dv6St25dvERK6Config","espp::St25dv::St25dv::config"],[66,3,1,"_CPPv4N4espp6St25dv14get_ftm_lengthERNSt10error_codeE","espp::St25dv::get_ftm_length"],[66,4,1,"_CPPv4N4espp6St25dv14get_ftm_lengthERNSt10error_codeE","espp::St25dv::get_ftm_length::ec"],[66,3,1,"_CPPv4N4espp6St25dv20get_interrupt_statusERNSt10error_codeE","espp::St25dv::get_interrupt_status"],[66,4,1,"_CPPv4N4espp6St25dv20get_interrupt_statusERNSt10error_codeE","espp::St25dv::get_interrupt_status::ec"],[66,3,1,"_CPPv4N4espp6St25dv10initializeERNSt10error_codeE","espp::St25dv::initialize"],[66,4,1,"_CPPv4N4espp6St25dv10initializeERNSt10error_codeE","espp::St25dv::initialize::ec"],[66,3,1,"_CPPv4N4espp6St25dv4readEP7uint8_t7uint8_t8uint16_tRNSt10error_codeE","espp::St25dv::read"],[66,3,1,"_CPPv4N4espp6St25dv4readEP7uint8_t7uint8_tRNSt10error_codeE","espp::St25dv::read"],[66,4,1,"_CPPv4N4espp6St25dv4readEP7uint8_t7uint8_t8uint16_tRNSt10error_codeE","espp::St25dv::read::data"],[66,4,1,"_CPPv4N4espp6St25dv4readEP7uint8_t7uint8_tRNSt10error_codeE","espp::St25dv::read::data"],[66,4,1,"_CPPv4N4espp6St25dv4readEP7uint8_t7uint8_t8uint16_tRNSt10error_codeE","espp::St25dv::read::ec"],[66,4,1,"_CPPv4N4espp6St25dv4readEP7uint8_t7uint8_tRNSt10error_codeE","espp::St25dv::read::ec"],[66,4,1,"_CPPv4N4espp6St25dv4readEP7uint8_t7uint8_t8uint16_tRNSt10error_codeE","espp::St25dv::read::length"],[66,4,1,"_CPPv4N4espp6St25dv4readEP7uint8_t7uint8_tRNSt10error_codeE","espp::St25dv::read::length"],[66,4,1,"_CPPv4N4espp6St25dv4readEP7uint8_t7uint8_t8uint16_tRNSt10error_codeE","espp::St25dv::read::offset"],[66,8,1,"_CPPv4N4espp6St25dv7read_fnE","espp::St25dv::read_fn"],[66,3,1,"_CPPv4N4espp6St25dv7receiveEP7uint8_t7uint8_tRNSt10error_codeE","espp::St25dv::receive"],[66,4,1,"_CPPv4N4espp6St25dv7receiveEP7uint8_t7uint8_tRNSt10error_codeE","espp::St25dv::receive::data"],[66,4,1,"_CPPv4N4espp6St25dv7receiveEP7uint8_t7uint8_tRNSt10error_codeE","espp::St25dv::receive::ec"],[66,4,1,"_CPPv4N4espp6St25dv7receiveEP7uint8_t7uint8_tRNSt10error_codeE","espp::St25dv::receive::length"],[66,3,1,"_CPPv4N4espp6St25dv10set_recordER4NdefRNSt10error_codeE","espp::St25dv::set_record"],[66,3,1,"_CPPv4N4espp6St25dv10set_recordERKNSt6vectorI7uint8_tEERNSt10error_codeE","espp::St25dv::set_record"],[66,4,1,"_CPPv4N4espp6St25dv10set_recordER4NdefRNSt10error_codeE","espp::St25dv::set_record::ec"],[66,4,1,"_CPPv4N4espp6St25dv10set_recordERKNSt6vectorI7uint8_tEERNSt10error_codeE","espp::St25dv::set_record::ec"],[66,4,1,"_CPPv4N4espp6St25dv10set_recordER4NdefRNSt10error_codeE","espp::St25dv::set_record::record"],[66,4,1,"_CPPv4N4espp6St25dv10set_recordERKNSt6vectorI7uint8_tEERNSt10error_codeE","espp::St25dv::set_record::record_data"],[66,3,1,"_CPPv4N4espp6St25dv11set_recordsERNSt6vectorI4NdefEERNSt10error_codeE","espp::St25dv::set_records"],[66,4,1,"_CPPv4N4espp6St25dv11set_recordsERNSt6vectorI4NdefEERNSt10error_codeE","espp::St25dv::set_records::ec"],[66,4,1,"_CPPv4N4espp6St25dv11set_recordsERNSt6vectorI4NdefEERNSt10error_codeE","espp::St25dv::set_records::records"],[66,3,1,"_CPPv4N4espp6St25dv24start_fast_transfer_modeERNSt10error_codeE","espp::St25dv::start_fast_transfer_mode"],[66,4,1,"_CPPv4N4espp6St25dv24start_fast_transfer_modeERNSt10error_codeE","espp::St25dv::start_fast_transfer_mode::ec"],[66,3,1,"_CPPv4N4espp6St25dv23stop_fast_transfer_modeERNSt10error_codeE","espp::St25dv::stop_fast_transfer_mode"],[66,4,1,"_CPPv4N4espp6St25dv23stop_fast_transfer_modeERNSt10error_codeE","espp::St25dv::stop_fast_transfer_mode::ec"],[66,3,1,"_CPPv4N4espp6St25dv8transferEP7uint8_t7uint8_tRNSt10error_codeE","espp::St25dv::transfer"],[66,4,1,"_CPPv4N4espp6St25dv8transferEP7uint8_t7uint8_tRNSt10error_codeE","espp::St25dv::transfer::data"],[66,4,1,"_CPPv4N4espp6St25dv8transferEP7uint8_t7uint8_tRNSt10error_codeE","espp::St25dv::transfer::ec"],[66,4,1,"_CPPv4N4espp6St25dv8transferEP7uint8_t7uint8_tRNSt10error_codeE","espp::St25dv::transfer::length"],[66,3,1,"_CPPv4N4espp6St25dv5writeENSt11string_viewERNSt10error_codeE","espp::St25dv::write"],[66,4,1,"_CPPv4N4espp6St25dv5writeENSt11string_viewERNSt10error_codeE","espp::St25dv::write::ec"],[66,4,1,"_CPPv4N4espp6St25dv5writeENSt11string_viewERNSt10error_codeE","espp::St25dv::write::payload"],[66,8,1,"_CPPv4N4espp6St25dv8write_fnE","espp::St25dv::write_fn"],[16,2,1,"_CPPv4N4espp6St7789E","espp::St7789"],[16,3,1,"_CPPv4N4espp6St77895clearE6size_t6size_t6size_t6size_t8uint16_t","espp::St7789::clear"],[16,4,1,"_CPPv4N4espp6St77895clearE6size_t6size_t6size_t6size_t8uint16_t","espp::St7789::clear::color"],[16,4,1,"_CPPv4N4espp6St77895clearE6size_t6size_t6size_t6size_t8uint16_t","espp::St7789::clear::height"],[16,4,1,"_CPPv4N4espp6St77895clearE6size_t6size_t6size_t6size_t8uint16_t","espp::St7789::clear::width"],[16,4,1,"_CPPv4N4espp6St77895clearE6size_t6size_t6size_t6size_t8uint16_t","espp::St7789::clear::x"],[16,4,1,"_CPPv4N4espp6St77895clearE6size_t6size_t6size_t6size_t8uint16_t","espp::St7789::clear::y"],[16,3,1,"_CPPv4N4espp6St77894fillEP13lv_disp_drv_tPK9lv_area_tP10lv_color_t8uint32_t","espp::St7789::fill"],[16,4,1,"_CPPv4N4espp6St77894fillEP13lv_disp_drv_tPK9lv_area_tP10lv_color_t8uint32_t","espp::St7789::fill::area"],[16,4,1,"_CPPv4N4espp6St77894fillEP13lv_disp_drv_tPK9lv_area_tP10lv_color_t8uint32_t","espp::St7789::fill::color_map"],[16,4,1,"_CPPv4N4espp6St77894fillEP13lv_disp_drv_tPK9lv_area_tP10lv_color_t8uint32_t","espp::St7789::fill::drv"],[16,4,1,"_CPPv4N4espp6St77894fillEP13lv_disp_drv_tPK9lv_area_tP10lv_color_t8uint32_t","espp::St7789::fill::flags"],[16,3,1,"_CPPv4N4espp6St77895flushEP13lv_disp_drv_tPK9lv_area_tP10lv_color_t","espp::St7789::flush"],[16,4,1,"_CPPv4N4espp6St77895flushEP13lv_disp_drv_tPK9lv_area_tP10lv_color_t","espp::St7789::flush::area"],[16,4,1,"_CPPv4N4espp6St77895flushEP13lv_disp_drv_tPK9lv_area_tP10lv_color_t","espp::St7789::flush::color_map"],[16,4,1,"_CPPv4N4espp6St77895flushEP13lv_disp_drv_tPK9lv_area_tP10lv_color_t","espp::St7789::flush::drv"],[16,3,1,"_CPPv4N4espp6St778910get_offsetERiRi","espp::St7789::get_offset"],[16,4,1,"_CPPv4N4espp6St778910get_offsetERiRi","espp::St7789::get_offset::x"],[16,4,1,"_CPPv4N4espp6St778910get_offsetERiRi","espp::St7789::get_offset::y"],[16,3,1,"_CPPv4N4espp6St778910initializeERKN15display_drivers6ConfigE","espp::St7789::initialize"],[16,4,1,"_CPPv4N4espp6St778910initializeERKN15display_drivers6ConfigE","espp::St7789::initialize::config"],[16,3,1,"_CPPv4N4espp6St778912send_commandE7uint8_t","espp::St7789::send_command"],[16,4,1,"_CPPv4N4espp6St778912send_commandE7uint8_t","espp::St7789::send_command::command"],[16,3,1,"_CPPv4N4espp6St77899send_dataEPK7uint8_t6size_t8uint32_t","espp::St7789::send_data"],[16,4,1,"_CPPv4N4espp6St77899send_dataEPK7uint8_t6size_t8uint32_t","espp::St7789::send_data::data"],[16,4,1,"_CPPv4N4espp6St77899send_dataEPK7uint8_t6size_t8uint32_t","espp::St7789::send_data::flags"],[16,4,1,"_CPPv4N4espp6St77899send_dataEPK7uint8_t6size_t8uint32_t","espp::St7789::send_data::length"],[16,3,1,"_CPPv4N4espp6St778916set_drawing_areaE6size_t6size_t6size_t6size_t","espp::St7789::set_drawing_area"],[16,3,1,"_CPPv4N4espp6St778916set_drawing_areaEPK9lv_area_t","espp::St7789::set_drawing_area"],[16,4,1,"_CPPv4N4espp6St778916set_drawing_areaEPK9lv_area_t","espp::St7789::set_drawing_area::area"],[16,4,1,"_CPPv4N4espp6St778916set_drawing_areaE6size_t6size_t6size_t6size_t","espp::St7789::set_drawing_area::xe"],[16,4,1,"_CPPv4N4espp6St778916set_drawing_areaE6size_t6size_t6size_t6size_t","espp::St7789::set_drawing_area::xs"],[16,4,1,"_CPPv4N4espp6St778916set_drawing_areaE6size_t6size_t6size_t6size_t","espp::St7789::set_drawing_area::ye"],[16,4,1,"_CPPv4N4espp6St778916set_drawing_areaE6size_t6size_t6size_t6size_t","espp::St7789::set_drawing_area::ys"],[16,3,1,"_CPPv4N4espp6St778910set_offsetEii","espp::St7789::set_offset"],[16,4,1,"_CPPv4N4espp6St778910set_offsetEii","espp::St7789::set_offset::x"],[16,4,1,"_CPPv4N4espp6St778910set_offsetEii","espp::St7789::set_offset::y"],[43,2,1,"_CPPv4N4espp9TKeyboardE","espp::TKeyboard"],[43,2,1,"_CPPv4N4espp9TKeyboard6ConfigE","espp::TKeyboard::Config"],[43,1,1,"_CPPv4N4espp9TKeyboard6Config7addressE","espp::TKeyboard::Config::address"],[43,1,1,"_CPPv4N4espp9TKeyboard6Config10auto_startE","espp::TKeyboard::Config::auto_start"],[43,1,1,"_CPPv4N4espp9TKeyboard6Config6key_cbE","espp::TKeyboard::Config::key_cb"],[43,1,1,"_CPPv4N4espp9TKeyboard6Config9log_levelE","espp::TKeyboard::Config::log_level"],[43,1,1,"_CPPv4N4espp9TKeyboard6Config16polling_intervalE","espp::TKeyboard::Config::polling_interval"],[43,1,1,"_CPPv4N4espp9TKeyboard6Config4readE","espp::TKeyboard::Config::read"],[43,1,1,"_CPPv4N4espp9TKeyboard6Config5writeE","espp::TKeyboard::Config::write"],[43,1,1,"_CPPv4N4espp9TKeyboard15DEFAULT_ADDRESSE","espp::TKeyboard::DEFAULT_ADDRESS"],[43,3,1,"_CPPv4N4espp9TKeyboard9TKeyboardERK6Config","espp::TKeyboard::TKeyboard"],[43,4,1,"_CPPv4N4espp9TKeyboard9TKeyboardERK6Config","espp::TKeyboard::TKeyboard::config"],[43,3,1,"_CPPv4N4espp9TKeyboard7get_keyEv","espp::TKeyboard::get_key"],[43,8,1,"_CPPv4N4espp9TKeyboard9key_cb_fnE","espp::TKeyboard::key_cb_fn"],[43,8,1,"_CPPv4N4espp9TKeyboard7read_fnE","espp::TKeyboard::read_fn"],[43,3,1,"_CPPv4N4espp9TKeyboard8read_keyERNSt10error_codeE","espp::TKeyboard::read_key"],[43,4,1,"_CPPv4N4espp9TKeyboard8read_keyERNSt10error_codeE","espp::TKeyboard::read_key::ec"],[43,3,1,"_CPPv4N4espp9TKeyboard5startEv","espp::TKeyboard::start"],[43,3,1,"_CPPv4N4espp9TKeyboard4stopEv","espp::TKeyboard::stop"],[43,8,1,"_CPPv4N4espp9TKeyboard8write_fnE","espp::TKeyboard::write_fn"],[76,2,1,"_CPPv4N4espp4TaskE","espp::Task"],[76,2,1,"_CPPv4N4espp4Task6ConfigE","espp::Task::Config"],[76,1,1,"_CPPv4N4espp4Task6Config8callbackE","espp::Task::Config::callback"],[76,1,1,"_CPPv4N4espp4Task6Config7core_idE","espp::Task::Config::core_id"],[76,1,1,"_CPPv4N4espp4Task6Config9log_levelE","espp::Task::Config::log_level"],[76,1,1,"_CPPv4N4espp4Task6Config4nameE","espp::Task::Config::name"],[76,1,1,"_CPPv4N4espp4Task6Config8priorityE","espp::Task::Config::priority"],[76,1,1,"_CPPv4N4espp4Task6Config16stack_size_bytesE","espp::Task::Config::stack_size_bytes"],[76,2,1,"_CPPv4N4espp4Task12SimpleConfigE","espp::Task::SimpleConfig"],[76,1,1,"_CPPv4N4espp4Task12SimpleConfig8callbackE","espp::Task::SimpleConfig::callback"],[76,1,1,"_CPPv4N4espp4Task12SimpleConfig7core_idE","espp::Task::SimpleConfig::core_id"],[76,1,1,"_CPPv4N4espp4Task12SimpleConfig9log_levelE","espp::Task::SimpleConfig::log_level"],[76,1,1,"_CPPv4N4espp4Task12SimpleConfig4nameE","espp::Task::SimpleConfig::name"],[76,1,1,"_CPPv4N4espp4Task12SimpleConfig8priorityE","espp::Task::SimpleConfig::priority"],[76,1,1,"_CPPv4N4espp4Task12SimpleConfig16stack_size_bytesE","espp::Task::SimpleConfig::stack_size_bytes"],[76,3,1,"_CPPv4N4espp4Task4TaskERK12SimpleConfig","espp::Task::Task"],[76,3,1,"_CPPv4N4espp4Task4TaskERK6Config","espp::Task::Task"],[76,4,1,"_CPPv4N4espp4Task4TaskERK12SimpleConfig","espp::Task::Task::config"],[76,4,1,"_CPPv4N4espp4Task4TaskERK6Config","espp::Task::Task::config"],[76,8,1,"_CPPv4N4espp4Task11callback_fnE","espp::Task::callback_fn"],[76,3,1,"_CPPv4N4espp4Task10is_runningEv","espp::Task::is_running"],[76,3,1,"_CPPv4N4espp4Task10is_startedEv","espp::Task::is_started"],[76,3,1,"_CPPv4N4espp4Task11make_uniqueERK12SimpleConfig","espp::Task::make_unique"],[76,3,1,"_CPPv4N4espp4Task11make_uniqueERK6Config","espp::Task::make_unique"],[76,4,1,"_CPPv4N4espp4Task11make_uniqueERK12SimpleConfig","espp::Task::make_unique::config"],[76,4,1,"_CPPv4N4espp4Task11make_uniqueERK6Config","espp::Task::make_unique::config"],[76,8,1,"_CPPv4N4espp4Task18simple_callback_fnE","espp::Task::simple_callback_fn"],[76,3,1,"_CPPv4N4espp4Task5startEv","espp::Task::start"],[76,3,1,"_CPPv4N4espp4Task4stopEv","espp::Task::stop"],[76,3,1,"_CPPv4N4espp4TaskD0Ev","espp::Task::~Task"],[59,2,1,"_CPPv4N4espp11TaskMonitorE","espp::TaskMonitor"],[59,2,1,"_CPPv4N4espp11TaskMonitor6ConfigE","espp::TaskMonitor::Config"],[59,1,1,"_CPPv4N4espp11TaskMonitor6Config6periodE","espp::TaskMonitor::Config::period"],[59,1,1,"_CPPv4N4espp11TaskMonitor6Config21task_stack_size_bytesE","espp::TaskMonitor::Config::task_stack_size_bytes"],[59,3,1,"_CPPv4N4espp11TaskMonitor15get_latest_infoEv","espp::TaskMonitor::get_latest_info"],[62,2,1,"_CPPv4N4espp9TcpSocketE","espp::TcpSocket"],[62,2,1,"_CPPv4N4espp9TcpSocket6ConfigE","espp::TcpSocket::Config"],[62,1,1,"_CPPv4N4espp9TcpSocket6Config9log_levelE","espp::TcpSocket::Config::log_level"],[62,2,1,"_CPPv4N4espp9TcpSocket13ConnectConfigE","espp::TcpSocket::ConnectConfig"],[62,1,1,"_CPPv4N4espp9TcpSocket13ConnectConfig10ip_addressE","espp::TcpSocket::ConnectConfig::ip_address"],[62,1,1,"_CPPv4N4espp9TcpSocket13ConnectConfig4portE","espp::TcpSocket::ConnectConfig::port"],[62,3,1,"_CPPv4N4espp9TcpSocket9TcpSocketERK6Config","espp::TcpSocket::TcpSocket"],[62,4,1,"_CPPv4N4espp9TcpSocket9TcpSocketERK6Config","espp::TcpSocket::TcpSocket::config"],[62,3,1,"_CPPv4N4espp9TcpSocket6acceptEv","espp::TcpSocket::accept"],[62,3,1,"_CPPv4N4espp9TcpSocket19add_multicast_groupERKNSt6stringE","espp::TcpSocket::add_multicast_group"],[62,4,1,"_CPPv4N4espp9TcpSocket19add_multicast_groupERKNSt6stringE","espp::TcpSocket::add_multicast_group::multicast_group"],[62,3,1,"_CPPv4N4espp9TcpSocket4bindEi","espp::TcpSocket::bind"],[62,4,1,"_CPPv4N4espp9TcpSocket4bindEi","espp::TcpSocket::bind::port"],[62,3,1,"_CPPv4N4espp9TcpSocket5closeEv","espp::TcpSocket::close"],[62,3,1,"_CPPv4N4espp9TcpSocket7connectERK13ConnectConfig","espp::TcpSocket::connect"],[62,4,1,"_CPPv4N4espp9TcpSocket7connectERK13ConnectConfig","espp::TcpSocket::connect::connect_config"],[62,3,1,"_CPPv4N4espp9TcpSocket12enable_reuseEv","espp::TcpSocket::enable_reuse"],[62,3,1,"_CPPv4N4espp9TcpSocket13get_ipv4_infoEv","espp::TcpSocket::get_ipv4_info"],[62,3,1,"_CPPv4NK4espp9TcpSocket15get_remote_infoEv","espp::TcpSocket::get_remote_info"],[62,3,1,"_CPPv4NK4espp9TcpSocket12is_connectedEv","espp::TcpSocket::is_connected"],[62,3,1,"_CPPv4N4espp9TcpSocket8is_validEi","espp::TcpSocket::is_valid"],[62,3,1,"_CPPv4NK4espp9TcpSocket8is_validEv","espp::TcpSocket::is_valid"],[62,4,1,"_CPPv4N4espp9TcpSocket8is_validEi","espp::TcpSocket::is_valid::socket_fd"],[62,3,1,"_CPPv4N4espp9TcpSocket6listenEi","espp::TcpSocket::listen"],[62,4,1,"_CPPv4N4espp9TcpSocket6listenEi","espp::TcpSocket::listen::max_pending_connections"],[62,3,1,"_CPPv4N4espp9TcpSocket14make_multicastE7uint8_t7uint8_t","espp::TcpSocket::make_multicast"],[62,4,1,"_CPPv4N4espp9TcpSocket14make_multicastE7uint8_t7uint8_t","espp::TcpSocket::make_multicast::loopback_enabled"],[62,4,1,"_CPPv4N4espp9TcpSocket14make_multicastE7uint8_t7uint8_t","espp::TcpSocket::make_multicast::time_to_live"],[62,3,1,"_CPPv4N4espp9TcpSocket7receiveEP7uint8_t6size_t","espp::TcpSocket::receive"],[62,3,1,"_CPPv4N4espp9TcpSocket7receiveERNSt6vectorI7uint8_tEE6size_t","espp::TcpSocket::receive"],[62,4,1,"_CPPv4N4espp9TcpSocket7receiveEP7uint8_t6size_t","espp::TcpSocket::receive::data"],[62,4,1,"_CPPv4N4espp9TcpSocket7receiveERNSt6vectorI7uint8_tEE6size_t","espp::TcpSocket::receive::data"],[62,4,1,"_CPPv4N4espp9TcpSocket7receiveEP7uint8_t6size_t","espp::TcpSocket::receive::max_num_bytes"],[62,4,1,"_CPPv4N4espp9TcpSocket7receiveERNSt6vectorI7uint8_tEE6size_t","espp::TcpSocket::receive::max_num_bytes"],[62,8,1,"_CPPv4N4espp9TcpSocket19receive_callback_fnE","espp::TcpSocket::receive_callback_fn"],[62,3,1,"_CPPv4N4espp9TcpSocket6reinitEv","espp::TcpSocket::reinit"],[62,8,1,"_CPPv4N4espp9TcpSocket20response_callback_fnE","espp::TcpSocket::response_callback_fn"],[62,3,1,"_CPPv4N4espp9TcpSocket19set_receive_timeoutERKNSt6chrono8durationIfEE","espp::TcpSocket::set_receive_timeout"],[62,4,1,"_CPPv4N4espp9TcpSocket19set_receive_timeoutERKNSt6chrono8durationIfEE","espp::TcpSocket::set_receive_timeout::timeout"],[62,3,1,"_CPPv4N4espp9TcpSocket8transmitENSt11string_viewERKN6detail17TcpTransmitConfigE","espp::TcpSocket::transmit"],[62,3,1,"_CPPv4N4espp9TcpSocket8transmitERKNSt6vectorI7uint8_tEERKN6detail17TcpTransmitConfigE","espp::TcpSocket::transmit"],[62,3,1,"_CPPv4N4espp9TcpSocket8transmitERKNSt6vectorIcEERKN6detail17TcpTransmitConfigE","espp::TcpSocket::transmit"],[62,4,1,"_CPPv4N4espp9TcpSocket8transmitENSt11string_viewERKN6detail17TcpTransmitConfigE","espp::TcpSocket::transmit::data"],[62,4,1,"_CPPv4N4espp9TcpSocket8transmitERKNSt6vectorI7uint8_tEERKN6detail17TcpTransmitConfigE","espp::TcpSocket::transmit::data"],[62,4,1,"_CPPv4N4espp9TcpSocket8transmitERKNSt6vectorIcEERKN6detail17TcpTransmitConfigE","espp::TcpSocket::transmit::data"],[62,4,1,"_CPPv4N4espp9TcpSocket8transmitENSt11string_viewERKN6detail17TcpTransmitConfigE","espp::TcpSocket::transmit::transmit_config"],[62,4,1,"_CPPv4N4espp9TcpSocket8transmitERKNSt6vectorI7uint8_tEERKN6detail17TcpTransmitConfigE","espp::TcpSocket::transmit::transmit_config"],[62,4,1,"_CPPv4N4espp9TcpSocket8transmitERKNSt6vectorIcEERKN6detail17TcpTransmitConfigE","espp::TcpSocket::transmit::transmit_config"],[62,3,1,"_CPPv4N4espp9TcpSocketD0Ev","espp::TcpSocket::~TcpSocket"],[77,2,1,"_CPPv4N4espp10ThermistorE","espp::Thermistor"],[77,2,1,"_CPPv4N4espp10Thermistor6ConfigE","espp::Thermistor::Config"],[77,1,1,"_CPPv4N4espp10Thermistor6Config4betaE","espp::Thermistor::Config::beta"],[77,1,1,"_CPPv4N4espp10Thermistor6Config14divider_configE","espp::Thermistor::Config::divider_config"],[77,1,1,"_CPPv4N4espp10Thermistor6Config21fixed_resistance_ohmsE","espp::Thermistor::Config::fixed_resistance_ohms"],[77,1,1,"_CPPv4N4espp10Thermistor6Config9log_levelE","espp::Thermistor::Config::log_level"],[77,1,1,"_CPPv4N4espp10Thermistor6Config23nominal_resistance_ohmsE","espp::Thermistor::Config::nominal_resistance_ohms"],[77,1,1,"_CPPv4N4espp10Thermistor6Config7read_mvE","espp::Thermistor::Config::read_mv"],[77,1,1,"_CPPv4N4espp10Thermistor6Config9supply_mvE","espp::Thermistor::Config::supply_mv"],[77,6,1,"_CPPv4N4espp10Thermistor21ResistorDividerConfigE","espp::Thermistor::ResistorDividerConfig"],[77,7,1,"_CPPv4N4espp10Thermistor21ResistorDividerConfig5LOWERE","espp::Thermistor::ResistorDividerConfig::LOWER"],[77,7,1,"_CPPv4N4espp10Thermistor21ResistorDividerConfig5UPPERE","espp::Thermistor::ResistorDividerConfig::UPPER"],[77,3,1,"_CPPv4N4espp10Thermistor10ThermistorERK6Config","espp::Thermistor::Thermistor"],[77,4,1,"_CPPv4N4espp10Thermistor10ThermistorERK6Config","espp::Thermistor::Thermistor::config"],[77,3,1,"_CPPv4N4espp10Thermistor11get_celsiusEv","espp::Thermistor::get_celsius"],[77,3,1,"_CPPv4N4espp10Thermistor14get_fahrenheitEv","espp::Thermistor::get_fahrenheit"],[77,3,1,"_CPPv4N4espp10Thermistor10get_kelvinEv","espp::Thermistor::get_kelvin"],[77,3,1,"_CPPv4N4espp10Thermistor14get_resistanceEv","espp::Thermistor::get_resistance"],[77,8,1,"_CPPv4N4espp10Thermistor10read_mv_fnE","espp::Thermistor::read_mv_fn"],[78,2,1,"_CPPv4N4espp5TimerE","espp::Timer"],[78,2,1,"_CPPv4N4espp5Timer6ConfigE","espp::Timer::Config"],[78,1,1,"_CPPv4N4espp5Timer6Config10auto_startE","espp::Timer::Config::auto_start"],[78,1,1,"_CPPv4N4espp5Timer6Config8callbackE","espp::Timer::Config::callback"],[78,1,1,"_CPPv4N4espp5Timer6Config7core_idE","espp::Timer::Config::core_id"],[78,1,1,"_CPPv4N4espp5Timer6Config5delayE","espp::Timer::Config::delay"],[78,1,1,"_CPPv4N4espp5Timer6Config9log_levelE","espp::Timer::Config::log_level"],[78,1,1,"_CPPv4N4espp5Timer6Config4nameE","espp::Timer::Config::name"],[78,1,1,"_CPPv4N4espp5Timer6Config6periodE","espp::Timer::Config::period"],[78,1,1,"_CPPv4N4espp5Timer6Config8priorityE","espp::Timer::Config::priority"],[78,1,1,"_CPPv4N4espp5Timer6Config16stack_size_bytesE","espp::Timer::Config::stack_size_bytes"],[78,3,1,"_CPPv4N4espp5Timer5TimerERK6Config","espp::Timer::Timer"],[78,4,1,"_CPPv4N4espp5Timer5TimerERK6Config","espp::Timer::Timer::config"],[78,8,1,"_CPPv4N4espp5Timer11callback_fnE","espp::Timer::callback_fn"],[78,3,1,"_CPPv4N4espp5Timer6cancelEv","espp::Timer::cancel"],[78,3,1,"_CPPv4NK4espp5Timer10is_runningEv","espp::Timer::is_running"],[78,3,1,"_CPPv4N4espp5Timer5startENSt6chrono8durationIfEE","espp::Timer::start"],[78,3,1,"_CPPv4N4espp5Timer5startEv","espp::Timer::start"],[78,4,1,"_CPPv4N4espp5Timer5startENSt6chrono8durationIfEE","espp::Timer::start::delay"],[78,3,1,"_CPPv4N4espp5Timer4stopEv","espp::Timer::stop"],[78,3,1,"_CPPv4N4espp5TimerD0Ev","espp::Timer::~Timer"],[6,2,1,"_CPPv4N4espp7Tla2528E","espp::Tla2528"],[6,6,1,"_CPPv4N4espp7Tla252810AlertLogicE","espp::Tla2528::AlertLogic"],[6,7,1,"_CPPv4N4espp7Tla252810AlertLogic11ACTIVE_HIGHE","espp::Tla2528::AlertLogic::ACTIVE_HIGH"],[6,7,1,"_CPPv4N4espp7Tla252810AlertLogic10ACTIVE_LOWE","espp::Tla2528::AlertLogic::ACTIVE_LOW"],[6,7,1,"_CPPv4N4espp7Tla252810AlertLogic11PULSED_HIGHE","espp::Tla2528::AlertLogic::PULSED_HIGH"],[6,7,1,"_CPPv4N4espp7Tla252810AlertLogic10PULSED_LOWE","espp::Tla2528::AlertLogic::PULSED_LOW"],[6,6,1,"_CPPv4N4espp7Tla25286AppendE","espp::Tla2528::Append"],[6,7,1,"_CPPv4N4espp7Tla25286Append10CHANNEL_IDE","espp::Tla2528::Append::CHANNEL_ID"],[6,7,1,"_CPPv4N4espp7Tla25286Append4NONEE","espp::Tla2528::Append::NONE"],[6,6,1,"_CPPv4N4espp7Tla25287ChannelE","espp::Tla2528::Channel"],[6,7,1,"_CPPv4N4espp7Tla25287Channel3CH0E","espp::Tla2528::Channel::CH0"],[6,7,1,"_CPPv4N4espp7Tla25287Channel3CH1E","espp::Tla2528::Channel::CH1"],[6,7,1,"_CPPv4N4espp7Tla25287Channel3CH2E","espp::Tla2528::Channel::CH2"],[6,7,1,"_CPPv4N4espp7Tla25287Channel3CH3E","espp::Tla2528::Channel::CH3"],[6,7,1,"_CPPv4N4espp7Tla25287Channel3CH4E","espp::Tla2528::Channel::CH4"],[6,7,1,"_CPPv4N4espp7Tla25287Channel3CH5E","espp::Tla2528::Channel::CH5"],[6,7,1,"_CPPv4N4espp7Tla25287Channel3CH6E","espp::Tla2528::Channel::CH6"],[6,7,1,"_CPPv4N4espp7Tla25287Channel3CH7E","espp::Tla2528::Channel::CH7"],[6,2,1,"_CPPv4N4espp7Tla25286ConfigE","espp::Tla2528::Config"],[6,1,1,"_CPPv4N4espp7Tla25286Config13analog_inputsE","espp::Tla2528::Config::analog_inputs"],[6,1,1,"_CPPv4N4espp7Tla25286Config6appendE","espp::Tla2528::Config::append"],[6,1,1,"_CPPv4N4espp7Tla25286Config9auto_initE","espp::Tla2528::Config::auto_init"],[6,1,1,"_CPPv4N4espp7Tla25286Config10avdd_voltsE","espp::Tla2528::Config::avdd_volts"],[6,1,1,"_CPPv4N4espp7Tla25286Config14device_addressE","espp::Tla2528::Config::device_address"],[6,1,1,"_CPPv4N4espp7Tla25286Config14digital_inputsE","espp::Tla2528::Config::digital_inputs"],[6,1,1,"_CPPv4N4espp7Tla25286Config20digital_output_modesE","espp::Tla2528::Config::digital_output_modes"],[6,1,1,"_CPPv4N4espp7Tla25286Config21digital_output_valuesE","espp::Tla2528::Config::digital_output_values"],[6,1,1,"_CPPv4N4espp7Tla25286Config15digital_outputsE","espp::Tla2528::Config::digital_outputs"],[6,1,1,"_CPPv4N4espp7Tla25286Config9log_levelE","espp::Tla2528::Config::log_level"],[6,1,1,"_CPPv4N4espp7Tla25286Config4modeE","espp::Tla2528::Config::mode"],[6,1,1,"_CPPv4N4espp7Tla25286Config18oversampling_ratioE","espp::Tla2528::Config::oversampling_ratio"],[6,1,1,"_CPPv4N4espp7Tla25286Config4readE","espp::Tla2528::Config::read"],[6,1,1,"_CPPv4N4espp7Tla25286Config5writeE","espp::Tla2528::Config::write"],[6,1,1,"_CPPv4N4espp7Tla252815DEFAULT_ADDRESSE","espp::Tla2528::DEFAULT_ADDRESS"],[6,6,1,"_CPPv4N4espp7Tla252810DataFormatE","espp::Tla2528::DataFormat"],[6,7,1,"_CPPv4N4espp7Tla252810DataFormat8AVERAGEDE","espp::Tla2528::DataFormat::AVERAGED"],[6,7,1,"_CPPv4N4espp7Tla252810DataFormat3RAWE","espp::Tla2528::DataFormat::RAW"],[6,6,1,"_CPPv4N4espp7Tla25284ModeE","espp::Tla2528::Mode"],[6,7,1,"_CPPv4N4espp7Tla25284Mode8AUTO_SEQE","espp::Tla2528::Mode::AUTO_SEQ"],[6,7,1,"_CPPv4N4espp7Tla25284Mode6MANUALE","espp::Tla2528::Mode::MANUAL"],[6,6,1,"_CPPv4N4espp7Tla252810OutputModeE","espp::Tla2528::OutputMode"],[6,7,1,"_CPPv4N4espp7Tla252810OutputMode10OPEN_DRAINE","espp::Tla2528::OutputMode::OPEN_DRAIN"],[6,7,1,"_CPPv4N4espp7Tla252810OutputMode9PUSH_PULLE","espp::Tla2528::OutputMode::PUSH_PULL"],[6,6,1,"_CPPv4N4espp7Tla252817OversamplingRatioE","espp::Tla2528::OversamplingRatio"],[6,7,1,"_CPPv4N4espp7Tla252817OversamplingRatio4NONEE","espp::Tla2528::OversamplingRatio::NONE"],[6,7,1,"_CPPv4N4espp7Tla252817OversamplingRatio7OSR_128E","espp::Tla2528::OversamplingRatio::OSR_128"],[6,7,1,"_CPPv4N4espp7Tla252817OversamplingRatio6OSR_16E","espp::Tla2528::OversamplingRatio::OSR_16"],[6,7,1,"_CPPv4N4espp7Tla252817OversamplingRatio5OSR_2E","espp::Tla2528::OversamplingRatio::OSR_2"],[6,7,1,"_CPPv4N4espp7Tla252817OversamplingRatio6OSR_32E","espp::Tla2528::OversamplingRatio::OSR_32"],[6,7,1,"_CPPv4N4espp7Tla252817OversamplingRatio5OSR_4E","espp::Tla2528::OversamplingRatio::OSR_4"],[6,7,1,"_CPPv4N4espp7Tla252817OversamplingRatio6OSR_64E","espp::Tla2528::OversamplingRatio::OSR_64"],[6,7,1,"_CPPv4N4espp7Tla252817OversamplingRatio5OSR_8E","espp::Tla2528::OversamplingRatio::OSR_8"],[6,3,1,"_CPPv4N4espp7Tla25287Tla2528ERK6Config","espp::Tla2528::Tla2528"],[6,4,1,"_CPPv4N4espp7Tla25287Tla2528ERK6Config","espp::Tla2528::Tla2528::config"],[6,3,1,"_CPPv4N4espp7Tla252810get_all_mvERNSt10error_codeE","espp::Tla2528::get_all_mv"],[6,4,1,"_CPPv4N4espp7Tla252810get_all_mvERNSt10error_codeE","espp::Tla2528::get_all_mv::ec"],[6,3,1,"_CPPv4N4espp7Tla252814get_all_mv_mapERNSt10error_codeE","espp::Tla2528::get_all_mv_map"],[6,4,1,"_CPPv4N4espp7Tla252814get_all_mv_mapERNSt10error_codeE","espp::Tla2528::get_all_mv_map::ec"],[6,3,1,"_CPPv4N4espp7Tla252823get_digital_input_valueE7ChannelRNSt10error_codeE","espp::Tla2528::get_digital_input_value"],[6,4,1,"_CPPv4N4espp7Tla252823get_digital_input_valueE7ChannelRNSt10error_codeE","espp::Tla2528::get_digital_input_value::channel"],[6,4,1,"_CPPv4N4espp7Tla252823get_digital_input_valueE7ChannelRNSt10error_codeE","espp::Tla2528::get_digital_input_value::ec"],[6,3,1,"_CPPv4N4espp7Tla252824get_digital_input_valuesERNSt10error_codeE","espp::Tla2528::get_digital_input_values"],[6,4,1,"_CPPv4N4espp7Tla252824get_digital_input_valuesERNSt10error_codeE","espp::Tla2528::get_digital_input_values::ec"],[6,3,1,"_CPPv4N4espp7Tla25286get_mvE7ChannelRNSt10error_codeE","espp::Tla2528::get_mv"],[6,4,1,"_CPPv4N4espp7Tla25286get_mvE7ChannelRNSt10error_codeE","espp::Tla2528::get_mv::channel"],[6,4,1,"_CPPv4N4espp7Tla25286get_mvE7ChannelRNSt10error_codeE","espp::Tla2528::get_mv::ec"],[6,3,1,"_CPPv4N4espp7Tla252810initializeERNSt10error_codeE","espp::Tla2528::initialize"],[6,4,1,"_CPPv4N4espp7Tla252810initializeERNSt10error_codeE","espp::Tla2528::initialize::ec"],[6,8,1,"_CPPv4N4espp7Tla25287read_fnE","espp::Tla2528::read_fn"],[6,3,1,"_CPPv4N4espp7Tla25285resetERNSt10error_codeE","espp::Tla2528::reset"],[6,4,1,"_CPPv4N4espp7Tla25285resetERNSt10error_codeE","espp::Tla2528::reset::ec"],[6,3,1,"_CPPv4N4espp7Tla252823set_digital_output_modeE7Channel10OutputModeRNSt10error_codeE","espp::Tla2528::set_digital_output_mode"],[6,4,1,"_CPPv4N4espp7Tla252823set_digital_output_modeE7Channel10OutputModeRNSt10error_codeE","espp::Tla2528::set_digital_output_mode::channel"],[6,4,1,"_CPPv4N4espp7Tla252823set_digital_output_modeE7Channel10OutputModeRNSt10error_codeE","espp::Tla2528::set_digital_output_mode::ec"],[6,4,1,"_CPPv4N4espp7Tla252823set_digital_output_modeE7Channel10OutputModeRNSt10error_codeE","espp::Tla2528::set_digital_output_mode::output_mode"],[6,3,1,"_CPPv4N4espp7Tla252824set_digital_output_valueE7ChannelbRNSt10error_codeE","espp::Tla2528::set_digital_output_value"],[6,4,1,"_CPPv4N4espp7Tla252824set_digital_output_valueE7ChannelbRNSt10error_codeE","espp::Tla2528::set_digital_output_value::channel"],[6,4,1,"_CPPv4N4espp7Tla252824set_digital_output_valueE7ChannelbRNSt10error_codeE","espp::Tla2528::set_digital_output_value::ec"],[6,4,1,"_CPPv4N4espp7Tla252824set_digital_output_valueE7ChannelbRNSt10error_codeE","espp::Tla2528::set_digital_output_value::value"],[6,8,1,"_CPPv4N4espp7Tla25288write_fnE","espp::Tla2528::write_fn"],[44,2,1,"_CPPv4N4espp13TouchpadInputE","espp::TouchpadInput"],[44,2,1,"_CPPv4N4espp13TouchpadInput6ConfigE","espp::TouchpadInput::Config"],[44,1,1,"_CPPv4N4espp13TouchpadInput6Config8invert_xE","espp::TouchpadInput::Config::invert_x"],[44,1,1,"_CPPv4N4espp13TouchpadInput6Config8invert_yE","espp::TouchpadInput::Config::invert_y"],[44,1,1,"_CPPv4N4espp13TouchpadInput6Config9log_levelE","espp::TouchpadInput::Config::log_level"],[44,1,1,"_CPPv4N4espp13TouchpadInput6Config7swap_xyE","espp::TouchpadInput::Config::swap_xy"],[44,1,1,"_CPPv4N4espp13TouchpadInput6Config13touchpad_readE","espp::TouchpadInput::Config::touchpad_read"],[44,3,1,"_CPPv4N4espp13TouchpadInput13TouchpadInputERK6Config","espp::TouchpadInput::TouchpadInput"],[44,4,1,"_CPPv4N4espp13TouchpadInput13TouchpadInputERK6Config","espp::TouchpadInput::TouchpadInput::config"],[44,3,1,"_CPPv4N4espp13TouchpadInput28get_home_button_input_deviceEv","espp::TouchpadInput::get_home_button_input_device"],[44,3,1,"_CPPv4N4espp13TouchpadInput25get_touchpad_input_deviceEv","espp::TouchpadInput::get_touchpad_input_device"],[44,8,1,"_CPPv4N4espp13TouchpadInput16touchpad_read_fnE","espp::TouchpadInput::touchpad_read_fn"],[44,3,1,"_CPPv4N4espp13TouchpadInputD0Ev","espp::TouchpadInput::~TouchpadInput"],[45,2,1,"_CPPv4N4espp7Tt21100E","espp::Tt21100"],[45,2,1,"_CPPv4N4espp7Tt211006ConfigE","espp::Tt21100::Config"],[45,1,1,"_CPPv4N4espp7Tt211006Config9log_levelE","espp::Tt21100::Config::log_level"],[45,1,1,"_CPPv4N4espp7Tt211006Config4readE","espp::Tt21100::Config::read"],[45,1,1,"_CPPv4N4espp7Tt2110015DEFAULT_ADDRESSE","espp::Tt21100::DEFAULT_ADDRESS"],[45,3,1,"_CPPv4N4espp7Tt211007Tt21100ERK6Config","espp::Tt21100::Tt21100"],[45,4,1,"_CPPv4N4espp7Tt211007Tt21100ERK6Config","espp::Tt21100::Tt21100::config"],[45,3,1,"_CPPv4NK4espp7Tt2110021get_home_button_stateEv","espp::Tt21100::get_home_button_state"],[45,3,1,"_CPPv4NK4espp7Tt2110020get_num_touch_pointsEv","espp::Tt21100::get_num_touch_points"],[45,3,1,"_CPPv4NK4espp7Tt2110015get_touch_pointEP7uint8_tP8uint16_tP8uint16_t","espp::Tt21100::get_touch_point"],[45,4,1,"_CPPv4NK4espp7Tt2110015get_touch_pointEP7uint8_tP8uint16_tP8uint16_t","espp::Tt21100::get_touch_point::num_touch_points"],[45,4,1,"_CPPv4NK4espp7Tt2110015get_touch_pointEP7uint8_tP8uint16_tP8uint16_t","espp::Tt21100::get_touch_point::x"],[45,4,1,"_CPPv4NK4espp7Tt2110015get_touch_pointEP7uint8_tP8uint16_tP8uint16_t","espp::Tt21100::get_touch_point::y"],[45,8,1,"_CPPv4N4espp7Tt211007read_fnE","espp::Tt21100::read_fn"],[45,3,1,"_CPPv4N4espp7Tt211006updateERNSt10error_codeE","espp::Tt21100::update"],[45,4,1,"_CPPv4N4espp7Tt211006updateERNSt10error_codeE","espp::Tt21100::update::ec"],[63,2,1,"_CPPv4N4espp9UdpSocketE","espp::UdpSocket"],[63,2,1,"_CPPv4N4espp9UdpSocket6ConfigE","espp::UdpSocket::Config"],[63,1,1,"_CPPv4N4espp9UdpSocket6Config9log_levelE","espp::UdpSocket::Config::log_level"],[63,2,1,"_CPPv4N4espp9UdpSocket13ReceiveConfigE","espp::UdpSocket::ReceiveConfig"],[63,1,1,"_CPPv4N4espp9UdpSocket13ReceiveConfig11buffer_sizeE","espp::UdpSocket::ReceiveConfig::buffer_size"],[63,1,1,"_CPPv4N4espp9UdpSocket13ReceiveConfig21is_multicast_endpointE","espp::UdpSocket::ReceiveConfig::is_multicast_endpoint"],[63,1,1,"_CPPv4N4espp9UdpSocket13ReceiveConfig15multicast_groupE","espp::UdpSocket::ReceiveConfig::multicast_group"],[63,1,1,"_CPPv4N4espp9UdpSocket13ReceiveConfig19on_receive_callbackE","espp::UdpSocket::ReceiveConfig::on_receive_callback"],[63,1,1,"_CPPv4N4espp9UdpSocket13ReceiveConfig4portE","espp::UdpSocket::ReceiveConfig::port"],[63,2,1,"_CPPv4N4espp9UdpSocket10SendConfigE","espp::UdpSocket::SendConfig"],[63,1,1,"_CPPv4N4espp9UdpSocket10SendConfig10ip_addressE","espp::UdpSocket::SendConfig::ip_address"],[63,1,1,"_CPPv4N4espp9UdpSocket10SendConfig21is_multicast_endpointE","espp::UdpSocket::SendConfig::is_multicast_endpoint"],[63,1,1,"_CPPv4N4espp9UdpSocket10SendConfig20on_response_callbackE","espp::UdpSocket::SendConfig::on_response_callback"],[63,1,1,"_CPPv4N4espp9UdpSocket10SendConfig4portE","espp::UdpSocket::SendConfig::port"],[63,1,1,"_CPPv4N4espp9UdpSocket10SendConfig13response_sizeE","espp::UdpSocket::SendConfig::response_size"],[63,1,1,"_CPPv4N4espp9UdpSocket10SendConfig16response_timeoutE","espp::UdpSocket::SendConfig::response_timeout"],[63,1,1,"_CPPv4N4espp9UdpSocket10SendConfig17wait_for_responseE","espp::UdpSocket::SendConfig::wait_for_response"],[63,3,1,"_CPPv4N4espp9UdpSocket9UdpSocketERK6Config","espp::UdpSocket::UdpSocket"],[63,4,1,"_CPPv4N4espp9UdpSocket9UdpSocketERK6Config","espp::UdpSocket::UdpSocket::config"],[63,3,1,"_CPPv4N4espp9UdpSocket19add_multicast_groupERKNSt6stringE","espp::UdpSocket::add_multicast_group"],[63,4,1,"_CPPv4N4espp9UdpSocket19add_multicast_groupERKNSt6stringE","espp::UdpSocket::add_multicast_group::multicast_group"],[63,3,1,"_CPPv4N4espp9UdpSocket12enable_reuseEv","espp::UdpSocket::enable_reuse"],[63,3,1,"_CPPv4N4espp9UdpSocket13get_ipv4_infoEv","espp::UdpSocket::get_ipv4_info"],[63,3,1,"_CPPv4N4espp9UdpSocket8is_validEi","espp::UdpSocket::is_valid"],[63,3,1,"_CPPv4NK4espp9UdpSocket8is_validEv","espp::UdpSocket::is_valid"],[63,4,1,"_CPPv4N4espp9UdpSocket8is_validEi","espp::UdpSocket::is_valid::socket_fd"],[63,3,1,"_CPPv4N4espp9UdpSocket14make_multicastE7uint8_t7uint8_t","espp::UdpSocket::make_multicast"],[63,4,1,"_CPPv4N4espp9UdpSocket14make_multicastE7uint8_t7uint8_t","espp::UdpSocket::make_multicast::loopback_enabled"],[63,4,1,"_CPPv4N4espp9UdpSocket14make_multicastE7uint8_t7uint8_t","espp::UdpSocket::make_multicast::time_to_live"],[63,3,1,"_CPPv4N4espp9UdpSocket7receiveE6size_tRNSt6vectorI7uint8_tEERN6Socket4InfoE","espp::UdpSocket::receive"],[63,4,1,"_CPPv4N4espp9UdpSocket7receiveE6size_tRNSt6vectorI7uint8_tEERN6Socket4InfoE","espp::UdpSocket::receive::data"],[63,4,1,"_CPPv4N4espp9UdpSocket7receiveE6size_tRNSt6vectorI7uint8_tEERN6Socket4InfoE","espp::UdpSocket::receive::max_num_bytes"],[63,4,1,"_CPPv4N4espp9UdpSocket7receiveE6size_tRNSt6vectorI7uint8_tEERN6Socket4InfoE","espp::UdpSocket::receive::remote_info"],[63,8,1,"_CPPv4N4espp9UdpSocket19receive_callback_fnE","espp::UdpSocket::receive_callback_fn"],[63,8,1,"_CPPv4N4espp9UdpSocket20response_callback_fnE","espp::UdpSocket::response_callback_fn"],[63,3,1,"_CPPv4N4espp9UdpSocket4sendENSt11string_viewERK10SendConfig","espp::UdpSocket::send"],[63,3,1,"_CPPv4N4espp9UdpSocket4sendERKNSt6vectorI7uint8_tEERK10SendConfig","espp::UdpSocket::send"],[63,4,1,"_CPPv4N4espp9UdpSocket4sendENSt11string_viewERK10SendConfig","espp::UdpSocket::send::data"],[63,4,1,"_CPPv4N4espp9UdpSocket4sendERKNSt6vectorI7uint8_tEERK10SendConfig","espp::UdpSocket::send::data"],[63,4,1,"_CPPv4N4espp9UdpSocket4sendENSt11string_viewERK10SendConfig","espp::UdpSocket::send::send_config"],[63,4,1,"_CPPv4N4espp9UdpSocket4sendERKNSt6vectorI7uint8_tEERK10SendConfig","espp::UdpSocket::send::send_config"],[63,3,1,"_CPPv4N4espp9UdpSocket19set_receive_timeoutERKNSt6chrono8durationIfEE","espp::UdpSocket::set_receive_timeout"],[63,4,1,"_CPPv4N4espp9UdpSocket19set_receive_timeoutERKNSt6chrono8durationIfEE","espp::UdpSocket::set_receive_timeout::timeout"],[63,3,1,"_CPPv4N4espp9UdpSocket15start_receivingERN4Task6ConfigERK13ReceiveConfig","espp::UdpSocket::start_receiving"],[63,4,1,"_CPPv4N4espp9UdpSocket15start_receivingERN4Task6ConfigERK13ReceiveConfig","espp::UdpSocket::start_receiving::receive_config"],[63,4,1,"_CPPv4N4espp9UdpSocket15start_receivingERN4Task6ConfigERK13ReceiveConfig","espp::UdpSocket::start_receiving::task_config"],[63,3,1,"_CPPv4N4espp9UdpSocketD0Ev","espp::UdpSocket::~UdpSocket"],[58,2,1,"_CPPv4I0EN4espp8Vector2dE","espp::Vector2d"],[58,5,1,"_CPPv4I0EN4espp8Vector2dE","espp::Vector2d::T"],[58,3,1,"_CPPv4N4espp8Vector2d8Vector2dE1T1T","espp::Vector2d::Vector2d"],[58,3,1,"_CPPv4N4espp8Vector2d8Vector2dERK8Vector2d","espp::Vector2d::Vector2d"],[58,4,1,"_CPPv4N4espp8Vector2d8Vector2dERK8Vector2d","espp::Vector2d::Vector2d::other"],[58,4,1,"_CPPv4N4espp8Vector2d8Vector2dE1T1T","espp::Vector2d::Vector2d::x"],[58,4,1,"_CPPv4N4espp8Vector2d8Vector2dE1T1T","espp::Vector2d::Vector2d::y"],[58,3,1,"_CPPv4NK4espp8Vector2d3dotERK8Vector2d","espp::Vector2d::dot"],[58,4,1,"_CPPv4NK4espp8Vector2d3dotERK8Vector2d","espp::Vector2d::dot::other"],[58,3,1,"_CPPv4NK4espp8Vector2d9magnitudeEv","espp::Vector2d::magnitude"],[58,3,1,"_CPPv4NK4espp8Vector2d17magnitude_squaredEv","espp::Vector2d::magnitude_squared"],[58,3,1,"_CPPv4NK4espp8Vector2d10normalizedEv","espp::Vector2d::normalized"],[58,3,1,"_CPPv4NK4espp8Vector2dmlERK1T","espp::Vector2d::operator*"],[58,4,1,"_CPPv4NK4espp8Vector2dmlERK1T","espp::Vector2d::operator*::v"],[58,3,1,"_CPPv4N4espp8Vector2dmLERK1T","espp::Vector2d::operator*="],[58,4,1,"_CPPv4N4espp8Vector2dmLERK1T","espp::Vector2d::operator*=::v"],[58,3,1,"_CPPv4NK4espp8Vector2dplERK8Vector2d","espp::Vector2d::operator+"],[58,4,1,"_CPPv4NK4espp8Vector2dplERK8Vector2d","espp::Vector2d::operator+::rhs"],[58,3,1,"_CPPv4N4espp8Vector2dpLERK8Vector2d","espp::Vector2d::operator+="],[58,4,1,"_CPPv4N4espp8Vector2dpLERK8Vector2d","espp::Vector2d::operator+=::rhs"],[58,3,1,"_CPPv4NK4espp8Vector2dmiERK8Vector2d","espp::Vector2d::operator-"],[58,3,1,"_CPPv4NK4espp8Vector2dmiEv","espp::Vector2d::operator-"],[58,4,1,"_CPPv4NK4espp8Vector2dmiERK8Vector2d","espp::Vector2d::operator-::rhs"],[58,3,1,"_CPPv4N4espp8Vector2dmIERK8Vector2d","espp::Vector2d::operator-="],[58,4,1,"_CPPv4N4espp8Vector2dmIERK8Vector2d","espp::Vector2d::operator-=::rhs"],[58,3,1,"_CPPv4NK4espp8Vector2ddvERK1T","espp::Vector2d::operator/"],[58,3,1,"_CPPv4NK4espp8Vector2ddvERK8Vector2d","espp::Vector2d::operator/"],[58,4,1,"_CPPv4NK4espp8Vector2ddvERK1T","espp::Vector2d::operator/::v"],[58,4,1,"_CPPv4NK4espp8Vector2ddvERK8Vector2d","espp::Vector2d::operator/::v"],[58,3,1,"_CPPv4N4espp8Vector2ddVERK1T","espp::Vector2d::operator/="],[58,3,1,"_CPPv4N4espp8Vector2ddVERK8Vector2d","espp::Vector2d::operator/="],[58,4,1,"_CPPv4N4espp8Vector2ddVERK1T","espp::Vector2d::operator/=::v"],[58,4,1,"_CPPv4N4espp8Vector2ddVERK8Vector2d","espp::Vector2d::operator/=::v"],[58,3,1,"_CPPv4N4espp8Vector2daSERK8Vector2d","espp::Vector2d::operator="],[58,4,1,"_CPPv4N4espp8Vector2daSERK8Vector2d","espp::Vector2d::operator=::other"],[58,3,1,"_CPPv4N4espp8Vector2dixEi","espp::Vector2d::operator[]"],[58,4,1,"_CPPv4N4espp8Vector2dixEi","espp::Vector2d::operator[]::index"],[58,3,1,"_CPPv4I0_PNSt9enable_ifINSt17is_floating_pointI1UE5valueEE4typeEENK4espp8Vector2d7rotatedE8Vector2d1T","espp::Vector2d::rotated"],[58,5,1,"_CPPv4I0_PNSt9enable_ifINSt17is_floating_pointI1UE5valueEE4typeEENK4espp8Vector2d7rotatedE8Vector2d1T","espp::Vector2d::rotated::U"],[58,4,1,"_CPPv4I0_PNSt9enable_ifINSt17is_floating_pointI1UE5valueEE4typeEENK4espp8Vector2d7rotatedE8Vector2d1T","espp::Vector2d::rotated::radians"],[58,3,1,"_CPPv4N4espp8Vector2d1xE1T","espp::Vector2d::x"],[58,3,1,"_CPPv4NK4espp8Vector2d1xEv","espp::Vector2d::x"],[58,4,1,"_CPPv4N4espp8Vector2d1xE1T","espp::Vector2d::x::v"],[58,3,1,"_CPPv4N4espp8Vector2d1yE1T","espp::Vector2d::y"],[58,3,1,"_CPPv4NK4espp8Vector2d1yEv","espp::Vector2d::y"],[58,4,1,"_CPPv4N4espp8Vector2d1yE1T","espp::Vector2d::y::v"],[80,2,1,"_CPPv4N4espp6WifiApE","espp::WifiAp"],[80,2,1,"_CPPv4N4espp6WifiAp6ConfigE","espp::WifiAp::Config"],[80,1,1,"_CPPv4N4espp6WifiAp6Config7channelE","espp::WifiAp::Config::channel"],[80,1,1,"_CPPv4N4espp6WifiAp6Config9log_levelE","espp::WifiAp::Config::log_level"],[80,1,1,"_CPPv4N4espp6WifiAp6Config22max_number_of_stationsE","espp::WifiAp::Config::max_number_of_stations"],[80,1,1,"_CPPv4N4espp6WifiAp6Config8passwordE","espp::WifiAp::Config::password"],[80,1,1,"_CPPv4N4espp6WifiAp6Config4ssidE","espp::WifiAp::Config::ssid"],[80,3,1,"_CPPv4N4espp6WifiAp6WifiApERK6Config","espp::WifiAp::WifiAp"],[80,4,1,"_CPPv4N4espp6WifiAp6WifiApERK6Config","espp::WifiAp::WifiAp::config"],[81,2,1,"_CPPv4N4espp7WifiStaE","espp::WifiSta"],[81,2,1,"_CPPv4N4espp7WifiSta6ConfigE","espp::WifiSta::Config"],[81,1,1,"_CPPv4N4espp7WifiSta6Config6ap_macE","espp::WifiSta::Config::ap_mac"],[81,1,1,"_CPPv4N4espp7WifiSta6Config7channelE","espp::WifiSta::Config::channel"],[81,1,1,"_CPPv4N4espp7WifiSta6Config9log_levelE","espp::WifiSta::Config::log_level"],[81,1,1,"_CPPv4N4espp7WifiSta6Config19num_connect_retriesE","espp::WifiSta::Config::num_connect_retries"],[81,1,1,"_CPPv4N4espp7WifiSta6Config12on_connectedE","espp::WifiSta::Config::on_connected"],[81,1,1,"_CPPv4N4espp7WifiSta6Config15on_disconnectedE","espp::WifiSta::Config::on_disconnected"],[81,1,1,"_CPPv4N4espp7WifiSta6Config9on_got_ipE","espp::WifiSta::Config::on_got_ip"],[81,1,1,"_CPPv4N4espp7WifiSta6Config8passwordE","espp::WifiSta::Config::password"],[81,1,1,"_CPPv4N4espp7WifiSta6Config10set_ap_macE","espp::WifiSta::Config::set_ap_mac"],[81,1,1,"_CPPv4N4espp7WifiSta6Config4ssidE","espp::WifiSta::Config::ssid"],[81,3,1,"_CPPv4N4espp7WifiSta7WifiStaERK6Config","espp::WifiSta::WifiSta"],[81,4,1,"_CPPv4N4espp7WifiSta7WifiStaERK6Config","espp::WifiSta::WifiSta::config"],[81,8,1,"_CPPv4N4espp7WifiSta16connect_callbackE","espp::WifiSta::connect_callback"],[81,8,1,"_CPPv4N4espp7WifiSta19disconnect_callbackE","espp::WifiSta::disconnect_callback"],[81,8,1,"_CPPv4N4espp7WifiSta11ip_callbackE","espp::WifiSta::ip_callback"],[81,3,1,"_CPPv4N4espp7WifiSta12is_connectedEv","espp::WifiSta::is_connected"],[81,3,1,"_CPPv4N4espp7WifiStaD0Ev","espp::WifiSta::~WifiSta"],[14,2,1,"_CPPv4N4espp21__csv_documentation__E","espp::__csv_documentation__"],[73,2,1,"_CPPv4N4espp31__serialization_documentation__E","espp::__serialization_documentation__"],[74,2,1,"_CPPv4N4espp31__state_machine_documentation__E","espp::__state_machine_documentation__"],[75,2,1,"_CPPv4N4espp26__tabulate_documentation__E","espp::__tabulate_documentation__"],[74,2,1,"_CPPv4N4espp13state_machine16DeepHistoryStateE","espp::state_machine::DeepHistoryState"],[74,3,1,"_CPPv4N4espp13state_machine16DeepHistoryState5entryEv","espp::state_machine::DeepHistoryState::entry"],[74,3,1,"_CPPv4N4espp13state_machine16DeepHistoryState4exitEv","espp::state_machine::DeepHistoryState::exit"],[74,3,1,"_CPPv4N4espp13state_machine16DeepHistoryState12exitChildrenEv","espp::state_machine::DeepHistoryState::exitChildren"],[74,3,1,"_CPPv4N4espp13state_machine16DeepHistoryState14getActiveChildEv","espp::state_machine::DeepHistoryState::getActiveChild"],[74,3,1,"_CPPv4N4espp13state_machine16DeepHistoryState13getActiveLeafEv","espp::state_machine::DeepHistoryState::getActiveLeaf"],[74,3,1,"_CPPv4N4espp13state_machine16DeepHistoryState10getInitialEv","espp::state_machine::DeepHistoryState::getInitial"],[74,3,1,"_CPPv4N4espp13state_machine16DeepHistoryState14getParentStateEv","espp::state_machine::DeepHistoryState::getParentState"],[74,3,1,"_CPPv4N4espp13state_machine16DeepHistoryState11handleEventEP9EventBase","espp::state_machine::DeepHistoryState::handleEvent"],[74,4,1,"_CPPv4N4espp13state_machine16DeepHistoryState11handleEventEP9EventBase","espp::state_machine::DeepHistoryState::handleEvent::event"],[74,3,1,"_CPPv4N4espp13state_machine16DeepHistoryState10initializeEv","espp::state_machine::DeepHistoryState::initialize"],[74,3,1,"_CPPv4N4espp13state_machine16DeepHistoryState10makeActiveEv","espp::state_machine::DeepHistoryState::makeActive"],[74,3,1,"_CPPv4N4espp13state_machine16DeepHistoryState14setActiveChildEP9StateBase","espp::state_machine::DeepHistoryState::setActiveChild"],[74,4,1,"_CPPv4N4espp13state_machine16DeepHistoryState14setActiveChildEP9StateBase","espp::state_machine::DeepHistoryState::setActiveChild::childState"],[74,3,1,"_CPPv4N4espp13state_machine16DeepHistoryState14setDeepHistoryEv","espp::state_machine::DeepHistoryState::setDeepHistory"],[74,3,1,"_CPPv4N4espp13state_machine16DeepHistoryState14setParentStateEP9StateBase","espp::state_machine::DeepHistoryState::setParentState"],[74,4,1,"_CPPv4N4espp13state_machine16DeepHistoryState14setParentStateEP9StateBase","espp::state_machine::DeepHistoryState::setParentState::parent"],[74,3,1,"_CPPv4N4espp13state_machine16DeepHistoryState17setShallowHistoryEv","espp::state_machine::DeepHistoryState::setShallowHistory"],[74,3,1,"_CPPv4N4espp13state_machine16DeepHistoryState4tickEv","espp::state_machine::DeepHistoryState::tick"],[74,2,1,"_CPPv4N4espp13state_machine9EventBaseE","espp::state_machine::EventBase"],[74,2,1,"_CPPv4N4espp13state_machine19ShallowHistoryStateE","espp::state_machine::ShallowHistoryState"],[74,3,1,"_CPPv4N4espp13state_machine19ShallowHistoryState5entryEv","espp::state_machine::ShallowHistoryState::entry"],[74,3,1,"_CPPv4N4espp13state_machine19ShallowHistoryState4exitEv","espp::state_machine::ShallowHistoryState::exit"],[74,3,1,"_CPPv4N4espp13state_machine19ShallowHistoryState12exitChildrenEv","espp::state_machine::ShallowHistoryState::exitChildren"],[74,3,1,"_CPPv4N4espp13state_machine19ShallowHistoryState14getActiveChildEv","espp::state_machine::ShallowHistoryState::getActiveChild"],[74,3,1,"_CPPv4N4espp13state_machine19ShallowHistoryState13getActiveLeafEv","espp::state_machine::ShallowHistoryState::getActiveLeaf"],[74,3,1,"_CPPv4N4espp13state_machine19ShallowHistoryState10getInitialEv","espp::state_machine::ShallowHistoryState::getInitial"],[74,3,1,"_CPPv4N4espp13state_machine19ShallowHistoryState14getParentStateEv","espp::state_machine::ShallowHistoryState::getParentState"],[74,3,1,"_CPPv4N4espp13state_machine19ShallowHistoryState11handleEventEP9EventBase","espp::state_machine::ShallowHistoryState::handleEvent"],[74,4,1,"_CPPv4N4espp13state_machine19ShallowHistoryState11handleEventEP9EventBase","espp::state_machine::ShallowHistoryState::handleEvent::event"],[74,3,1,"_CPPv4N4espp13state_machine19ShallowHistoryState10initializeEv","espp::state_machine::ShallowHistoryState::initialize"],[74,3,1,"_CPPv4N4espp13state_machine19ShallowHistoryState10makeActiveEv","espp::state_machine::ShallowHistoryState::makeActive"],[74,3,1,"_CPPv4N4espp13state_machine19ShallowHistoryState14setActiveChildEP9StateBase","espp::state_machine::ShallowHistoryState::setActiveChild"],[74,4,1,"_CPPv4N4espp13state_machine19ShallowHistoryState14setActiveChildEP9StateBase","espp::state_machine::ShallowHistoryState::setActiveChild::childState"],[74,3,1,"_CPPv4N4espp13state_machine19ShallowHistoryState14setDeepHistoryEv","espp::state_machine::ShallowHistoryState::setDeepHistory"],[74,3,1,"_CPPv4N4espp13state_machine19ShallowHistoryState14setParentStateEP9StateBase","espp::state_machine::ShallowHistoryState::setParentState"],[74,4,1,"_CPPv4N4espp13state_machine19ShallowHistoryState14setParentStateEP9StateBase","espp::state_machine::ShallowHistoryState::setParentState::parent"],[74,3,1,"_CPPv4N4espp13state_machine19ShallowHistoryState17setShallowHistoryEv","espp::state_machine::ShallowHistoryState::setShallowHistory"],[74,3,1,"_CPPv4N4espp13state_machine19ShallowHistoryState4tickEv","espp::state_machine::ShallowHistoryState::tick"],[74,2,1,"_CPPv4N4espp13state_machine9StateBaseE","espp::state_machine::StateBase"],[74,3,1,"_CPPv4N4espp13state_machine9StateBase5entryEv","espp::state_machine::StateBase::entry"],[74,3,1,"_CPPv4N4espp13state_machine9StateBase4exitEv","espp::state_machine::StateBase::exit"],[74,3,1,"_CPPv4N4espp13state_machine9StateBase12exitChildrenEv","espp::state_machine::StateBase::exitChildren"],[74,3,1,"_CPPv4N4espp13state_machine9StateBase14getActiveChildEv","espp::state_machine::StateBase::getActiveChild"],[74,3,1,"_CPPv4N4espp13state_machine9StateBase13getActiveLeafEv","espp::state_machine::StateBase::getActiveLeaf"],[74,3,1,"_CPPv4N4espp13state_machine9StateBase10getInitialEv","espp::state_machine::StateBase::getInitial"],[74,3,1,"_CPPv4N4espp13state_machine9StateBase14getParentStateEv","espp::state_machine::StateBase::getParentState"],[74,3,1,"_CPPv4N4espp13state_machine9StateBase11handleEventEP9EventBase","espp::state_machine::StateBase::handleEvent"],[74,4,1,"_CPPv4N4espp13state_machine9StateBase11handleEventEP9EventBase","espp::state_machine::StateBase::handleEvent::event"],[74,3,1,"_CPPv4N4espp13state_machine9StateBase10initializeEv","espp::state_machine::StateBase::initialize"],[74,3,1,"_CPPv4N4espp13state_machine9StateBase10makeActiveEv","espp::state_machine::StateBase::makeActive"],[74,3,1,"_CPPv4N4espp13state_machine9StateBase14setActiveChildEP9StateBase","espp::state_machine::StateBase::setActiveChild"],[74,4,1,"_CPPv4N4espp13state_machine9StateBase14setActiveChildEP9StateBase","espp::state_machine::StateBase::setActiveChild::childState"],[74,3,1,"_CPPv4N4espp13state_machine9StateBase14setDeepHistoryEv","espp::state_machine::StateBase::setDeepHistory"],[74,3,1,"_CPPv4N4espp13state_machine9StateBase14setParentStateEP9StateBase","espp::state_machine::StateBase::setParentState"],[74,4,1,"_CPPv4N4espp13state_machine9StateBase14setParentStateEP9StateBase","espp::state_machine::StateBase::setParentState::parent"],[74,3,1,"_CPPv4N4espp13state_machine9StateBase17setShallowHistoryEv","espp::state_machine::StateBase::setShallowHistory"],[74,3,1,"_CPPv4N4espp13state_machine9StateBase4tickEv","espp::state_machine::StateBase::tick"]]},objnames:{"0":["c","macro","C macro"],"1":["cpp","member","C++ member"],"2":["cpp","class","C++ class"],"3":["cpp","function","C++ function"],"4":["cpp","functionParam","C++ function parameter"],"5":["cpp","templateParam","C++ template parameter"],"6":["cpp","enum","C++ enum"],"7":["cpp","enumerator","C++ enumerator"],"8":["cpp","type","C++ type"]},objtypes:{"0":"c:macro","1":"cpp:member","2":"cpp:class","3":"cpp:function","4":"cpp:functionParam","5":"cpp:templateParam","6":"cpp:enum","7":"cpp:enumerator","8":"cpp:type"},terms:{"0":[1,2,6,7,8,10,11,12,13,14,15,16,18,19,22,23,24,25,26,28,33,34,36,39,40,43,45,46,48,49,50,51,52,53,55,57,58,59,61,62,63,65,66,67,68,69,72,75,76,77,78,81],"00":19,"000":[75,77],"000f":8,"00b":65,"01":[15,33,66],"010f":8,"01f":[19,22],"02":[7,66],"024v":1,"02x":66,"03":[52,59,66],"04":[33,66],"048v":1,"04x":36,"05":66,"054":75,"05f":51,"06":66,"067488":77,"0693":75,"06f":76,"0755":24,"096v":1,"0b00000001":66,"0b00000010":66,"0b00000011":46,"0b00000100":66,"0b00001000":66,"0b0000110":22,"0b00010000":66,"0b00100000":66,"0b00111111":46,"0b0100000":48,"0b01000000":66,"0b0110110":19,"0b10000000":66,"0b11":46,"0b11111":51,"0f":[7,8,13,19,22,23,33,49,50,51,52,53,55,59,67,69],"0m":78,"0s":50,"0x00":[46,48,66],"0x0000":16,"0x06":6,"0x060504030201":66,"0x10":[2,6],"0x13":65,"0x14":40,"0x16":6,"0x24":45,"0x38":39,"0x48":1,"0x51":70,"0x54":68,"0x55":43,"0x58":[36,46],"0x5d":40,"0xa6":66,"0xa8":68,"0xae":66,"0xf412fa42fe9":65,"0xff":[51,66],"0xffffffffffff":65,"1":[1,2,3,6,7,8,10,11,12,13,14,15,16,18,19,22,23,24,25,26,34,36,43,46,48,49,50,52,53,55,57,61,62,63,65,66,67,68,72,73,75,76,77,80],"10":[2,8,11,15,18,36,43,45,50,52,59,73,75,76,77],"100":[16,23,48,49,50,67,77],"1000":[3,8,16,18,36,50,67,72,77],"10000":77,"1000000":69,"10000000":69,"100m":[16,50,59,67,74,76,81],"1024":[1,2,3,6,8,10,13,19,22,23,34,46,48,51,59,62,63,66,69,76,77],"10k":77,"10m":[2,6,50,62,66,76,77],"10mhz":69,"11":[70,75],"11k":6,"12":[2,6,65,75],"123":34,"127":[62,63,65],"128":[1,2,6,62,63,65,72],"12800":16,"128x":[2,6],"13":[46,80],"135":16,"14":46,"144v":1,"14763":77,"15":[2,6,46,70,73,75,77],"1500":72,"152":77,"16":[1,2,6,16,46,65,66,75],"1600":1,"16384":[16,19,22],"1678892742599":34,"16kb":66,"16x":[2,6],"17":75,"1700":[13,49],"18":[65,69,75],"18688":65,"187":75,"192":65,"1b":65,"1f":[18,23,49,50,67],"1s":[10,33,34,51,52,59,62,63,67,70,72,74,76,78],"2":[1,2,3,6,8,10,13,14,15,19,22,23,24,25,26,28,46,49,50,52,55,58,59,62,63,65,66,67,69,72,75,78],"20":[3,8,16,24,75,77],"200":[33,72,75],"200m":[1,76],"2013":75,"20143":19,"2016":75,"2019":75,"2023":70,"2046":65,"20df":19,"20m":13,"21":[8,13,75],"224":[61,62,63],"23":[70,75],"23017":48,"239":[61,62,63],"23s17":48,"240":16,"2400":1,"2435":72,"2494":77,"25":[23,46,75,77],"250":1,"250136576":65,"250m":[18,43],"255":[12,46,51,61,62,63,65,66,69],"256":[3,65,69,72],"2566":75,"256v":1,"25c":77,"264":72,"265":72,"2657":77,"273":77,"298":77,"299":75,"2f":[13,23,77],"2pi":[19,22],"2s":78,"2x":[2,6],"3":[1,2,6,7,8,13,14,15,29,33,46,48,50,62,63,65,69,73,75,77,78],"30":[70,75,77],"300f":8,"300m":52,"31":[13,51,77],"313":75,"32":[1,2,6,13,65],"320":[8,16],"32x":[2,6],"33":13,"3300":[1,49,77],"3380":77,"34":[2,6,8],"3422":77,"3435":77,"3453":77,"3484":69,"3484_datasheet":69,"35981":77,"36":[8,13],"360":[12,19,22,51,69],"36005":19,"37":13,"370":75,"376":75,"37ma":46,"38":13,"39":13,"3940":77,"3950":77,"3986":65,"3f":[1,2,6,10,18,19,22,34,46,48,52,66,67,77,78],"3s":3,"4":[1,2,6,8,10,13,14,19,22,34,51,53,62,63,65,66,69,70,75,76,80],"40":[16,75,77],"400":36,"4096":[18,78],"42":[13,65,73],"43173a3eb323":19,"458":75,"461":75,"475":1,"48":[23,65,66],"4886":46,"48b":66,"490":1,"4\u03c0":75,"4b":65,"4kb":66,"4x":[2,6],"5":[1,2,3,6,8,13,14,19,22,23,26,28,33,34,39,46,48,51,55,59,62,63,65,66,69,73,75,77],"50":[16,46,50,66,69,75,77],"5000":[50,62,63,72],"5001":72,"500m":[3,5,13,23,36,39,40,49,52,59,76,78],"50c":77,"50m":[19,22,45,46,48,51,68,69],"50u":69,"512v":1,"53":16,"53229":77,"55":75,"571":75,"5f":[19,22,50,51,55,63,69],"5m":67,"5s":23,"6":[1,2,6,7,12,13,14,34,62,63,65,66,69,75,81],"60":[16,19,22,75],"61067330":24,"614":75,"61622309":66,"626":75,"64":[1,2,6,69],"649ee61c":19,"64kb":66,"64x":[2,6],"6742":75,"68":75,"7":[2,6,8,48,65,68,73,75,77],"70":75,"720":[19,22],"72593":34,"730":75,"75":[46,77],"792":75,"8":[1,2,6,12,15,23,34,46,48,59,65,66,70,75],"80":77,"80552":77,"817":75,"8192":18,"85":77,"8502":77,"854":75,"8554":72,"860":1,"8f9a":19,"8x":[2,6],"9":[18,46,69,75],"90":75,"920":1,"93hart_equ":77,"9692":11,"9781449324094":65,"9907":77,"999":11,"9e":65,"9e10":19,"9th":[2,6],"\u00b2":75,"\u00b3\u2074":75,"\u00b9":75,"\u00b9\u00b2f":75,"\u00b9\u00b9m\u00b3":75,"\u03ba":77,"\u03c9":[75,77],"\u16a0":75,"\u16a1":75,"\u16a2":75,"\u16a3":75,"\u16a4":75,"\u16a5":75,"\u16a6":75,"\u16a7":75,"\u16a8":75,"\u16a9":75,"\u16aa":75,"\u16ab":75,"\u16ac":75,"\u16ad":75,"\u16ae":75,"\u16af":75,"\u16b0":75,"\u16b1":75,"\u16b2":75,"\u16b3":75,"\u16b4":75,"\u16b5":75,"\u16b6":75,"\u16b7":75,"\u16b8":75,"\u16b9":75,"\u16ba":75,"\u16bb":75,"\u16bc":75,"\u16bd":75,"\u16be":75,"\u16bf":75,"\u16c0":75,"\u16c1":75,"\u16c2":75,"\u16c3":75,"\u16c4":75,"\u16c5":75,"\u16c6":75,"\u16c7":75,"\u16c8":75,"\u16c9":75,"\u16ca":75,"\u16cb":75,"\u16cc":75,"\u16cd":75,"\u16ce":75,"\u16cf":75,"\u16d0":75,"\u16d1":75,"\u16d2":75,"\u16d3":75,"\u2076":75,"\u2077":75,"abstract":[37,60,61,76],"boolean":24,"break":74,"byte":[1,2,3,6,15,16,19,22,23,24,34,46,48,51,59,61,62,63,65,66,68,69,70,72],"case":[19,22,63,69],"char":[24,43,62,72,76],"class":27,"const":[1,2,3,5,6,7,8,10,11,12,13,14,15,16,18,19,22,23,24,25,26,28,29,31,33,34,36,38,39,40,42,43,44,45,46,48,49,50,51,52,53,55,57,58,61,62,63,65,66,67,68,69,70,72,76,77,78,80,81],"default":[1,2,6,11,13,15,16,33,34,39,40,43,45,46,48,51,53,55,57,58,59,68,69,70,72,73,80,81],"do":[2,5,10,13,14,23,34,43,59,72,73,74,75,76],"enum":[1,2,6,10,13,15,34,39,46,48,49,51,52,65,68,77],"export":75,"final":[13,19,22,36,39,40,45,46,48,59,65,66,68,70,72,74],"float":[1,2,3,5,6,7,8,10,12,13,15,18,19,22,23,25,26,28,29,33,34,46,48,49,50,51,52,53,54,55,58,59,61,62,63,67,69,74,76,77,78],"function":[1,2,3,5,6,7,8,10,11,12,13,15,16,18,19,22,23,24,25,26,27,28,29,33,34,35,36,37,38,39,40,42,43,44,45,46,48,49,50,51,52,53,54,55,57,58,59,60,61,62,63,65,66,67,69,72,74,76,77,78,80,81],"goto":69,"int":[1,2,5,7,10,11,13,16,18,19,22,23,24,31,46,50,51,58,59,61,62,63,65,66,67,68,69,72,73,74,75,76,77,78],"long":[11,72,75,78],"new":[5,7,8,10,11,16,23,25,26,28,29,31,39,40,45,46,49,50,51,52,55,57,58,65,66,67,68,72,76,78],"null":43,"public":[1,2,3,5,6,7,8,10,11,12,13,15,16,18,19,22,23,24,25,26,28,29,31,33,34,36,38,39,40,42,43,44,45,46,48,49,50,51,52,53,55,57,58,59,61,62,63,65,66,67,68,69,70,72,74,76,77,78,80,81],"return":[1,2,3,5,6,7,8,10,11,12,13,15,16,18,19,22,23,24,25,26,28,29,31,33,34,36,38,39,40,42,43,44,45,46,48,49,50,51,52,53,55,57,58,59,61,62,63,65,66,67,68,69,70,72,74,76,77,78,81],"short":[13,65],"static":[1,2,6,8,10,11,16,19,22,23,24,33,34,36,39,40,43,45,46,48,50,51,54,59,61,62,63,65,66,68,69,70,74,76,77,78],"super":14,"switch":[2,6,15,69],"throw":[11,24],"true":[1,2,6,7,8,10,11,13,14,15,16,18,19,22,23,24,31,33,34,36,39,40,43,44,45,46,48,49,50,51,52,57,61,62,63,65,66,67,68,69,70,72,74,75,76,78,81],"void":[2,3,6,7,8,10,11,13,15,16,19,22,23,25,28,31,33,34,36,39,40,43,44,45,46,48,49,50,51,52,55,57,58,61,62,63,65,66,67,68,69,70,72,74,77,78,81],"while":[10,11,16,23,43,50,52,59,72,74,76,81],A:[2,6,7,10,13,23,30,31,48,51,62,65,68,72,75,78],And:51,As:23,By:11,For:[11,15,29,34,68,72,75,76],IN:34,IT:[24,66],If:[2,5,6,7,11,12,23,33,34,36,44,50,57,61,62,63,65,72,74,76,78,80,81],In:[13,23,46],Is:[61,62,63,76],It:[2,3,5,6,8,10,11,13,14,19,22,23,24,31,33,34,36,43,45,46,50,51,67,69,72,74,75,76,77],NOT:[2,13],No:[2,6,33,52,65],Not:24,ON:11,ONE:1,On:[2,33,43],The:[1,2,3,5,6,7,8,9,10,11,12,13,14,15,18,19,22,23,24,25,26,28,29,30,31,32,33,34,36,38,39,40,42,43,45,46,48,49,50,51,52,53,54,55,57,58,59,60,61,62,63,65,66,67,68,69,70,72,73,74,75,76,77,78,80,81],There:[19,21,22,27,35,47,59,74],These:[2,6,9,69,72],To:[23,68,72],Will:[7,19,22,46,57,59,61,66,72,74],With:49,_1:[39,40,43,45,59,68,70],_2:[39,40,43,45,59,68,70],_3:[39,40,43,45,68,70],_4:[39,40,68,70],_5:40,_:14,__csv_documentation__:14,__gnu_linux__:[14,73],__linux__:11,__serialization_documentation__:73,__state_machine_documentation__:74,__tabulate_documentation__:75,__unix__:75,__unnamed11__:68,__unnamed13__:68,__unnamed7__:65,__unnamed9__:65,_activest:74,_build:[31,68,70],_cli:11,_event_data:74,_in:11,_out:11,_parentst:74,_rate_limit:52,_really_:51,a0:[48,49],a1:49,a2:48,a_0:25,a_1:25,a_2:25,a_gpio:18,a_pin:48,ab:[57,77],abi:[21,37],abi_encod:18,abil:[52,59],abl:[31,49,62,74,78],about:[11,14,59,63,65,66,69,74,75,77],abov:[2,6,11,19,22,23,46,51,69,74],absolut:[19,22,24,65],absolute_uri:65,abxi:13,ac:65,acceler:28,accept:[31,62,72],access:[18,24,37,61,66,74,79,81],accord:[24,46,48,49,50,52,72],accordingli:[10,13],accumul:[18,19,22,68],accur:67,ack:[2,6],acknowledg:[36,62],across:[3,33],act:65,action:[74,76],activ:[2,6,7,10,13,48,65,66,72,74],active_high:[2,6,48],active_level:10,active_low:[2,6,13],activeleaf:74,activelevel:10,actual:[1,2,6,13,16,23,33,34,65,72,74,77],actual_celsiu:77,actual_kelvin:77,actuat:[34,35],ad0:46,ad1:46,ad:[1,2,8,13,23,58,65,72],adafruit:[13,34,46,65,69],adc1:77,adc:[13,18,34,37,67],adc_atten_db_11:[3,5,13,49,77],adc_channel_1:13,adc_channel_2:13,adc_channel_6:[3,5],adc_channel_7:[3,5,77],adc_channel_8:49,adc_channel_9:49,adc_channel_t:[3,5],adc_conv_single_unit_1:[3,77],adc_decap:6,adc_digi_convert_mode_t:3,adc_typ:0,adc_unit_1:[3,5,77],adc_unit_2:[13,49],adc_unit_t:5,adcconfig:[3,5,13,49,68,70,77],add:[7,12,16,58,61,62,63,72],add_multicast_group:[61,62,63],add_publish:23,add_row:75,add_scan:72,add_subscrib:[10,23],addit:[3,12,15,37,49,58,76],addition:[2,6,10,11,72],addr:[34,61,66],address:[1,2,6,16,19,22,31,34,36,39,40,43,45,46,48,61,62,63,65,66,68,70,72,81],adjust:[33,62],ads1015:1,ads1015config:[1,13],ads1015rat:1,ads1115:1,ads1115config:1,ads1115rat:1,ads1x15:[4,13,37],ads7128:[2,6],ads7138:[4,37],ads_read:[1,2,13],ads_read_task_fn:[1,2,13],ads_task:[1,2,13],ads_writ:[1,2,13],adventur:14,advis:57,ae:65,affect:[19,22,72],affin:76,after:[2,6,15,43,49,51,57,61,62,63,66,69,72,78,81],again:[23,66,74],agent:72,alert:[2,6],alert_1000m:34,alert_750m:34,alert_log:2,alert_pin:2,alert_task:2,alertlog:[2,6],algorithm:[7,8,9,12,75],alias:[19,22],align:[51,75],aliv:31,all:[2,5,6,7,11,23,24,34,46,51,52,57,59,63,68,69,72,74],all_mv:[2,6],all_mv_map:6,alloc:[3,15,59,76],allocatingconfig:[15,16],allocation_flag:15,allow:[1,2,3,5,6,7,8,11,13,15,18,19,22,33,34,36,39,40,43,45,46,48,49,50,51,55,57,60,61,62,63,67,68,69,70,72,74,76,77],along:[54,66],alow:55,alpaca:[23,37],alpha:[50,55],alreadi:[23,24,25,62,63,72,76,78],also:[2,6,11,13,14,15,16,19,22,23,24,33,34,46,59,69,72,74,75,76],alt:43,alter_unit:[3,77],altern:[2,3,24,40,65],alwai:[3,5,7,8,19,22,24,34,57,59,72,74],am:19,amount:[3,24,57,58],amp:8,amplitud:55,an:[0,1,2,5,6,7,10,11,12,13,18,19,22,23,24,25,26,28,29,30,32,33,34,40,43,44,45,46,48,49,51,53,55,57,59,61,62,63,65,68,69,72,74,75,76,78,81],analog:[2,3,5,6,34,49],analog_input:[2,6],analogev:2,analogjoystickconfig:13,analyz:59,anaolg:13,android:[65,66],angl:[8,19,22],angle_filt:8,angle_openloop:8,angle_pid_config:8,ani:[2,5,6,7,8,10,11,14,19,22,31,46,51,61,62,63,66,69,72,74,75,76,78],anonym:[23,65],anoth:[10,11,23,24,58],answer:11,any_edg:10,anyth:[14,52,59,73,74,75],anywher:11,ap:[37,79,81],ap_mac:81,apa102_start_fram:51,apa:65,api:37,app:[65,66],app_main:59,appear:65,append:[2,6,72],appli:[3,46,49],applic:[37,72,75],appropri:[7,62,63],approxim:[2,6,49,54],ar:[2,4,6,7,8,9,11,13,16,17,18,21,23,24,27,33,34,35,46,47,48,49,51,52,57,59,60,62,65,66,67,68,69,72,73,74,76,78,79],arari:73,arbitrari:11,area:[15,16],arg:52,argument:[31,52,68,70],arithmet:25,around:[3,5,7,10,11,14,15,24,36,38,42,44,49,50,52,53,55,57,61,69,73,74,75,76],arrai:[1,2,6,16,19,22,25,28,29,34,46,48,53,61,62,63,66,73],arrow:11,articl:77,artifact:69,as5600:[21,37],as5600_ds000365_5:19,as5600_read:19,as5600_writ:19,asid:50,ask:76,aspect:11,asset:34,assign:58,associ:[0,3,5,10,13,15,16,18,23,38,42,44,46,48,49,50,53,58,59,61,62,63,76],associt:[61,62,63],assum:[11,51,62,63,77],assumpt:[19,22],asymmetr:67,ate:24,atom:[8,13],attach:[16,46],attenu:[0,3,5,13,49,77],attribut:[1,2,6,19,22,39,40,43,45,46,48,51,65,66,68,69,70],audio:34,audiovib:34,authent:[31,65],auto:[1,2,3,5,6,8,10,11,13,14,16,18,19,22,23,24,33,34,36,39,40,43,45,46,48,49,50,51,52,59,62,63,66,67,68,69,70,73,74,75,76,77,78],auto_init:[2,6,19,22,34,36,46,48,66],auto_seq:[2,6],auto_start:[43,78],autoc:34,automat:[2,6,11,12,19,22,36,43,46,66,72,75,76,78],autonom:[2,6],autostop:76,avail:[3,18,23,58,66],avdd:[2,6],avdd_volt:[2,6],averag:[2,6,12],aw9523:[37,47],aw9523_read:46,aw9523_writ:46,aw9523b:46,awaken:14,ax:[13,49],axi:[2,8,13,49],b0:65,b1:65,b25:77,b2:65,b3:65,b4:65,b7:48,b:[7,11,12,13,14,18,30,43,46,48,51,55,59,65,66,68,69,73,76,77],b_0:25,b_1:25,b_2:25,b_bright:46,b_down:46,b_gpio:18,b_led:46,b_pin:48,b_up:46,back:[11,15,24,62,63,66,69],backbon:[31,68,70],background:[33,78],background_color:75,backlight:[15,16,43],backlight_on_valu:[15,16],backlight_pin:[15,16],backspac:11,bad:[12,77],band:65,bandwidth:62,base:[8,12,19,22,25,26,27,28,29,33,50,51,59,61,66,67,69,72,74,75,77],base_encod:69,basi:[2,6],basic:11,batch:75,batteri:23,batteryst:23,bcd2byte:70,bcd:70,becaus:[8,19,22,24,69,75,78],becom:6,been:[2,6,11,25,34,43,51,62,63,66,68,69,72,76,78],befor:[2,6,18,24,33,51,62,66,72,74,76,78,81],beg:24,begin:[11,23,24,62,63,65,76],behavior:[33,67],being:[1,2,3,5,6,8,11,13,18,19,22,23,34,36,39,40,45,46,48,49,51,67,68,69,70,74,76,77],belong:63,below:[2,6,8,74,75],beta:[50,55,77],better:[28,67],between:[12,15,23,32,53,57,66],beyond:[11,14,69,75],bezier:[37,56],bezierinfo:53,bgr:51,bi:66,bia:33,biequad:25,binari:24,bind:[31,39,40,43,45,52,59,62,63,68,70,72],biquad:[26,27,29,37],biquad_filt:25,biquadfilt:25,biquadfilterdf1:25,biquadfilterdf2:[19,22,25,26,29],biquadrat:25,bit0:69,bit1:69,bit:[2,6,11,13,16,46,48,50,65,66,68],bitfield:[2,6],bitmask:2,bldc:[35,37],bldc_driver:7,bldc_haptic:33,bldc_motor:[8,9],bldc_type:8,bldcdriver:[7,8],bldchaptic:33,bldcmotor:[8,19,22,33],ble:[65,66],ble_appear:66,ble_radio_nam:66,ble_rol:66,blend:12,blerol:[65,66],blob:[11,16],block:[2,3,5,6,11,33,50,51,62,63,69,72,76,78],block_siz:69,blue:[12,14,51,69,75],bluetooth:65,bm8563:[37,68,71],board:[16,68],bob:[8,31,68,70],bodmer:16,bold:75,bool:[1,2,6,7,8,10,11,13,15,16,18,19,22,23,24,31,33,34,36,39,40,43,44,45,46,48,49,50,51,57,61,62,63,65,66,67,68,69,70,72,74,76,78,81],boot:43,border_bottom:75,border_color:75,border_left:75,border_right:75,border_top:75,both:[2,3,6,13,14,25,33,45,46,49,50,57,65,69,75],both_unit:[3,77],bother:45,bottom:11,bound:[33,62,69],bounded_no_det:33,box:[13,45,66],boxart:14,bp:2,br:65,breakout:68,breathing_period:50,breathing_start:50,bredr:65,bright:[15,46,51],bro:14,broadcast:[63,65],broken:72,brushless:[7,8,9],bs:23,bsp:16,bt:65,btappear:[65,66],bteir:65,btgoep:65,btl2cap:65,btspp:65,btssp_1_1:65,bttype:65,bu:[2,6,16,36,39,68],budget:75,bufer:76,buffer:[2,3,6,10,15,23,62,69,72,73,76],buffer_s:63,build:[27,37,72],built:[14,62,73,74,75],bundl:13,buscfg:16,busi:63,butterworth:[27,37],butterworth_filt:26,butterworthfilt:[19,22,26,29],button:[2,13,37,38,40,42,44,45,46,68],button_2:10,button_component_nam:10,button_st:[45,68],button_top:10,buttonst:[68,70],buzz1:34,buzz2:34,buzz3:34,buzz4:34,buzz5:34,byte2bcd:70,byte_ord:51,byteord:51,bytes_encod:69,bytes_encoder_config:69,bytes_written:[10,73],c:[7,11,14,16,23,24,37,65,69,73,75,77],c_str:24,cach:[40,72],calcul:[2,6,8,33,77],calibr:[5,8,34,49],call:[2,3,5,6,10,11,12,13,15,18,19,22,23,33,34,40,43,45,46,49,51,52,59,61,62,63,66,67,68,69,72,74,76,78,80,81],call_onc:23,callback:[1,2,3,5,6,8,10,13,15,18,19,22,23,34,36,39,40,43,45,46,48,49,50,51,59,60,61,62,63,66,67,68,69,70,72,74,76,77,78],callback_fn:[76,78],camera:72,can:[2,6,7,8,9,10,11,12,13,15,16,18,19,22,24,31,32,33,34,43,45,49,50,51,52,53,57,59,62,63,65,66,67,69,72,73,74,75,76,77,78,80],can_chang:50,cannot:[24,62,66,72,73],capabl:[46,65,66],capacit:[39,45],captain:75,captur:[2,6,48],carrier:65,carrier_data_ref:65,carrierpowerst:65,catalog:77,caus:[72,74],caution:11,cb:[16,23,72],cc:66,cdn:[46,69],cell:[14,75],celsiu:77,center:[13,33,49,57,75],central:65,central_onli:65,central_peripher:65,certain:[33,74],cf:65,ch04:65,ch0:[2,6],ch1:[2,6],ch2:[2,6],ch3:[2,6],ch4:[2,6],ch5:[2,6],ch6:[2,6],ch7:[2,6],chang:[8,10,12,33,46,48,50,52,55,67,72,74],change_gain:67,channel:[0,1,2,3,5,6,7,12,13,18,49,50,69,72,77,80,81],channel_id:[2,6],channel_sel:[2,6],channelconfig:50,charact:11,characterist:75,chart:[59,75],chdir:24,check:[2,7,8,10,24,31,33,50,61,62,68,72,78,81],child:74,childstat:74,chip:[1,2,3,6,18,21,40,46,47,48,51,66,70,77],choos:7,chose:77,chrono:[1,2,6,8,10,15,19,22,34,43,46,48,50,51,52,59,61,62,63,67,69,74,76,77,78],chrono_liter:[1,2,6,13,34],chunk:65,cin:[11,74],circl:49,circuit:77,circular:49,clamp:[7,12,67,69],clang:77,class_of_devic:65,classic:65,clean:[24,62,76],cleanup:[24,61],clear:[2,11,16,18,46,66,67,72],clear_event_high_flag:2,clear_event_low_flag:2,clear_lin:11,clear_pin:46,clear_screen:11,clear_to_end_of_lin:11,clear_to_start_of_lin:11,cli:[37,74],client:[31,32,37,60,61],client_socket:[62,63],client_task:[62,63],client_task_fn:[62,63],clifilesesson:11,clint:75,clisess:11,clk_speed:[1,2,6,13,19,22,34,36,46,48,66],clock:[2,6,36,51,65,69],clock_spe:16,clock_speed_hz:16,clock_src:69,close:[8,9,19,22,24,33,62,72],clutter:74,co:[51,69],coars:33,coarse_values_strong_det:33,code:[1,2,4,6,8,9,11,16,17,18,19,22,23,24,34,39,40,43,45,46,48,49,52,59,60,65,66,67,68,69,72,73,74,75,76,78,79],coeffici:[25,28,30,55,77],collect:[2,72],color:[11,15,16,37,51,69,75],color_data:15,color_map:16,column:[75,77],column_separ:75,com:[2,6,7,8,11,14,16,19,24,25,29,33,34,46,52,63,65,66,69,72,74,75,77,80,81],combin:[61,62,63],combo:61,come:63,comma:14,command:[8,16,31,37],common:[13,16,34,65],common_compon:11,commun:[1,2,6,13,19,22,34,39,40,43,45,46,48,62,63,66,68,70],compat:72,complet:[2,6,11,14,34,50,65,72,75,76],complex:76,complex_root:74,compon:[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,18,19,20,21,22,23,24,25,26,28,29,30,31,33,34,35,36,37,38,39,40,42,43,44,45,46,47,48,49,50,51,52,53,54,55,57,58,59,61,62,63,65,66,67,68,69,70,72,73,74,75,76,77,78,80,81],compos:65,comput:[12,19,22,32,57,65,67,77],compute_voltag:77,condit:[18,36,50,76],condition_vari:[1,2,3,5,6,8,13,18,19,22,34,36,39,40,45,46,48,49,51,66,67,68,69,70,74,76,77],conf:[3,5],config:[1,2,3,5,6,7,8,10,13,15,18,19,22,24,26,28,29,33,34,36,38,39,40,42,43,44,45,46,48,49,50,51,52,53,55,57,59,61,62,63,65,66,67,68,69,70,72,76,77,78,80,81],config_bt_ble_en:66,config_esp32_wifi_nvs_en:[80,81],config_esp_maximum_retri:81,config_esp_wifi_password:[66,80,81],config_esp_wifi_ssid:[66,80,81],config_freertos_generate_run_time_stat:59,config_freertos_use_trace_facil:59,config_hardware_box:16,config_hardware_ttgo:16,config_hardware_wrover_kit:16,config_rtsp_server_port:72,configur:[0,1,2,3,5,6,7,8,10,11,13,15,16,18,19,22,24,26,28,29,33,34,36,38,39,40,42,43,44,45,46,48,49,50,51,52,53,55,57,59,61,62,63,65,66,67,68,69,70,72,73,74,76,77,78,81],configure_alert:2,configure_global_control:46,configure_l:46,configure_pow:7,configure_stdin_stdout:[11,74],confirm:65,confirm_valu:65,connect:[6,8,10,13,31,34,48,50,62,65,72,80,81],connect_callback:81,connect_config:62,connectconfig:62,consecut:2,consol:75,constant:[67,75],constexpr:[1,2,6,16,19,22,33,36,39,40,43,45,46,48,65,66,68,69,70,73],construct:[1,2,6,10,11,12,19,20,22,26,29,34,36,39,46,48,52,53,55,59,61,66,68,72,76,78],constructor:[2,6,11,12,23,33,40,43,45,46,51,52,58,61,69,70,72,77],consum:74,contain:[0,10,11,12,13,15,16,18,23,24,30,33,38,42,44,53,58,59,63,65,66,67,68,72,73,74,81],content:[24,75],context:[23,74,78],continu:[2,4,6,11,24,34,37,63,76,77],continuous_adc:3,continuousadc:[3,77],control:[2,6,7,8,9,16,19,22,23,31,33,34,37,41,43,46,48,50,51,53,65,67,68,72],control_point:53,control_socket:72,controller_driv:16,conveni:[11,13,14,19,22,50,61,73,74,75],convers:[1,2,3,6,12,19,22,49,61],convert:[2,5,6,7,8,12,13,19,22,23,24,49,57,61,66,70,72,77],convert_mod:[3,77],convieni:[53,55],cool:52,coolei:75,coordin:[16,39,40,44],copi:[11,12,24,58,69,74,76],copy_encod:69,core:[10,65,76,78],core_id:[8,10,76,78],core_update_period:8,corner:[16,75],correct:[8,74],correspond:[2,6,16,34,46,68,77],could:[2,6,12,14,19,24,39,40,67,73,74,75],couldn:[23,24],count:[1,2,6,8,10,18,19,22,34,46,48,50,51,52,59,67,69,76,77],counter:[18,19,22],counts_per_revolut:[18,19,22],counts_per_revolution_f:[19,22],counts_to_degre:[19,22],counts_to_radian:[19,22],coupl:[23,49],cout:[11,75],cplusplu:11,cpp:[24,37,52,66,72],cpprefer:[24,52],cpu:59,cr:72,crd:18,creat:[2,8,10,11,12,13,14,16,18,19,22,24,31,33,49,51,52,57,59,62,63,65,66,67,69,72,74,75,76,77,80,81],create_directori:24,creation:[19,22],credenti:65,cross:[2,52,76,78],cs:8,cseq:72,csv2:14,csv:[2,6,24,37],csv_data:14,ctrl:11,cubic:53,curent:[61,74],current:[7,8,10,11,13,16,18,19,22,23,31,32,33,43,44,46,50,52,55,58,59,60,67,68,69,72,77,81],current_directori:31,current_duti:50,current_hfsm_period:74,current_limit:8,current_pid_config:8,current_sens:8,currentlyact:74,currentsensor:8,currentsensorconcept:8,cursor:[11,16],curv:53,custom:[15,23,24,34,69,73],cutoff:[8,26,28],cv:[1,2,3,5,6,8,13,18,19,22,23,34,36,39,40,45,46,48,49,50,51,62,66,67,68,69,70,74,76,77],cv_retval:76,cv_statu:76,cyan:75,cycl:[7,34,50,69],d2:13,d3:13,d4:13,d5:13,d6:13,d:[8,13,23,52,61,62,63,70],d_current_filt:8,dai:70,dam:77,daniele77:11,data:[0,1,2,3,5,6,8,10,12,13,14,15,16,19,22,23,24,25,26,28,29,31,34,36,39,40,43,44,45,46,48,49,51,59,61,62,63,65,66,68,70,72,73,74,77,81],data_address:66,data_command_pin:16,data_len:[1,2,6,13,19,22,34,36,39,45,46,48,68],data_s:69,data_sheet:77,data_str:23,dataformat:[2,6],datasheet:[19,34,46,66,69,77],datasheet_info:77,date:[3,24,68,70,75],date_tim:[24,70],datetim:[68,70],dav:65,db:77,dbm:65,dc:[7,8,9,16],dc_level_bit:16,dc_pin:16,dc_pin_num:16,de:23,dead_zon:7,deadband:[13,49,57],deadzon:49,deadzone_radiu:49,deal:65,debug:[8,52,66,74,76,78],debug_rate_limit:52,deck:43,decod:[8,19,22,39,40,43,66,68,72],dedic:13,deep:74,deep_history_st:74,deephistoryst:74,default_address:[1,2,6,19,22,34,39,43,45,46,48,68,70],default_address_1:40,default_address_2:40,defautl:55,defin:[23,51,57,69,72,73,74],definit:[20,23],deftail:68,degre:[18,19,22],deinit:[3,36,81],deiniti:36,del:69,delai:[8,25],delet:[5,11,13,18,24,69],delete_fn:69,delimit:14,demo:[11,16],depend:[3,33,57,69,74],depth:69,dequ:11,deriv:[67,74],describ:[15,16,57,62,65,72],descriptor:[61,62,63],deseri:[10,23,65,73],design:[13,19,22,33,35,38,42,43,44,51,72,74,77],desir:[0,7,33],destin:24,destroi:[1,2,3,5,6,7,8,10,13,18,19,22,31,34,36,39,40,45,46,48,49,51,67,68,69,70,72,74,76,77,78],destruct:76,destructor:[11,23,33,69,72,76],detail:[8,33,62,65],detect:[10,11,39],detent:33,detent_config:33,detentconfig:[33,68,70],determin:[19,22],determinist:3,dev:16,dev_addr:[1,2,6,13,19,22,34,36,45,46,48],dev_kit:16,devcfg:16,develop:[8,16,65,74],devic:[1,2,6,16,19,22,33,34,36,38,39,42,44,45,46,48,65,66,68,80],device_address:[1,2,6,19,22,34,36,46,48],device_class:65,devkit:16,diagno:34,diagnost:34,did_pub:23,did_sub:[10,23],differ:[2,6,16,19,20,21,22,23,25,27,34,47,50,51,52,66,67,69,74],digial:28,digit:[2,6,25,26,29],digital_biquad_filt:[25,29],digital_input:[2,6],digital_output:[2,6],digital_output_mod:[2,6],digital_output_valu:[2,6],digitalconfig:13,digitalev:2,dim:46,dimension:58,dir_entri:24,dirac:75,direct:[5,13,25,46,48,66],directli:[2,6,7,9,21,34,35,51,53],director:75,directori:[24,31,68,70],directory_iter:24,directory_list:24,disabl:[2,6,7,8,11,18,19,46,66,69],disconnect:[72,81],disconnect_callback:81,discontinu:57,discover:65,discuss:[11,66],displai:[14,37,65,72],display_driv:[16,17],display_event_menu:74,distinguish:73,distribut:[23,57],divid:[12,25,58,67,69,77],divider_config:77,divis:77,dma:[3,69,77],dma_en:69,dnp:[2,6],doc:[7,11,15,31,68,69,70,77,80,81],document:[11,14,19,69,73,74,75],doe:[3,5,7,11,14,18,19,22,24,31,33,46,48,51,61,68,72,73,74,75,78],doesn:[2,6,24],don:[1,2,3,5,6,8,13,18,19,22,23,34,36,39,40,45,46,48,49,51,59,62,63,66,67,68,69,70,74,76,77,78],done:[23,50,61,62,63],dot:58,doubl:[11,15],double_buff:15,double_click:34,down:[11,13,42,51,61,62,63,67,68,74,76],download:65,doxygen:[31,68,70],doxygenfunct:[31,68,70],drain:[2,6],draw:[15,16],drive:[2,8,23,34,35,46,69],driven:[33,35],driver:[1,2,6,8,9,11,13,15,17,19,22,35,36,37,38,40,42,44,45,46,48,51,66,68,70,72],driverconcept:8,drv2605:[35,37],drv:16,ds:[2,6,34],dsiplai:15,dsp:[25,28],dsprelat:[25,29],dt:70,dual:[13,65],dualconfig:13,dummycurrentsens:8,dump:75,durat:[1,2,6,8,10,15,19,22,33,34,46,48,50,51,52,59,61,62,63,67,69,74,76,77,78],duration0:69,duration1:69,dure:[66,67,74],duti:[7,50],duty_a:7,duty_b:7,duty_c:7,duty_perc:50,duty_resolut:50,dx:14,dynam:[8,33,55,66,67],dynamictask:76,e2:77,e:[11,24,34,51,55,65,69,74,77],each:[2,3,5,6,7,12,13,23,24,29,31,33,46,49,52,59,68,72,73],earli:[1,2,3,5,6,8,13,18,19,22,34,36,39,40,45,46,48,49,51,67,68,69,70,74,76,77],easili:[2,6,19,60,75,76],eastwood:75,ec:[1,2,6,10,13,19,22,23,24,34,36,39,40,43,45,46,48,66,68,70,72,73],eccentr:[34,35],ecm:34,ed:18,edg:[2,6,10,19,22,33,34,69],edit:11,edr:65,eeprom:66,effici:[6,14],eh_ctrl:66,eight:1,eir:65,either:[13,18,59,77],el_angl:8,elaps:[1,2,6,10,34,50,52,66,67,76,77,78],electr:[8,75],element:[5,58],els:[2,3,5,8,10,24,36,45,46,48,66,70,73,74,75,77],em:[10,23],emb:75,embed:75,embedded_t:75,emplace_back:66,empti:[34,51,65,72,80,81],empty_row:75,en:[7,11,24,25,26,29,31,52,61,62,63,65,66,68,69,70,77,80,81],enabl:[2,3,5,6,7,8,10,11,13,15,23,33,43,46,59,60,62,66,75,76,80,81],enable_if:[18,58],enable_reus:[61,62,63],encapsul:66,encod:[33,37,41,72],encode_fn:69,encoded_symbol:69,encoder_input:38,encoder_typ:20,encoder_update_period:[19,22],encoderinput:38,encodertyp:18,encrypt:65,end:[2,6,11,16,23,24,33,34,51,62,63,65,66,74,76],end_fram:51,endev:74,endif:[16,66,75],endl:[11,75],endpoint:[61,62,63],energi:65,enforc:[74,75],english:[46,65],enough:[11,76],ensur:[8,11,57,68,69,80,81],enter:[2,6,11,42,74],enterpris:65,entri:[59,74],enumer:[1,2,6,10,13,15,34,39,46,48,49,51,52,65,68,77],eoi:72,epc:65,equal:11,equat:[18,25,77],equival:[11,14,46,75],erm:[34,35],err:[1,2,6,13,19,22,24,34,46,48,66],error:[1,2,6,10,13,19,22,23,24,34,39,40,43,45,46,48,52,66,67,68,69,70,72,77],error_cod:[1,2,6,10,13,19,22,23,24,34,36,39,40,43,45,46,48,66,68,70,72,73],error_rate_limit:52,escap:42,esp32:[3,7,11,13,24,31,33,45,49,68,69,70,72,75,80,81],esp32s2:3,esp32s3:3,esp:[3,5,7,10,11,16,18,25,28,31,36,37,50,52,63,66,68,69,70,72,75,76,78,80,81],esp_bt_dev_get_address:66,esp_err_t:[16,69],esp_error_check:16,esp_lcd_ili9341:16,esp_log:52,esp_ok:[1,2,6,13,19,22,34,46,48,66,69],esphom:16,espp:[1,2,3,5,6,7,8,10,11,12,13,15,16,18,19,22,23,24,25,26,28,29,31,32,33,34,36,38,39,40,42,43,44,45,46,48,49,50,51,52,53,55,57,58,59,61,62,63,65,66,67,68,69,70,72,73,74,76,77,78,80,81],espressif:[7,11,16,28,63,69,80,81],estim:75,etc:[10,24,42,46,48,51,67,69,73],evalu:[53,55],even:[66,73,75],evenli:33,event1:23,event1_cb:23,event2:23,event2_cb:23,event:[2,6,10,11,37,66,74,81],event_callback_fn:[10,23],event_count:2,event_flag:2,event_high_flag:2,event_low_flag:2,event_manag:23,eventbas:74,eventdata:81,eventmanag:[10,23],everi:[15,19,22,52],everybodi:11,everyth:11,exactli:65,exampl:[4,9,17,60,79],exceed:81,excel:8,except:[11,24],exchang:65,execut:[11,23,74,76,78],exis:81,exist:[7,11,14,24,72,73,74,75],exit:[1,2,3,5,6,8,11,13,18,19,22,34,36,39,40,45,46,48,49,51,67,68,69,70,74,76,77],exitact:11,exitchildren:74,exitselect:74,exp:[55,59],expand:37,expir:78,explicit:[10,11,36,39,40,43,45,61,68,70,72,76,77,78],explicitli:[11,76],expos:[11,14,52,75],extend:65,extern:[2,6,11,34,49,65,74,75],external_typ:65,extra:[69,72],extra_head:72,exttrigedg:34,exttriglvl:34,f4:65,f:[11,24],f_cutoff:[26,28],f_sampl:[26,28],fa:65,facil:59,factor:[19,22,28,33,77],fade:50,fade_time_m:50,fahrenheit:77,fail:[1,2,6,10,13,19,22,34,36,39,45,46,48,66,68,73,81],fake:76,fall:[2,6,10,66,69],falling_edg:10,fals:[1,2,3,5,6,7,8,10,11,13,16,18,19,22,23,24,31,33,34,36,39,40,43,44,45,46,48,49,50,51,57,59,62,63,66,67,68,69,70,72,74,76,77,78,81],famili:[1,2,6],far:11,fast:[37,56,66],fast_co:54,fast_ln:54,fast_math:54,fast_sin:54,fast_sqrt:54,fastest:[19,22],fault:7,fclose:24,fe:65,featur:[2,11],feedback:[33,34,35],feel:8,few:[11,16,23,74],ff:65,fi:[80,81],field:[2,6,8,24,49,65,66,68,72],field_fal:66,field_ris:66,figur:[14,24,73,74,75],file2:24,file:[32,37],file_byt:24,file_cont:24,file_s:24,file_str:24,file_system:24,filenam:14,filesystem:31,fill:[16,25,28,44,49,61,62,63,66],filter:[3,5,8,18,19,22,30,37,77],filter_cutoff_hz:[19,22],filter_fn:[8,19,22],fine:33,fine_values_no_det:33,fine_values_with_det:33,finger563:74,finish:[11,33,69],first:[2,8,23,51,62,63,65,66,72,77,78],first_row_is_head:14,fish:11,fit:15,fix:77,fixed_length_encod:73,fixed_resistance_ohm:77,flag:[2,6,16,23,65,66,69],flip:57,floatrangemapp:49,flush:[15,16,24],flush_callback:[15,16],flush_cb:16,flush_fn:15,fmod:50,fmt:[2,3,5,6,11,13,14,16,18,19,22,23,36,39,40,43,45,46,48,49,50,59,62,63,66,67,68,69,70,72,73,74,75,76,77,78,81],foc:[7,8],foc_typ:8,foctyp:8,folder:[4,9,11,14,17,18,49,52,59,60,67,73,74,75,76,78,79],follow:[2,6,8,25,33,34,51,54,59,65,66,69,74,77],font_align:75,font_background_color:75,font_color:75,font_styl:75,fontalign:75,fontstyl:75,fopen:24,forc:[7,15],force_refresh:15,form:[25,26,72],format:[2,6,14,16,23,24,37,59,65,72,75,76,77],formula:77,forum:65,forward:11,found:[19,22,34,45,65,66],four:1,frac:[25,55,77],frag_typ:72,fragment:72,frame:[2,6,51,72],fread:24,free:[15,24,50,69,75],free_spac:24,freebook:[25,29],freerto:[10,59,76,78],frequenc:[3,5,19,22,26,28,33,50],frequency_hz:50,frequent:[15,67],from:[1,2,3,5,6,7,8,11,12,13,15,16,19,22,23,24,27,31,33,34,35,36,37,39,40,43,44,45,46,48,49,50,52,55,57,58,61,62,63,65,66,67,68,69,70,72,73,74,75,76,77,81],from_sockaddr:61,fs:24,fseek:24,ft5x06:[37,41],ftell:24,fthat:12,ftm:66,ftp:[37,65,72],ftp_anon:65,ftp_client_sess:31,ftp_ftp:65,ftp_server:31,ftpclientsess:31,ftpserver:31,fulfil:[19,22],full:[7,46,51,72],fulli:[34,74,76],fun:23,further:72,futur:[52,65,72],fwrite:24,g:[12,24,34,46,51,55,65,69,77],g_bright:46,g_down:46,g_led:46,g_up:46,gain:[1,33,67],game:65,gamepad:[65,66],gamma:[50,55],gate:7,gaussian:[37,50,56],gb:14,gbc:14,gener:[2,19,22,27,61,65,69,72,80,81],generatedeventbas:74,generic_hid:65,geometr:12,gestur:39,get:[1,2,3,6,7,8,10,11,12,13,14,15,16,18,19,22,23,24,31,33,38,39,40,42,43,44,45,46,48,49,50,51,55,59,61,62,63,65,66,67,69,70,72,73,74,75,76,77,81],get_accumul:[19,22],get_all_mv:[2,6],get_all_mv_map:[2,6],get_bright:15,get_button_input_devic:38,get_button_st:68,get_celsiu:77,get_config:67,get_count:[18,19,22],get_dat:70,get_data:72,get_date_tim:70,get_degre:[18,19,22],get_digital_input_valu:[2,6],get_duti:50,get_electrical_angl:8,get_encoder_input_devic:38,get_error:67,get_event_data:2,get_event_flag:2,get_event_high_flag:2,get_event_low_flag:2,get_fahrenheit:77,get_free_spac:24,get_ftm_length:66,get_head:72,get_height:72,get_histori:11,get_home_button_input_devic:44,get_home_button_st:[40,45],get_id:65,get_info:76,get_input_devic:42,get_integr:67,get_interrupt_captur:48,get_interrupt_statu:66,get_ipv4_info:[61,62,63],get_jpeg_data:72,get_kei:43,get_kelvin:77,get_mechanical_degre:[19,22],get_mechanical_radian:[19,22],get_mjpeg_head:72,get_mount_point:24,get_mv:[2,3,6,77],get_num_q_t:72,get_num_touch_point:[39,40,45],get_offset:[16,72],get_output:46,get_output_cent:57,get_output_max:57,get_output_min:57,get_output_rang:57,get_packet:72,get_partition_label:24,get_payload:72,get_pin:[46,48],get_posit:33,get_power_supply_limit:7,get_q:72,get_q_tabl:72,get_quantization_t:72,get_radian:[18,19,22],get_rat:3,get_remote_info:62,get_resist:77,get_revolut:18,get_root_path:24,get_rpm:[19,22],get_rpt_head:72,get_rtp_header_s:72,get_scan_data:72,get_session_id:72,get_shaft_angl:8,get_shaft_veloc:8,get_siz:65,get_stat:13,get_terminal_s:11,get_tim:70,get_total_spac:24,get_touch_point:[39,40,45],get_touchpad_input_devic:44,get_type_specif:72,get_used_spac:24,get_user_input:11,get_user_select:74,get_valu:[13,49],get_values_fn:49,get_vers:72,get_voltag:77,get_voltage_limit:7,get_width:72,getactivechild:74,getactiveleaf:74,getiniti:74,getinputhistori:11,getlin:11,getparentst:74,getsocknam:[61,62,63],getter:[58,72],gettimerperiod:74,gettin:49,gimbal:33,github:[11,14,16,33,53,63,66,69,72,74,75],give:[61,74,76],given:[2,6,23,26,68,72,74],glitch:18,global:[3,46],go:[23,24,74],goe:[2,6],gone:76,goodby:11,googl:66,got:[2,23,72,81],gotten:[11,81],gpio:[2,7,10,13,15,18,46,48,50,69],gpio_a:13,gpio_a_h:[7,8],gpio_a_l:[7,8],gpio_b:13,gpio_b_h:[7,8],gpio_b_l:[7,8],gpio_c_h:[7,8],gpio_c_l:[7,8],gpio_config:2,gpio_config_t:2,gpio_down:13,gpio_en:[7,8],gpio_evt_queu:2,gpio_fault:[7,8],gpio_i:13,gpio_install_isr_servic:2,gpio_intr_negedg:2,gpio_isr_handl:2,gpio_isr_handler_add:2,gpio_joystick_select:13,gpio_left:13,gpio_mode_input:2,gpio_mode_output:43,gpio_num:[10,51,69],gpio_num_10:43,gpio_num_12:70,gpio_num_14:70,gpio_num_18:[16,39,40,43,45],gpio_num_19:[16,36,68],gpio_num_22:[16,36,68],gpio_num_23:16,gpio_num_2:10,gpio_num_37:10,gpio_num_45:16,gpio_num_48:16,gpio_num_4:16,gpio_num_5:16,gpio_num_6:16,gpio_num_7:16,gpio_num_8:[39,40,43,45],gpio_num_nc:36,gpio_num_t:[15,16,36],gpio_pullup:13,gpio_pullup_dis:[2,6,36],gpio_pullup_en:[1,2,13,19,22,34,39,45,46,48,66,70],gpio_pullup_t:36,gpio_right:13,gpio_select:13,gpio_set_direct:43,gpio_set_level:43,gpio_start:13,gpio_up:13,gpio_x:13,gpo:66,grab:49,gradient:12,grai:52,graphic:12,gravit:75,grb:51,greater:52,green:[12,51,52,69,75],greengrass:75,grei:75,ground:13,group:[24,61,62,63,65],group_publ:65,gt911:[37,41],guarante:51,guard:74,gui:[15,16,59],guid:[11,80,81],h:[11,12,16,52,72],ha:[2,6,8,11,13,18,19,22,23,24,31,34,40,43,46,48,50,51,59,62,63,65,66,69,72,74,75,76,78,81],hack:11,half:[19,22,25],handl:[10,11,31,46,48,51,62,63,69,74,76],handle_all_ev:74,handle_res:11,handleev:74,handler:[2,10,63],handov:65,handover_vers:65,happen:[11,23],haptic:37,haptic_config:33,haptic_motor:33,hapticconfig:33,hardawr:50,hardwar:[8,18,28,46,50,51,72],harmless:78,hart:77,has_ev:74,has_q_tabl:72,has_stop:74,has_valu:[3,5,13,49,50,77],hash:65,have:[2,6,8,11,14,15,23,25,33,34,38,46,49,50,51,52,59,62,67,68,69,72,74,75,76,77,78,80,81],hc:65,heart:8,height:[11,15,16,72],hello:[11,66],hello_everysess:11,help:65,helper:61,henri:8,here:[11,14,19,23,34,46,48,66,67,74,75,78],hertz:36,hid:65,hid_dev_mod:66,hide_bord:75,hide_border_left:75,hide_border_right:75,hide_border_top:75,high:[2,3,6,7,10,15,18,33,43,48,59,69],high_level:10,high_limit:18,high_resolution_clock:[1,2,6,8,10,19,22,34,46,48,50,51,52,59,67,69,76,77],high_threshold_mv:2,high_water_mark:59,higher:[25,28],highlight:75,histori:[11,25,26,28,29,74],history_s:11,hmi:16,hold:[11,15,65,66],home:[38,40,44,45],hop:[61,62,63],horizont:75,host:[2,6,16,46,65,80],hot:77,hour:70,how:[8,14,15,18,67,73,74,75,77],howev:25,hpp:[0,1,2,3,5,6,7,8,10,11,12,13,14,15,16,18,19,20,22,23,24,25,26,28,29,30,31,33,34,36,38,39,40,42,43,44,45,46,48,49,50,51,52,53,54,55,57,58,59,61,62,63,65,66,67,68,69,70,72,73,74,75,76,77,78,80,81],hr:65,hs:65,hsfm:74,hsv:[12,51,68,69,70],html:[7,11,15,16,25,29,65,69,80,81],http:[2,6,7,8,11,14,15,16,19,24,25,26,29,33,34,46,52,53,61,62,63,65,66,69,72,74,75,77,80,81],http_www:65,https_www:65,hue:[12,51,69],human:[14,24,75],human_read:24,hz:[3,33],i2c:[4,19,21,22,34,37,39,40,43,45,46,47,48,51,66,68,70],i2c_cfg:[1,2,6,13,19,22,34,46,48,66],i2c_config_t:[1,2,6,13,19,22,34,46,48,66],i2c_driver_instal:[1,2,6,13,19,22,34,46,48,66],i2c_freq_hz:[1,2,6,13,19,22,34,46,48,66],i2c_master_read_from_devic:[1,2,6,13],i2c_master_write_read_devic:[19,22,34,46,48,66],i2c_master_write_to_devic:[1,2,6,13,19,22,34,46,48,66],i2c_mode_mast:[1,2,6,13,19,22,34,46,48,66],i2c_num:[1,2,6,13,19,22,34,46,48,66],i2c_num_0:[36,39,40,43,45,68,70],i2c_param_config:[1,2,6,13,19,22,34,46,48,66],i2c_port_t:36,i2c_read:34,i2c_scl_io:[1,2,6,13,19,22,34,46,48,66],i2c_sda_io:[1,2,6,13,19,22,34,46,48,66],i2c_timeout_m:[1,2,6,13,19,22,34,46,48,66],i2c_writ:34,i:[2,6,8,14,18,37,47,51,59,66,67,73,74,75,76,77],i_gpio:18,id:[2,6,10,31,34,65,72,76,78],ident:11,identifi:[34,65,72],idf:[3,5,7,10,11,36,37,50,52,63,69,80,81],ifs:24,ifstream:24,ignor:[11,18,23],iir:28,il:65,imag:72,imap:65,imax:46,imax_25:46,imax_50:46,imax_75:46,immedi:[74,76],imped:[7,75],impl:[26,29],implement:[2,6,7,8,9,11,12,25,26,28,29,31,32,33,53,54,55,58,65,72,74,78],implicit:[19,22],improv:11,impuls:28,inact:65,includ:[0,1,2,3,5,6,7,8,10,11,12,13,14,15,16,18,19,20,22,23,24,25,26,28,29,30,31,33,34,36,38,39,40,42,43,44,45,46,48,49,50,51,52,53,54,55,57,58,59,61,62,63,65,66,67,68,69,70,72,73,74,75,76,77,78,80,81],incom:62,incomplet:65,increas:[10,18,52,67],increment:[2,6,18,38,46],incur:15,independ:[49,58,75],index:[2,6,18,51,58,72,77],indic:[46,48,62,63,65,66,76],individu:[6,49,53],induct:8,infinit:28,info:[1,2,3,5,6,10,13,18,23,33,34,49,51,52,59,61,62,63,67,69,72,77,78],info_rate_limit:52,inform:[12,15,19,22,26,29,46,48,49,51,53,59,61,62,63,65,66,69,74,77,80,81],infrar:69,inherit:11,init:[34,36,49,61,62],init_ipv4:61,init_low_level:66,initail:[3,77],initi:[1,2,3,5,6,7,8,10,13,15,16,18,19,22,28,34,36,38,42,43,44,46,48,49,50,55,57,61,62,63,66,69,74,76,78,80,81],inlin:[1,2,3,5,6,7,8,10,11,13,15,16,18,19,22,23,24,25,26,28,29,31,33,34,36,38,39,40,42,43,44,45,46,48,49,50,51,52,53,55,57,58,59,61,62,63,65,66,67,68,69,70,72,74,76,77,78,80,81],inout:2,input:[2,6,8,10,11,13,19,22,25,26,28,29,33,34,37,40,46,48,49,57,70],input_delay_n:16,input_driv:[38,42,44],input_valu:2,inquiri:65,insert:11,insid:2,instal:[1,2,6,10,13,19,22,34,46,48,66],instanc:[23,24,75],instant:50,instanti:59,instead:[11,31,57,73,74],instruct:28,instrument:[2,6,34],int16_t:18,int8_t:73,integ:[7,18,54,61,66],integr:67,integrator_max:[8,67],integrator_min:[8,67],intend:[53,74,76],interact:[11,21,23,24,43,47,72],interest:[13,23],interfac:[7,9,10,15,21,24,31,33,34,36,37,40,43,46,47,48,51,68,69,72],interfer:33,intermedi:65,intern:[2,11,13,16,18,25,26,28,29,34,46,48,61,74],interpol:12,interrupt:[2,10,18,46,48,66,76],interrupt_typ:10,interrupttyp:10,interv:43,intr_typ:2,introduc:57,inttrig:34,invalid:[11,12],invalid_argu:11,invers:50,invert:[13,44,46,48,50,57],invert_color:16,invert_i:44,invert_input:57,invert_output:57,invert_x:44,invoc:67,io:[15,16,24,37,53,65],io_conf:2,io_num:2,ip2str:81,ip:[31,61,62,63,72,81],ip_add_membership:[61,62,63],ip_address:[31,62,63,72],ip_callback:81,ip_event_got_ip_t:81,ip_evt:81,ip_info:81,ip_multicast_loop:[61,62,63],ip_multicast_ttl:[61,62,63],ipv4:61,ipv4_ptr:61,ipv6:61,ipv6_ptr:61,ir:69,irdaobex:65,is_a_press:13,is_act:72,is_al:31,is_b_press:13,is_charg:23,is_clos:72,is_complet:72,is_connect:[31,62,72,81],is_dir:24,is_directori:24,is_down_press:13,is_en:[7,8],is_fault:7,is_floating_point:58,is_left_press:13,is_multicast_endpoint:63,is_passive_data_connect:31,is_press:[10,13,68],is_right_press:13,is_run:[33,76,78],is_select_press:13,is_start:76,is_start_press:13,is_up_press:13,is_valid:[61,62,63],isr:[2,10],issu:11,istream:11,it_st:66,ital:75,item:[14,24],iter:[16,23,24,62,63,76,78],its:[2,3,6,19,22,23,31,33,46,48,55,59,61,62,63,66,67,74,80],itself:[15,23,38,42,44,72,76],j:75,join:[61,62,63],josh:75,joybonnet:[1,13],joystick:[2,13,37,65],joystick_config:13,joystick_i:13,joystick_select:13,joystick_x:13,jpeg:72,jpeg_data:72,jpeg_fram:72,jpeg_frame_callback_t:72,jpeg_head:72,jpegfram:72,jpeghead:72,jpg:14,js1:49,js2:49,jump:57,june:75,just:[2,13,19,22,23,65,69,72,73,74,77],k:[11,77],k_bemf:8,kbit:66,kd:[8,33,67],kd_factor_max:33,kd_factor_min:33,keep:78,keepal:62,kei:[11,43,65,66,72],kelvin:77,key_cb:43,key_cb_fn:43,keyboard:[11,37,41,65],keypad:[37,41,43],keypad_input:42,keypadinput:42,kg:75,ki:[8,67],kind:[20,74],know:[15,19,22,23,76],known:[65,74],kohm:48,kp:[8,33,67],kp_factor:33,kv:8,kv_rate:8,l:11,label:[16,24],lack:24,lambda:[1,2,6,13,19,22,34,46,48,52,66,77],landscap:[15,16],landscape_invert:15,larg:72,larger:[3,11,72],last:[13,18,40,45,49,51,65,67,68,74],last_button_st:68,last_it_st:66,last_unus:13,latch:69,later:[7,16,18,78],latest:[7,11,44,49,59,67,69,77,80,81],launch:65,lazi:14,lcd:16,lcd_send_lin:16,lcd_spi_post_transfer_callback:16,lcd_spi_pre_transfer_callback:16,lcd_write:16,le:65,le_rol:65,le_sc_confirm:65,le_sc_random:65,lead:[3,12],leaf:74,learn:[34,65],least:[18,51,62,68],leav:[2,6],led:[2,37,46,69],led_callback:50,led_channel:50,led_encod:[51,69],led_encoder_st:69,led_fade_time_m:50,led_reset_cod:69,led_stip:69,led_strip:[51,69],led_task:50,ledc:50,ledc_channel_5:50,ledc_channel_t:50,ledc_low_speed_mod:50,ledc_mode_t:50,ledc_timer_10_bit:50,ledc_timer_13_bit:50,ledc_timer_2:50,ledc_timer_bit_t:50,ledc_timer_t:50,ledstrip:51,left:[13,16,18,42,51,68,75],legaci:65,legend:[14,75],len:[40,51],length:[2,6,16,25,28,36,39,40,45,51,58,65,66,68,69],less:[7,49,65,66,76],let:[11,15,23,59],level0:69,level1:69,level:[7,8,9,10,23,33,34,39,43,45,48,51,52,61,62,63,65,68,69,72,74,77,78],leverag:28,lh:[68,70],lib:34,libarari:73,libfmt:52,librari:[11,23,24,33,34,37,65,73,75],licens:75,life:[11,73],lifecycl:15,light:[12,38,42,44,52,73,74,75],like:[23,31,61,68,70],lilygo:[37,41],limit:[7,8,11,18,52,65,67],limit_voltag:[7,8],line:37,line_input:11,linear:[34,35],lineinput:11,link:[14,24],links_awaken:14,list:[2,6,24,34,65],list_directori:24,listconfig:24,listen:[31,62,72],lit:[2,6,34],littl:[23,50],littlef:24,lk:[1,2,3,5,6,8,13,18,19,22,23,34,36,39,40,45,46,48,49,50,51,67,68,69,70,74,76,77],ll:[1,2,6,13,19,22,23,34,39,40,43,45,46,48,51,66,68,70,78],ln:77,load:[13,14,65],local:65,lock:[62,66,76],log:[2,6,8,10,23,33,34,37,38,39,40,42,43,44,45,46,48,50,51,59,66,68,69,70,72,74,76,77,78],log_level:[1,2,3,5,6,7,8,10,13,15,18,19,22,33,34,36,38,39,40,42,43,44,45,46,48,49,50,51,62,63,66,67,68,69,70,72,74,76,77,78,80,81],logger1:52,logger1_thread:52,logger2:52,logger2_thread:52,logger:[1,2,3,5,6,7,8,10,13,15,18,19,22,23,24,33,34,36,37,38,39,40,42,43,44,45,46,48,49,50,51,61,62,63,66,67,68,69,70,72,74,76,77,78,80,81],logger_:[15,49],logger_config:61,logger_fn:52,logic:[2,6,13,63,65],long_local_nam:65,longer:11,loop:[8,9,11,19,22,24,33,52,76],loop_foc:8,loop_iter:52,loopback_en:[61,62,63],loos:23,lose:11,lot:[10,75],low:[2,5,6,7,8,9,10,13,18,23,48,61,65,69],low_level:10,low_limit:18,low_threshold_mv:2,lower:[18,46,48,77],lowest:[10,76,78],lowpass:[27,37],lowpass_filt:28,lowpassfilt:28,lra:[34,35],lsb:[2,6,46],lv_area_t:[15,16],lv_color_t:[15,16],lv_disp_drv_t:[15,16],lv_disp_flush_readi:15,lv_indev_t:[38,42,44],lv_tick_inc:15,lvgl:[15,16,38,42,44],lvgl_esp32_driv:16,lvgl_tft:16,m:[1,2,3,5,6,8,13,18,19,22,23,33,34,36,39,40,45,46,48,49,50,51,52,62,66,67,68,69,70,74,75,76,77],m_pi:[19,22,59],ma:77,mac:[65,66,81],mac_addr:65,mac_address:65,machin:37,macro:52,made:66,magenta:75,magic_enum_no_check_support:74,magnet:[21,33,37,75],magnetic_det:33,magnitud:[49,58,67],magnitude_squar:58,mai:[2,3,6,10,33,51,65,66,74],mailbox:66,mailto:65,main:[8,15,69],mainli:15,maintain:[15,19,22,66],make:[1,2,6,8,13,19,22,23,24,34,36,39,40,43,45,46,48,61,65,66,68,70,72,74,77],make_alternative_carri:65,make_android_launch:[65,66],make_ev:74,make_handover_request:65,make_handover_select:[65,66],make_le_oob_pair:[65,66],make_multicast:[61,62,63],make_oob_pair:65,make_shar:[8,16],make_text:[65,66],make_uniqu:[1,2,6,11,13,34,50,59,62,63,69,76],make_uri:[65,66],make_wifi_config:[65,66],makeact:74,maker:75,malloc_cap_8bit:15,malloc_cap_dma:15,manag:[5,12,13,14,15,24,37,46,48,50,62,63,65,66],mani:[8,10,18,23,62,63,81],manipul:10,manual:[2,6,11,33,72,74],manual_chid:[2,6],map:[2,6,13,49,57,72],mapped_mv:2,mapper:[37,49,56],mario:14,mark:[59,72],markdownexport:75,marker:72,mask:[46,48],maskaravivek:65,mass:[34,35],master:[1,2,6,11,13,16,19,22,34,46,48,63,66,69],match:[24,31,68,70],math:[37,53,55,57,58],matrix:42,max:[2,7,18,33,34,46,55,57,62,63,67,80],max_connect:62,max_data_s:72,max_glitch_n:18,max_led_curr:46,max_num_byt:[62,63],max_number_of_st:80,max_pending_connect:62,max_receive_s:62,max_transfer_sz:16,maximum:[7,13,19,22,46,49,57,62,63,67,72],maxledcurr:46,maybe_duti:50,maybe_mv:[3,5,77],maybe_r:3,maybe_x_mv:[13,49],maybe_y_mv:[13,49],mb:[24,65],mb_ctrl:66,mcp23x17:[37,47],mcp23x17_read:48,mcp23x17_write:48,mcpwm:[7,33],me:65,mean:[7,10,12,19,22,25,49,57,59,69,73,76,78],measur:[3,5,8,18,19,22,49,67,77],mechan:[3,8,19,22,23,31],media:65,mega_man:14,megaman1:14,megaman:14,member:[1,2,3,5,6,7,8,10,12,13,15,18,19,22,24,26,28,33,34,36,38,39,40,42,43,44,45,46,48,49,50,51,52,53,55,57,59,61,62,63,65,66,67,68,69,70,72,76,77,78,80,81],memori:[11,15,25,28,50,66,69,75,76],memset:[1,2,6,13,16,19,22,34,46,48,66],mention:11,menu:11,menuconfig:24,mere:7,messag:[1,2,6,10,13,23,24,34,45,46,48,65,66,68,70,72,73,74],message_begin:65,message_end:65,method:[8,10,18,24,53,55,67,72,73],metroid1:14,metroid:14,micro:16,micros_per_sec:69,middl:65,might:78,millisecond:[36,43,50],millivolt:77,mime_media:65,min:[2,33,57],minimum:[13,49,57,67],minu:72,minut:[19,22,70],mireq:16,mirror:48,mirror_i:16,mirror_x:16,miso_io_num:16,mit:75,mix:12,mjepg:72,mjpeg:72,mkdir:24,mode:[1,2,3,6,10,13,16,19,22,33,34,46,48,50,65,66],model:[12,74],moder:5,modern:75,modif:8,modifi:[16,46,72],modulo:[19,22],monitor:37,month:70,more:[2,3,6,11,12,15,26,27,29,34,49,50,51,52,55,61,62,63,65,69,74,77],mosi:16,mosi_io_num:16,most:[3,8,13,19,22,49,67],motion:[8,33],motion_control_typ:8,motioncontroltyp:8,motoion:8,motor:[7,9,19,22,33,35,37],motor_task:8,motor_task_fn:8,motor_typ:34,motorconcept:33,motortyp:34,mount:24,mount_point:24,mous:65,move:[8,11,51,59,69,76],move_down:39,move_left:39,move_right:39,move_up:39,movement:11,movi:75,ms:15,msb:[2,6,46],msb_first:69,msg:74,mt6701:[8,21,37],mt6701_read:[8,22],mt6701_write:[8,22],much:[25,75],multi_byte_charact:75,multi_rev_no_det:33,multicast:[61,62],multicast_address:[61,62,63],multicast_group:[61,62,63],multipl:[3,5,8,13,33,34,35,52,67,72],multipli:[33,58,67],must:[2,5,6,8,11,18,23,24,43,59,61,62,63,65,66,73,74,76,80,81],mutabl:[58,76],mutat:76,mute:2,mutex:[1,2,3,5,6,8,13,18,19,22,23,34,36,39,40,45,46,48,49,50,51,62,66,67,68,69,70,74,76,77],mutual:45,mux:[2,6],mv:[1,2,3,5,6,49,77],mystruct:73,n:[2,3,5,6,11,13,14,18,19,22,23,24,25,29,30,36,39,40,43,45,46,48,49,50,59,62,63,66,67,68,69,70,72,73,74,75,76,77,78,81],name:[1,2,3,5,6,8,10,13,14,18,19,22,23,34,36,39,40,45,46,48,49,50,51,59,62,63,65,66,67,68,69,70,72,73,74,75,76,77,78],namespac:[1,2,6,13,24,34,75],nanosecond:18,navig:11,nby:75,ncharact:75,ncustom:75,ndef:[37,64,66],ndeflib:65,ndefmessag:65,ne:[14,68],nearest:[33,54],necessari:[8,76],need:[3,5,10,11,19,22,23,24,25,33,43,46,59,65,67,69,74,76],needs_zero_search:[19,22],neg:[51,58,67,77],negat:[13,58],neo_bff_io:51,neo_bff_num_l:51,neopixel_writ:51,nest:75,network:[37,62,63,65,80],new_address:68,new_data:[40,45],new_duti:50,new_object:73,new_siz:11,new_target:8,newli:76,newlin:59,newtonian:75,next:[11,33,69],nf:65,nfault:8,nfc:[37,65,66],nfcforum:65,nice:75,nicer:52,nm:8,no_timeout:76,nocolor:11,node:[61,62,63,74],nois:57,nomin:77,nominal_resistance_ohm:77,non:[3,33,57,66],nonallocatingconfig:15,none:[2,6,15,31,39,52,65,68,70,74],normal:[15,23,25,58,74],normalizd:[26,28],normalized_cutoff_frequ:[19,22,26,28],note:[1,2,3,5,6,8,10,11,13,18,19,22,23,24,31,33,34,36,39,40,45,46,48,49,51,52,62,63,67,68,69,70,73,74,75,76,77],noth:[7,59,78],notifi:[2,72,76],now:[1,2,6,8,10,11,14,19,22,23,33,34,39,40,43,45,46,48,50,51,52,59,62,63,66,67,68,69,70,76,77],ntc:[6,77],ntc_channel:6,ntc_mv:6,ntc_smd_standard_series_0402:77,ntcg103jf103ft1:77,nthe:81,nullopt:[50,63],nullptr:[8,11,19,22,24,58,62,63,66,74,81],num:72,num_connect_retri:81,num_l:51,num_periods_to_run:50,num_pole_pair:8,num_seconds_to_run:[50,52,67,76],num_steps_per_iter:76,num_task:[59,76],num_touch:44,num_touch_point:[39,40,45],number:[1,2,3,6,8,10,11,15,16,18,19,22,24,25,28,33,34,39,40,44,45,46,48,50,51,54,61,62,63,65,66,69,70,72,77,80,81],number_of_link:24,nvs_flash_init:[80,81],o:[2,6,37,47],object:[8,10,11,12,14,23,51,52,55,59,65,68,69,72,73,74,76,77,78],occur:[2,6,23,40,43,45,46,66,72,74],octob:75,off:[2,7,11,18,33,46,52,65,72,77],offset:[16,66,72],offset_i:16,offset_x:16,ofs:24,ofstream:24,ohm:[8,77],ok:[11,72],oldest:11,on_connect:81,on_disconnect:81,on_got_ip:81,on_jpeg_fram:72,on_off_strong_det:33,on_receive_callback:63,on_response_callback:[62,63],onc:[6,13,18,19,22,23,72,78],once_flag:23,one:[2,10,11,19,22,23,31,50,51,62,63,66,69,74,75,78],oneshot:[4,37],oneshot_adc:5,oneshotadc:[5,13,49],onli:[2,6,8,11,13,14,18,19,22,23,25,49,52,58,63,65,66,69,72,73,74,75,78],oob:[65,66],open:[2,6,8,9,11,24,33,62,65,80,81],open_drain:[2,6,46],oper:[2,6,12,24,26,28,29,53,55,58,67,68,70,77],oppos:12,opposit:50,optim:[8,25,54],option:[2,3,5,6,7,8,11,13,15,16,19,22,38,44,49,50,51,52,57,61,62,63,65,72,73,76,78],order:[2,6,25,26,27,30,37,51,52,62],oreilli:65,org:[25,26,29,61,62,63,65,77],orient:[8,15],origin:24,oscil:[2,57],osr_128:[2,6],osr_16:[2,6],osr_2:[2,6],osr_32:[2,6],osr_4:[2,6],osr_64:[2,6],osr_8:[2,6],ostream:11,ostringstream:14,other:[2,6,8,11,12,15,58,61,62,63,66,67,73,74,76,80],otherwis:[2,6,7,8,10,13,19,22,23,31,33,34,40,43,46,48,49,50,62,63,65,66,69,70,72,74,76,78,81],our:[50,61,62,63,76],out:[11,14,24,59,61,62,63,65,69,73,74,75,77],output:[2,6,8,9,11,18,23,24,25,26,28,29,31,44,46,48,50,52,55,57,59,66,67,68,70],output_cent:57,output_drive_mode_p0:46,output_invert:50,output_max:[8,57,67],output_min:[8,57,67],output_mod:[2,6],output_rang:57,outputdrivemodep0:46,outputmod:[2,6],outsid:[2,11,12],over:[2,7,21,24,47,50,60,62,63,72,76],overflow:[18,25],overhead:[15,23],overload:24,oversampl:[2,6],oversampling_ratio:[2,6],oversamplingratio:[2,6],overstai:52,overth:[2,6],overwrit:[46,72,78],own:[3,15,19,22,31,46,48,61,62,63,80],owner:24,p0:46,p0_0:46,p0_1:46,p0_2:46,p0_3:46,p0_5:46,p1:46,p1_0:46,p1_1:46,p1_5:46,p1_6:46,p1_7:46,p1_8:46,p:[2,6,11,14,67,75],pack:13,packag:65,packet:[61,62,63,65,72],packet_:72,pad:13,padding_bottom:75,padding_left:75,padding_right:75,padding_top:75,page:[24,65,77],pair:[8,65,66],panel:44,param:[1,2,6,8,15,19,22,23,34,39,40,43,44,45,46,48,49,51,61,62,63,66,68,69,70,76,81],paramet:[1,2,3,5,6,7,8,10,11,12,13,15,16,19,20,22,23,24,25,26,28,29,31,33,34,36,38,39,40,42,43,44,45,46,48,49,50,51,52,53,55,57,58,61,62,63,65,66,67,68,69,70,72,74,76,77,78,80,81],parent:74,pars:[14,59,72],part:[7,16,33,44,77],parti:73,partit:24,partition_label:24,pass:[2,6,10,16,23,31,52,57],passiv:31,password:[31,65,80,81],pasv:31,pat:65,path:[24,31,72],paul:75,paus:[15,72],payload:[65,66,72],payload_id:66,payload_s:72,pdf:[2,6,19,34,46,65,66,69,77],pend:62,per:[1,2,3,6,8,19,22],perceiv:12,percent:50,percentag:[7,33,50],perform:[2,3,5,6,12,24,49,76],perhipher:50,period:[10,13,15,19,22,23,36,39,40,45,46,48,59,66,68,70,74,78],peripher:[7,18,33,35,43,50,51,65,69],peripheral_centr:65,peripheral_onli:[65,66],permeabl:75,permiss:24,permitt:75,person:65,phase:[7,8],phase_induct:8,phase_resist:8,phillip:75,phone:[65,66],photo:66,php:65,pick:18,pico:49,pid:[8,33,37],pid_config:67,pin:[1,2,6,7,8,10,13,15,16,34,36,43,46,48,50,69,76,78],pin_bit_mask:2,pin_mask:48,pinout:8,pixel:[15,16,51,72],pixel_buffer_s:[15,16],place:[23,33],placehold:[39,40,43,45,68,70],plai:[34,72,75],plan:77,planck:75,platform:[52,76,78],play_hapt:33,playback:34,pleas:[11,12,14,29,34,74,75],plot:[2,6],pn532:65,point:[12,18,24,25,28,33,37,39,40,44,45,50,53,54,58,62,63,65,66,79,81],pointer:[1,2,6,15,16,19,22,25,28,33,34,44,46,48,49,51,61,62,66,69,72,74,76,81],pokemon:14,pokemon_blu:14,pokemon_r:14,pokemon_yellow:14,polar:48,pole:8,poll:[13,19,22,39,40,43,45,46,48,66,68,70],polling_interv:43,pomax:53,pop:65,popul:63,port0:46,port1:46,port:[8,15,31,36,39,40,43,45,46,48,61,62,63,68,70,72],port_0_direction_mask:46,port_0_interrupt_mask:46,port_1_direction_mask:46,port_1_interrupt_mask:46,port_a:48,port_a_direction_mask:48,port_a_interrupt_mask:48,port_b:48,port_b_direction_mask:48,port_b_interrupt_mask:48,portmax_delai:2,portrait:[15,16],portrait_invert:15,porttick_period_m:[1,2,6,13,19,22,34,46,48,66],pos_typ:24,posit:[8,11,16,18,19,22,33,44,45,49,57],posix:[60,61],possibl:[2,6,7,15,57,65],post:65,post_cb:16,post_transfer_callback:15,poster:65,potenti:[3,25,31,68,70],power:[2,6,7,8,43,51,65],power_ctrl:43,power_st:65,power_supply_voltag:[7,8],pr24:[31,68,70],pranav:14,pre:[16,67,69],pre_cb:16,precis:69,preconfigur:34,predetermin:[2,6],prefer:65,prefix:[2,6,24],prepend:52,present:[36,45,65,72],preset:34,press:[2,10,11,13,40,43,44,45,68],prevent:[15,67],previou:[11,46,50,78],previous:[7,57],primari:69,primarili:11,primary_data:69,print:[2,3,5,6,11,13,14,18,19,22,23,36,39,40,43,45,46,48,49,50,52,59,62,63,66,67,68,69,70,72,73,74,75,76,77,78,81],printf:[13,19,22,46,48,66],prior:[66,80,81],prioriti:[3,8,10,15,52,59,76,78],privat:11,probe:36,probe_devic:[36,43],process:[50,62,63,76],processor:[2,6,28,76],produc:12,product:[46,58,69,74,77],profil:33,programm:2,programmed_data:66,project:[7,11,31,68,69,70,72,80,81],prompt:11,prompt_fn:11,proper:[12,74],properli:[5,72],proport:67,protocol:[31,51,62,63,69],protocol_examples_common:11,prototyp:[23,44,70],provid:[1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,21,22,23,24,25,26,27,28,29,30,32,33,35,36,37,38,40,42,43,44,46,47,48,49,50,51,52,53,54,55,57,58,59,60,61,62,63,65,66,67,68,69,70,72,73,74,75,76,77,78,79,81],prt:61,pseudost:74,psram:75,pub:23,publish:[10,23],pull:[2,6,46,48],pull_up_en:2,pulldown:10,pulldown_en:10,pullup:[10,36],pullup_en:10,puls:[2,6,18,69],pulsed_high:[2,6],pulsed_low:[2,6],pulsing_strong_1:34,pulsing_strong_2:34,pure:[18,74],push:[2,6],push_back:75,push_pul:[2,6,46],put:66,pwm:[7,8,9,34,50],pwmanalog:34,py:49,python:59,q0:72,q0_tabl:72,q1:72,q1_tabl:72,q:[8,28,72],q_current_filt:8,q_factor:28,qt:49,qtpy:36,quadhd_io_num:16,quadratur:18,quadwp_io_num:16,qualiti:28,quantiti:75,quantiz:72,queri:36,question:[11,14,50,66,75],queu:69,queue:[2,10,11,69],queue_siz:16,quickli:74,quit:66,quit_test:[13,19,22,48,66,68],quote_charact:14,qwiic:[36,68],qwiicn:[37,70],r0:77,r1:[2,6,77],r25:77,r2:[2,6,77],r:[12,24,46,51,57,65,69,77],r_0:77,r_bright:46,r_down:46,r_led:46,r_scale:77,r_up:46,race:50,rad:8,radian:[8,18,19,22,58],radio:[65,66],radio_mac_addr:66,radiu:49,rainbow:[51,69],ram:15,ranav:[14,75],random:65,random_valu:65,rang:[1,7,12,19,22,24,26,28,33,35,37,49,55,56,77,80],range_mapp:57,rangemapp:[49,57],rate:[1,3,8,19,22,46,48,52],rate_limit:52,ratio:[2,6],ration:53,raw:[1,2,5,6,8,13,19,22,49,53,61,65,66,68],rb:24,re:[11,13,19,22,34,61,62,63,69,74,77],reach:[34,62,66,74],read:[1,2,3,5,6,8,10,11,13,19,22,24,34,36,38,39,40,42,43,44,45,46,48,49,62,66,68,70,77],read_address:68,read_at_regist:[36,39,68,70],read_at_register_fn:39,read_button_accumul:68,read_current_st:68,read_data:[36,40],read_fn:[1,2,6,19,22,34,38,42,43,45,46,48,66,70],read_gestur:39,read_joystick:[13,49],read_kei:43,read_len:40,read_mv:[5,13,49,77],read_mv_fn:77,read_raw:5,read_siz:36,read_valu:14,readabl:[14,24,75],reader:[3,5,49],readi:[43,78],readm:75,readthedoc:65,real:[23,34],realli:[14,73,74,75],realtim:34,reason:[73,76],receic:23,receiv:[2,16,61,62,63,66,72],receive_callback_fn:[61,62,63],receive_config:63,receiveconfig:63,recent:[2,3,8,13,19,22,49,67],recommend:[19,22,23,49,76],record:[65,66],record_data:66,rectangular:49,recurs:[24,74],recursive_directory_iter:24,recvfrom:[61,63],red:[12,14,51,52,69,75],redraw:[11,15],redrawn:11,reepres:72,refer:37,reference_wrapp:33,refresh:15,reg:66,reg_addr:[19,22,34,36,46,48,66],regard:[19,22],regardless:49,region:[2,6],regist:[2,6,10,19,22,23,34,36,38,39,42,44,46,48,66,68,70,72],register_address:[36,70],registr:23,registri:23,reinit:62,reiniti:62,reistor:46,rel:57,relat:[11,50],releas:[10,75],relev:[24,77],reli:74,reliabl:[19,22,62],remain:52,remot:[37,62,63,65],remote_control:65,remote_info:63,remov:[7,11,23,24],remove_publish:23,remove_subscrib:23,renam:24,render:[15,59],repeat:78,repeatedli:[69,76,78],replac:11,report:66,repres:[12,19,22,31,50,58,65,66,67,68,69,72],represent:[12,65,75],request:[2,6,31,61,62,63,65,66,72],requir:[8,66,75],rescal:12,reserv:65,reset:[2,6,16,18,66,67,69],reset_fn:69,reset_pin:16,reset_st:67,reset_tick:69,reset_valu:16,resist:[8,77],resistor:[10,46,77],resistordividerconfig:77,resiz:[11,24,59,76],resolut:[50,69],resolution_hz:[51,69],resolv:[31,68,70],reson:[34,35],resourc:[5,61,62,63,66,69],respect:[4,72,74],respond:[61,62,63],respons:[15,24,28,31,65,67,72],response_callback_fn:[61,62,63],response_s:[62,63],response_timeout:63,restart:[74,78],restartselect:74,restrict:[19,22],result:[2,3,6,11,12,58,72],resum:15,ret:16,ret_stat:69,retri:[72,81],retriev:[3,13,44,49],return_to_center_with_det:33,return_to_center_with_detents_and_multiple_revolut:33,reusabl:[11,37],revers:[62,63],revolut:[18,19,22,33],rf:66,rf_activ:66,rf_get_msg:66,rf_intterupt:66,rf_put_msg:66,rf_user:66,rf_write:66,rfc:[65,72],rfid:[65,66],rgb:[12,51,68,69,70],rh:[12,58,68,70],right:[8,11,13,31,42,51,66,68,75],rise:[10,34,66,69],rising_edg:10,risk:25,rmdir:24,rmt:[37,51],rmt_bytes_encoder_config_t:69,rmt_channel_handle_t:69,rmt_clk_src_default:69,rmt_clock_source_t:69,rmt_encod:69,rmt_encode_state_t:69,rmt_encoder_handle_t:69,rmt_encoder_t:69,rmt_encoding_complet:69,rmt_encoding_mem_ful:69,rmt_encoding_reset:69,rmt_symbol_word_t:69,rmtencod:[51,69],robust:[11,52],robustli:57,role:65,root:[24,31,74],root_list:24,root_menu:11,root_path:24,rotari:33,rotat:[8,15,16,19,22,33,34,35,51,58,69],round:54,routin:49,row:[14,75],row_index:14,row_t:75,rpm:[8,19,22],rpm_to_rad:8,rstp:65,rt_fmt_str:52,rtc:[37,70],rtcp:72,rtcp_packet:72,rtcp_port:72,rtcppacket:72,rtd:65,rtp:[34,72],rtp_jpeg_packet:72,rtp_packet:72,rtp_port:72,rtpjpegpacket:72,rtppacket:72,rtsp:[37,65],rtsp_client:72,rtsp_path:72,rtsp_port:72,rtsp_server:72,rtsp_session:72,rtspclient:72,rtspserver:72,rtspsession:72,rule:75,run:[3,8,11,15,19,22,23,31,33,43,50,52,59,75,78],runtim:52,s2:[3,16],s3:[3,13,45],s:[2,6,8,9,10,11,12,14,19,22,23,31,33,46,48,49,50,51,52,57,59,63,68,69,73,74,75,76,77],s_isdir:24,safe:[50,67],same:[2,5,6,8,23,65,67,78],sampl:[1,2,3,6,8,11,19,22,25,26,28,29,66,67,77],sample_mv:[1,13],sample_r:1,sample_rate_hz:[3,77],sandbox:24,sar:[2,6],sarch:[19,22],satisfi:74,satur:[12,67],scalar:58,scale:[8,55,58,67,77],scaler:55,scan:[2,6,72,81],scan_data:72,scenario:[80,81],schedul:78,scheme:8,scl:[2,6,36],scl_io_num:[1,2,6,13,19,22,34,36,39,40,43,45,46,48,66,68,70],scl_pullup_en:[1,2,6,13,19,22,34,36,39,45,46,48,66,70],sclk:16,sclk_io_num:16,scope:76,scottbez1:33,screen:[11,16],sda:36,sda_io_num:[1,2,6,13,19,22,34,36,39,40,43,45,46,48,66,68,70],sda_pullup_en:[1,2,6,13,19,22,34,36,39,45,46,48,66,70],sdp:72,search:[19,22],second:[1,2,3,8,19,22,26,27,37,46,48,50,52,58,70,72,76,77,78],secondari:15,seconds_per_minut:[19,22],seconds_since_start:59,section:[12,26,27,37],sectionimpl:29,secur:[65,80,81],security_manager_flag:65,security_manager_tk:65,see:[2,6,8,11,12,14,15,16,18,25,26,29,34,49,53,59,61,62,63,65,66,69,74,75,77,80,81],seek_end:24,seek_set:24,seekg:24,seem:[11,24,72],segment:15,sel:2,select:[2,3,13,31,34,51,65,68,74],select_bit_mask:2,select_librari:34,select_press:2,select_valu:2,self:45,send:[10,15,16,31,36,51,62,63,66,69,72],send_bright:51,send_command:16,send_config:[62,63],send_data:16,send_fram:72,send_request:72,send_rtcp_packet:72,send_rtp_packet:72,sendconfig:63,sender:[61,62,63],sender_info:[61,62,63],sendto:61,sens:[8,45],sensor:[8,19,22,45,77],sensor_direct:8,sensorconcept:8,sensordirect:8,sent:[2,6,16,31,51,62,63,69,72],sentenc:75,separ:[13,14,15,46,59],septemb:75,sequenc:[2,6,23,34,59,65,66,74],seri:[29,72,77],serial:[10,21,23,34,37,43,46,47,48,65,66,72],serializa:73,series_second_order_sect:[25,29],serizalizt:14,server:[32,37,60,61],server_address:[62,63,72],server_config:63,server_port:72,server_socket:[62,63],server_task:62,server_task_config:[62,63],server_task_fn:62,server_uri:72,servic:[2,65],session:[11,31,69,72],session_st:69,set:[1,2,6,7,8,10,11,15,16,19,22,23,34,40,43,45,46,48,49,50,51,54,55,57,59,61,62,63,65,66,68,69,70,72,74,77,78,80,81],set_al:51,set_analog_alert:2,set_ap_mac:81,set_bright:15,set_calibr:49,set_config:67,set_dat:70,set_date_tim:70,set_deadzon:49,set_digital_alert:2,set_digital_output_mod:[2,6],set_digital_output_valu:[2,6],set_direct:[46,48],set_drawing_area:16,set_duti:50,set_encod:[51,69],set_fade_with_tim:50,set_handle_res:11,set_histori:11,set_history_s:11,set_id:[65,66],set_input_polar:48,set_interrupt:46,set_interrupt_mirror:48,set_interrupt_on_chang:48,set_interrupt_on_valu:48,set_interrupt_polar:48,set_label:16,set_log_callback:74,set_log_level:23,set_met:16,set_mod:34,set_motion_control_typ:8,set_offset:16,set_payload:72,set_phase_st:7,set_phase_voltag:8,set_pin:[46,48],set_pixel:51,set_pull_up:48,set_pwm:7,set_receive_timeout:[61,62,63],set_record:66,set_session_log_level:72,set_tag:52,set_text:75,set_tim:70,set_verbos:52,set_vers:72,set_voltag:7,set_waveform:34,setactivechild:74,setcolor:11,setdeephistori:74,sethandleres:11,setinputhistori:11,setinputhistorys:11,setnocolor:11,setparentst:74,setpoint:[8,33],setshallowhistori:74,setter:[58,72],setup:[2,72],sever:[21,27,47],sftp:65,sgn:54,shaft:[8,19,22],shallow:74,shallow_history_st:74,shallowhistoryst:74,shamelessli:75,shape:55,share:65,shared_ptr:8,sharp_click:34,sheet:[2,6],shield:13,shift:[51,55,68],shift_bi:51,shift_left:51,shift_right:51,shifter:55,shop:[46,69],short_local_nam:65,shorten:65,shot:78,should:[7,8,11,12,13,15,16,24,25,28,43,48,49,50,51,58,61,62,63,65,67,68,69,72,74,76,78],shouldn:[24,52],show:[11,51,74,76],showcas:23,shown:52,shut:76,side:[7,32],sign:[18,54,57],signal:[2,13,15,25,26,28,29,34,51,67,69],signatur:[43,45,76],signific:68,similar:69,simpl:[0,5,10,23,24,30,31,36,43,52,65,67,73,76,77],simple_callback_fn:76,simpleconfig:76,simplefoc:8,simpler:[50,69],simpli:[2,3,6,11,19],simplifi:72,simultan:[11,65],sin:59,sinc:[2,8,18,19,22,23,24,43,46,68,69,72,76,77],singl:[2,5,6,18,33,38,51,52],single_unit_1:[3,77],single_unit_2:3,singleton:[23,24],sinusoid:8,sip:65,sixteen:1,size:[10,11,15,23,24,34,43,59,62,63,65,66,69,70,72,73,76,77,78],size_t:[1,2,3,6,8,10,11,13,14,15,16,18,19,22,23,24,25,26,28,29,34,36,39,40,43,45,46,48,50,51,52,59,61,62,63,68,69,70,72,73,75,76,78,81],sizeof:[1,2,6,13,16,19,22,34,46,48,66,69,72],sk6085:69,sk6805:69,sk6805_10mhz_bytes_encoder_config:69,sk6805_freq_hz:51,sk6812:51,sleep:[1,2,3,5,6,8,13,18,19,22,23,34,36,39,40,45,46,48,49,50,51,52,59,67,68,69,70,74,76,77,78],sleep_for:[3,10,16,23,43,50,51,52,59,62,63,67,72,74,76,78,81],sleep_until:76,slope:55,slot:34,slow:5,small:[33,55],smart:65,smartknob:33,smb:65,snap:33,snprintf:76,so:[1,2,5,6,8,11,13,14,16,18,19,22,23,24,27,31,33,34,37,45,46,48,51,57,59,66,67,69,72,74,75,76,77,78],so_recvtimeo:[61,62,63],so_reuseaddr:[61,62,63],so_reuseport:[61,62,63],sockaddr:61,sockaddr_in6:61,sockaddr_in:61,sockaddr_storag:[61,62,63],socket:[31,37,60,72],socket_fd:[61,62,63],soft_bump:34,soft_fuzz:34,softwar:[2,6,15,23],software_rotation_en:[15,16],some:[1,2,6,8,11,13,19,21,22,23,24,27,33,34,46,48,52,54,59,61,65,66,69,74,76],someth:[15,76],sometim:11,somewhat:33,sos_filt:29,sosfilt:[26,29],sourc:[63,69],source_address:61,sp:65,sp_hash_c192:65,sp_hash_c256:65,sp_hash_r256:65,sp_random_r192:65,space:[8,12,24,33,51,69,75],space_vector_pwm:8,sparignli:57,sparkfun:[13,68],spawn:[19,22,31,72,74,76],spawn_endevent_ev:74,spawn_event1_ev:74,spawn_event2_ev:74,spawn_event3_ev:74,spawn_event4_ev:74,specfici:1,special:[20,34,46,69],specif:[12,33,35,38,42,44,72,74,76],specifi:[2,6,19,22,24,33,52,63,72,78],speed:[8,19,22,36,50,62,75],speed_mod:50,spi2_host:16,spi:[16,19,22,48],spi_bus_add_devic:16,spi_bus_config_t:16,spi_bus_initi:16,spi_device_interface_config_t:16,spi_dma_ch_auto:16,spi_num:16,spi_queue_s:16,spic:16,spics_io_num:16,spike:55,sporad:5,spot:8,sps128:1,sps1600:1,sps16:1,sps2400:1,sps250:1,sps32:1,sps3300:1,sps475:1,sps490:1,sps64:1,sps860:1,sps8:1,sps920:1,squar:58,sr:65,ssid:[65,66,80,81],st25dv04k:66,st25dv:[37,64],st25dv_read:66,st25dv_write:66,st7789_defin:16,st7789v_8h_sourc:16,st:[24,66],st_mode:24,st_size:24,sta:[37,79],stabl:65,stack:[10,23,59,76,78],stack_size_byt:[1,2,6,8,13,19,22,23,34,46,48,51,59,62,63,66,69,76,78],stackoverflow:[24,66,75],stand:8,standalon:[21,47],standard:[24,52,57,72],star:34,start:[1,2,3,5,6,8,10,11,13,15,16,18,19,22,23,31,33,34,36,39,40,43,45,46,48,49,50,51,52,58,59,60,62,63,66,67,68,69,70,72,74,76,77],start_fast_transfer_mod:66,start_fram:51,start_receiv:63,startup:[19,22],stat:[24,59],state:[7,10,13,19,22,23,25,26,28,29,34,37,39,40,44,45,46,48,59,65,66,67,68,69,70],state_a:7,state_b:7,state_bas:74,state_c:7,state_machin:74,state_of_charg:23,statebas:74,static_cast:[2,52,69],station:[37,79,80],statist:2,statistics_en:2,statu:[2,66],std:[1,2,3,5,6,8,10,11,13,14,15,16,18,19,22,23,29,31,33,34,36,39,40,43,44,45,46,48,49,50,51,52,53,57,58,59,60,61,62,63,65,66,67,68,69,70,72,73,74,75,76,77,78,80,81],stdby:8,stdin:74,stdin_out:11,stdout:74,steinhart:77,step:76,still:49,stop:[1,2,3,5,6,8,13,15,18,19,22,23,31,33,34,36,39,40,43,45,46,48,49,50,51,59,62,63,66,67,68,69,70,72,74,77,78,81],stop_fast_transfer_mod:66,storag:[11,61],store:[11,13,16,24,30,55,65,66,72,77],stori:75,str:14,strcutur:16,stream:[11,14,72],streamer:72,strength:33,strictli:73,string:[10,11,14,23,24,52,59,61,62,63,65,72,73,76,80,81],string_view:[10,16,24,31,52,62,63,65,66,72,74,76,78],strip:[37,69],strong:33,strong_buzz:34,strong_click:34,strongli:73,struct:[1,2,3,5,6,7,8,10,12,13,15,18,19,22,23,24,26,28,30,33,34,36,38,39,40,42,43,44,45,46,48,49,50,51,52,53,55,57,59,61,62,63,65,66,67,68,69,70,72,73,76,77,78,80,81],structur:[1,2,6,8,13,15,16,23,34,38,42,43,44,46,48,49,50,53,55,61,62,63,65,67,70,74,80,81],sub:[11,23],sub_menu:11,sub_sub_menu:11,subclass:[29,61,72,74],subdirectori:24,submenu:11,submodul:11,subscib:23,subscrib:[10,23],subscript:23,subsequ:[2,65],subset:13,substat:74,subsub:11,subsubmenu:11,subsystem:[3,5,15,50],subtract:58,subystem:81,succe:[39,68],success:[1,2,6,19,22,34,36,43,46,48,66,70,72],successfulli:[18,23,61,62,63,69,72,73],suffix:52,suggest:69,suit:12,sulli:75,super_mario_1:14,super_mario_3:14,super_mario_bros_1:14,super_mario_bros_3:14,suppli:[7,77],supply_mv:77,support:[2,6,8,11,12,13,18,20,24,34,39,45,46,51,60,65,66,72],sure:[8,72],swap:44,swap_xi:44,symlink:[2,6,34],symmetr:55,syst_address:66,system:[11,14,23,37,59,66,73,74,75,76,77],sytl:73,t5t:66,t:[1,2,3,5,6,8,13,14,16,18,19,22,23,24,34,36,37,39,40,41,45,46,48,49,50,51,52,53,55,57,58,59,62,63,65,66,67,68,69,70,74,76,77,78],t_0:77,t_keyboard:43,ta:13,tabl:[2,6,24,59,65,72,75,77],tabul:37,tag:[52,65,66],take:[5,24,75],taken:24,talk:[46,51],target:[8,81],task1:23,task2:23,task:[1,2,3,5,6,8,10,13,15,18,19,22,23,31,33,34,36,37,39,40,43,45,46,48,49,50,51,62,63,66,67,68,69,70,72,74,77,78],task_1_fn:23,task_2_fn:23,task_callback:59,task_config:63,task_fn:[3,5,13,18,19,22,34,36,39,40,45,46,48,49,51,59,66,67,68,69,70,74,76,77],task_id:59,task_iter:76,task_monitor:59,task_nam:[59,76],task_prior:3,task_stack_size_byt:[10,59],taskmonitor:59,tb:13,tcp:[37,60,72],tcp_socket:62,tcpclientsess:62,tcpobex:65,tcpserver:62,tcpsocket:[61,62,72],tcptransmitconfig:62,tdata:73,tdk:77,tdown:13,tear:[61,62,63,76],teardown:72,tel:65,tell:[51,69],tellg:24,telnet:65,temp:77,temperatur:77,temperature_celsiu:23,templat:[8,18,20,24,26,29,31,33,52,53,57,58,76],temporari:65,termin:[11,74,75,76],test2:24,test:[3,8],test_dir:24,test_fil:24,test_start:76,texa:[2,6,34],text:65,tflite:16,tft_driver:16,tft_espi:16,tftp:65,th:[15,30],than:[7,11,15,49,52,66,72],thank:11,thei:[11,13,33,72,74,76],them:[2,6,11,12,13,23,55,69,72,74,76],therefor:[3,5,11,12,19,22,34,57,76],thermistor:37,thermistor_ntcg_en:77,thi:[1,2,3,5,6,7,8,10,11,12,13,14,15,16,18,19,22,23,24,25,31,33,34,36,37,39,40,43,45,46,48,49,50,51,52,57,58,59,61,62,63,65,66,67,68,69,70,72,73,74,75,76,77,78,80,81],thin:55,thing:59,think:11,third:73,this_thread:[3,10,16,23,43,50,51,52,59,62,63,67,72,74,76,78,81],those:[23,46,52,59,74],though:[23,76],thread:[23,31,33,50,59,62,63,67,72,76],threshold:[2,6],through:[2,6,8,33,34,51,57,69,74],throughput:3,ti:[2,6,34],tick:74,tickselect:74,time:[2,5,6,7,11,13,19,22,23,24,34,46,48,50,51,52,59,63,66,67,68,69,70,74,76,77,78,81],time_point:24,time_t:[24,31],time_to_l:[61,62,63],timeout:[36,61,62,63,76],timeout_m:36,timer:[37,50],timer_fn:78,tinys3:[8,69],tk:65,tkeyboard:43,tkip:65,tla2528:[4,37],tla:6,tla_read:6,tla_read_task_fn:6,tla_task:6,tla_writ:6,tleft:13,tloz_links_awaken:14,tloz_links_awakening_dx:14,tm:59,tmc6300:8,tname:73,tnf:65,to_str:75,to_time_t:[24,31],toggl:43,toi:75,toler:77,tone:51,too:[11,72,75],top:74,topic:[10,23],torqu:8,torque_control:8,torquecontroltyp:8,total:[18,24],total_spac:24,touch:[37,41,44],touchpad:[37,41,45,65],touchpad_input:44,touchpad_read:44,touchpad_read_fn:44,touchpadinput:44,tp:[24,31],tpd_commercial_ntc:77,trace:59,track:67,transact:69,transaction_queue_depth:69,transceiv:37,transfer:[16,27,32,37,66],transfer_funct:30,transferfunct:[29,30],transform:[8,23],transit:74,transition_click_1:34,transition_hum_1:34,transmiss:[62,69],transmit:[23,51,61,62,63,65],transmit_config:62,transmitt:69,transport:72,tree:[63,69,74],tri:11,trigger:[2,5,6,33,34,48,66],tright:13,trim_polici:14,trim_whitespac:14,triple_click:34,truncat:11,ts:34,tselect:13,tstart:13,tt1535109:75,tt1979376:75,tt21100:[37,41],tt3263904:75,ttl:[61,62,63],tup:13,tupl:77,turn:[2,15,52,65],tvalu:73,two:[1,12,13,15,46,48,52,59,69],twothird:1,tx:65,tx_power_level:65,type:[1,2,4,6,8,10,11,13,15,18,19,21,22,23,24,27,33,34,37,39,40,43,44,45,46,47,48,49,51,52,58,61,62,63,65,66,68,69,70,72,73,76,77,78,81],type_specif:72,typedef:[1,2,6,8,10,11,15,19,22,23,34,39,40,43,44,45,46,48,49,51,61,62,63,66,68,69,70,76,77,78,81],typenam:[24,31,52,53,57,58],typic:42,u:[58,65],ua:7,uart:11,uart_serial_plott:[2,6],ub:7,uc:7,ud:8,udp:[37,60,72],udp_multicast:63,udp_socket:63,udpserv:63,udpsocket:[61,63],uic:[65,66],uint16_t:[1,15,16,31,39,40,44,45,46,65,66,69,70],uint32_t:[2,13,15,16,36,50,65,72,73],uint64_t:[65,66],uint8_t:[1,2,6,10,13,15,16,19,22,23,34,36,39,40,43,44,45,46,48,51,52,61,62,63,65,66,68,69,70,72,73,80,81],uint:69,uk:65,unabl:[31,68,70],unbound:33,unbounded_no_det:33,uncalibr:[13,49],uncent:57,unchang:65,under:[18,24],underflow:18,underlin:75,understand:65,unicast:63,uniqu:[62,72,76],unique_lock:[1,2,3,5,6,8,13,18,19,22,23,34,36,39,40,45,46,48,49,50,51,62,66,67,68,69,70,74,76,77],unique_ptr:[59,62,72,76],unit:[0,3,5,8,13,18,24,25,49,58,77],univers:11,universal_const:75,unknown:[8,65,81],unless:23,unlimit:11,unlink:24,unmap:49,unord:[2,6,63],unordered_map:[2,6,72],unregist:[38,42,44],unreli:63,until:[2,6,11,23,24,33,34,50,51,62,63,69,74,76,78],unus:[13,18,33],unweight:53,unwind:74,up:[2,3,11,13,15,18,24,34,39,42,43,45,46,48,55,62,66,67,68,72,74,76,78],upat:15,updat:[7,8,10,13,15,19,22,25,26,28,29,33,40,45,46,48,49,50,52,55,57,58,61,66,67,68,74],update_address:68,update_detent_config:33,update_period:[8,15,19,22],upper:[16,77],uq:8,uri:[65,72],urn:65,urn_epc:65,urn_epc_id:65,urn_epc_pat:65,urn_epc_raw:65,urn_epc_tag:65,urn_nfc:65,us:[1,2,3,5,6,7,8,9,10,11,12,13,15,16,18,19,20,22,23,24,25,26,31,32,33,34,35,39,40,42,43,45,46,48,49,50,51,52,53,55,57,59,60,61,62,63,65,66,68,69,70,72,73,74,75,76,77,78],usag:[11,14,75],used_spac:24,user:[2,3,5,6,9,10,11,16,18,19,22,31,33,34,46,48,68,69,70,72,76],usernam:31,ust:23,util:[24,49,52,54,58,59,61,65,66],uuid:65,uuids_128_bit_complet:65,uuids_128_bit_parti:65,uuids_16_bit_complet:65,uuids_16_bit_parti:65,uuids_32_bit_complet:65,uuids_32_bit_parti:65,v:[8,12,57,58],v_in:77,vacuum:75,val_mask:48,valid:[31,34,51,61,62,63,72],valu:[1,2,3,5,6,10,12,13,14,15,18,19,22,24,28,33,34,39,40,46,48,49,50,51,52,53,54,55,57,58,65,66,67,68,69,70,72,73,75,76,77],vari:33,variabl:[16,49,52,76],varieti:[2,6],variou:51,ve:[11,24,76],vector2d:[37,53,56],vector2f:[49,68,70],vector:[2,3,5,6,8,10,13,14,23,24,28,49,50,51,58,59,61,62,63,65,66,72,73,76,77],veloc:[8,19,22],velocity_filt:[8,19,22],velocity_filter_fn:[19,22],velocity_limit:8,velocity_openloop:8,velocity_pid_config:8,veloicti:8,veolciti:[19,22],verbos:[1,2,3,5,6,7,8,10,13,15,18,19,22,23,33,34,36,38,39,40,42,43,44,45,46,48,49,50,51,62,63,66,67,68,69,70,72,74,76,77,78,80,81],veri:11,version:[6,11,58,65,72],via:[6,24,34,46,48],vibe:34,vibrat:[33,34],video:[15,72],view:[62,63,65],vio:8,virtual:[13,74],visual:59,volt:[2,6,7],voltag:[1,2,3,5,6,7,8,9,23,77],voltage_limit:7,vram0:15,vram1:15,vram:15,vram_size_byt:15,vram_size_px:15,vtaskgetinfo:59,w:[24,34,52,57],wa:[1,2,3,5,6,7,10,11,13,16,18,19,22,23,31,34,39,43,45,48,49,61,62,63,66,68,69,70,72,74,76],wai:[1,2,3,5,6,8,11,13,14,18,19,22,24,33,34,36,39,40,45,46,48,49,51,65,67,68,69,70,73,74,75,76,77],wait:[23,33,43,62,63,76],wait_for:[1,3,5,13,18,19,22,23,34,36,39,40,45,46,48,49,50,51,62,66,67,68,69,70,74,76],wait_for_respons:[62,63],wait_tim:50,wait_until:[2,6,8,76,77],want:[1,2,3,5,6,8,11,13,15,18,19,22,23,33,34,46,48,49,50,51,59,62,63,66,67,69,74,76,77,78],warn:[1,2,3,5,6,7,8,10,13,15,18,19,22,23,24,34,36,38,39,40,42,43,44,45,46,48,49,50,51,52,62,63,66,67,68,69,70,72,76,77,78,80,81],warn_rate_limit:52,watch:65,water:59,wave:55,waveform:34,we:[1,2,6,7,8,11,13,19,22,23,24,33,34,39,40,43,45,46,48,50,51,61,62,63,66,68,69,70,74,76,77,78],weak:33,webgm:74,week:70,weekdai:70,weight:53,weightedconfig:53,welcom:52,well:[2,13,21,23,27,29,34,55,59,62,65,66,72,74,76],well_known:65,wep:65,were:[2,6,7,11,45,49,61,62,63,67,74,76],what:[5,6,7,23,69,74],whatev:[46,48],whe:81,when:[1,2,3,5,6,8,11,13,16,18,19,20,22,23,33,34,36,39,40,43,45,46,48,49,51,57,61,62,63,66,67,68,69,70,72,73,74,76,77,78,81],whenev:74,where:[9,18,33,59,63,74,77],whether:[3,10,11,13,15,19,22,24,43,50,51,57,61,62,63,69,72,76,81],which:[1,2,3,5,6,8,9,10,11,12,13,14,15,19,22,23,24,25,26,27,28,33,34,35,38,39,40,42,43,46,47,48,50,51,52,53,54,57,58,59,62,63,65,66,68,69,72,74,75,76,77,80,81],white:75,who:16,whole:[72,74],wi:[80,81],width:[11,15,16,33,72,75],wifi:[37,65],wifi_ap:80,wifi_sta:81,wifiap:80,wifiauthenticationtyp:65,wificonfig:65,wifiencryptiontyp:65,wifista:81,wiki:[25,26,29,61,62,63,77],wikipedia:[18,25,26,29,61,62,63,77],wind:67,window_size_byt:[3,77],windup:67,wire:69,wireless:66,wish:[11,13],witdth:18,within:[12,19,21,22,23,33,52,57,63,75,76,77],without:[2,3,11,33,59,66,69,72],word:75,work:[6,8,10,11,24,31,33,59,68,70,72,76],world:11,worri:77,would:[18,23,74,76],wpa2:65,wpa2_enterpris:65,wpa2_person:65,wpa:65,wpa_enterpris:65,wpa_person:65,wpa_wpa2_person:65,wrap:[7,18,23,46,69,75],wrapper:[3,5,10,11,14,15,24,36,38,42,44,49,50,52,53,55,69,73,74,75],write:[1,2,6,8,11,13,15,16,19,22,24,28,34,36,39,40,43,46,48,51,66,68,70],write_data:[36,40],write_fn:[1,2,6,19,22,34,39,40,43,46,48,51,66,68,70],write_len:40,write_read:[36,40,68],write_read_fn:[40,68],write_row:14,write_s:36,written:[51,65,66,74],wrote:[14,24],ws2811:51,ws2812:51,ws2812_10mhz_bytes_encoder_config:69,ws2812_freq_hz:69,ws2812b:69,ws2813:51,www:[2,6,25,29,34,65,66],x1:58,x2:58,x:[2,6,11,13,16,25,39,40,44,45,46,48,49,58,59,66,72],x_calibr:[13,49],x_channel:6,x_mv:[1,2,6,13,49],xe:16,xml:[31,68,70],xml_in:[31,68,70],xqueuecreat:2,xqueuerec:2,xs:16,y1:58,y2:58,y:[2,6,13,16,25,39,40,44,45,49,52,55,58,72,80,81],y_calibr:[13,49],y_channel:6,y_mv:[1,2,6,13,49],ye:[16,81],year:70,yellow:[14,52,75],yet:[8,19,22,32,76],yield:69,you:[3,6,8,11,13,14,15,18,23,24,43,50,51,52,55,57,59,66,67,69,72,73,74,75,76,80,81],your:[23,52,59,75],yourself:74,ys:16,z:18,zelda1:14,zelda2:14,zelda:14,zelda_2:14,zero:[8,18,51,57,66,77],zero_electric_offset:8,zoom_in:39,zoom_out:39},titles:["ADC Types","ADS1x15 I2C ADC","ADS7138 I2C ADC","Continuous ADC","ADC APIs","Oneshot ADC","TLA2528 I2C ADC","BLDC Driver","BLDC Motor","BLDC APIs","Button APIs","Command Line Interface (CLI) APIs","Color APIs","Controller APIs","CSV APIs","Display","Display Drivers","Display APIs","ABI Encoder","AS5600 Magnetic Encoder","Encoder Types","Encoder APIs","MT6701 Magnetic Encoder","Event Manager APIs","File System APIs","Biquad Filter","Butterworth Filter","Filter APIs","Lowpass Filter","Second Order Sections (SoS) Filter","Transfer Function API","FTP Server","FTP APIs","BLDC Haptics","DRV2605 Haptic Motor Driver","Haptics APIs","I2C","ESPP Documentation","Encoder Input","FT5x06 Touch Controller","GT911 Touch Controller","Input APIs","Keypad Input","LilyGo T-Keyboard","Touchpad Input","TT21100 Touch Controller","AW9523 I/O Expander","IO Expander APIs","MCP23x17 I/O Expander","Joystick APIs","LED APIs","LED Strip APIs","Logging APIs","Bezier","Fast Math","Gaussian","Math APIs","Range Mapper","Vector2d","Monitoring APIs","Network APIs","Sockets","TCP Sockets","UDP Sockets","NFC APIs","NDEF","ST25DV","PID APIs","QwiicNES","Remote Control Transceiver (RMT)","BM8563","RTC APIs","RTSP APIs","Serialization APIs","State Machine APIs","Tabulate APIs","Task APIs","Thermistor APIs","Timer APIs","WiFi APIs","WiFi Access Point (AP)","WiFi Station (STA)"],titleterms:{"1":[33,51,69,78],"2":33,"class":[1,2,3,5,6,7,8,10,11,12,13,14,15,16,18,19,22,23,24,25,26,28,29,31,33,34,36,38,39,40,42,43,44,45,46,48,49,50,51,52,53,55,57,58,59,61,62,63,65,66,67,68,69,70,72,73,74,75,76,77,78,80,81],"function":[30,31,68,70],"long":76,Then:78,abi:18,abiencod:18,access:80,adc:[0,1,2,3,4,5,6,49,77],ads1x15:1,ads7138:2,again:78,alpaca:73,analog:13,ap:80,apa102:51,api:[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81],as5600:19,aw9523:46,basic:[33,52,59,67,76],bench:74,bezier:53,biquad:25,bldc:[7,8,9,33],bm8563:70,box:16,breath:50,butterworth:26,button:10,buzz:33,cancel:78,cli:11,click:33,client:[62,63,72],color:12,command:11,complex:[14,67,73,74,75],config:16,continu:3,control:[13,39,40,45,69],csv:14,data:69,de:73,delai:78,devic:74,digit:13,displai:[15,16,17],document:37,driver:[7,16,34],drv2605:34,encod:[18,19,20,21,22,38,69],esp32:16,espp:37,event:23,exampl:[1,2,3,5,6,8,10,11,13,14,16,18,19,22,23,24,33,34,36,39,40,43,45,46,48,49,50,51,52,59,62,63,66,67,68,69,70,72,73,74,75,76,77,78,80,81],expand:[46,47,48],fast:54,file:[0,1,2,3,5,6,7,8,10,11,12,13,14,15,16,18,19,20,22,23,24,25,26,28,29,30,31,33,34,36,38,39,40,42,43,44,45,46,48,49,50,51,52,53,54,55,57,58,59,61,62,63,65,66,67,68,69,70,72,73,74,75,76,77,78,80,81],filesystem:24,filter:[25,26,27,28,29],format:52,ft5x06:39,ftp:[31,32],gaussian:55,gener:74,get_latest_info:59,gt911:40,haptic:[33,34,35],header:[0,1,2,3,5,6,7,8,10,11,12,13,14,15,16,18,19,20,22,23,24,25,26,28,29,30,31,33,34,36,38,39,40,42,43,44,45,46,48,49,50,51,52,53,54,55,57,58,59,61,62,63,65,66,67,68,69,70,72,73,74,75,76,77,78,80,81],hfsm:74,i2c:[1,2,6,13,36],i:[46,48],ili9341:16,info:[24,76],input:[38,41,42,44],interfac:11,io:47,itself:78,joystick:49,keyboard:43,keypad:42,kit:16,led:[50,51],lilygo:43,line:11,linear:[18,50],log:52,logger:52,lowpass:28,machin:74,macro:[11,14,73,74,75],magnet:[19,22],manag:23,mani:76,mapper:57,markdown:75,math:[54,56],mcp23x17:48,monitor:59,motor:[8,34],mt6701:22,multicast:63,ndef:65,network:60,newlib:24,nfc:64,o:[46,48],oneshot:[5,11,78],order:29,pid:67,plai:33,point:80,posix:24,qwiicn:68,rang:57,reader:14,real:74,refer:[0,1,2,3,5,6,7,8,10,11,12,13,14,15,16,18,19,20,22,23,24,25,26,28,29,30,31,33,34,36,38,39,40,42,43,44,45,46,48,49,50,51,52,53,54,55,57,58,59,61,62,63,65,66,67,68,69,70,72,73,74,75,76,77,78,80,81],remot:69,request:76,respons:[62,63],rmt:69,rotat:18,rtc:71,rtsp:72,run:[74,76],s3:16,second:29,section:29,serial:73,server:[31,62,63,72],so:29,socket:[61,62,63],spi:51,st25dv:66,st7789:16,sta:81,start:78,state:74,station:81,std:24,stop:76,strip:51,structur:73,system:24,t:43,tabul:75,task:[59,76],tcp:62,test:74,thermistor:77,thread:52,timer:78,tla2528:6,touch:[39,40,45],touchpad:44,transceiv:69,transfer:30,transmit:69,tt21100:45,ttgo:16,type:[0,20],udp:63,union:[65,68],usag:[8,33],valid:77,vector2d:58,verbos:52,via:51,wifi:[79,80,81],writer:14,wrover:16,ws2812:69}}) \ No newline at end of file +Search.setIndex({docnames:["adc/adc_types","adc/ads1x15","adc/ads7138","adc/continuous_adc","adc/index","adc/oneshot_adc","adc/tla2528","bldc/bldc_driver","bldc/bldc_motor","bldc/index","button","cli","color","controller","csv","display/display","display/display_drivers","display/index","encoder/abi_encoder","encoder/as5600","encoder/encoder_types","encoder/index","encoder/mt6701","event_manager","file_system","filters/biquad","filters/butterworth","filters/index","filters/lowpass","filters/sos","filters/transfer_function","ftp/ftp_server","ftp/index","haptics/bldc_haptics","haptics/drv2605","haptics/index","i2c","index","input/encoder_input","input/ft5x06","input/gt911","input/index","input/keypad_input","input/t_keyboard","input/touchpad_input","input/tt21100","io_expander/aw9523","io_expander/index","io_expander/mcp23x17","joystick","led","led_strip","logger","math/bezier","math/fast_math","math/gaussian","math/index","math/range_mapper","math/vector2d","monitor","network/index","network/socket","network/tcp_socket","network/udp_socket","nfc/index","nfc/ndef","nfc/st25dv","pid","qwiicnes","rmt","rtc/bm8563","rtc/index","rtsp","serialization","state_machine","tabulate","task","thermistor","timer","wifi/index","wifi/wifi_ap","wifi/wifi_sta"],envversion:{"sphinx.domains.c":2,"sphinx.domains.changeset":1,"sphinx.domains.citation":1,"sphinx.domains.cpp":5,"sphinx.domains.index":1,"sphinx.domains.javascript":2,"sphinx.domains.math":2,"sphinx.domains.python":3,"sphinx.domains.rst":2,"sphinx.domains.std":2,"sphinx.ext.todo":2,sphinx:56},filenames:["adc/adc_types.rst","adc/ads1x15.rst","adc/ads7138.rst","adc/continuous_adc.rst","adc/index.rst","adc/oneshot_adc.rst","adc/tla2528.rst","bldc/bldc_driver.rst","bldc/bldc_motor.rst","bldc/index.rst","button.rst","cli.rst","color.rst","controller.rst","csv.rst","display/display.rst","display/display_drivers.rst","display/index.rst","encoder/abi_encoder.rst","encoder/as5600.rst","encoder/encoder_types.rst","encoder/index.rst","encoder/mt6701.rst","event_manager.rst","file_system.rst","filters/biquad.rst","filters/butterworth.rst","filters/index.rst","filters/lowpass.rst","filters/sos.rst","filters/transfer_function.rst","ftp/ftp_server.rst","ftp/index.rst","haptics/bldc_haptics.rst","haptics/drv2605.rst","haptics/index.rst","i2c.rst","index.rst","input/encoder_input.rst","input/ft5x06.rst","input/gt911.rst","input/index.rst","input/keypad_input.rst","input/t_keyboard.rst","input/touchpad_input.rst","input/tt21100.rst","io_expander/aw9523.rst","io_expander/index.rst","io_expander/mcp23x17.rst","joystick.rst","led.rst","led_strip.rst","logger.rst","math/bezier.rst","math/fast_math.rst","math/gaussian.rst","math/index.rst","math/range_mapper.rst","math/vector2d.rst","monitor.rst","network/index.rst","network/socket.rst","network/tcp_socket.rst","network/udp_socket.rst","nfc/index.rst","nfc/ndef.rst","nfc/st25dv.rst","pid.rst","qwiicnes.rst","rmt.rst","rtc/bm8563.rst","rtc/index.rst","rtsp.rst","serialization.rst","state_machine.rst","tabulate.rst","task.rst","thermistor.rst","timer.rst","wifi/index.rst","wifi/wifi_ap.rst","wifi/wifi_sta.rst"],objects:{"":[[74,0,1,"c.MAGIC_ENUM_NO_CHECK_SUPPORT","MAGIC_ENUM_NO_CHECK_SUPPORT"],[14,0,1,"c.__gnu_linux__","__gnu_linux__"],[73,0,1,"c.__gnu_linux__","__gnu_linux__"],[11,0,1,"c.__linux__","__linux__"],[75,0,1,"c.__unix__","__unix__"],[65,1,1,"_CPPv4N19PhonyNameDueToError3rawE","PhonyNameDueToError::raw"],[68,1,1,"_CPPv4N19PhonyNameDueToError3rawE","PhonyNameDueToError::raw"],[18,2,1,"_CPPv4I_11EncoderTypeEN4espp10AbiEncoderE","espp::AbiEncoder"],[18,3,1,"_CPPv4I_11EncoderTypeEN4espp10AbiEncoder10AbiEncoderERK6Config","espp::AbiEncoder::AbiEncoder"],[18,4,1,"_CPPv4I_11EncoderTypeEN4espp10AbiEncoder10AbiEncoderERK6Config","espp::AbiEncoder::AbiEncoder::config"],[18,5,1,"_CPPv4I_11EncoderTypeEN4espp10AbiEncoder10AbiEncoderERK6Config","espp::AbiEncoder::AbiEncoder::type"],[18,2,1,"_CPPv4N4espp10AbiEncoder6ConfigE","espp::AbiEncoder::Config"],[18,1,1,"_CPPv4N4espp10AbiEncoder6Config6a_gpioE","espp::AbiEncoder::Config::a_gpio"],[18,1,1,"_CPPv4N4espp10AbiEncoder6Config6b_gpioE","espp::AbiEncoder::Config::b_gpio"],[18,1,1,"_CPPv4N4espp10AbiEncoder6Config21counts_per_revolutionE","espp::AbiEncoder::Config::counts_per_revolution"],[18,1,1,"_CPPv4N4espp10AbiEncoder6Config10high_limitE","espp::AbiEncoder::Config::high_limit"],[18,1,1,"_CPPv4N4espp10AbiEncoder6Config6i_gpioE","espp::AbiEncoder::Config::i_gpio"],[18,1,1,"_CPPv4N4espp10AbiEncoder6Config9log_levelE","espp::AbiEncoder::Config::log_level"],[18,1,1,"_CPPv4N4espp10AbiEncoder6Config9low_limitE","espp::AbiEncoder::Config::low_limit"],[18,1,1,"_CPPv4N4espp10AbiEncoder6Config13max_glitch_nsE","espp::AbiEncoder::Config::max_glitch_ns"],[18,5,1,"_CPPv4I_11EncoderTypeEN4espp10AbiEncoderE","espp::AbiEncoder::T"],[18,3,1,"_CPPv4N4espp10AbiEncoder5clearEv","espp::AbiEncoder::clear"],[18,3,1,"_CPPv4N4espp10AbiEncoder9get_countEv","espp::AbiEncoder::get_count"],[18,3,1,"_CPPv4I_11EncoderTypeEN4espp10AbiEncoder11get_degreesENSt9enable_ifIXeq4typeN11EncoderType10ROTATIONALEEfE4typeEv","espp::AbiEncoder::get_degrees"],[18,5,1,"_CPPv4I_11EncoderTypeEN4espp10AbiEncoder11get_degreesENSt9enable_ifIXeq4typeN11EncoderType10ROTATIONALEEfE4typeEv","espp::AbiEncoder::get_degrees::type"],[18,3,1,"_CPPv4I_11EncoderTypeEN4espp10AbiEncoder11get_radiansENSt9enable_ifIXeq4typeN11EncoderType10ROTATIONALEEfE4typeEv","espp::AbiEncoder::get_radians"],[18,5,1,"_CPPv4I_11EncoderTypeEN4espp10AbiEncoder11get_radiansENSt9enable_ifIXeq4typeN11EncoderType10ROTATIONALEEfE4typeEv","espp::AbiEncoder::get_radians::type"],[18,3,1,"_CPPv4I_11EncoderTypeEN4espp10AbiEncoder15get_revolutionsENSt9enable_ifIXeq4typeN11EncoderType10ROTATIONALEEfE4typeEv","espp::AbiEncoder::get_revolutions"],[18,5,1,"_CPPv4I_11EncoderTypeEN4espp10AbiEncoder15get_revolutionsENSt9enable_ifIXeq4typeN11EncoderType10ROTATIONALEEfE4typeEv","espp::AbiEncoder::get_revolutions::type"],[18,3,1,"_CPPv4N4espp10AbiEncoder5startEv","espp::AbiEncoder::start"],[18,3,1,"_CPPv4N4espp10AbiEncoder4stopEv","espp::AbiEncoder::stop"],[18,3,1,"_CPPv4N4espp10AbiEncoderD0Ev","espp::AbiEncoder::~AbiEncoder"],[1,2,1,"_CPPv4N4espp7Ads1x15E","espp::Ads1x15"],[1,2,1,"_CPPv4N4espp7Ads1x1513Ads1015ConfigE","espp::Ads1x15::Ads1015Config"],[1,1,1,"_CPPv4N4espp7Ads1x1513Ads1015Config14device_addressE","espp::Ads1x15::Ads1015Config::device_address"],[1,1,1,"_CPPv4N4espp7Ads1x1513Ads1015Config4gainE","espp::Ads1x15::Ads1015Config::gain"],[1,1,1,"_CPPv4N4espp7Ads1x1513Ads1015Config9log_levelE","espp::Ads1x15::Ads1015Config::log_level"],[1,1,1,"_CPPv4N4espp7Ads1x1513Ads1015Config4readE","espp::Ads1x15::Ads1015Config::read"],[1,1,1,"_CPPv4N4espp7Ads1x1513Ads1015Config11sample_rateE","espp::Ads1x15::Ads1015Config::sample_rate"],[1,1,1,"_CPPv4N4espp7Ads1x1513Ads1015Config5writeE","espp::Ads1x15::Ads1015Config::write"],[1,6,1,"_CPPv4N4espp7Ads1x1511Ads1015RateE","espp::Ads1x15::Ads1015Rate"],[1,7,1,"_CPPv4N4espp7Ads1x1511Ads1015Rate6SPS128E","espp::Ads1x15::Ads1015Rate::SPS128"],[1,7,1,"_CPPv4N4espp7Ads1x1511Ads1015Rate7SPS1600E","espp::Ads1x15::Ads1015Rate::SPS1600"],[1,7,1,"_CPPv4N4espp7Ads1x1511Ads1015Rate7SPS2400E","espp::Ads1x15::Ads1015Rate::SPS2400"],[1,7,1,"_CPPv4N4espp7Ads1x1511Ads1015Rate6SPS250E","espp::Ads1x15::Ads1015Rate::SPS250"],[1,7,1,"_CPPv4N4espp7Ads1x1511Ads1015Rate7SPS3300E","espp::Ads1x15::Ads1015Rate::SPS3300"],[1,7,1,"_CPPv4N4espp7Ads1x1511Ads1015Rate6SPS490E","espp::Ads1x15::Ads1015Rate::SPS490"],[1,7,1,"_CPPv4N4espp7Ads1x1511Ads1015Rate6SPS920E","espp::Ads1x15::Ads1015Rate::SPS920"],[1,2,1,"_CPPv4N4espp7Ads1x1513Ads1115ConfigE","espp::Ads1x15::Ads1115Config"],[1,1,1,"_CPPv4N4espp7Ads1x1513Ads1115Config14device_addressE","espp::Ads1x15::Ads1115Config::device_address"],[1,1,1,"_CPPv4N4espp7Ads1x1513Ads1115Config4gainE","espp::Ads1x15::Ads1115Config::gain"],[1,1,1,"_CPPv4N4espp7Ads1x1513Ads1115Config9log_levelE","espp::Ads1x15::Ads1115Config::log_level"],[1,1,1,"_CPPv4N4espp7Ads1x1513Ads1115Config4readE","espp::Ads1x15::Ads1115Config::read"],[1,1,1,"_CPPv4N4espp7Ads1x1513Ads1115Config11sample_rateE","espp::Ads1x15::Ads1115Config::sample_rate"],[1,1,1,"_CPPv4N4espp7Ads1x1513Ads1115Config5writeE","espp::Ads1x15::Ads1115Config::write"],[1,6,1,"_CPPv4N4espp7Ads1x1511Ads1115RateE","espp::Ads1x15::Ads1115Rate"],[1,7,1,"_CPPv4N4espp7Ads1x1511Ads1115Rate6SPS128E","espp::Ads1x15::Ads1115Rate::SPS128"],[1,7,1,"_CPPv4N4espp7Ads1x1511Ads1115Rate5SPS16E","espp::Ads1x15::Ads1115Rate::SPS16"],[1,7,1,"_CPPv4N4espp7Ads1x1511Ads1115Rate6SPS250E","espp::Ads1x15::Ads1115Rate::SPS250"],[1,7,1,"_CPPv4N4espp7Ads1x1511Ads1115Rate5SPS32E","espp::Ads1x15::Ads1115Rate::SPS32"],[1,7,1,"_CPPv4N4espp7Ads1x1511Ads1115Rate6SPS475E","espp::Ads1x15::Ads1115Rate::SPS475"],[1,7,1,"_CPPv4N4espp7Ads1x1511Ads1115Rate5SPS64E","espp::Ads1x15::Ads1115Rate::SPS64"],[1,7,1,"_CPPv4N4espp7Ads1x1511Ads1115Rate4SPS8E","espp::Ads1x15::Ads1115Rate::SPS8"],[1,7,1,"_CPPv4N4espp7Ads1x1511Ads1115Rate6SPS860E","espp::Ads1x15::Ads1115Rate::SPS860"],[1,3,1,"_CPPv4N4espp7Ads1x157Ads1x15ERK13Ads1015Config","espp::Ads1x15::Ads1x15"],[1,3,1,"_CPPv4N4espp7Ads1x157Ads1x15ERK13Ads1115Config","espp::Ads1x15::Ads1x15"],[1,4,1,"_CPPv4N4espp7Ads1x157Ads1x15ERK13Ads1015Config","espp::Ads1x15::Ads1x15::config"],[1,4,1,"_CPPv4N4espp7Ads1x157Ads1x15ERK13Ads1115Config","espp::Ads1x15::Ads1x15::config"],[1,1,1,"_CPPv4N4espp7Ads1x1515DEFAULT_ADDRESSE","espp::Ads1x15::DEFAULT_ADDRESS"],[1,6,1,"_CPPv4N4espp7Ads1x154GainE","espp::Ads1x15::Gain"],[1,7,1,"_CPPv4N4espp7Ads1x154Gain5EIGHTE","espp::Ads1x15::Gain::EIGHT"],[1,7,1,"_CPPv4N4espp7Ads1x154Gain4FOURE","espp::Ads1x15::Gain::FOUR"],[1,7,1,"_CPPv4N4espp7Ads1x154Gain3ONEE","espp::Ads1x15::Gain::ONE"],[1,7,1,"_CPPv4N4espp7Ads1x154Gain7SIXTEENE","espp::Ads1x15::Gain::SIXTEEN"],[1,7,1,"_CPPv4N4espp7Ads1x154Gain3TWOE","espp::Ads1x15::Gain::TWO"],[1,7,1,"_CPPv4N4espp7Ads1x154Gain9TWOTHIRDSE","espp::Ads1x15::Gain::TWOTHIRDS"],[1,8,1,"_CPPv4N4espp7Ads1x157read_fnE","espp::Ads1x15::read_fn"],[1,3,1,"_CPPv4N4espp7Ads1x159sample_mvEiRNSt10error_codeE","espp::Ads1x15::sample_mv"],[1,4,1,"_CPPv4N4espp7Ads1x159sample_mvEiRNSt10error_codeE","espp::Ads1x15::sample_mv::channel"],[1,4,1,"_CPPv4N4espp7Ads1x159sample_mvEiRNSt10error_codeE","espp::Ads1x15::sample_mv::ec"],[1,8,1,"_CPPv4N4espp7Ads1x158write_fnE","espp::Ads1x15::write_fn"],[2,2,1,"_CPPv4N4espp7Ads7138E","espp::Ads7138"],[2,3,1,"_CPPv4N4espp7Ads71387Ads7138ERK6Config","espp::Ads7138::Ads7138"],[2,4,1,"_CPPv4N4espp7Ads71387Ads7138ERK6Config","espp::Ads7138::Ads7138::config"],[2,6,1,"_CPPv4N4espp7Ads713810AlertLogicE","espp::Ads7138::AlertLogic"],[2,7,1,"_CPPv4N4espp7Ads713810AlertLogic11ACTIVE_HIGHE","espp::Ads7138::AlertLogic::ACTIVE_HIGH"],[2,7,1,"_CPPv4N4espp7Ads713810AlertLogic10ACTIVE_LOWE","espp::Ads7138::AlertLogic::ACTIVE_LOW"],[2,7,1,"_CPPv4N4espp7Ads713810AlertLogic11PULSED_HIGHE","espp::Ads7138::AlertLogic::PULSED_HIGH"],[2,7,1,"_CPPv4N4espp7Ads713810AlertLogic10PULSED_LOWE","espp::Ads7138::AlertLogic::PULSED_LOW"],[2,6,1,"_CPPv4N4espp7Ads713811AnalogEventE","espp::Ads7138::AnalogEvent"],[2,7,1,"_CPPv4N4espp7Ads713811AnalogEvent6INSIDEE","espp::Ads7138::AnalogEvent::INSIDE"],[2,7,1,"_CPPv4N4espp7Ads713811AnalogEvent7OUTSIDEE","espp::Ads7138::AnalogEvent::OUTSIDE"],[2,6,1,"_CPPv4N4espp7Ads71386AppendE","espp::Ads7138::Append"],[2,7,1,"_CPPv4N4espp7Ads71386Append10CHANNEL_IDE","espp::Ads7138::Append::CHANNEL_ID"],[2,7,1,"_CPPv4N4espp7Ads71386Append4NONEE","espp::Ads7138::Append::NONE"],[2,7,1,"_CPPv4N4espp7Ads71386Append6STATUSE","espp::Ads7138::Append::STATUS"],[2,6,1,"_CPPv4N4espp7Ads71387ChannelE","espp::Ads7138::Channel"],[2,7,1,"_CPPv4N4espp7Ads71387Channel3CH0E","espp::Ads7138::Channel::CH0"],[2,7,1,"_CPPv4N4espp7Ads71387Channel3CH1E","espp::Ads7138::Channel::CH1"],[2,7,1,"_CPPv4N4espp7Ads71387Channel3CH2E","espp::Ads7138::Channel::CH2"],[2,7,1,"_CPPv4N4espp7Ads71387Channel3CH3E","espp::Ads7138::Channel::CH3"],[2,7,1,"_CPPv4N4espp7Ads71387Channel3CH4E","espp::Ads7138::Channel::CH4"],[2,7,1,"_CPPv4N4espp7Ads71387Channel3CH5E","espp::Ads7138::Channel::CH5"],[2,7,1,"_CPPv4N4espp7Ads71387Channel3CH6E","espp::Ads7138::Channel::CH6"],[2,7,1,"_CPPv4N4espp7Ads71387Channel3CH7E","espp::Ads7138::Channel::CH7"],[2,2,1,"_CPPv4N4espp7Ads71386ConfigE","espp::Ads7138::Config"],[2,1,1,"_CPPv4N4espp7Ads71386Config13analog_inputsE","espp::Ads7138::Config::analog_inputs"],[2,1,1,"_CPPv4N4espp7Ads71386Config9auto_initE","espp::Ads7138::Config::auto_init"],[2,1,1,"_CPPv4N4espp7Ads71386Config10avdd_voltsE","espp::Ads7138::Config::avdd_volts"],[2,1,1,"_CPPv4N4espp7Ads71386Config14device_addressE","espp::Ads7138::Config::device_address"],[2,1,1,"_CPPv4N4espp7Ads71386Config14digital_inputsE","espp::Ads7138::Config::digital_inputs"],[2,1,1,"_CPPv4N4espp7Ads71386Config20digital_output_modesE","espp::Ads7138::Config::digital_output_modes"],[2,1,1,"_CPPv4N4espp7Ads71386Config21digital_output_valuesE","espp::Ads7138::Config::digital_output_values"],[2,1,1,"_CPPv4N4espp7Ads71386Config15digital_outputsE","espp::Ads7138::Config::digital_outputs"],[2,1,1,"_CPPv4N4espp7Ads71386Config9log_levelE","espp::Ads7138::Config::log_level"],[2,1,1,"_CPPv4N4espp7Ads71386Config4modeE","espp::Ads7138::Config::mode"],[2,1,1,"_CPPv4N4espp7Ads71386Config18oversampling_ratioE","espp::Ads7138::Config::oversampling_ratio"],[2,1,1,"_CPPv4N4espp7Ads71386Config4readE","espp::Ads7138::Config::read"],[2,1,1,"_CPPv4N4espp7Ads71386Config18statistics_enabledE","espp::Ads7138::Config::statistics_enabled"],[2,1,1,"_CPPv4N4espp7Ads71386Config5writeE","espp::Ads7138::Config::write"],[2,1,1,"_CPPv4N4espp7Ads713815DEFAULT_ADDRESSE","espp::Ads7138::DEFAULT_ADDRESS"],[2,6,1,"_CPPv4N4espp7Ads713810DataFormatE","espp::Ads7138::DataFormat"],[2,7,1,"_CPPv4N4espp7Ads713810DataFormat8AVERAGEDE","espp::Ads7138::DataFormat::AVERAGED"],[2,7,1,"_CPPv4N4espp7Ads713810DataFormat3RAWE","espp::Ads7138::DataFormat::RAW"],[2,6,1,"_CPPv4N4espp7Ads713812DigitalEventE","espp::Ads7138::DigitalEvent"],[2,7,1,"_CPPv4N4espp7Ads713812DigitalEvent4HIGHE","espp::Ads7138::DigitalEvent::HIGH"],[2,7,1,"_CPPv4N4espp7Ads713812DigitalEvent3LOWE","espp::Ads7138::DigitalEvent::LOW"],[2,6,1,"_CPPv4N4espp7Ads71384ModeE","espp::Ads7138::Mode"],[2,7,1,"_CPPv4N4espp7Ads71384Mode10AUTONOMOUSE","espp::Ads7138::Mode::AUTONOMOUS"],[2,7,1,"_CPPv4N4espp7Ads71384Mode8AUTO_SEQE","espp::Ads7138::Mode::AUTO_SEQ"],[2,7,1,"_CPPv4N4espp7Ads71384Mode6MANUALE","espp::Ads7138::Mode::MANUAL"],[2,6,1,"_CPPv4N4espp7Ads713810OutputModeE","espp::Ads7138::OutputMode"],[2,7,1,"_CPPv4N4espp7Ads713810OutputMode10OPEN_DRAINE","espp::Ads7138::OutputMode::OPEN_DRAIN"],[2,7,1,"_CPPv4N4espp7Ads713810OutputMode9PUSH_PULLE","espp::Ads7138::OutputMode::PUSH_PULL"],[2,6,1,"_CPPv4N4espp7Ads713817OversamplingRatioE","espp::Ads7138::OversamplingRatio"],[2,7,1,"_CPPv4N4espp7Ads713817OversamplingRatio4NONEE","espp::Ads7138::OversamplingRatio::NONE"],[2,7,1,"_CPPv4N4espp7Ads713817OversamplingRatio7OSR_128E","espp::Ads7138::OversamplingRatio::OSR_128"],[2,7,1,"_CPPv4N4espp7Ads713817OversamplingRatio6OSR_16E","espp::Ads7138::OversamplingRatio::OSR_16"],[2,7,1,"_CPPv4N4espp7Ads713817OversamplingRatio5OSR_2E","espp::Ads7138::OversamplingRatio::OSR_2"],[2,7,1,"_CPPv4N4espp7Ads713817OversamplingRatio6OSR_32E","espp::Ads7138::OversamplingRatio::OSR_32"],[2,7,1,"_CPPv4N4espp7Ads713817OversamplingRatio5OSR_4E","espp::Ads7138::OversamplingRatio::OSR_4"],[2,7,1,"_CPPv4N4espp7Ads713817OversamplingRatio6OSR_64E","espp::Ads7138::OversamplingRatio::OSR_64"],[2,7,1,"_CPPv4N4espp7Ads713817OversamplingRatio5OSR_8E","espp::Ads7138::OversamplingRatio::OSR_8"],[2,3,1,"_CPPv4N4espp7Ads713821clear_event_high_flagE7uint8_tRNSt10error_codeE","espp::Ads7138::clear_event_high_flag"],[2,4,1,"_CPPv4N4espp7Ads713821clear_event_high_flagE7uint8_tRNSt10error_codeE","espp::Ads7138::clear_event_high_flag::ec"],[2,4,1,"_CPPv4N4espp7Ads713821clear_event_high_flagE7uint8_tRNSt10error_codeE","espp::Ads7138::clear_event_high_flag::flags"],[2,3,1,"_CPPv4N4espp7Ads713820clear_event_low_flagE7uint8_tRNSt10error_codeE","espp::Ads7138::clear_event_low_flag"],[2,4,1,"_CPPv4N4espp7Ads713820clear_event_low_flagE7uint8_tRNSt10error_codeE","espp::Ads7138::clear_event_low_flag::ec"],[2,4,1,"_CPPv4N4espp7Ads713820clear_event_low_flagE7uint8_tRNSt10error_codeE","espp::Ads7138::clear_event_low_flag::flags"],[2,3,1,"_CPPv4N4espp7Ads713815configure_alertE10OutputMode10AlertLogicRNSt10error_codeE","espp::Ads7138::configure_alert"],[2,4,1,"_CPPv4N4espp7Ads713815configure_alertE10OutputMode10AlertLogicRNSt10error_codeE","espp::Ads7138::configure_alert::alert_logic"],[2,4,1,"_CPPv4N4espp7Ads713815configure_alertE10OutputMode10AlertLogicRNSt10error_codeE","espp::Ads7138::configure_alert::ec"],[2,4,1,"_CPPv4N4espp7Ads713815configure_alertE10OutputMode10AlertLogicRNSt10error_codeE","espp::Ads7138::configure_alert::output_mode"],[2,3,1,"_CPPv4N4espp7Ads713810get_all_mvERNSt10error_codeE","espp::Ads7138::get_all_mv"],[2,4,1,"_CPPv4N4espp7Ads713810get_all_mvERNSt10error_codeE","espp::Ads7138::get_all_mv::ec"],[2,3,1,"_CPPv4N4espp7Ads713814get_all_mv_mapERNSt10error_codeE","espp::Ads7138::get_all_mv_map"],[2,4,1,"_CPPv4N4espp7Ads713814get_all_mv_mapERNSt10error_codeE","espp::Ads7138::get_all_mv_map::ec"],[2,3,1,"_CPPv4N4espp7Ads713823get_digital_input_valueE7ChannelRNSt10error_codeE","espp::Ads7138::get_digital_input_value"],[2,4,1,"_CPPv4N4espp7Ads713823get_digital_input_valueE7ChannelRNSt10error_codeE","espp::Ads7138::get_digital_input_value::channel"],[2,4,1,"_CPPv4N4espp7Ads713823get_digital_input_valueE7ChannelRNSt10error_codeE","espp::Ads7138::get_digital_input_value::ec"],[2,3,1,"_CPPv4N4espp7Ads713824get_digital_input_valuesERNSt10error_codeE","espp::Ads7138::get_digital_input_values"],[2,4,1,"_CPPv4N4espp7Ads713824get_digital_input_valuesERNSt10error_codeE","espp::Ads7138::get_digital_input_values::ec"],[2,3,1,"_CPPv4N4espp7Ads713814get_event_dataEP7uint8_tP7uint8_tP7uint8_tRNSt10error_codeE","espp::Ads7138::get_event_data"],[2,4,1,"_CPPv4N4espp7Ads713814get_event_dataEP7uint8_tP7uint8_tP7uint8_tRNSt10error_codeE","espp::Ads7138::get_event_data::ec"],[2,4,1,"_CPPv4N4espp7Ads713814get_event_dataEP7uint8_tP7uint8_tP7uint8_tRNSt10error_codeE","espp::Ads7138::get_event_data::event_flags"],[2,4,1,"_CPPv4N4espp7Ads713814get_event_dataEP7uint8_tP7uint8_tP7uint8_tRNSt10error_codeE","espp::Ads7138::get_event_data::event_high_flags"],[2,4,1,"_CPPv4N4espp7Ads713814get_event_dataEP7uint8_tP7uint8_tP7uint8_tRNSt10error_codeE","espp::Ads7138::get_event_data::event_low_flags"],[2,3,1,"_CPPv4N4espp7Ads713815get_event_flagsERNSt10error_codeE","espp::Ads7138::get_event_flags"],[2,4,1,"_CPPv4N4espp7Ads713815get_event_flagsERNSt10error_codeE","espp::Ads7138::get_event_flags::ec"],[2,3,1,"_CPPv4N4espp7Ads713819get_event_high_flagERNSt10error_codeE","espp::Ads7138::get_event_high_flag"],[2,4,1,"_CPPv4N4espp7Ads713819get_event_high_flagERNSt10error_codeE","espp::Ads7138::get_event_high_flag::ec"],[2,3,1,"_CPPv4N4espp7Ads713818get_event_low_flagERNSt10error_codeE","espp::Ads7138::get_event_low_flag"],[2,4,1,"_CPPv4N4espp7Ads713818get_event_low_flagERNSt10error_codeE","espp::Ads7138::get_event_low_flag::ec"],[2,3,1,"_CPPv4N4espp7Ads71386get_mvE7ChannelRNSt10error_codeE","espp::Ads7138::get_mv"],[2,4,1,"_CPPv4N4espp7Ads71386get_mvE7ChannelRNSt10error_codeE","espp::Ads7138::get_mv::channel"],[2,4,1,"_CPPv4N4espp7Ads71386get_mvE7ChannelRNSt10error_codeE","espp::Ads7138::get_mv::ec"],[2,3,1,"_CPPv4N4espp7Ads713810initializeERNSt10error_codeE","espp::Ads7138::initialize"],[2,4,1,"_CPPv4N4espp7Ads713810initializeERNSt10error_codeE","espp::Ads7138::initialize::ec"],[2,8,1,"_CPPv4N4espp7Ads71387read_fnE","espp::Ads7138::read_fn"],[2,3,1,"_CPPv4N4espp7Ads71385resetERNSt10error_codeE","espp::Ads7138::reset"],[2,4,1,"_CPPv4N4espp7Ads71385resetERNSt10error_codeE","espp::Ads7138::reset::ec"],[2,3,1,"_CPPv4N4espp7Ads713816set_analog_alertE7Channelff11AnalogEventiRNSt10error_codeE","espp::Ads7138::set_analog_alert"],[2,4,1,"_CPPv4N4espp7Ads713816set_analog_alertE7Channelff11AnalogEventiRNSt10error_codeE","espp::Ads7138::set_analog_alert::channel"],[2,4,1,"_CPPv4N4espp7Ads713816set_analog_alertE7Channelff11AnalogEventiRNSt10error_codeE","espp::Ads7138::set_analog_alert::ec"],[2,4,1,"_CPPv4N4espp7Ads713816set_analog_alertE7Channelff11AnalogEventiRNSt10error_codeE","espp::Ads7138::set_analog_alert::event"],[2,4,1,"_CPPv4N4espp7Ads713816set_analog_alertE7Channelff11AnalogEventiRNSt10error_codeE","espp::Ads7138::set_analog_alert::event_count"],[2,4,1,"_CPPv4N4espp7Ads713816set_analog_alertE7Channelff11AnalogEventiRNSt10error_codeE","espp::Ads7138::set_analog_alert::high_threshold_mv"],[2,4,1,"_CPPv4N4espp7Ads713816set_analog_alertE7Channelff11AnalogEventiRNSt10error_codeE","espp::Ads7138::set_analog_alert::low_threshold_mv"],[2,3,1,"_CPPv4N4espp7Ads713817set_digital_alertE7Channel12DigitalEventRNSt10error_codeE","espp::Ads7138::set_digital_alert"],[2,4,1,"_CPPv4N4espp7Ads713817set_digital_alertE7Channel12DigitalEventRNSt10error_codeE","espp::Ads7138::set_digital_alert::channel"],[2,4,1,"_CPPv4N4espp7Ads713817set_digital_alertE7Channel12DigitalEventRNSt10error_codeE","espp::Ads7138::set_digital_alert::ec"],[2,4,1,"_CPPv4N4espp7Ads713817set_digital_alertE7Channel12DigitalEventRNSt10error_codeE","espp::Ads7138::set_digital_alert::event"],[2,3,1,"_CPPv4N4espp7Ads713823set_digital_output_modeE7Channel10OutputModeRNSt10error_codeE","espp::Ads7138::set_digital_output_mode"],[2,4,1,"_CPPv4N4espp7Ads713823set_digital_output_modeE7Channel10OutputModeRNSt10error_codeE","espp::Ads7138::set_digital_output_mode::channel"],[2,4,1,"_CPPv4N4espp7Ads713823set_digital_output_modeE7Channel10OutputModeRNSt10error_codeE","espp::Ads7138::set_digital_output_mode::ec"],[2,4,1,"_CPPv4N4espp7Ads713823set_digital_output_modeE7Channel10OutputModeRNSt10error_codeE","espp::Ads7138::set_digital_output_mode::output_mode"],[2,3,1,"_CPPv4N4espp7Ads713824set_digital_output_valueE7ChannelbRNSt10error_codeE","espp::Ads7138::set_digital_output_value"],[2,4,1,"_CPPv4N4espp7Ads713824set_digital_output_valueE7ChannelbRNSt10error_codeE","espp::Ads7138::set_digital_output_value::channel"],[2,4,1,"_CPPv4N4espp7Ads713824set_digital_output_valueE7ChannelbRNSt10error_codeE","espp::Ads7138::set_digital_output_value::ec"],[2,4,1,"_CPPv4N4espp7Ads713824set_digital_output_valueE7ChannelbRNSt10error_codeE","espp::Ads7138::set_digital_output_value::value"],[2,8,1,"_CPPv4N4espp7Ads71388write_fnE","espp::Ads7138::write_fn"],[19,2,1,"_CPPv4N4espp6As5600E","espp::As5600"],[19,3,1,"_CPPv4N4espp6As56006As5600ERK6Config","espp::As5600::As5600"],[19,4,1,"_CPPv4N4espp6As56006As5600ERK6Config","espp::As5600::As5600::config"],[19,1,1,"_CPPv4N4espp6As560021COUNTS_PER_REVOLUTIONE","espp::As5600::COUNTS_PER_REVOLUTION"],[19,1,1,"_CPPv4N4espp6As560023COUNTS_PER_REVOLUTION_FE","espp::As5600::COUNTS_PER_REVOLUTION_F"],[19,1,1,"_CPPv4N4espp6As560017COUNTS_TO_DEGREESE","espp::As5600::COUNTS_TO_DEGREES"],[19,1,1,"_CPPv4N4espp6As560017COUNTS_TO_RADIANSE","espp::As5600::COUNTS_TO_RADIANS"],[19,2,1,"_CPPv4N4espp6As56006ConfigE","espp::As5600::Config"],[19,1,1,"_CPPv4N4espp6As56006Config9auto_initE","espp::As5600::Config::auto_init"],[19,1,1,"_CPPv4N4espp6As56006Config14device_addressE","espp::As5600::Config::device_address"],[19,1,1,"_CPPv4N4espp6As56006Config4readE","espp::As5600::Config::read"],[19,1,1,"_CPPv4N4espp6As56006Config13update_periodE","espp::As5600::Config::update_period"],[19,1,1,"_CPPv4N4espp6As56006Config15velocity_filterE","espp::As5600::Config::velocity_filter"],[19,1,1,"_CPPv4N4espp6As56006Config5writeE","espp::As5600::Config::write"],[19,1,1,"_CPPv4N4espp6As560015DEFAULT_ADDRESSE","espp::As5600::DEFAULT_ADDRESS"],[19,1,1,"_CPPv4N4espp6As560018SECONDS_PER_MINUTEE","espp::As5600::SECONDS_PER_MINUTE"],[19,3,1,"_CPPv4NK4espp6As560015get_accumulatorEv","espp::As5600::get_accumulator"],[19,3,1,"_CPPv4NK4espp6As56009get_countEv","espp::As5600::get_count"],[19,3,1,"_CPPv4NK4espp6As560011get_degreesEv","espp::As5600::get_degrees"],[19,3,1,"_CPPv4NK4espp6As560022get_mechanical_degreesEv","espp::As5600::get_mechanical_degrees"],[19,3,1,"_CPPv4NK4espp6As560022get_mechanical_radiansEv","espp::As5600::get_mechanical_radians"],[19,3,1,"_CPPv4NK4espp6As560011get_radiansEv","espp::As5600::get_radians"],[19,3,1,"_CPPv4NK4espp6As56007get_rpmEv","espp::As5600::get_rpm"],[19,3,1,"_CPPv4N4espp6As560010initializeERNSt10error_codeE","espp::As5600::initialize"],[19,4,1,"_CPPv4N4espp6As560010initializeERNSt10error_codeE","espp::As5600::initialize::ec"],[19,3,1,"_CPPv4NK4espp6As560017needs_zero_searchEv","espp::As5600::needs_zero_search"],[19,8,1,"_CPPv4N4espp6As56007read_fnE","espp::As5600::read_fn"],[19,8,1,"_CPPv4N4espp6As560018velocity_filter_fnE","espp::As5600::velocity_filter_fn"],[19,8,1,"_CPPv4N4espp6As56008write_fnE","espp::As5600::write_fn"],[46,2,1,"_CPPv4N4espp6Aw9523E","espp::Aw9523"],[46,3,1,"_CPPv4N4espp6Aw95236Aw9523ERK6Config","espp::Aw9523::Aw9523"],[46,4,1,"_CPPv4N4espp6Aw95236Aw9523ERK6Config","espp::Aw9523::Aw9523::config"],[46,2,1,"_CPPv4N4espp6Aw95236ConfigE","espp::Aw9523::Config"],[46,1,1,"_CPPv4N4espp6Aw95236Config9auto_initE","espp::Aw9523::Config::auto_init"],[46,1,1,"_CPPv4N4espp6Aw95236Config14device_addressE","espp::Aw9523::Config::device_address"],[46,1,1,"_CPPv4N4espp6Aw95236Config9log_levelE","espp::Aw9523::Config::log_level"],[46,1,1,"_CPPv4N4espp6Aw95236Config15max_led_currentE","espp::Aw9523::Config::max_led_current"],[46,1,1,"_CPPv4N4espp6Aw95236Config20output_drive_mode_p0E","espp::Aw9523::Config::output_drive_mode_p0"],[46,1,1,"_CPPv4N4espp6Aw95236Config21port_0_direction_maskE","espp::Aw9523::Config::port_0_direction_mask"],[46,1,1,"_CPPv4N4espp6Aw95236Config21port_0_interrupt_maskE","espp::Aw9523::Config::port_0_interrupt_mask"],[46,1,1,"_CPPv4N4espp6Aw95236Config21port_1_direction_maskE","espp::Aw9523::Config::port_1_direction_mask"],[46,1,1,"_CPPv4N4espp6Aw95236Config21port_1_interrupt_maskE","espp::Aw9523::Config::port_1_interrupt_mask"],[46,1,1,"_CPPv4N4espp6Aw95236Config4readE","espp::Aw9523::Config::read"],[46,1,1,"_CPPv4N4espp6Aw95236Config5writeE","espp::Aw9523::Config::write"],[46,1,1,"_CPPv4N4espp6Aw952315DEFAULT_ADDRESSE","espp::Aw9523::DEFAULT_ADDRESS"],[46,6,1,"_CPPv4N4espp6Aw952313MaxLedCurrentE","espp::Aw9523::MaxLedCurrent"],[46,7,1,"_CPPv4N4espp6Aw952313MaxLedCurrent4IMAXE","espp::Aw9523::MaxLedCurrent::IMAX"],[46,7,1,"_CPPv4N4espp6Aw952313MaxLedCurrent7IMAX_25E","espp::Aw9523::MaxLedCurrent::IMAX_25"],[46,7,1,"_CPPv4N4espp6Aw952313MaxLedCurrent7IMAX_50E","espp::Aw9523::MaxLedCurrent::IMAX_50"],[46,7,1,"_CPPv4N4espp6Aw952313MaxLedCurrent7IMAX_75E","espp::Aw9523::MaxLedCurrent::IMAX_75"],[46,6,1,"_CPPv4N4espp6Aw952317OutputDriveModeP0E","espp::Aw9523::OutputDriveModeP0"],[46,7,1,"_CPPv4N4espp6Aw952317OutputDriveModeP010OPEN_DRAINE","espp::Aw9523::OutputDriveModeP0::OPEN_DRAIN"],[46,7,1,"_CPPv4N4espp6Aw952317OutputDriveModeP09PUSH_PULLE","espp::Aw9523::OutputDriveModeP0::PUSH_PULL"],[46,6,1,"_CPPv4N4espp6Aw95234PortE","espp::Aw9523::Port"],[46,7,1,"_CPPv4N4espp6Aw95234Port5PORT0E","espp::Aw9523::Port::PORT0"],[46,7,1,"_CPPv4N4espp6Aw95234Port5PORT1E","espp::Aw9523::Port::PORT1"],[46,3,1,"_CPPv4N4espp6Aw952310clear_pinsE4Port7uint8_tRNSt10error_codeE","espp::Aw9523::clear_pins"],[46,3,1,"_CPPv4N4espp6Aw952310clear_pinsE7uint8_t7uint8_tRNSt10error_codeE","espp::Aw9523::clear_pins"],[46,3,1,"_CPPv4N4espp6Aw952310clear_pinsE8uint16_tRNSt10error_codeE","espp::Aw9523::clear_pins"],[46,4,1,"_CPPv4N4espp6Aw952310clear_pinsE4Port7uint8_tRNSt10error_codeE","espp::Aw9523::clear_pins::ec"],[46,4,1,"_CPPv4N4espp6Aw952310clear_pinsE7uint8_t7uint8_tRNSt10error_codeE","espp::Aw9523::clear_pins::ec"],[46,4,1,"_CPPv4N4espp6Aw952310clear_pinsE8uint16_tRNSt10error_codeE","espp::Aw9523::clear_pins::ec"],[46,4,1,"_CPPv4N4espp6Aw952310clear_pinsE4Port7uint8_tRNSt10error_codeE","espp::Aw9523::clear_pins::mask"],[46,4,1,"_CPPv4N4espp6Aw952310clear_pinsE8uint16_tRNSt10error_codeE","espp::Aw9523::clear_pins::mask"],[46,4,1,"_CPPv4N4espp6Aw952310clear_pinsE7uint8_t7uint8_tRNSt10error_codeE","espp::Aw9523::clear_pins::p0"],[46,4,1,"_CPPv4N4espp6Aw952310clear_pinsE7uint8_t7uint8_tRNSt10error_codeE","espp::Aw9523::clear_pins::p1"],[46,4,1,"_CPPv4N4espp6Aw952310clear_pinsE4Port7uint8_tRNSt10error_codeE","espp::Aw9523::clear_pins::port"],[46,3,1,"_CPPv4N4espp6Aw952324configure_global_controlE17OutputDriveModeP013MaxLedCurrentRNSt10error_codeE","espp::Aw9523::configure_global_control"],[46,4,1,"_CPPv4N4espp6Aw952324configure_global_controlE17OutputDriveModeP013MaxLedCurrentRNSt10error_codeE","espp::Aw9523::configure_global_control::ec"],[46,4,1,"_CPPv4N4espp6Aw952324configure_global_controlE17OutputDriveModeP013MaxLedCurrentRNSt10error_codeE","espp::Aw9523::configure_global_control::max_led_current"],[46,4,1,"_CPPv4N4espp6Aw952324configure_global_controlE17OutputDriveModeP013MaxLedCurrentRNSt10error_codeE","espp::Aw9523::configure_global_control::output_drive_mode_p0"],[46,3,1,"_CPPv4N4espp6Aw952313configure_ledE4Port7uint8_tRNSt10error_codeE","espp::Aw9523::configure_led"],[46,3,1,"_CPPv4N4espp6Aw952313configure_ledE7uint8_t7uint8_tRNSt10error_codeE","espp::Aw9523::configure_led"],[46,3,1,"_CPPv4N4espp6Aw952313configure_ledE8uint16_tRNSt10error_codeE","espp::Aw9523::configure_led"],[46,4,1,"_CPPv4N4espp6Aw952313configure_ledE4Port7uint8_tRNSt10error_codeE","espp::Aw9523::configure_led::ec"],[46,4,1,"_CPPv4N4espp6Aw952313configure_ledE7uint8_t7uint8_tRNSt10error_codeE","espp::Aw9523::configure_led::ec"],[46,4,1,"_CPPv4N4espp6Aw952313configure_ledE8uint16_tRNSt10error_codeE","espp::Aw9523::configure_led::ec"],[46,4,1,"_CPPv4N4espp6Aw952313configure_ledE4Port7uint8_tRNSt10error_codeE","espp::Aw9523::configure_led::mask"],[46,4,1,"_CPPv4N4espp6Aw952313configure_ledE8uint16_tRNSt10error_codeE","espp::Aw9523::configure_led::mask"],[46,4,1,"_CPPv4N4espp6Aw952313configure_ledE7uint8_t7uint8_tRNSt10error_codeE","espp::Aw9523::configure_led::p0"],[46,4,1,"_CPPv4N4espp6Aw952313configure_ledE7uint8_t7uint8_tRNSt10error_codeE","espp::Aw9523::configure_led::p1"],[46,4,1,"_CPPv4N4espp6Aw952313configure_ledE4Port7uint8_tRNSt10error_codeE","espp::Aw9523::configure_led::port"],[46,3,1,"_CPPv4N4espp6Aw952310get_outputE4PortRNSt10error_codeE","espp::Aw9523::get_output"],[46,3,1,"_CPPv4N4espp6Aw952310get_outputERNSt10error_codeE","espp::Aw9523::get_output"],[46,4,1,"_CPPv4N4espp6Aw952310get_outputE4PortRNSt10error_codeE","espp::Aw9523::get_output::ec"],[46,4,1,"_CPPv4N4espp6Aw952310get_outputERNSt10error_codeE","espp::Aw9523::get_output::ec"],[46,4,1,"_CPPv4N4espp6Aw952310get_outputE4PortRNSt10error_codeE","espp::Aw9523::get_output::port"],[46,3,1,"_CPPv4N4espp6Aw95238get_pinsE4PortRNSt10error_codeE","espp::Aw9523::get_pins"],[46,3,1,"_CPPv4N4espp6Aw95238get_pinsERNSt10error_codeE","espp::Aw9523::get_pins"],[46,4,1,"_CPPv4N4espp6Aw95238get_pinsE4PortRNSt10error_codeE","espp::Aw9523::get_pins::ec"],[46,4,1,"_CPPv4N4espp6Aw95238get_pinsERNSt10error_codeE","espp::Aw9523::get_pins::ec"],[46,4,1,"_CPPv4N4espp6Aw95238get_pinsE4PortRNSt10error_codeE","espp::Aw9523::get_pins::port"],[46,3,1,"_CPPv4N4espp6Aw952310initializeERNSt10error_codeE","espp::Aw9523::initialize"],[46,4,1,"_CPPv4N4espp6Aw952310initializeERNSt10error_codeE","espp::Aw9523::initialize::ec"],[46,3,1,"_CPPv4N4espp6Aw95233ledE8uint16_t7uint8_tRNSt10error_codeE","espp::Aw9523::led"],[46,4,1,"_CPPv4N4espp6Aw95233ledE8uint16_t7uint8_tRNSt10error_codeE","espp::Aw9523::led::brightness"],[46,4,1,"_CPPv4N4espp6Aw95233ledE8uint16_t7uint8_tRNSt10error_codeE","espp::Aw9523::led::ec"],[46,4,1,"_CPPv4N4espp6Aw95233ledE8uint16_t7uint8_tRNSt10error_codeE","espp::Aw9523::led::pin"],[46,3,1,"_CPPv4N4espp6Aw95236outputE4Port7uint8_tRNSt10error_codeE","espp::Aw9523::output"],[46,3,1,"_CPPv4N4espp6Aw95236outputE7uint8_t7uint8_tRNSt10error_codeE","espp::Aw9523::output"],[46,3,1,"_CPPv4N4espp6Aw95236outputE8uint16_tRNSt10error_codeE","espp::Aw9523::output"],[46,4,1,"_CPPv4N4espp6Aw95236outputE4Port7uint8_tRNSt10error_codeE","espp::Aw9523::output::ec"],[46,4,1,"_CPPv4N4espp6Aw95236outputE7uint8_t7uint8_tRNSt10error_codeE","espp::Aw9523::output::ec"],[46,4,1,"_CPPv4N4espp6Aw95236outputE8uint16_tRNSt10error_codeE","espp::Aw9523::output::ec"],[46,4,1,"_CPPv4N4espp6Aw95236outputE7uint8_t7uint8_tRNSt10error_codeE","espp::Aw9523::output::p0"],[46,4,1,"_CPPv4N4espp6Aw95236outputE7uint8_t7uint8_tRNSt10error_codeE","espp::Aw9523::output::p1"],[46,4,1,"_CPPv4N4espp6Aw95236outputE4Port7uint8_tRNSt10error_codeE","espp::Aw9523::output::port"],[46,4,1,"_CPPv4N4espp6Aw95236outputE4Port7uint8_tRNSt10error_codeE","espp::Aw9523::output::value"],[46,4,1,"_CPPv4N4espp6Aw95236outputE8uint16_tRNSt10error_codeE","espp::Aw9523::output::value"],[46,8,1,"_CPPv4N4espp6Aw95237read_fnE","espp::Aw9523::read_fn"],[46,3,1,"_CPPv4N4espp6Aw952313set_directionE4Port7uint8_tRNSt10error_codeE","espp::Aw9523::set_direction"],[46,3,1,"_CPPv4N4espp6Aw952313set_directionE7uint8_t7uint8_tRNSt10error_codeE","espp::Aw9523::set_direction"],[46,4,1,"_CPPv4N4espp6Aw952313set_directionE4Port7uint8_tRNSt10error_codeE","espp::Aw9523::set_direction::ec"],[46,4,1,"_CPPv4N4espp6Aw952313set_directionE7uint8_t7uint8_tRNSt10error_codeE","espp::Aw9523::set_direction::ec"],[46,4,1,"_CPPv4N4espp6Aw952313set_directionE4Port7uint8_tRNSt10error_codeE","espp::Aw9523::set_direction::mask"],[46,4,1,"_CPPv4N4espp6Aw952313set_directionE7uint8_t7uint8_tRNSt10error_codeE","espp::Aw9523::set_direction::p0"],[46,4,1,"_CPPv4N4espp6Aw952313set_directionE7uint8_t7uint8_tRNSt10error_codeE","espp::Aw9523::set_direction::p1"],[46,4,1,"_CPPv4N4espp6Aw952313set_directionE4Port7uint8_tRNSt10error_codeE","espp::Aw9523::set_direction::port"],[46,3,1,"_CPPv4N4espp6Aw952313set_interruptE4Port7uint8_tRNSt10error_codeE","espp::Aw9523::set_interrupt"],[46,3,1,"_CPPv4N4espp6Aw952313set_interruptE7uint8_t7uint8_tRNSt10error_codeE","espp::Aw9523::set_interrupt"],[46,4,1,"_CPPv4N4espp6Aw952313set_interruptE4Port7uint8_tRNSt10error_codeE","espp::Aw9523::set_interrupt::ec"],[46,4,1,"_CPPv4N4espp6Aw952313set_interruptE7uint8_t7uint8_tRNSt10error_codeE","espp::Aw9523::set_interrupt::ec"],[46,4,1,"_CPPv4N4espp6Aw952313set_interruptE4Port7uint8_tRNSt10error_codeE","espp::Aw9523::set_interrupt::mask"],[46,4,1,"_CPPv4N4espp6Aw952313set_interruptE7uint8_t7uint8_tRNSt10error_codeE","espp::Aw9523::set_interrupt::p0"],[46,4,1,"_CPPv4N4espp6Aw952313set_interruptE7uint8_t7uint8_tRNSt10error_codeE","espp::Aw9523::set_interrupt::p1"],[46,4,1,"_CPPv4N4espp6Aw952313set_interruptE4Port7uint8_tRNSt10error_codeE","espp::Aw9523::set_interrupt::port"],[46,3,1,"_CPPv4N4espp6Aw95238set_pinsE4Port7uint8_tRNSt10error_codeE","espp::Aw9523::set_pins"],[46,3,1,"_CPPv4N4espp6Aw95238set_pinsE7uint8_t7uint8_tRNSt10error_codeE","espp::Aw9523::set_pins"],[46,3,1,"_CPPv4N4espp6Aw95238set_pinsE8uint16_tRNSt10error_codeE","espp::Aw9523::set_pins"],[46,4,1,"_CPPv4N4espp6Aw95238set_pinsE4Port7uint8_tRNSt10error_codeE","espp::Aw9523::set_pins::ec"],[46,4,1,"_CPPv4N4espp6Aw95238set_pinsE7uint8_t7uint8_tRNSt10error_codeE","espp::Aw9523::set_pins::ec"],[46,4,1,"_CPPv4N4espp6Aw95238set_pinsE8uint16_tRNSt10error_codeE","espp::Aw9523::set_pins::ec"],[46,4,1,"_CPPv4N4espp6Aw95238set_pinsE4Port7uint8_tRNSt10error_codeE","espp::Aw9523::set_pins::mask"],[46,4,1,"_CPPv4N4espp6Aw95238set_pinsE8uint16_tRNSt10error_codeE","espp::Aw9523::set_pins::mask"],[46,4,1,"_CPPv4N4espp6Aw95238set_pinsE7uint8_t7uint8_tRNSt10error_codeE","espp::Aw9523::set_pins::p0"],[46,4,1,"_CPPv4N4espp6Aw95238set_pinsE7uint8_t7uint8_tRNSt10error_codeE","espp::Aw9523::set_pins::p1"],[46,4,1,"_CPPv4N4espp6Aw95238set_pinsE4Port7uint8_tRNSt10error_codeE","espp::Aw9523::set_pins::port"],[46,8,1,"_CPPv4N4espp6Aw95238write_fnE","espp::Aw9523::write_fn"],[53,2,1,"_CPPv4I0EN4espp6BezierE","espp::Bezier"],[53,3,1,"_CPPv4N4espp6Bezier6BezierERK14WeightedConfig","espp::Bezier::Bezier"],[53,3,1,"_CPPv4N4espp6Bezier6BezierERK6Config","espp::Bezier::Bezier"],[53,4,1,"_CPPv4N4espp6Bezier6BezierERK14WeightedConfig","espp::Bezier::Bezier::config"],[53,4,1,"_CPPv4N4espp6Bezier6BezierERK6Config","espp::Bezier::Bezier::config"],[53,2,1,"_CPPv4N4espp6Bezier6ConfigE","espp::Bezier::Config"],[53,1,1,"_CPPv4N4espp6Bezier6Config14control_pointsE","espp::Bezier::Config::control_points"],[53,5,1,"_CPPv4I0EN4espp6BezierE","espp::Bezier::T"],[53,2,1,"_CPPv4N4espp6Bezier14WeightedConfigE","espp::Bezier::WeightedConfig"],[53,1,1,"_CPPv4N4espp6Bezier14WeightedConfig14control_pointsE","espp::Bezier::WeightedConfig::control_points"],[53,1,1,"_CPPv4N4espp6Bezier14WeightedConfig7weightsE","espp::Bezier::WeightedConfig::weights"],[53,3,1,"_CPPv4NK4espp6Bezier2atEf","espp::Bezier::at"],[53,4,1,"_CPPv4NK4espp6Bezier2atEf","espp::Bezier::at::t"],[53,3,1,"_CPPv4NK4espp6BezierclEf","espp::Bezier::operator()"],[53,4,1,"_CPPv4NK4espp6BezierclEf","espp::Bezier::operator()::t"],[25,2,1,"_CPPv4N4espp15BiquadFilterDf1E","espp::BiquadFilterDf1"],[25,3,1,"_CPPv4N4espp15BiquadFilterDf16updateEf","espp::BiquadFilterDf1::update"],[25,4,1,"_CPPv4N4espp15BiquadFilterDf16updateEf","espp::BiquadFilterDf1::update::input"],[25,2,1,"_CPPv4N4espp15BiquadFilterDf2E","espp::BiquadFilterDf2"],[25,3,1,"_CPPv4N4espp15BiquadFilterDf26updateEKf","espp::BiquadFilterDf2::update"],[25,3,1,"_CPPv4N4espp15BiquadFilterDf26updateEPKfPf6size_t","espp::BiquadFilterDf2::update"],[25,4,1,"_CPPv4N4espp15BiquadFilterDf26updateEKf","espp::BiquadFilterDf2::update::input"],[25,4,1,"_CPPv4N4espp15BiquadFilterDf26updateEPKfPf6size_t","espp::BiquadFilterDf2::update::input"],[25,4,1,"_CPPv4N4espp15BiquadFilterDf26updateEPKfPf6size_t","espp::BiquadFilterDf2::update::length"],[25,4,1,"_CPPv4N4espp15BiquadFilterDf26updateEPKfPf6size_t","espp::BiquadFilterDf2::update::output"],[7,2,1,"_CPPv4N4espp10BldcDriverE","espp::BldcDriver"],[7,3,1,"_CPPv4N4espp10BldcDriver10BldcDriverERK6Config","espp::BldcDriver::BldcDriver"],[7,4,1,"_CPPv4N4espp10BldcDriver10BldcDriverERK6Config","espp::BldcDriver::BldcDriver::config"],[7,2,1,"_CPPv4N4espp10BldcDriver6ConfigE","espp::BldcDriver::Config"],[7,1,1,"_CPPv4N4espp10BldcDriver6Config9dead_zoneE","espp::BldcDriver::Config::dead_zone"],[7,1,1,"_CPPv4N4espp10BldcDriver6Config8gpio_a_hE","espp::BldcDriver::Config::gpio_a_h"],[7,1,1,"_CPPv4N4espp10BldcDriver6Config8gpio_a_lE","espp::BldcDriver::Config::gpio_a_l"],[7,1,1,"_CPPv4N4espp10BldcDriver6Config8gpio_b_hE","espp::BldcDriver::Config::gpio_b_h"],[7,1,1,"_CPPv4N4espp10BldcDriver6Config8gpio_b_lE","espp::BldcDriver::Config::gpio_b_l"],[7,1,1,"_CPPv4N4espp10BldcDriver6Config8gpio_c_hE","espp::BldcDriver::Config::gpio_c_h"],[7,1,1,"_CPPv4N4espp10BldcDriver6Config8gpio_c_lE","espp::BldcDriver::Config::gpio_c_l"],[7,1,1,"_CPPv4N4espp10BldcDriver6Config11gpio_enableE","espp::BldcDriver::Config::gpio_enable"],[7,1,1,"_CPPv4N4espp10BldcDriver6Config10gpio_faultE","espp::BldcDriver::Config::gpio_fault"],[7,1,1,"_CPPv4N4espp10BldcDriver6Config13limit_voltageE","espp::BldcDriver::Config::limit_voltage"],[7,1,1,"_CPPv4N4espp10BldcDriver6Config9log_levelE","espp::BldcDriver::Config::log_level"],[7,1,1,"_CPPv4N4espp10BldcDriver6Config20power_supply_voltageE","espp::BldcDriver::Config::power_supply_voltage"],[7,3,1,"_CPPv4N4espp10BldcDriver15configure_powerEff","espp::BldcDriver::configure_power"],[7,4,1,"_CPPv4N4espp10BldcDriver15configure_powerEff","espp::BldcDriver::configure_power::power_supply_voltage"],[7,4,1,"_CPPv4N4espp10BldcDriver15configure_powerEff","espp::BldcDriver::configure_power::voltage_limit"],[7,3,1,"_CPPv4N4espp10BldcDriver7disableEv","espp::BldcDriver::disable"],[7,3,1,"_CPPv4N4espp10BldcDriver6enableEv","espp::BldcDriver::enable"],[7,3,1,"_CPPv4NK4espp10BldcDriver22get_power_supply_limitEv","espp::BldcDriver::get_power_supply_limit"],[7,3,1,"_CPPv4NK4espp10BldcDriver17get_voltage_limitEv","espp::BldcDriver::get_voltage_limit"],[7,3,1,"_CPPv4NK4espp10BldcDriver10is_enabledEv","espp::BldcDriver::is_enabled"],[7,3,1,"_CPPv4N4espp10BldcDriver10is_faultedEv","espp::BldcDriver::is_faulted"],[7,3,1,"_CPPv4N4espp10BldcDriver15set_phase_stateEiii","espp::BldcDriver::set_phase_state"],[7,4,1,"_CPPv4N4espp10BldcDriver15set_phase_stateEiii","espp::BldcDriver::set_phase_state::state_a"],[7,4,1,"_CPPv4N4espp10BldcDriver15set_phase_stateEiii","espp::BldcDriver::set_phase_state::state_b"],[7,4,1,"_CPPv4N4espp10BldcDriver15set_phase_stateEiii","espp::BldcDriver::set_phase_state::state_c"],[7,3,1,"_CPPv4N4espp10BldcDriver7set_pwmEfff","espp::BldcDriver::set_pwm"],[7,4,1,"_CPPv4N4espp10BldcDriver7set_pwmEfff","espp::BldcDriver::set_pwm::duty_a"],[7,4,1,"_CPPv4N4espp10BldcDriver7set_pwmEfff","espp::BldcDriver::set_pwm::duty_b"],[7,4,1,"_CPPv4N4espp10BldcDriver7set_pwmEfff","espp::BldcDriver::set_pwm::duty_c"],[7,3,1,"_CPPv4N4espp10BldcDriver11set_voltageEfff","espp::BldcDriver::set_voltage"],[7,4,1,"_CPPv4N4espp10BldcDriver11set_voltageEfff","espp::BldcDriver::set_voltage::ua"],[7,4,1,"_CPPv4N4espp10BldcDriver11set_voltageEfff","espp::BldcDriver::set_voltage::ub"],[7,4,1,"_CPPv4N4espp10BldcDriver11set_voltageEfff","espp::BldcDriver::set_voltage::uc"],[7,3,1,"_CPPv4N4espp10BldcDriverD0Ev","espp::BldcDriver::~BldcDriver"],[33,2,1,"_CPPv4I_12MotorConceptEN4espp11BldcHapticsE","espp::BldcHaptics"],[33,3,1,"_CPPv4N4espp11BldcHaptics11BldcHapticsERK6Config","espp::BldcHaptics::BldcHaptics"],[33,4,1,"_CPPv4N4espp11BldcHaptics11BldcHapticsERK6Config","espp::BldcHaptics::BldcHaptics::config"],[33,2,1,"_CPPv4N4espp11BldcHaptics6ConfigE","espp::BldcHaptics::Config"],[33,1,1,"_CPPv4N4espp11BldcHaptics6Config13kd_factor_maxE","espp::BldcHaptics::Config::kd_factor_max"],[33,1,1,"_CPPv4N4espp11BldcHaptics6Config13kd_factor_minE","espp::BldcHaptics::Config::kd_factor_min"],[33,1,1,"_CPPv4N4espp11BldcHaptics6Config9kp_factorE","espp::BldcHaptics::Config::kp_factor"],[33,1,1,"_CPPv4N4espp11BldcHaptics6Config9log_levelE","espp::BldcHaptics::Config::log_level"],[33,1,1,"_CPPv4N4espp11BldcHaptics6Config5motorE","espp::BldcHaptics::Config::motor"],[33,5,1,"_CPPv4I_12MotorConceptEN4espp11BldcHapticsE","espp::BldcHaptics::M"],[33,3,1,"_CPPv4NK4espp11BldcHaptics12get_positionEv","espp::BldcHaptics::get_position"],[33,3,1,"_CPPv4NK4espp11BldcHaptics10is_runningEv","espp::BldcHaptics::is_running"],[33,3,1,"_CPPv4N4espp11BldcHaptics11play_hapticERKN6detail12HapticConfigE","espp::BldcHaptics::play_haptic"],[33,4,1,"_CPPv4N4espp11BldcHaptics11play_hapticERKN6detail12HapticConfigE","espp::BldcHaptics::play_haptic::config"],[33,3,1,"_CPPv4N4espp11BldcHaptics5startEv","espp::BldcHaptics::start"],[33,3,1,"_CPPv4N4espp11BldcHaptics4stopEv","espp::BldcHaptics::stop"],[33,3,1,"_CPPv4N4espp11BldcHaptics20update_detent_configERKN6detail12DetentConfigE","espp::BldcHaptics::update_detent_config"],[33,4,1,"_CPPv4N4espp11BldcHaptics20update_detent_configERKN6detail12DetentConfigE","espp::BldcHaptics::update_detent_config::config"],[33,3,1,"_CPPv4N4espp11BldcHapticsD0Ev","espp::BldcHaptics::~BldcHaptics"],[8,2,1,"_CPPv4I_13DriverConcept_13SensorConcept_20CurrentSensorConceptEN4espp9BldcMotorE","espp::BldcMotor"],[8,3,1,"_CPPv4N4espp9BldcMotor9BldcMotorERK6Config","espp::BldcMotor::BldcMotor"],[8,4,1,"_CPPv4N4espp9BldcMotor9BldcMotorERK6Config","espp::BldcMotor::BldcMotor::config"],[8,5,1,"_CPPv4I_13DriverConcept_13SensorConcept_20CurrentSensorConceptEN4espp9BldcMotorE","espp::BldcMotor::CS"],[8,2,1,"_CPPv4N4espp9BldcMotor6ConfigE","espp::BldcMotor::Config"],[8,1,1,"_CPPv4N4espp9BldcMotor6Config12angle_filterE","espp::BldcMotor::Config::angle_filter"],[8,1,1,"_CPPv4N4espp9BldcMotor6Config13current_limitE","espp::BldcMotor::Config::current_limit"],[8,1,1,"_CPPv4N4espp9BldcMotor6Config13current_senseE","espp::BldcMotor::Config::current_sense"],[8,1,1,"_CPPv4N4espp9BldcMotor6Config16d_current_filterE","espp::BldcMotor::Config::d_current_filter"],[8,1,1,"_CPPv4N4espp9BldcMotor6Config6driverE","espp::BldcMotor::Config::driver"],[8,1,1,"_CPPv4N4espp9BldcMotor6Config8foc_typeE","espp::BldcMotor::Config::foc_type"],[8,1,1,"_CPPv4N4espp9BldcMotor6Config9kv_ratingE","espp::BldcMotor::Config::kv_rating"],[8,1,1,"_CPPv4N4espp9BldcMotor6Config9log_levelE","espp::BldcMotor::Config::log_level"],[8,1,1,"_CPPv4N4espp9BldcMotor6Config14num_pole_pairsE","espp::BldcMotor::Config::num_pole_pairs"],[8,1,1,"_CPPv4N4espp9BldcMotor6Config16phase_inductanceE","espp::BldcMotor::Config::phase_inductance"],[8,1,1,"_CPPv4N4espp9BldcMotor6Config16phase_resistanceE","espp::BldcMotor::Config::phase_resistance"],[8,1,1,"_CPPv4N4espp9BldcMotor6Config16q_current_filterE","espp::BldcMotor::Config::q_current_filter"],[8,1,1,"_CPPv4N4espp9BldcMotor6Config6sensorE","espp::BldcMotor::Config::sensor"],[8,1,1,"_CPPv4N4espp9BldcMotor6Config17torque_controllerE","espp::BldcMotor::Config::torque_controller"],[8,1,1,"_CPPv4N4espp9BldcMotor6Config15velocity_filterE","espp::BldcMotor::Config::velocity_filter"],[8,1,1,"_CPPv4N4espp9BldcMotor6Config14velocity_limitE","espp::BldcMotor::Config::velocity_limit"],[8,5,1,"_CPPv4I_13DriverConcept_13SensorConcept_20CurrentSensorConceptEN4espp9BldcMotorE","espp::BldcMotor::D"],[8,5,1,"_CPPv4I_13DriverConcept_13SensorConcept_20CurrentSensorConceptEN4espp9BldcMotorE","espp::BldcMotor::S"],[8,3,1,"_CPPv4N4espp9BldcMotor7disableEv","espp::BldcMotor::disable"],[8,3,1,"_CPPv4N4espp9BldcMotor6enableEv","espp::BldcMotor::enable"],[8,8,1,"_CPPv4N4espp9BldcMotor9filter_fnE","espp::BldcMotor::filter_fn"],[8,3,1,"_CPPv4N4espp9BldcMotor20get_electrical_angleEv","espp::BldcMotor::get_electrical_angle"],[8,3,1,"_CPPv4N4espp9BldcMotor15get_shaft_angleEv","espp::BldcMotor::get_shaft_angle"],[8,3,1,"_CPPv4N4espp9BldcMotor18get_shaft_velocityEv","espp::BldcMotor::get_shaft_velocity"],[8,3,1,"_CPPv4NK4espp9BldcMotor10is_enabledEv","espp::BldcMotor::is_enabled"],[8,3,1,"_CPPv4N4espp9BldcMotor8loop_focEv","espp::BldcMotor::loop_foc"],[8,3,1,"_CPPv4N4espp9BldcMotor4moveEf","espp::BldcMotor::move"],[8,4,1,"_CPPv4N4espp9BldcMotor4moveEf","espp::BldcMotor::move::new_target"],[8,3,1,"_CPPv4N4espp9BldcMotor23set_motion_control_typeEN6detail17MotionControlTypeE","espp::BldcMotor::set_motion_control_type"],[8,4,1,"_CPPv4N4espp9BldcMotor23set_motion_control_typeEN6detail17MotionControlTypeE","espp::BldcMotor::set_motion_control_type::motion_control_type"],[8,3,1,"_CPPv4N4espp9BldcMotor17set_phase_voltageEfff","espp::BldcMotor::set_phase_voltage"],[8,4,1,"_CPPv4N4espp9BldcMotor17set_phase_voltageEfff","espp::BldcMotor::set_phase_voltage::el_angle"],[8,4,1,"_CPPv4N4espp9BldcMotor17set_phase_voltageEfff","espp::BldcMotor::set_phase_voltage::ud"],[8,4,1,"_CPPv4N4espp9BldcMotor17set_phase_voltageEfff","espp::BldcMotor::set_phase_voltage::uq"],[8,3,1,"_CPPv4N4espp9BldcMotorD0Ev","espp::BldcMotor::~BldcMotor"],[70,2,1,"_CPPv4N4espp6Bm8563E","espp::Bm8563"],[70,3,1,"_CPPv4N4espp6Bm85636Bm8563ERK6Config","espp::Bm8563::Bm8563"],[70,4,1,"_CPPv4N4espp6Bm85636Bm8563ERK6Config","espp::Bm8563::Bm8563::config"],[70,2,1,"_CPPv4N4espp6Bm85636ConfigE","espp::Bm8563::Config"],[70,1,1,"_CPPv4N4espp6Bm85636Config9log_levelE","espp::Bm8563::Config::log_level"],[70,1,1,"_CPPv4N4espp6Bm85636Config4readE","espp::Bm8563::Config::read"],[70,1,1,"_CPPv4N4espp6Bm85636Config5writeE","espp::Bm8563::Config::write"],[70,1,1,"_CPPv4N4espp6Bm856315DEFAULT_ADDRESSE","espp::Bm8563::DEFAULT_ADDRESS"],[70,2,1,"_CPPv4N4espp6Bm85634DateE","espp::Bm8563::Date"],[70,1,1,"_CPPv4N4espp6Bm85634Date3dayE","espp::Bm8563::Date::day"],[70,1,1,"_CPPv4N4espp6Bm85634Date5monthE","espp::Bm8563::Date::month"],[70,1,1,"_CPPv4N4espp6Bm85634Date7weekdayE","espp::Bm8563::Date::weekday"],[70,1,1,"_CPPv4N4espp6Bm85634Date4yearE","espp::Bm8563::Date::year"],[70,2,1,"_CPPv4N4espp6Bm85638DateTimeE","espp::Bm8563::DateTime"],[70,1,1,"_CPPv4N4espp6Bm85638DateTime4dateE","espp::Bm8563::DateTime::date"],[70,1,1,"_CPPv4N4espp6Bm85638DateTime4timeE","espp::Bm8563::DateTime::time"],[70,2,1,"_CPPv4N4espp6Bm85634TimeE","espp::Bm8563::Time"],[70,1,1,"_CPPv4N4espp6Bm85634Time4hourE","espp::Bm8563::Time::hour"],[70,1,1,"_CPPv4N4espp6Bm85634Time6minuteE","espp::Bm8563::Time::minute"],[70,1,1,"_CPPv4N4espp6Bm85634Time6secondE","espp::Bm8563::Time::second"],[70,3,1,"_CPPv4N4espp6Bm85638bcd2byteE7uint8_t","espp::Bm8563::bcd2byte"],[70,4,1,"_CPPv4N4espp6Bm85638bcd2byteE7uint8_t","espp::Bm8563::bcd2byte::value"],[70,3,1,"_CPPv4N4espp6Bm85638byte2bcdE7uint8_t","espp::Bm8563::byte2bcd"],[70,4,1,"_CPPv4N4espp6Bm85638byte2bcdE7uint8_t","espp::Bm8563::byte2bcd::value"],[70,3,1,"_CPPv4N4espp6Bm85638get_dateERNSt10error_codeE","espp::Bm8563::get_date"],[70,4,1,"_CPPv4N4espp6Bm85638get_dateERNSt10error_codeE","espp::Bm8563::get_date::ec"],[70,3,1,"_CPPv4N4espp6Bm856313get_date_timeERNSt10error_codeE","espp::Bm8563::get_date_time"],[70,4,1,"_CPPv4N4espp6Bm856313get_date_timeERNSt10error_codeE","espp::Bm8563::get_date_time::ec"],[70,3,1,"_CPPv4N4espp6Bm85638get_timeERNSt10error_codeE","espp::Bm8563::get_time"],[70,4,1,"_CPPv4N4espp6Bm85638get_timeERNSt10error_codeE","espp::Bm8563::get_time::ec"],[70,8,1,"_CPPv4N4espp6Bm85637read_fnE","espp::Bm8563::read_fn"],[70,3,1,"_CPPv4N4espp6Bm85638set_dateERK4DateRNSt10error_codeE","espp::Bm8563::set_date"],[70,4,1,"_CPPv4N4espp6Bm85638set_dateERK4DateRNSt10error_codeE","espp::Bm8563::set_date::d"],[70,4,1,"_CPPv4N4espp6Bm85638set_dateERK4DateRNSt10error_codeE","espp::Bm8563::set_date::ec"],[70,3,1,"_CPPv4N4espp6Bm856313set_date_timeER8DateTimeRNSt10error_codeE","espp::Bm8563::set_date_time"],[70,4,1,"_CPPv4N4espp6Bm856313set_date_timeER8DateTimeRNSt10error_codeE","espp::Bm8563::set_date_time::dt"],[70,4,1,"_CPPv4N4espp6Bm856313set_date_timeER8DateTimeRNSt10error_codeE","espp::Bm8563::set_date_time::ec"],[70,3,1,"_CPPv4N4espp6Bm85638set_timeERK4TimeRNSt10error_codeE","espp::Bm8563::set_time"],[70,4,1,"_CPPv4N4espp6Bm85638set_timeERK4TimeRNSt10error_codeE","espp::Bm8563::set_time::ec"],[70,4,1,"_CPPv4N4espp6Bm85638set_timeERK4TimeRNSt10error_codeE","espp::Bm8563::set_time::t"],[70,8,1,"_CPPv4N4espp6Bm85638write_fnE","espp::Bm8563::write_fn"],[26,2,1,"_CPPv4I_6size_t0EN4espp17ButterworthFilterE","espp::ButterworthFilter"],[26,3,1,"_CPPv4N4espp17ButterworthFilter17ButterworthFilterERK6Config","espp::ButterworthFilter::ButterworthFilter"],[26,4,1,"_CPPv4N4espp17ButterworthFilter17ButterworthFilterERK6Config","espp::ButterworthFilter::ButterworthFilter::config"],[26,2,1,"_CPPv4N4espp17ButterworthFilter6ConfigE","espp::ButterworthFilter::Config"],[26,1,1,"_CPPv4N4espp17ButterworthFilter6Config27normalized_cutoff_frequencyE","espp::ButterworthFilter::Config::normalized_cutoff_frequency"],[26,5,1,"_CPPv4I_6size_t0EN4espp17ButterworthFilterE","espp::ButterworthFilter::Impl"],[26,5,1,"_CPPv4I_6size_t0EN4espp17ButterworthFilterE","espp::ButterworthFilter::ORDER"],[26,3,1,"_CPPv4N4espp17ButterworthFilterclEf","espp::ButterworthFilter::operator()"],[26,4,1,"_CPPv4N4espp17ButterworthFilterclEf","espp::ButterworthFilter::operator()::input"],[26,3,1,"_CPPv4N4espp17ButterworthFilter6updateEf","espp::ButterworthFilter::update"],[26,4,1,"_CPPv4N4espp17ButterworthFilter6updateEf","espp::ButterworthFilter::update::input"],[10,2,1,"_CPPv4N4espp6ButtonE","espp::Button"],[10,6,1,"_CPPv4N4espp6Button11ActiveLevelE","espp::Button::ActiveLevel"],[10,7,1,"_CPPv4N4espp6Button11ActiveLevel4HIGHE","espp::Button::ActiveLevel::HIGH"],[10,7,1,"_CPPv4N4espp6Button11ActiveLevel3LOWE","espp::Button::ActiveLevel::LOW"],[10,3,1,"_CPPv4N4espp6Button6ButtonERK6Config","espp::Button::Button"],[10,4,1,"_CPPv4N4espp6Button6ButtonERK6Config","espp::Button::Button::config"],[10,2,1,"_CPPv4N4espp6Button6ConfigE","espp::Button::Config"],[10,1,1,"_CPPv4N4espp6Button6Config12active_levelE","espp::Button::Config::active_level"],[10,1,1,"_CPPv4N4espp6Button6Config8callbackE","espp::Button::Config::callback"],[10,1,1,"_CPPv4N4espp6Button6Config7core_idE","espp::Button::Config::core_id"],[10,1,1,"_CPPv4N4espp6Button6Config8gpio_numE","espp::Button::Config::gpio_num"],[10,1,1,"_CPPv4N4espp6Button6Config14interrupt_typeE","espp::Button::Config::interrupt_type"],[10,1,1,"_CPPv4N4espp6Button6Config9log_levelE","espp::Button::Config::log_level"],[10,1,1,"_CPPv4N4espp6Button6Config4nameE","espp::Button::Config::name"],[10,1,1,"_CPPv4N4espp6Button6Config8priorityE","espp::Button::Config::priority"],[10,1,1,"_CPPv4N4espp6Button6Config16pulldown_enabledE","espp::Button::Config::pulldown_enabled"],[10,1,1,"_CPPv4N4espp6Button6Config14pullup_enabledE","espp::Button::Config::pullup_enabled"],[10,1,1,"_CPPv4N4espp6Button6Config21task_stack_size_bytesE","espp::Button::Config::task_stack_size_bytes"],[10,2,1,"_CPPv4N4espp6Button5EventE","espp::Button::Event"],[10,1,1,"_CPPv4N4espp6Button5Event8gpio_numE","espp::Button::Event::gpio_num"],[10,1,1,"_CPPv4N4espp6Button5Event7pressedE","espp::Button::Event::pressed"],[10,6,1,"_CPPv4N4espp6Button13InterruptTypeE","espp::Button::InterruptType"],[10,7,1,"_CPPv4N4espp6Button13InterruptType8ANY_EDGEE","espp::Button::InterruptType::ANY_EDGE"],[10,7,1,"_CPPv4N4espp6Button13InterruptType12FALLING_EDGEE","espp::Button::InterruptType::FALLING_EDGE"],[10,7,1,"_CPPv4N4espp6Button13InterruptType10HIGH_LEVELE","espp::Button::InterruptType::HIGH_LEVEL"],[10,7,1,"_CPPv4N4espp6Button13InterruptType9LOW_LEVELE","espp::Button::InterruptType::LOW_LEVEL"],[10,7,1,"_CPPv4N4espp6Button13InterruptType11RISING_EDGEE","espp::Button::InterruptType::RISING_EDGE"],[10,8,1,"_CPPv4N4espp6Button17event_callback_fnE","espp::Button::event_callback_fn"],[10,3,1,"_CPPv4NK4espp6Button10is_pressedEv","espp::Button::is_pressed"],[10,3,1,"_CPPv4N4espp6ButtonD0Ev","espp::Button::~Button"],[11,2,1,"_CPPv4N4espp3CliE","espp::Cli"],[11,3,1,"_CPPv4N4espp3Cli3CliERN3cli3CliERNSt7istreamERNSt7ostreamE","espp::Cli::Cli"],[11,4,1,"_CPPv4N4espp3Cli3CliERN3cli3CliERNSt7istreamERNSt7ostreamE","espp::Cli::Cli::_cli"],[11,4,1,"_CPPv4N4espp3Cli3CliERN3cli3CliERNSt7istreamERNSt7ostreamE","espp::Cli::Cli::_in"],[11,4,1,"_CPPv4N4espp3Cli3CliERN3cli3CliERNSt7istreamERNSt7ostreamE","espp::Cli::Cli::_out"],[11,3,1,"_CPPv4NK4espp3Cli15GetInputHistoryEv","espp::Cli::GetInputHistory"],[11,3,1,"_CPPv4N4espp3Cli15SetHandleResizeEb","espp::Cli::SetHandleResize"],[11,4,1,"_CPPv4N4espp3Cli15SetHandleResizeEb","espp::Cli::SetHandleResize::handle_resize"],[11,3,1,"_CPPv4N4espp3Cli15SetInputHistoryERKN9LineInput7HistoryE","espp::Cli::SetInputHistory"],[11,4,1,"_CPPv4N4espp3Cli15SetInputHistoryERKN9LineInput7HistoryE","espp::Cli::SetInputHistory::history"],[11,3,1,"_CPPv4N4espp3Cli19SetInputHistorySizeE6size_t","espp::Cli::SetInputHistorySize"],[11,4,1,"_CPPv4N4espp3Cli19SetInputHistorySizeE6size_t","espp::Cli::SetInputHistorySize::history_size"],[11,3,1,"_CPPv4N4espp3Cli5StartEv","espp::Cli::Start"],[11,3,1,"_CPPv4N4espp3Cli22configure_stdin_stdoutEv","espp::Cli::configure_stdin_stdout"],[3,2,1,"_CPPv4N4espp13ContinuousAdcE","espp::ContinuousAdc"],[3,2,1,"_CPPv4N4espp13ContinuousAdc6ConfigE","espp::ContinuousAdc::Config"],[3,1,1,"_CPPv4N4espp13ContinuousAdc6Config8channelsE","espp::ContinuousAdc::Config::channels"],[3,1,1,"_CPPv4N4espp13ContinuousAdc6Config12convert_modeE","espp::ContinuousAdc::Config::convert_mode"],[3,1,1,"_CPPv4N4espp13ContinuousAdc6Config9log_levelE","espp::ContinuousAdc::Config::log_level"],[3,1,1,"_CPPv4N4espp13ContinuousAdc6Config14sample_rate_hzE","espp::ContinuousAdc::Config::sample_rate_hz"],[3,1,1,"_CPPv4N4espp13ContinuousAdc6Config13task_priorityE","espp::ContinuousAdc::Config::task_priority"],[3,1,1,"_CPPv4N4espp13ContinuousAdc6Config17window_size_bytesE","espp::ContinuousAdc::Config::window_size_bytes"],[3,3,1,"_CPPv4N4espp13ContinuousAdc13ContinuousAdcERK6Config","espp::ContinuousAdc::ContinuousAdc"],[3,4,1,"_CPPv4N4espp13ContinuousAdc13ContinuousAdcERK6Config","espp::ContinuousAdc::ContinuousAdc::config"],[3,3,1,"_CPPv4N4espp13ContinuousAdc6get_mvERK9AdcConfig","espp::ContinuousAdc::get_mv"],[3,4,1,"_CPPv4N4espp13ContinuousAdc6get_mvERK9AdcConfig","espp::ContinuousAdc::get_mv::config"],[3,3,1,"_CPPv4N4espp13ContinuousAdc8get_rateERK9AdcConfig","espp::ContinuousAdc::get_rate"],[3,4,1,"_CPPv4N4espp13ContinuousAdc8get_rateERK9AdcConfig","espp::ContinuousAdc::get_rate::config"],[3,3,1,"_CPPv4N4espp13ContinuousAdc5startEv","espp::ContinuousAdc::start"],[3,3,1,"_CPPv4N4espp13ContinuousAdc4stopEv","espp::ContinuousAdc::stop"],[3,3,1,"_CPPv4N4espp13ContinuousAdcD0Ev","espp::ContinuousAdc::~ContinuousAdc"],[13,2,1,"_CPPv4N4espp10ControllerE","espp::Controller"],[13,2,1,"_CPPv4N4espp10Controller20AnalogJoystickConfigE","espp::Controller::AnalogJoystickConfig"],[13,1,1,"_CPPv4N4espp10Controller20AnalogJoystickConfig10active_lowE","espp::Controller::AnalogJoystickConfig::active_low"],[13,1,1,"_CPPv4N4espp10Controller20AnalogJoystickConfig6gpio_aE","espp::Controller::AnalogJoystickConfig::gpio_a"],[13,1,1,"_CPPv4N4espp10Controller20AnalogJoystickConfig6gpio_bE","espp::Controller::AnalogJoystickConfig::gpio_b"],[13,1,1,"_CPPv4N4espp10Controller20AnalogJoystickConfig20gpio_joystick_selectE","espp::Controller::AnalogJoystickConfig::gpio_joystick_select"],[13,1,1,"_CPPv4N4espp10Controller20AnalogJoystickConfig11gpio_selectE","espp::Controller::AnalogJoystickConfig::gpio_select"],[13,1,1,"_CPPv4N4espp10Controller20AnalogJoystickConfig10gpio_startE","espp::Controller::AnalogJoystickConfig::gpio_start"],[13,1,1,"_CPPv4N4espp10Controller20AnalogJoystickConfig6gpio_xE","espp::Controller::AnalogJoystickConfig::gpio_x"],[13,1,1,"_CPPv4N4espp10Controller20AnalogJoystickConfig6gpio_yE","espp::Controller::AnalogJoystickConfig::gpio_y"],[13,1,1,"_CPPv4N4espp10Controller20AnalogJoystickConfig15joystick_configE","espp::Controller::AnalogJoystickConfig::joystick_config"],[13,1,1,"_CPPv4N4espp10Controller20AnalogJoystickConfig9log_levelE","espp::Controller::AnalogJoystickConfig::log_level"],[13,6,1,"_CPPv4N4espp10Controller6ButtonE","espp::Controller::Button"],[13,7,1,"_CPPv4N4espp10Controller6Button1AE","espp::Controller::Button::A"],[13,7,1,"_CPPv4N4espp10Controller6Button1BE","espp::Controller::Button::B"],[13,7,1,"_CPPv4N4espp10Controller6Button4DOWNE","espp::Controller::Button::DOWN"],[13,7,1,"_CPPv4N4espp10Controller6Button15JOYSTICK_SELECTE","espp::Controller::Button::JOYSTICK_SELECT"],[13,7,1,"_CPPv4N4espp10Controller6Button11LAST_UNUSEDE","espp::Controller::Button::LAST_UNUSED"],[13,7,1,"_CPPv4N4espp10Controller6Button4LEFTE","espp::Controller::Button::LEFT"],[13,7,1,"_CPPv4N4espp10Controller6Button5RIGHTE","espp::Controller::Button::RIGHT"],[13,7,1,"_CPPv4N4espp10Controller6Button6SELECTE","espp::Controller::Button::SELECT"],[13,7,1,"_CPPv4N4espp10Controller6Button5STARTE","espp::Controller::Button::START"],[13,7,1,"_CPPv4N4espp10Controller6Button2UPE","espp::Controller::Button::UP"],[13,7,1,"_CPPv4N4espp10Controller6Button1XE","espp::Controller::Button::X"],[13,7,1,"_CPPv4N4espp10Controller6Button1YE","espp::Controller::Button::Y"],[13,3,1,"_CPPv4N4espp10Controller10ControllerERK10DualConfig","espp::Controller::Controller"],[13,3,1,"_CPPv4N4espp10Controller10ControllerERK13DigitalConfig","espp::Controller::Controller"],[13,3,1,"_CPPv4N4espp10Controller10ControllerERK20AnalogJoystickConfig","espp::Controller::Controller"],[13,4,1,"_CPPv4N4espp10Controller10ControllerERK10DualConfig","espp::Controller::Controller::config"],[13,4,1,"_CPPv4N4espp10Controller10ControllerERK13DigitalConfig","espp::Controller::Controller::config"],[13,4,1,"_CPPv4N4espp10Controller10ControllerERK20AnalogJoystickConfig","espp::Controller::Controller::config"],[13,2,1,"_CPPv4N4espp10Controller13DigitalConfigE","espp::Controller::DigitalConfig"],[13,1,1,"_CPPv4N4espp10Controller13DigitalConfig10active_lowE","espp::Controller::DigitalConfig::active_low"],[13,1,1,"_CPPv4N4espp10Controller13DigitalConfig6gpio_aE","espp::Controller::DigitalConfig::gpio_a"],[13,1,1,"_CPPv4N4espp10Controller13DigitalConfig6gpio_bE","espp::Controller::DigitalConfig::gpio_b"],[13,1,1,"_CPPv4N4espp10Controller13DigitalConfig9gpio_downE","espp::Controller::DigitalConfig::gpio_down"],[13,1,1,"_CPPv4N4espp10Controller13DigitalConfig9gpio_leftE","espp::Controller::DigitalConfig::gpio_left"],[13,1,1,"_CPPv4N4espp10Controller13DigitalConfig10gpio_rightE","espp::Controller::DigitalConfig::gpio_right"],[13,1,1,"_CPPv4N4espp10Controller13DigitalConfig11gpio_selectE","espp::Controller::DigitalConfig::gpio_select"],[13,1,1,"_CPPv4N4espp10Controller13DigitalConfig10gpio_startE","espp::Controller::DigitalConfig::gpio_start"],[13,1,1,"_CPPv4N4espp10Controller13DigitalConfig7gpio_upE","espp::Controller::DigitalConfig::gpio_up"],[13,1,1,"_CPPv4N4espp10Controller13DigitalConfig6gpio_xE","espp::Controller::DigitalConfig::gpio_x"],[13,1,1,"_CPPv4N4espp10Controller13DigitalConfig6gpio_yE","espp::Controller::DigitalConfig::gpio_y"],[13,1,1,"_CPPv4N4espp10Controller13DigitalConfig9log_levelE","espp::Controller::DigitalConfig::log_level"],[13,2,1,"_CPPv4N4espp10Controller10DualConfigE","espp::Controller::DualConfig"],[13,1,1,"_CPPv4N4espp10Controller10DualConfig10active_lowE","espp::Controller::DualConfig::active_low"],[13,1,1,"_CPPv4N4espp10Controller10DualConfig6gpio_aE","espp::Controller::DualConfig::gpio_a"],[13,1,1,"_CPPv4N4espp10Controller10DualConfig6gpio_bE","espp::Controller::DualConfig::gpio_b"],[13,1,1,"_CPPv4N4espp10Controller10DualConfig9gpio_downE","espp::Controller::DualConfig::gpio_down"],[13,1,1,"_CPPv4N4espp10Controller10DualConfig20gpio_joystick_selectE","espp::Controller::DualConfig::gpio_joystick_select"],[13,1,1,"_CPPv4N4espp10Controller10DualConfig9gpio_leftE","espp::Controller::DualConfig::gpio_left"],[13,1,1,"_CPPv4N4espp10Controller10DualConfig10gpio_rightE","espp::Controller::DualConfig::gpio_right"],[13,1,1,"_CPPv4N4espp10Controller10DualConfig11gpio_selectE","espp::Controller::DualConfig::gpio_select"],[13,1,1,"_CPPv4N4espp10Controller10DualConfig10gpio_startE","espp::Controller::DualConfig::gpio_start"],[13,1,1,"_CPPv4N4espp10Controller10DualConfig7gpio_upE","espp::Controller::DualConfig::gpio_up"],[13,1,1,"_CPPv4N4espp10Controller10DualConfig6gpio_xE","espp::Controller::DualConfig::gpio_x"],[13,1,1,"_CPPv4N4espp10Controller10DualConfig6gpio_yE","espp::Controller::DualConfig::gpio_y"],[13,1,1,"_CPPv4N4espp10Controller10DualConfig9log_levelE","espp::Controller::DualConfig::log_level"],[13,2,1,"_CPPv4N4espp10Controller5StateE","espp::Controller::State"],[13,1,1,"_CPPv4N4espp10Controller5State1aE","espp::Controller::State::a"],[13,1,1,"_CPPv4N4espp10Controller5State1bE","espp::Controller::State::b"],[13,1,1,"_CPPv4N4espp10Controller5State4downE","espp::Controller::State::down"],[13,1,1,"_CPPv4N4espp10Controller5State15joystick_selectE","espp::Controller::State::joystick_select"],[13,1,1,"_CPPv4N4espp10Controller5State4leftE","espp::Controller::State::left"],[13,1,1,"_CPPv4N4espp10Controller5State5rightE","espp::Controller::State::right"],[13,1,1,"_CPPv4N4espp10Controller5State6selectE","espp::Controller::State::select"],[13,1,1,"_CPPv4N4espp10Controller5State5startE","espp::Controller::State::start"],[13,1,1,"_CPPv4N4espp10Controller5State2upE","espp::Controller::State::up"],[13,1,1,"_CPPv4N4espp10Controller5State1xE","espp::Controller::State::x"],[13,1,1,"_CPPv4N4espp10Controller5State1yE","espp::Controller::State::y"],[13,3,1,"_CPPv4N4espp10Controller9get_stateEv","espp::Controller::get_state"],[13,3,1,"_CPPv4N4espp10Controller10is_pressedEK6Button","espp::Controller::is_pressed"],[13,4,1,"_CPPv4N4espp10Controller10is_pressedEK6Button","espp::Controller::is_pressed::input"],[13,3,1,"_CPPv4N4espp10Controller6updateEv","espp::Controller::update"],[13,3,1,"_CPPv4N4espp10ControllerD0Ev","espp::Controller::~Controller"],[15,2,1,"_CPPv4N4espp7DisplayE","espp::Display"],[15,2,1,"_CPPv4N4espp7Display16AllocatingConfigE","espp::Display::AllocatingConfig"],[15,1,1,"_CPPv4N4espp7Display16AllocatingConfig16allocation_flagsE","espp::Display::AllocatingConfig::allocation_flags"],[15,1,1,"_CPPv4N4espp7Display16AllocatingConfig18backlight_on_valueE","espp::Display::AllocatingConfig::backlight_on_value"],[15,1,1,"_CPPv4N4espp7Display16AllocatingConfig13backlight_pinE","espp::Display::AllocatingConfig::backlight_pin"],[15,1,1,"_CPPv4N4espp7Display16AllocatingConfig15double_bufferedE","espp::Display::AllocatingConfig::double_buffered"],[15,1,1,"_CPPv4N4espp7Display16AllocatingConfig14flush_callbackE","espp::Display::AllocatingConfig::flush_callback"],[15,1,1,"_CPPv4N4espp7Display16AllocatingConfig6heightE","espp::Display::AllocatingConfig::height"],[15,1,1,"_CPPv4N4espp7Display16AllocatingConfig9log_levelE","espp::Display::AllocatingConfig::log_level"],[15,1,1,"_CPPv4N4espp7Display16AllocatingConfig17pixel_buffer_sizeE","espp::Display::AllocatingConfig::pixel_buffer_size"],[15,1,1,"_CPPv4N4espp7Display16AllocatingConfig8rotationE","espp::Display::AllocatingConfig::rotation"],[15,1,1,"_CPPv4N4espp7Display16AllocatingConfig25software_rotation_enabledE","espp::Display::AllocatingConfig::software_rotation_enabled"],[15,1,1,"_CPPv4N4espp7Display16AllocatingConfig13update_periodE","espp::Display::AllocatingConfig::update_period"],[15,1,1,"_CPPv4N4espp7Display16AllocatingConfig5widthE","espp::Display::AllocatingConfig::width"],[15,3,1,"_CPPv4N4espp7Display7DisplayERK16AllocatingConfig","espp::Display::Display"],[15,3,1,"_CPPv4N4espp7Display7DisplayERK19NonAllocatingConfig","espp::Display::Display"],[15,4,1,"_CPPv4N4espp7Display7DisplayERK16AllocatingConfig","espp::Display::Display::config"],[15,4,1,"_CPPv4N4espp7Display7DisplayERK19NonAllocatingConfig","espp::Display::Display::config"],[15,2,1,"_CPPv4N4espp7Display19NonAllocatingConfigE","espp::Display::NonAllocatingConfig"],[15,1,1,"_CPPv4N4espp7Display19NonAllocatingConfig18backlight_on_valueE","espp::Display::NonAllocatingConfig::backlight_on_value"],[15,1,1,"_CPPv4N4espp7Display19NonAllocatingConfig13backlight_pinE","espp::Display::NonAllocatingConfig::backlight_pin"],[15,1,1,"_CPPv4N4espp7Display19NonAllocatingConfig14flush_callbackE","espp::Display::NonAllocatingConfig::flush_callback"],[15,1,1,"_CPPv4N4espp7Display19NonAllocatingConfig6heightE","espp::Display::NonAllocatingConfig::height"],[15,1,1,"_CPPv4N4espp7Display19NonAllocatingConfig9log_levelE","espp::Display::NonAllocatingConfig::log_level"],[15,1,1,"_CPPv4N4espp7Display19NonAllocatingConfig17pixel_buffer_sizeE","espp::Display::NonAllocatingConfig::pixel_buffer_size"],[15,1,1,"_CPPv4N4espp7Display19NonAllocatingConfig8rotationE","espp::Display::NonAllocatingConfig::rotation"],[15,1,1,"_CPPv4N4espp7Display19NonAllocatingConfig25software_rotation_enabledE","espp::Display::NonAllocatingConfig::software_rotation_enabled"],[15,1,1,"_CPPv4N4espp7Display19NonAllocatingConfig13update_periodE","espp::Display::NonAllocatingConfig::update_period"],[15,1,1,"_CPPv4N4espp7Display19NonAllocatingConfig5vram0E","espp::Display::NonAllocatingConfig::vram0"],[15,1,1,"_CPPv4N4espp7Display19NonAllocatingConfig5vram1E","espp::Display::NonAllocatingConfig::vram1"],[15,1,1,"_CPPv4N4espp7Display19NonAllocatingConfig5widthE","espp::Display::NonAllocatingConfig::width"],[15,6,1,"_CPPv4N4espp7Display8RotationE","espp::Display::Rotation"],[15,7,1,"_CPPv4N4espp7Display8Rotation9LANDSCAPEE","espp::Display::Rotation::LANDSCAPE"],[15,7,1,"_CPPv4N4espp7Display8Rotation18LANDSCAPE_INVERTEDE","espp::Display::Rotation::LANDSCAPE_INVERTED"],[15,7,1,"_CPPv4N4espp7Display8Rotation8PORTRAITE","espp::Display::Rotation::PORTRAIT"],[15,7,1,"_CPPv4N4espp7Display8Rotation17PORTRAIT_INVERTEDE","espp::Display::Rotation::PORTRAIT_INVERTED"],[15,6,1,"_CPPv4N4espp7Display6SignalE","espp::Display::Signal"],[15,7,1,"_CPPv4N4espp7Display6Signal5FLUSHE","espp::Display::Signal::FLUSH"],[15,7,1,"_CPPv4N4espp7Display6Signal4NONEE","espp::Display::Signal::NONE"],[15,8,1,"_CPPv4N4espp7Display8flush_fnE","espp::Display::flush_fn"],[15,3,1,"_CPPv4N4espp7Display13force_refreshEv","espp::Display::force_refresh"],[15,3,1,"_CPPv4NK4espp7Display14get_brightnessEv","espp::Display::get_brightness"],[15,3,1,"_CPPv4NK4espp7Display6heightEv","espp::Display::height"],[15,3,1,"_CPPv4N4espp7Display5pauseEv","espp::Display::pause"],[15,3,1,"_CPPv4N4espp7Display6resumeEv","espp::Display::resume"],[15,3,1,"_CPPv4N4espp7Display14set_brightnessEf","espp::Display::set_brightness"],[15,4,1,"_CPPv4N4espp7Display14set_brightnessEf","espp::Display::set_brightness::brightness"],[15,3,1,"_CPPv4N4espp7Display5vram0Ev","espp::Display::vram0"],[15,3,1,"_CPPv4N4espp7Display5vram1Ev","espp::Display::vram1"],[15,3,1,"_CPPv4N4espp7Display15vram_size_bytesEv","espp::Display::vram_size_bytes"],[15,3,1,"_CPPv4N4espp7Display12vram_size_pxEv","espp::Display::vram_size_px"],[15,3,1,"_CPPv4NK4espp7Display5widthEv","espp::Display::width"],[15,3,1,"_CPPv4N4espp7DisplayD0Ev","espp::Display::~Display"],[34,2,1,"_CPPv4N4espp7Drv2605E","espp::Drv2605"],[34,2,1,"_CPPv4N4espp7Drv26056ConfigE","espp::Drv2605::Config"],[34,1,1,"_CPPv4N4espp7Drv26056Config9auto_initE","espp::Drv2605::Config::auto_init"],[34,1,1,"_CPPv4N4espp7Drv26056Config14device_addressE","espp::Drv2605::Config::device_address"],[34,1,1,"_CPPv4N4espp7Drv26056Config9log_levelE","espp::Drv2605::Config::log_level"],[34,1,1,"_CPPv4N4espp7Drv26056Config10motor_typeE","espp::Drv2605::Config::motor_type"],[34,1,1,"_CPPv4N4espp7Drv26056Config4readE","espp::Drv2605::Config::read"],[34,1,1,"_CPPv4N4espp7Drv26056Config5writeE","espp::Drv2605::Config::write"],[34,3,1,"_CPPv4N4espp7Drv26057Drv2605ERK6Config","espp::Drv2605::Drv2605"],[34,4,1,"_CPPv4N4espp7Drv26057Drv2605ERK6Config","espp::Drv2605::Drv2605::config"],[34,6,1,"_CPPv4N4espp7Drv26057LibraryE","espp::Drv2605::Library"],[34,7,1,"_CPPv4N4espp7Drv26057Library5EMPTYE","espp::Drv2605::Library::EMPTY"],[34,7,1,"_CPPv4N4espp7Drv26057Library5ERM_0E","espp::Drv2605::Library::ERM_0"],[34,7,1,"_CPPv4N4espp7Drv26057Library5ERM_1E","espp::Drv2605::Library::ERM_1"],[34,7,1,"_CPPv4N4espp7Drv26057Library5ERM_2E","espp::Drv2605::Library::ERM_2"],[34,7,1,"_CPPv4N4espp7Drv26057Library5ERM_3E","espp::Drv2605::Library::ERM_3"],[34,7,1,"_CPPv4N4espp7Drv26057Library5ERM_4E","espp::Drv2605::Library::ERM_4"],[34,7,1,"_CPPv4N4espp7Drv26057Library3LRAE","espp::Drv2605::Library::LRA"],[34,6,1,"_CPPv4N4espp7Drv26054ModeE","espp::Drv2605::Mode"],[34,7,1,"_CPPv4N4espp7Drv26054Mode9AUDIOVIBEE","espp::Drv2605::Mode::AUDIOVIBE"],[34,7,1,"_CPPv4N4espp7Drv26054Mode7AUTOCALE","espp::Drv2605::Mode::AUTOCAL"],[34,7,1,"_CPPv4N4espp7Drv26054Mode7DIAGNOSE","espp::Drv2605::Mode::DIAGNOS"],[34,7,1,"_CPPv4N4espp7Drv26054Mode11EXTTRIGEDGEE","espp::Drv2605::Mode::EXTTRIGEDGE"],[34,7,1,"_CPPv4N4espp7Drv26054Mode10EXTTRIGLVLE","espp::Drv2605::Mode::EXTTRIGLVL"],[34,7,1,"_CPPv4N4espp7Drv26054Mode7INTTRIGE","espp::Drv2605::Mode::INTTRIG"],[34,7,1,"_CPPv4N4espp7Drv26054Mode9PWMANALOGE","espp::Drv2605::Mode::PWMANALOG"],[34,7,1,"_CPPv4N4espp7Drv26054Mode8REALTIMEE","espp::Drv2605::Mode::REALTIME"],[34,6,1,"_CPPv4N4espp7Drv26059MotorTypeE","espp::Drv2605::MotorType"],[34,7,1,"_CPPv4N4espp7Drv26059MotorType3ERME","espp::Drv2605::MotorType::ERM"],[34,7,1,"_CPPv4N4espp7Drv26059MotorType3LRAE","espp::Drv2605::MotorType::LRA"],[34,6,1,"_CPPv4N4espp7Drv26058WaveformE","espp::Drv2605::Waveform"],[34,7,1,"_CPPv4N4espp7Drv26058Waveform12ALERT_1000MSE","espp::Drv2605::Waveform::ALERT_1000MS"],[34,7,1,"_CPPv4N4espp7Drv26058Waveform11ALERT_750MSE","espp::Drv2605::Waveform::ALERT_750MS"],[34,7,1,"_CPPv4N4espp7Drv26058Waveform5BUZZ1E","espp::Drv2605::Waveform::BUZZ1"],[34,7,1,"_CPPv4N4espp7Drv26058Waveform5BUZZ2E","espp::Drv2605::Waveform::BUZZ2"],[34,7,1,"_CPPv4N4espp7Drv26058Waveform5BUZZ3E","espp::Drv2605::Waveform::BUZZ3"],[34,7,1,"_CPPv4N4espp7Drv26058Waveform5BUZZ4E","espp::Drv2605::Waveform::BUZZ4"],[34,7,1,"_CPPv4N4espp7Drv26058Waveform5BUZZ5E","espp::Drv2605::Waveform::BUZZ5"],[34,7,1,"_CPPv4N4espp7Drv26058Waveform12DOUBLE_CLICKE","espp::Drv2605::Waveform::DOUBLE_CLICK"],[34,7,1,"_CPPv4N4espp7Drv26058Waveform3ENDE","espp::Drv2605::Waveform::END"],[34,7,1,"_CPPv4N4espp7Drv26058Waveform3MAXE","espp::Drv2605::Waveform::MAX"],[34,7,1,"_CPPv4N4espp7Drv26058Waveform16PULSING_STRONG_1E","espp::Drv2605::Waveform::PULSING_STRONG_1"],[34,7,1,"_CPPv4N4espp7Drv26058Waveform16PULSING_STRONG_2E","espp::Drv2605::Waveform::PULSING_STRONG_2"],[34,7,1,"_CPPv4N4espp7Drv26058Waveform11SHARP_CLICKE","espp::Drv2605::Waveform::SHARP_CLICK"],[34,7,1,"_CPPv4N4espp7Drv26058Waveform9SOFT_BUMPE","espp::Drv2605::Waveform::SOFT_BUMP"],[34,7,1,"_CPPv4N4espp7Drv26058Waveform9SOFT_FUZZE","espp::Drv2605::Waveform::SOFT_FUZZ"],[34,7,1,"_CPPv4N4espp7Drv26058Waveform11STRONG_BUZZE","espp::Drv2605::Waveform::STRONG_BUZZ"],[34,7,1,"_CPPv4N4espp7Drv26058Waveform12STRONG_CLICKE","espp::Drv2605::Waveform::STRONG_CLICK"],[34,7,1,"_CPPv4N4espp7Drv26058Waveform18TRANSITION_CLICK_1E","espp::Drv2605::Waveform::TRANSITION_CLICK_1"],[34,7,1,"_CPPv4N4espp7Drv26058Waveform16TRANSITION_HUM_1E","espp::Drv2605::Waveform::TRANSITION_HUM_1"],[34,7,1,"_CPPv4N4espp7Drv26058Waveform12TRIPLE_CLICKE","espp::Drv2605::Waveform::TRIPLE_CLICK"],[34,3,1,"_CPPv4N4espp7Drv26059initalizeERNSt10error_codeE","espp::Drv2605::initalize"],[34,4,1,"_CPPv4N4espp7Drv26059initalizeERNSt10error_codeE","espp::Drv2605::initalize::ec"],[34,8,1,"_CPPv4N4espp7Drv26057read_fnE","espp::Drv2605::read_fn"],[34,3,1,"_CPPv4N4espp7Drv260514select_libraryE7LibraryRNSt10error_codeE","espp::Drv2605::select_library"],[34,4,1,"_CPPv4N4espp7Drv260514select_libraryE7LibraryRNSt10error_codeE","espp::Drv2605::select_library::ec"],[34,4,1,"_CPPv4N4espp7Drv260514select_libraryE7LibraryRNSt10error_codeE","espp::Drv2605::select_library::lib"],[34,3,1,"_CPPv4N4espp7Drv26058set_modeE4ModeRNSt10error_codeE","espp::Drv2605::set_mode"],[34,4,1,"_CPPv4N4espp7Drv26058set_modeE4ModeRNSt10error_codeE","espp::Drv2605::set_mode::ec"],[34,4,1,"_CPPv4N4espp7Drv26058set_modeE4ModeRNSt10error_codeE","espp::Drv2605::set_mode::mode"],[34,3,1,"_CPPv4N4espp7Drv260512set_waveformE7uint8_t8WaveformRNSt10error_codeE","espp::Drv2605::set_waveform"],[34,4,1,"_CPPv4N4espp7Drv260512set_waveformE7uint8_t8WaveformRNSt10error_codeE","espp::Drv2605::set_waveform::ec"],[34,4,1,"_CPPv4N4espp7Drv260512set_waveformE7uint8_t8WaveformRNSt10error_codeE","espp::Drv2605::set_waveform::slot"],[34,4,1,"_CPPv4N4espp7Drv260512set_waveformE7uint8_t8WaveformRNSt10error_codeE","espp::Drv2605::set_waveform::w"],[34,3,1,"_CPPv4N4espp7Drv26055startERNSt10error_codeE","espp::Drv2605::start"],[34,4,1,"_CPPv4N4espp7Drv26055startERNSt10error_codeE","espp::Drv2605::start::ec"],[34,3,1,"_CPPv4N4espp7Drv26054stopERNSt10error_codeE","espp::Drv2605::stop"],[34,4,1,"_CPPv4N4espp7Drv26054stopERNSt10error_codeE","espp::Drv2605::stop::ec"],[34,8,1,"_CPPv4N4espp7Drv26058write_fnE","espp::Drv2605::write_fn"],[38,2,1,"_CPPv4N4espp12EncoderInputE","espp::EncoderInput"],[38,2,1,"_CPPv4N4espp12EncoderInput6ConfigE","espp::EncoderInput::Config"],[38,1,1,"_CPPv4N4espp12EncoderInput6Config9log_levelE","espp::EncoderInput::Config::log_level"],[38,1,1,"_CPPv4N4espp12EncoderInput6Config4readE","espp::EncoderInput::Config::read"],[38,3,1,"_CPPv4N4espp12EncoderInput12EncoderInputERK6Config","espp::EncoderInput::EncoderInput"],[38,4,1,"_CPPv4N4espp12EncoderInput12EncoderInputERK6Config","espp::EncoderInput::EncoderInput::config"],[38,3,1,"_CPPv4N4espp12EncoderInput23get_button_input_deviceEv","espp::EncoderInput::get_button_input_device"],[38,3,1,"_CPPv4N4espp12EncoderInput24get_encoder_input_deviceEv","espp::EncoderInput::get_encoder_input_device"],[38,3,1,"_CPPv4N4espp12EncoderInputD0Ev","espp::EncoderInput::~EncoderInput"],[23,2,1,"_CPPv4N4espp12EventManagerE","espp::EventManager"],[23,3,1,"_CPPv4N4espp12EventManager13add_publisherERKNSt6stringERKNSt6stringE","espp::EventManager::add_publisher"],[23,4,1,"_CPPv4N4espp12EventManager13add_publisherERKNSt6stringERKNSt6stringE","espp::EventManager::add_publisher::component"],[23,4,1,"_CPPv4N4espp12EventManager13add_publisherERKNSt6stringERKNSt6stringE","espp::EventManager::add_publisher::topic"],[23,3,1,"_CPPv4N4espp12EventManager14add_subscriberERKNSt6stringERKNSt6stringERK17event_callback_fnK6size_t","espp::EventManager::add_subscriber"],[23,4,1,"_CPPv4N4espp12EventManager14add_subscriberERKNSt6stringERKNSt6stringERK17event_callback_fnK6size_t","espp::EventManager::add_subscriber::callback"],[23,4,1,"_CPPv4N4espp12EventManager14add_subscriberERKNSt6stringERKNSt6stringERK17event_callback_fnK6size_t","espp::EventManager::add_subscriber::component"],[23,4,1,"_CPPv4N4espp12EventManager14add_subscriberERKNSt6stringERKNSt6stringERK17event_callback_fnK6size_t","espp::EventManager::add_subscriber::stack_size_bytes"],[23,4,1,"_CPPv4N4espp12EventManager14add_subscriberERKNSt6stringERKNSt6stringERK17event_callback_fnK6size_t","espp::EventManager::add_subscriber::topic"],[23,8,1,"_CPPv4N4espp12EventManager17event_callback_fnE","espp::EventManager::event_callback_fn"],[23,3,1,"_CPPv4N4espp12EventManager3getEv","espp::EventManager::get"],[23,3,1,"_CPPv4N4espp12EventManager7publishERKNSt6stringERKNSt6vectorI7uint8_tEE","espp::EventManager::publish"],[23,4,1,"_CPPv4N4espp12EventManager7publishERKNSt6stringERKNSt6vectorI7uint8_tEE","espp::EventManager::publish::data"],[23,4,1,"_CPPv4N4espp12EventManager7publishERKNSt6stringERKNSt6vectorI7uint8_tEE","espp::EventManager::publish::topic"],[23,3,1,"_CPPv4N4espp12EventManager16remove_publisherERKNSt6stringERKNSt6stringE","espp::EventManager::remove_publisher"],[23,4,1,"_CPPv4N4espp12EventManager16remove_publisherERKNSt6stringERKNSt6stringE","espp::EventManager::remove_publisher::component"],[23,4,1,"_CPPv4N4espp12EventManager16remove_publisherERKNSt6stringERKNSt6stringE","espp::EventManager::remove_publisher::topic"],[23,3,1,"_CPPv4N4espp12EventManager17remove_subscriberERKNSt6stringERKNSt6stringE","espp::EventManager::remove_subscriber"],[23,4,1,"_CPPv4N4espp12EventManager17remove_subscriberERKNSt6stringERKNSt6stringE","espp::EventManager::remove_subscriber::component"],[23,4,1,"_CPPv4N4espp12EventManager17remove_subscriberERKNSt6stringERKNSt6stringE","espp::EventManager::remove_subscriber::topic"],[23,3,1,"_CPPv4N4espp12EventManager13set_log_levelEN6Logger9VerbosityE","espp::EventManager::set_log_level"],[23,4,1,"_CPPv4N4espp12EventManager13set_log_levelEN6Logger9VerbosityE","espp::EventManager::set_log_level::level"],[24,2,1,"_CPPv4N4espp10FileSystemE","espp::FileSystem"],[24,2,1,"_CPPv4N4espp10FileSystem10ListConfigE","espp::FileSystem::ListConfig"],[24,1,1,"_CPPv4N4espp10FileSystem10ListConfig9date_timeE","espp::FileSystem::ListConfig::date_time"],[24,1,1,"_CPPv4N4espp10FileSystem10ListConfig5groupE","espp::FileSystem::ListConfig::group"],[24,1,1,"_CPPv4N4espp10FileSystem10ListConfig15number_of_linksE","espp::FileSystem::ListConfig::number_of_links"],[24,1,1,"_CPPv4N4espp10FileSystem10ListConfig5ownerE","espp::FileSystem::ListConfig::owner"],[24,1,1,"_CPPv4N4espp10FileSystem10ListConfig11permissionsE","espp::FileSystem::ListConfig::permissions"],[24,1,1,"_CPPv4N4espp10FileSystem10ListConfig9recursiveE","espp::FileSystem::ListConfig::recursive"],[24,1,1,"_CPPv4N4espp10FileSystem10ListConfig4sizeE","espp::FileSystem::ListConfig::size"],[24,1,1,"_CPPv4N4espp10FileSystem10ListConfig4typeE","espp::FileSystem::ListConfig::type"],[24,3,1,"_CPPv4N4espp10FileSystem3getEv","espp::FileSystem::get"],[24,3,1,"_CPPv4N4espp10FileSystem14get_free_spaceEv","espp::FileSystem::get_free_space"],[24,3,1,"_CPPv4N4espp10FileSystem15get_mount_pointEv","espp::FileSystem::get_mount_point"],[24,3,1,"_CPPv4N4espp10FileSystem19get_partition_labelEv","espp::FileSystem::get_partition_label"],[24,3,1,"_CPPv4N4espp10FileSystem13get_root_pathEv","espp::FileSystem::get_root_path"],[24,3,1,"_CPPv4N4espp10FileSystem15get_total_spaceEv","espp::FileSystem::get_total_space"],[24,3,1,"_CPPv4N4espp10FileSystem14get_used_spaceEv","espp::FileSystem::get_used_space"],[24,3,1,"_CPPv4N4espp10FileSystem14human_readableE6size_t","espp::FileSystem::human_readable"],[24,4,1,"_CPPv4N4espp10FileSystem14human_readableE6size_t","espp::FileSystem::human_readable::bytes"],[24,3,1,"_CPPv4N4espp10FileSystem14list_directoryERKNSt10filesystem4pathERK10ListConfigRKNSt6stringE","espp::FileSystem::list_directory"],[24,3,1,"_CPPv4N4espp10FileSystem14list_directoryERKNSt6stringERK10ListConfigRKNSt6stringE","espp::FileSystem::list_directory"],[24,4,1,"_CPPv4N4espp10FileSystem14list_directoryERKNSt10filesystem4pathERK10ListConfigRKNSt6stringE","espp::FileSystem::list_directory::config"],[24,4,1,"_CPPv4N4espp10FileSystem14list_directoryERKNSt6stringERK10ListConfigRKNSt6stringE","espp::FileSystem::list_directory::config"],[24,4,1,"_CPPv4N4espp10FileSystem14list_directoryERKNSt10filesystem4pathERK10ListConfigRKNSt6stringE","espp::FileSystem::list_directory::path"],[24,4,1,"_CPPv4N4espp10FileSystem14list_directoryERKNSt6stringERK10ListConfigRKNSt6stringE","espp::FileSystem::list_directory::path"],[24,4,1,"_CPPv4N4espp10FileSystem14list_directoryERKNSt10filesystem4pathERK10ListConfigRKNSt6stringE","espp::FileSystem::list_directory::prefix"],[24,4,1,"_CPPv4N4espp10FileSystem14list_directoryERKNSt6stringERK10ListConfigRKNSt6stringE","espp::FileSystem::list_directory::prefix"],[24,3,1,"_CPPv4I0EN4espp10FileSystem9to_time_tENSt6time_tE2TP","espp::FileSystem::to_time_t"],[24,5,1,"_CPPv4I0EN4espp10FileSystem9to_time_tENSt6time_tE2TP","espp::FileSystem::to_time_t::TP"],[24,4,1,"_CPPv4I0EN4espp10FileSystem9to_time_tENSt6time_tE2TP","espp::FileSystem::to_time_t::tp"],[39,2,1,"_CPPv4N4espp6Ft5x06E","espp::Ft5x06"],[39,2,1,"_CPPv4N4espp6Ft5x066ConfigE","espp::Ft5x06::Config"],[39,1,1,"_CPPv4N4espp6Ft5x066Config9log_levelE","espp::Ft5x06::Config::log_level"],[39,1,1,"_CPPv4N4espp6Ft5x066Config16read_at_registerE","espp::Ft5x06::Config::read_at_register"],[39,1,1,"_CPPv4N4espp6Ft5x066Config5writeE","espp::Ft5x06::Config::write"],[39,1,1,"_CPPv4N4espp6Ft5x0615DEFAULT_ADDRESSE","espp::Ft5x06::DEFAULT_ADDRESS"],[39,3,1,"_CPPv4N4espp6Ft5x066Ft5x06ERK6Config","espp::Ft5x06::Ft5x06"],[39,4,1,"_CPPv4N4espp6Ft5x066Ft5x06ERK6Config","espp::Ft5x06::Ft5x06::config"],[39,6,1,"_CPPv4N4espp6Ft5x067GestureE","espp::Ft5x06::Gesture"],[39,7,1,"_CPPv4N4espp6Ft5x067Gesture9MOVE_DOWNE","espp::Ft5x06::Gesture::MOVE_DOWN"],[39,7,1,"_CPPv4N4espp6Ft5x067Gesture9MOVE_LEFTE","espp::Ft5x06::Gesture::MOVE_LEFT"],[39,7,1,"_CPPv4N4espp6Ft5x067Gesture10MOVE_RIGHTE","espp::Ft5x06::Gesture::MOVE_RIGHT"],[39,7,1,"_CPPv4N4espp6Ft5x067Gesture7MOVE_UPE","espp::Ft5x06::Gesture::MOVE_UP"],[39,7,1,"_CPPv4N4espp6Ft5x067Gesture4NONEE","espp::Ft5x06::Gesture::NONE"],[39,7,1,"_CPPv4N4espp6Ft5x067Gesture7ZOOM_INE","espp::Ft5x06::Gesture::ZOOM_IN"],[39,7,1,"_CPPv4N4espp6Ft5x067Gesture8ZOOM_OUTE","espp::Ft5x06::Gesture::ZOOM_OUT"],[39,3,1,"_CPPv4N4espp6Ft5x0620get_num_touch_pointsERNSt10error_codeE","espp::Ft5x06::get_num_touch_points"],[39,4,1,"_CPPv4N4espp6Ft5x0620get_num_touch_pointsERNSt10error_codeE","espp::Ft5x06::get_num_touch_points::ec"],[39,3,1,"_CPPv4N4espp6Ft5x0615get_touch_pointEP7uint8_tP8uint16_tP8uint16_tRNSt10error_codeE","espp::Ft5x06::get_touch_point"],[39,4,1,"_CPPv4N4espp6Ft5x0615get_touch_pointEP7uint8_tP8uint16_tP8uint16_tRNSt10error_codeE","espp::Ft5x06::get_touch_point::ec"],[39,4,1,"_CPPv4N4espp6Ft5x0615get_touch_pointEP7uint8_tP8uint16_tP8uint16_tRNSt10error_codeE","espp::Ft5x06::get_touch_point::num_touch_points"],[39,4,1,"_CPPv4N4espp6Ft5x0615get_touch_pointEP7uint8_tP8uint16_tP8uint16_tRNSt10error_codeE","espp::Ft5x06::get_touch_point::x"],[39,4,1,"_CPPv4N4espp6Ft5x0615get_touch_pointEP7uint8_tP8uint16_tP8uint16_tRNSt10error_codeE","espp::Ft5x06::get_touch_point::y"],[39,8,1,"_CPPv4N4espp6Ft5x0619read_at_register_fnE","espp::Ft5x06::read_at_register_fn"],[39,3,1,"_CPPv4N4espp6Ft5x0612read_gestureERNSt10error_codeE","espp::Ft5x06::read_gesture"],[39,4,1,"_CPPv4N4espp6Ft5x0612read_gestureERNSt10error_codeE","espp::Ft5x06::read_gesture::ec"],[39,8,1,"_CPPv4N4espp6Ft5x068write_fnE","espp::Ft5x06::write_fn"],[31,2,1,"_CPPv4N4espp16FtpClientSessionE","espp::FtpClientSession"],[31,3,1,"_CPPv4NK4espp16FtpClientSession17current_directoryEv","espp::FtpClientSession::current_directory"],[31,3,1,"_CPPv4NK4espp16FtpClientSession2idEv","espp::FtpClientSession::id"],[31,3,1,"_CPPv4NK4espp16FtpClientSession8is_aliveEv","espp::FtpClientSession::is_alive"],[31,3,1,"_CPPv4NK4espp16FtpClientSession12is_connectedEv","espp::FtpClientSession::is_connected"],[31,3,1,"_CPPv4NK4espp16FtpClientSession26is_passive_data_connectionEv","espp::FtpClientSession::is_passive_data_connection"],[31,2,1,"_CPPv4N4espp9FtpServerE","espp::FtpServer"],[31,3,1,"_CPPv4N4espp9FtpServer9FtpServerENSt11string_viewE8uint16_tRKNSt10filesystem4pathE","espp::FtpServer::FtpServer"],[31,4,1,"_CPPv4N4espp9FtpServer9FtpServerENSt11string_viewE8uint16_tRKNSt10filesystem4pathE","espp::FtpServer::FtpServer::ip_address"],[31,4,1,"_CPPv4N4espp9FtpServer9FtpServerENSt11string_viewE8uint16_tRKNSt10filesystem4pathE","espp::FtpServer::FtpServer::port"],[31,4,1,"_CPPv4N4espp9FtpServer9FtpServerENSt11string_viewE8uint16_tRKNSt10filesystem4pathE","espp::FtpServer::FtpServer::root"],[31,3,1,"_CPPv4N4espp9FtpServer5startEv","espp::FtpServer::start"],[31,3,1,"_CPPv4N4espp9FtpServer4stopEv","espp::FtpServer::stop"],[31,3,1,"_CPPv4N4espp9FtpServerD0Ev","espp::FtpServer::~FtpServer"],[55,2,1,"_CPPv4N4espp8GaussianE","espp::Gaussian"],[55,2,1,"_CPPv4N4espp8Gaussian6ConfigE","espp::Gaussian::Config"],[55,1,1,"_CPPv4N4espp8Gaussian6Config5alphaE","espp::Gaussian::Config::alpha"],[55,1,1,"_CPPv4N4espp8Gaussian6Config4betaE","espp::Gaussian::Config::beta"],[55,1,1,"_CPPv4N4espp8Gaussian6Config5gammaE","espp::Gaussian::Config::gamma"],[55,3,1,"_CPPv4N4espp8Gaussian8GaussianERK6Config","espp::Gaussian::Gaussian"],[55,4,1,"_CPPv4N4espp8Gaussian8GaussianERK6Config","espp::Gaussian::Gaussian::config"],[55,3,1,"_CPPv4N4espp8Gaussian5alphaEf","espp::Gaussian::alpha"],[55,3,1,"_CPPv4NK4espp8Gaussian5alphaEv","espp::Gaussian::alpha"],[55,4,1,"_CPPv4N4espp8Gaussian5alphaEf","espp::Gaussian::alpha::a"],[55,3,1,"_CPPv4NK4espp8Gaussian2atEf","espp::Gaussian::at"],[55,4,1,"_CPPv4NK4espp8Gaussian2atEf","espp::Gaussian::at::t"],[55,3,1,"_CPPv4N4espp8Gaussian4betaEf","espp::Gaussian::beta"],[55,3,1,"_CPPv4NK4espp8Gaussian4betaEv","espp::Gaussian::beta"],[55,4,1,"_CPPv4N4espp8Gaussian4betaEf","espp::Gaussian::beta::b"],[55,3,1,"_CPPv4N4espp8Gaussian5gammaEf","espp::Gaussian::gamma"],[55,3,1,"_CPPv4NK4espp8Gaussian5gammaEv","espp::Gaussian::gamma"],[55,4,1,"_CPPv4N4espp8Gaussian5gammaEf","espp::Gaussian::gamma::g"],[55,3,1,"_CPPv4NK4espp8GaussianclEf","espp::Gaussian::operator()"],[55,4,1,"_CPPv4NK4espp8GaussianclEf","espp::Gaussian::operator()::t"],[40,2,1,"_CPPv4N4espp5Gt911E","espp::Gt911"],[40,2,1,"_CPPv4N4espp5Gt9116ConfigE","espp::Gt911::Config"],[40,1,1,"_CPPv4N4espp5Gt9116Config7addressE","espp::Gt911::Config::address"],[40,1,1,"_CPPv4N4espp5Gt9116Config9log_levelE","espp::Gt911::Config::log_level"],[40,1,1,"_CPPv4N4espp5Gt9116Config5writeE","espp::Gt911::Config::write"],[40,1,1,"_CPPv4N4espp5Gt9116Config10write_readE","espp::Gt911::Config::write_read"],[40,1,1,"_CPPv4N4espp5Gt91117DEFAULT_ADDRESS_1E","espp::Gt911::DEFAULT_ADDRESS_1"],[40,1,1,"_CPPv4N4espp5Gt91117DEFAULT_ADDRESS_2E","espp::Gt911::DEFAULT_ADDRESS_2"],[40,3,1,"_CPPv4N4espp5Gt9115Gt911ERK6Config","espp::Gt911::Gt911"],[40,4,1,"_CPPv4N4espp5Gt9115Gt911ERK6Config","espp::Gt911::Gt911::config"],[40,3,1,"_CPPv4NK4espp5Gt91121get_home_button_stateEv","espp::Gt911::get_home_button_state"],[40,3,1,"_CPPv4NK4espp5Gt91120get_num_touch_pointsEv","espp::Gt911::get_num_touch_points"],[40,3,1,"_CPPv4NK4espp5Gt91115get_touch_pointEP7uint8_tP8uint16_tP8uint16_t","espp::Gt911::get_touch_point"],[40,4,1,"_CPPv4NK4espp5Gt91115get_touch_pointEP7uint8_tP8uint16_tP8uint16_t","espp::Gt911::get_touch_point::num_touch_points"],[40,4,1,"_CPPv4NK4espp5Gt91115get_touch_pointEP7uint8_tP8uint16_tP8uint16_t","espp::Gt911::get_touch_point::x"],[40,4,1,"_CPPv4NK4espp5Gt91115get_touch_pointEP7uint8_tP8uint16_tP8uint16_t","espp::Gt911::get_touch_point::y"],[40,3,1,"_CPPv4N4espp5Gt9116updateERNSt10error_codeE","espp::Gt911::update"],[40,4,1,"_CPPv4N4espp5Gt9116updateERNSt10error_codeE","espp::Gt911::update::ec"],[40,8,1,"_CPPv4N4espp5Gt9118write_fnE","espp::Gt911::write_fn"],[40,8,1,"_CPPv4N4espp5Gt91113write_read_fnE","espp::Gt911::write_read_fn"],[12,2,1,"_CPPv4N4espp3HsvE","espp::Hsv"],[12,3,1,"_CPPv4N4espp3Hsv3HsvERK3Hsv","espp::Hsv::Hsv"],[12,3,1,"_CPPv4N4espp3Hsv3HsvERK3Rgb","espp::Hsv::Hsv"],[12,3,1,"_CPPv4N4espp3Hsv3HsvERKfRKfRKf","espp::Hsv::Hsv"],[12,4,1,"_CPPv4N4espp3Hsv3HsvERKfRKfRKf","espp::Hsv::Hsv::h"],[12,4,1,"_CPPv4N4espp3Hsv3HsvERK3Hsv","espp::Hsv::Hsv::hsv"],[12,4,1,"_CPPv4N4espp3Hsv3HsvERK3Rgb","espp::Hsv::Hsv::rgb"],[12,4,1,"_CPPv4N4espp3Hsv3HsvERKfRKfRKf","espp::Hsv::Hsv::s"],[12,4,1,"_CPPv4N4espp3Hsv3HsvERKfRKfRKf","espp::Hsv::Hsv::v"],[12,1,1,"_CPPv4N4espp3Hsv1hE","espp::Hsv::h"],[12,3,1,"_CPPv4NK4espp3Hsv3rgbEv","espp::Hsv::rgb"],[12,1,1,"_CPPv4N4espp3Hsv1sE","espp::Hsv::s"],[12,1,1,"_CPPv4N4espp3Hsv1vE","espp::Hsv::v"],[36,2,1,"_CPPv4N4espp3I2cE","espp::I2c"],[36,2,1,"_CPPv4N4espp3I2c6ConfigE","espp::I2c::Config"],[36,1,1,"_CPPv4N4espp3I2c6Config9auto_initE","espp::I2c::Config::auto_init"],[36,1,1,"_CPPv4N4espp3I2c6Config9clk_speedE","espp::I2c::Config::clk_speed"],[36,1,1,"_CPPv4N4espp3I2c6Config9log_levelE","espp::I2c::Config::log_level"],[36,1,1,"_CPPv4N4espp3I2c6Config4portE","espp::I2c::Config::port"],[36,1,1,"_CPPv4N4espp3I2c6Config10scl_io_numE","espp::I2c::Config::scl_io_num"],[36,1,1,"_CPPv4N4espp3I2c6Config13scl_pullup_enE","espp::I2c::Config::scl_pullup_en"],[36,1,1,"_CPPv4N4espp3I2c6Config10sda_io_numE","espp::I2c::Config::sda_io_num"],[36,1,1,"_CPPv4N4espp3I2c6Config13sda_pullup_enE","espp::I2c::Config::sda_pullup_en"],[36,1,1,"_CPPv4N4espp3I2c6Config10timeout_msE","espp::I2c::Config::timeout_ms"],[36,3,1,"_CPPv4N4espp3I2c3I2cERK6Config","espp::I2c::I2c"],[36,4,1,"_CPPv4N4espp3I2c3I2cERK6Config","espp::I2c::I2c::config"],[36,3,1,"_CPPv4N4espp3I2c6deinitERNSt10error_codeE","espp::I2c::deinit"],[36,4,1,"_CPPv4N4espp3I2c6deinitERNSt10error_codeE","espp::I2c::deinit::ec"],[36,3,1,"_CPPv4N4espp3I2c4initERNSt10error_codeE","espp::I2c::init"],[36,4,1,"_CPPv4N4espp3I2c4initERNSt10error_codeE","espp::I2c::init::ec"],[36,3,1,"_CPPv4N4espp3I2c12probe_deviceE7uint8_t","espp::I2c::probe_device"],[36,4,1,"_CPPv4N4espp3I2c12probe_deviceE7uint8_t","espp::I2c::probe_device::dev_addr"],[36,3,1,"_CPPv4N4espp3I2c4readE7uint8_tP7uint8_t6size_t","espp::I2c::read"],[36,4,1,"_CPPv4N4espp3I2c4readE7uint8_tP7uint8_t6size_t","espp::I2c::read::data"],[36,4,1,"_CPPv4N4espp3I2c4readE7uint8_tP7uint8_t6size_t","espp::I2c::read::data_len"],[36,4,1,"_CPPv4N4espp3I2c4readE7uint8_tP7uint8_t6size_t","espp::I2c::read::dev_addr"],[36,3,1,"_CPPv4N4espp3I2c16read_at_registerE7uint8_t7uint8_tP7uint8_t6size_t","espp::I2c::read_at_register"],[36,4,1,"_CPPv4N4espp3I2c16read_at_registerE7uint8_t7uint8_tP7uint8_t6size_t","espp::I2c::read_at_register::data"],[36,4,1,"_CPPv4N4espp3I2c16read_at_registerE7uint8_t7uint8_tP7uint8_t6size_t","espp::I2c::read_at_register::data_len"],[36,4,1,"_CPPv4N4espp3I2c16read_at_registerE7uint8_t7uint8_tP7uint8_t6size_t","espp::I2c::read_at_register::dev_addr"],[36,4,1,"_CPPv4N4espp3I2c16read_at_registerE7uint8_t7uint8_tP7uint8_t6size_t","espp::I2c::read_at_register::reg_addr"],[36,3,1,"_CPPv4N4espp3I2c5writeE7uint8_tP7uint8_t6size_t","espp::I2c::write"],[36,4,1,"_CPPv4N4espp3I2c5writeE7uint8_tP7uint8_t6size_t","espp::I2c::write::data"],[36,4,1,"_CPPv4N4espp3I2c5writeE7uint8_tP7uint8_t6size_t","espp::I2c::write::data_len"],[36,4,1,"_CPPv4N4espp3I2c5writeE7uint8_tP7uint8_t6size_t","espp::I2c::write::dev_addr"],[36,3,1,"_CPPv4N4espp3I2c10write_readE7uint8_tP7uint8_t6size_tP7uint8_t6size_t","espp::I2c::write_read"],[36,4,1,"_CPPv4N4espp3I2c10write_readE7uint8_tP7uint8_t6size_tP7uint8_t6size_t","espp::I2c::write_read::dev_addr"],[36,4,1,"_CPPv4N4espp3I2c10write_readE7uint8_tP7uint8_t6size_tP7uint8_t6size_t","espp::I2c::write_read::read_data"],[36,4,1,"_CPPv4N4espp3I2c10write_readE7uint8_tP7uint8_t6size_tP7uint8_t6size_t","espp::I2c::write_read::read_size"],[36,4,1,"_CPPv4N4espp3I2c10write_readE7uint8_tP7uint8_t6size_tP7uint8_t6size_t","espp::I2c::write_read::write_data"],[36,4,1,"_CPPv4N4espp3I2c10write_readE7uint8_tP7uint8_t6size_tP7uint8_t6size_t","espp::I2c::write_read::write_size"],[16,2,1,"_CPPv4N4espp7Ili9341E","espp::Ili9341"],[16,3,1,"_CPPv4N4espp7Ili93415clearE6size_t6size_t6size_t6size_t8uint16_t","espp::Ili9341::clear"],[16,4,1,"_CPPv4N4espp7Ili93415clearE6size_t6size_t6size_t6size_t8uint16_t","espp::Ili9341::clear::color"],[16,4,1,"_CPPv4N4espp7Ili93415clearE6size_t6size_t6size_t6size_t8uint16_t","espp::Ili9341::clear::height"],[16,4,1,"_CPPv4N4espp7Ili93415clearE6size_t6size_t6size_t6size_t8uint16_t","espp::Ili9341::clear::width"],[16,4,1,"_CPPv4N4espp7Ili93415clearE6size_t6size_t6size_t6size_t8uint16_t","espp::Ili9341::clear::x"],[16,4,1,"_CPPv4N4espp7Ili93415clearE6size_t6size_t6size_t6size_t8uint16_t","espp::Ili9341::clear::y"],[16,3,1,"_CPPv4N4espp7Ili93414fillEP13lv_disp_drv_tPK9lv_area_tP10lv_color_t8uint32_t","espp::Ili9341::fill"],[16,4,1,"_CPPv4N4espp7Ili93414fillEP13lv_disp_drv_tPK9lv_area_tP10lv_color_t8uint32_t","espp::Ili9341::fill::area"],[16,4,1,"_CPPv4N4espp7Ili93414fillEP13lv_disp_drv_tPK9lv_area_tP10lv_color_t8uint32_t","espp::Ili9341::fill::color_map"],[16,4,1,"_CPPv4N4espp7Ili93414fillEP13lv_disp_drv_tPK9lv_area_tP10lv_color_t8uint32_t","espp::Ili9341::fill::drv"],[16,4,1,"_CPPv4N4espp7Ili93414fillEP13lv_disp_drv_tPK9lv_area_tP10lv_color_t8uint32_t","espp::Ili9341::fill::flags"],[16,3,1,"_CPPv4N4espp7Ili93415flushEP13lv_disp_drv_tPK9lv_area_tP10lv_color_t","espp::Ili9341::flush"],[16,4,1,"_CPPv4N4espp7Ili93415flushEP13lv_disp_drv_tPK9lv_area_tP10lv_color_t","espp::Ili9341::flush::area"],[16,4,1,"_CPPv4N4espp7Ili93415flushEP13lv_disp_drv_tPK9lv_area_tP10lv_color_t","espp::Ili9341::flush::color_map"],[16,4,1,"_CPPv4N4espp7Ili93415flushEP13lv_disp_drv_tPK9lv_area_tP10lv_color_t","espp::Ili9341::flush::drv"],[16,3,1,"_CPPv4N4espp7Ili934110get_offsetERiRi","espp::Ili9341::get_offset"],[16,4,1,"_CPPv4N4espp7Ili934110get_offsetERiRi","espp::Ili9341::get_offset::x"],[16,4,1,"_CPPv4N4espp7Ili934110get_offsetERiRi","espp::Ili9341::get_offset::y"],[16,3,1,"_CPPv4N4espp7Ili934110initializeERKN15display_drivers6ConfigE","espp::Ili9341::initialize"],[16,4,1,"_CPPv4N4espp7Ili934110initializeERKN15display_drivers6ConfigE","espp::Ili9341::initialize::config"],[16,3,1,"_CPPv4N4espp7Ili934112send_commandE7uint8_t","espp::Ili9341::send_command"],[16,4,1,"_CPPv4N4espp7Ili934112send_commandE7uint8_t","espp::Ili9341::send_command::command"],[16,3,1,"_CPPv4N4espp7Ili93419send_dataEPK7uint8_t6size_t8uint32_t","espp::Ili9341::send_data"],[16,4,1,"_CPPv4N4espp7Ili93419send_dataEPK7uint8_t6size_t8uint32_t","espp::Ili9341::send_data::data"],[16,4,1,"_CPPv4N4espp7Ili93419send_dataEPK7uint8_t6size_t8uint32_t","espp::Ili9341::send_data::flags"],[16,4,1,"_CPPv4N4espp7Ili93419send_dataEPK7uint8_t6size_t8uint32_t","espp::Ili9341::send_data::length"],[16,3,1,"_CPPv4N4espp7Ili934116set_drawing_areaE6size_t6size_t6size_t6size_t","espp::Ili9341::set_drawing_area"],[16,3,1,"_CPPv4N4espp7Ili934116set_drawing_areaEPK9lv_area_t","espp::Ili9341::set_drawing_area"],[16,4,1,"_CPPv4N4espp7Ili934116set_drawing_areaEPK9lv_area_t","espp::Ili9341::set_drawing_area::area"],[16,4,1,"_CPPv4N4espp7Ili934116set_drawing_areaE6size_t6size_t6size_t6size_t","espp::Ili9341::set_drawing_area::xe"],[16,4,1,"_CPPv4N4espp7Ili934116set_drawing_areaE6size_t6size_t6size_t6size_t","espp::Ili9341::set_drawing_area::xs"],[16,4,1,"_CPPv4N4espp7Ili934116set_drawing_areaE6size_t6size_t6size_t6size_t","espp::Ili9341::set_drawing_area::ye"],[16,4,1,"_CPPv4N4espp7Ili934116set_drawing_areaE6size_t6size_t6size_t6size_t","espp::Ili9341::set_drawing_area::ys"],[16,3,1,"_CPPv4N4espp7Ili934110set_offsetEii","espp::Ili9341::set_offset"],[16,4,1,"_CPPv4N4espp7Ili934110set_offsetEii","espp::Ili9341::set_offset::x"],[16,4,1,"_CPPv4N4espp7Ili934110set_offsetEii","espp::Ili9341::set_offset::y"],[49,2,1,"_CPPv4N4espp8JoystickE","espp::Joystick"],[49,2,1,"_CPPv4N4espp8Joystick6ConfigE","espp::Joystick::Config"],[49,1,1,"_CPPv4N4espp8Joystick6Config8deadzoneE","espp::Joystick::Config::deadzone"],[49,1,1,"_CPPv4N4espp8Joystick6Config15deadzone_radiusE","espp::Joystick::Config::deadzone_radius"],[49,1,1,"_CPPv4N4espp8Joystick6Config10get_valuesE","espp::Joystick::Config::get_values"],[49,1,1,"_CPPv4N4espp8Joystick6Config9log_levelE","espp::Joystick::Config::log_level"],[49,1,1,"_CPPv4N4espp8Joystick6Config13x_calibrationE","espp::Joystick::Config::x_calibration"],[49,1,1,"_CPPv4N4espp8Joystick6Config13y_calibrationE","espp::Joystick::Config::y_calibration"],[49,6,1,"_CPPv4N4espp8Joystick8DeadzoneE","espp::Joystick::Deadzone"],[49,7,1,"_CPPv4N4espp8Joystick8Deadzone8CIRCULARE","espp::Joystick::Deadzone::CIRCULAR"],[49,7,1,"_CPPv4N4espp8Joystick8Deadzone11RECTANGULARE","espp::Joystick::Deadzone::RECTANGULAR"],[49,3,1,"_CPPv4N4espp8Joystick8JoystickERK6Config","espp::Joystick::Joystick"],[49,4,1,"_CPPv4N4espp8Joystick8JoystickERK6Config","espp::Joystick::Joystick::config"],[49,8,1,"_CPPv4N4espp8Joystick13get_values_fnE","espp::Joystick::get_values_fn"],[49,3,1,"_CPPv4NK4espp8Joystick8positionEv","espp::Joystick::position"],[49,3,1,"_CPPv4NK4espp8Joystick3rawEv","espp::Joystick::raw"],[49,3,1,"_CPPv4N4espp8Joystick15set_calibrationERKN16FloatRangeMapper6ConfigERKN16FloatRangeMapper6ConfigE","espp::Joystick::set_calibration"],[49,4,1,"_CPPv4N4espp8Joystick15set_calibrationERKN16FloatRangeMapper6ConfigERKN16FloatRangeMapper6ConfigE","espp::Joystick::set_calibration::x_calibration"],[49,4,1,"_CPPv4N4espp8Joystick15set_calibrationERKN16FloatRangeMapper6ConfigERKN16FloatRangeMapper6ConfigE","espp::Joystick::set_calibration::y_calibration"],[49,3,1,"_CPPv4N4espp8Joystick12set_deadzoneE8Deadzonef","espp::Joystick::set_deadzone"],[49,4,1,"_CPPv4N4espp8Joystick12set_deadzoneE8Deadzonef","espp::Joystick::set_deadzone::deadzone"],[49,4,1,"_CPPv4N4espp8Joystick12set_deadzoneE8Deadzonef","espp::Joystick::set_deadzone::radius"],[49,3,1,"_CPPv4N4espp8Joystick6updateEv","espp::Joystick::update"],[49,3,1,"_CPPv4NK4espp8Joystick1xEv","espp::Joystick::x"],[49,3,1,"_CPPv4NK4espp8Joystick1yEv","espp::Joystick::y"],[72,2,1,"_CPPv4N4espp9JpegFrameE","espp::JpegFrame"],[72,3,1,"_CPPv4N4espp9JpegFrame9JpegFrameEPKc6size_t","espp::JpegFrame::JpegFrame"],[72,3,1,"_CPPv4N4espp9JpegFrame9JpegFrameERK13RtpJpegPacket","espp::JpegFrame::JpegFrame"],[72,4,1,"_CPPv4N4espp9JpegFrame9JpegFrameEPKc6size_t","espp::JpegFrame::JpegFrame::data"],[72,4,1,"_CPPv4N4espp9JpegFrame9JpegFrameERK13RtpJpegPacket","espp::JpegFrame::JpegFrame::packet"],[72,4,1,"_CPPv4N4espp9JpegFrame9JpegFrameEPKc6size_t","espp::JpegFrame::JpegFrame::size"],[72,3,1,"_CPPv4N4espp9JpegFrame8add_scanERK13RtpJpegPacket","espp::JpegFrame::add_scan"],[72,4,1,"_CPPv4N4espp9JpegFrame8add_scanERK13RtpJpegPacket","espp::JpegFrame::add_scan::packet"],[72,3,1,"_CPPv4N4espp9JpegFrame6appendERK13RtpJpegPacket","espp::JpegFrame::append"],[72,4,1,"_CPPv4N4espp9JpegFrame6appendERK13RtpJpegPacket","espp::JpegFrame::append::packet"],[72,3,1,"_CPPv4NK4espp9JpegFrame8get_dataEv","espp::JpegFrame::get_data"],[72,3,1,"_CPPv4NK4espp9JpegFrame10get_headerEv","espp::JpegFrame::get_header"],[72,3,1,"_CPPv4NK4espp9JpegFrame10get_heightEv","espp::JpegFrame::get_height"],[72,3,1,"_CPPv4NK4espp9JpegFrame13get_scan_dataEv","espp::JpegFrame::get_scan_data"],[72,3,1,"_CPPv4NK4espp9JpegFrame9get_widthEv","espp::JpegFrame::get_width"],[72,3,1,"_CPPv4NK4espp9JpegFrame11is_completeEv","espp::JpegFrame::is_complete"],[72,2,1,"_CPPv4N4espp10JpegHeaderE","espp::JpegHeader"],[72,3,1,"_CPPv4N4espp10JpegHeader10JpegHeaderENSt11string_viewE","espp::JpegHeader::JpegHeader"],[72,3,1,"_CPPv4N4espp10JpegHeader10JpegHeaderEiiNSt11string_viewENSt11string_viewE","espp::JpegHeader::JpegHeader"],[72,4,1,"_CPPv4N4espp10JpegHeader10JpegHeaderENSt11string_viewE","espp::JpegHeader::JpegHeader::data"],[72,4,1,"_CPPv4N4espp10JpegHeader10JpegHeaderEiiNSt11string_viewENSt11string_viewE","espp::JpegHeader::JpegHeader::height"],[72,4,1,"_CPPv4N4espp10JpegHeader10JpegHeaderEiiNSt11string_viewENSt11string_viewE","espp::JpegHeader::JpegHeader::q0_table"],[72,4,1,"_CPPv4N4espp10JpegHeader10JpegHeaderEiiNSt11string_viewENSt11string_viewE","espp::JpegHeader::JpegHeader::q1_table"],[72,4,1,"_CPPv4N4espp10JpegHeader10JpegHeaderEiiNSt11string_viewENSt11string_viewE","espp::JpegHeader::JpegHeader::width"],[72,3,1,"_CPPv4NK4espp10JpegHeader8get_dataEv","espp::JpegHeader::get_data"],[72,3,1,"_CPPv4NK4espp10JpegHeader10get_heightEv","espp::JpegHeader::get_height"],[72,3,1,"_CPPv4NK4espp10JpegHeader22get_quantization_tableEi","espp::JpegHeader::get_quantization_table"],[72,4,1,"_CPPv4NK4espp10JpegHeader22get_quantization_tableEi","espp::JpegHeader::get_quantization_table::index"],[72,3,1,"_CPPv4NK4espp10JpegHeader9get_widthEv","espp::JpegHeader::get_width"],[42,2,1,"_CPPv4N4espp11KeypadInputE","espp::KeypadInput"],[42,2,1,"_CPPv4N4espp11KeypadInput6ConfigE","espp::KeypadInput::Config"],[42,1,1,"_CPPv4N4espp11KeypadInput6Config9log_levelE","espp::KeypadInput::Config::log_level"],[42,1,1,"_CPPv4N4espp11KeypadInput6Config4readE","espp::KeypadInput::Config::read"],[42,3,1,"_CPPv4N4espp11KeypadInput11KeypadInputERK6Config","espp::KeypadInput::KeypadInput"],[42,4,1,"_CPPv4N4espp11KeypadInput11KeypadInputERK6Config","espp::KeypadInput::KeypadInput::config"],[42,3,1,"_CPPv4N4espp11KeypadInput16get_input_deviceEv","espp::KeypadInput::get_input_device"],[42,3,1,"_CPPv4N4espp11KeypadInputD0Ev","espp::KeypadInput::~KeypadInput"],[50,2,1,"_CPPv4N4espp3LedE","espp::Led"],[50,2,1,"_CPPv4N4espp3Led13ChannelConfigE","espp::Led::ChannelConfig"],[50,1,1,"_CPPv4N4espp3Led13ChannelConfig7channelE","espp::Led::ChannelConfig::channel"],[50,1,1,"_CPPv4N4espp3Led13ChannelConfig4dutyE","espp::Led::ChannelConfig::duty"],[50,1,1,"_CPPv4N4espp3Led13ChannelConfig4gpioE","espp::Led::ChannelConfig::gpio"],[50,1,1,"_CPPv4N4espp3Led13ChannelConfig13output_invertE","espp::Led::ChannelConfig::output_invert"],[50,1,1,"_CPPv4N4espp3Led13ChannelConfig10speed_modeE","espp::Led::ChannelConfig::speed_mode"],[50,1,1,"_CPPv4N4espp3Led13ChannelConfig5timerE","espp::Led::ChannelConfig::timer"],[50,2,1,"_CPPv4N4espp3Led6ConfigE","espp::Led::Config"],[50,1,1,"_CPPv4N4espp3Led6Config8channelsE","espp::Led::Config::channels"],[50,1,1,"_CPPv4N4espp3Led6Config15duty_resolutionE","espp::Led::Config::duty_resolution"],[50,1,1,"_CPPv4N4espp3Led6Config12frequency_hzE","espp::Led::Config::frequency_hz"],[50,1,1,"_CPPv4N4espp3Led6Config9log_levelE","espp::Led::Config::log_level"],[50,1,1,"_CPPv4N4espp3Led6Config10speed_modeE","espp::Led::Config::speed_mode"],[50,1,1,"_CPPv4N4espp3Led6Config5timerE","espp::Led::Config::timer"],[50,3,1,"_CPPv4N4espp3Led3LedERK6Config","espp::Led::Led"],[50,4,1,"_CPPv4N4espp3Led3LedERK6Config","espp::Led::Led::config"],[50,3,1,"_CPPv4N4espp3Led10can_changeE14ledc_channel_t","espp::Led::can_change"],[50,4,1,"_CPPv4N4espp3Led10can_changeE14ledc_channel_t","espp::Led::can_change::channel"],[50,3,1,"_CPPv4NK4espp3Led8get_dutyE14ledc_channel_t","espp::Led::get_duty"],[50,4,1,"_CPPv4NK4espp3Led8get_dutyE14ledc_channel_t","espp::Led::get_duty::channel"],[50,3,1,"_CPPv4N4espp3Led8set_dutyE14ledc_channel_tf","espp::Led::set_duty"],[50,4,1,"_CPPv4N4espp3Led8set_dutyE14ledc_channel_tf","espp::Led::set_duty::channel"],[50,4,1,"_CPPv4N4espp3Led8set_dutyE14ledc_channel_tf","espp::Led::set_duty::duty_percent"],[50,3,1,"_CPPv4N4espp3Led18set_fade_with_timeE14ledc_channel_tf8uint32_t","espp::Led::set_fade_with_time"],[50,4,1,"_CPPv4N4espp3Led18set_fade_with_timeE14ledc_channel_tf8uint32_t","espp::Led::set_fade_with_time::channel"],[50,4,1,"_CPPv4N4espp3Led18set_fade_with_timeE14ledc_channel_tf8uint32_t","espp::Led::set_fade_with_time::duty_percent"],[50,4,1,"_CPPv4N4espp3Led18set_fade_with_timeE14ledc_channel_tf8uint32_t","espp::Led::set_fade_with_time::fade_time_ms"],[50,3,1,"_CPPv4N4espp3LedD0Ev","espp::Led::~Led"],[51,2,1,"_CPPv4N4espp8LedStripE","espp::LedStrip"],[51,1,1,"_CPPv4N4espp8LedStrip18APA102_START_FRAMEE","espp::LedStrip::APA102_START_FRAME"],[51,6,1,"_CPPv4N4espp8LedStrip9ByteOrderE","espp::LedStrip::ByteOrder"],[51,7,1,"_CPPv4N4espp8LedStrip9ByteOrder3BGRE","espp::LedStrip::ByteOrder::BGR"],[51,7,1,"_CPPv4N4espp8LedStrip9ByteOrder3GRBE","espp::LedStrip::ByteOrder::GRB"],[51,7,1,"_CPPv4N4espp8LedStrip9ByteOrder3RGBE","espp::LedStrip::ByteOrder::RGB"],[51,2,1,"_CPPv4N4espp8LedStrip6ConfigE","espp::LedStrip::Config"],[51,1,1,"_CPPv4N4espp8LedStrip6Config10byte_orderE","espp::LedStrip::Config::byte_order"],[51,1,1,"_CPPv4N4espp8LedStrip6Config9end_frameE","espp::LedStrip::Config::end_frame"],[51,1,1,"_CPPv4N4espp8LedStrip6Config9log_levelE","espp::LedStrip::Config::log_level"],[51,1,1,"_CPPv4N4espp8LedStrip6Config8num_ledsE","espp::LedStrip::Config::num_leds"],[51,1,1,"_CPPv4N4espp8LedStrip6Config15send_brightnessE","espp::LedStrip::Config::send_brightness"],[51,1,1,"_CPPv4N4espp8LedStrip6Config11start_frameE","espp::LedStrip::Config::start_frame"],[51,1,1,"_CPPv4N4espp8LedStrip6Config5writeE","espp::LedStrip::Config::write"],[51,3,1,"_CPPv4N4espp8LedStrip8LedStripERK6Config","espp::LedStrip::LedStrip"],[51,4,1,"_CPPv4N4espp8LedStrip8LedStripERK6Config","espp::LedStrip::LedStrip::config"],[51,3,1,"_CPPv4NK4espp8LedStrip10byte_orderEv","espp::LedStrip::byte_order"],[51,3,1,"_CPPv4NK4espp8LedStrip8num_ledsEv","espp::LedStrip::num_leds"],[51,3,1,"_CPPv4N4espp8LedStrip7set_allE3Hsvf","espp::LedStrip::set_all"],[51,3,1,"_CPPv4N4espp8LedStrip7set_allE3Rgbf","espp::LedStrip::set_all"],[51,3,1,"_CPPv4N4espp8LedStrip7set_allE7uint8_t7uint8_t7uint8_t7uint8_t","espp::LedStrip::set_all"],[51,4,1,"_CPPv4N4espp8LedStrip7set_allE7uint8_t7uint8_t7uint8_t7uint8_t","espp::LedStrip::set_all::b"],[51,4,1,"_CPPv4N4espp8LedStrip7set_allE3Hsvf","espp::LedStrip::set_all::brightness"],[51,4,1,"_CPPv4N4espp8LedStrip7set_allE3Rgbf","espp::LedStrip::set_all::brightness"],[51,4,1,"_CPPv4N4espp8LedStrip7set_allE7uint8_t7uint8_t7uint8_t7uint8_t","espp::LedStrip::set_all::brightness"],[51,4,1,"_CPPv4N4espp8LedStrip7set_allE7uint8_t7uint8_t7uint8_t7uint8_t","espp::LedStrip::set_all::g"],[51,4,1,"_CPPv4N4espp8LedStrip7set_allE3Hsvf","espp::LedStrip::set_all::hsv"],[51,4,1,"_CPPv4N4espp8LedStrip7set_allE7uint8_t7uint8_t7uint8_t7uint8_t","espp::LedStrip::set_all::r"],[51,4,1,"_CPPv4N4espp8LedStrip7set_allE3Rgbf","espp::LedStrip::set_all::rgb"],[51,3,1,"_CPPv4N4espp8LedStrip9set_pixelEi3Hsvf","espp::LedStrip::set_pixel"],[51,3,1,"_CPPv4N4espp8LedStrip9set_pixelEi3Rgbf","espp::LedStrip::set_pixel"],[51,3,1,"_CPPv4N4espp8LedStrip9set_pixelEi7uint8_t7uint8_t7uint8_t7uint8_t","espp::LedStrip::set_pixel"],[51,4,1,"_CPPv4N4espp8LedStrip9set_pixelEi7uint8_t7uint8_t7uint8_t7uint8_t","espp::LedStrip::set_pixel::b"],[51,4,1,"_CPPv4N4espp8LedStrip9set_pixelEi3Hsvf","espp::LedStrip::set_pixel::brightness"],[51,4,1,"_CPPv4N4espp8LedStrip9set_pixelEi3Rgbf","espp::LedStrip::set_pixel::brightness"],[51,4,1,"_CPPv4N4espp8LedStrip9set_pixelEi7uint8_t7uint8_t7uint8_t7uint8_t","espp::LedStrip::set_pixel::brightness"],[51,4,1,"_CPPv4N4espp8LedStrip9set_pixelEi7uint8_t7uint8_t7uint8_t7uint8_t","espp::LedStrip::set_pixel::g"],[51,4,1,"_CPPv4N4espp8LedStrip9set_pixelEi3Hsvf","espp::LedStrip::set_pixel::hsv"],[51,4,1,"_CPPv4N4espp8LedStrip9set_pixelEi3Hsvf","espp::LedStrip::set_pixel::index"],[51,4,1,"_CPPv4N4espp8LedStrip9set_pixelEi3Rgbf","espp::LedStrip::set_pixel::index"],[51,4,1,"_CPPv4N4espp8LedStrip9set_pixelEi7uint8_t7uint8_t7uint8_t7uint8_t","espp::LedStrip::set_pixel::index"],[51,4,1,"_CPPv4N4espp8LedStrip9set_pixelEi7uint8_t7uint8_t7uint8_t7uint8_t","espp::LedStrip::set_pixel::r"],[51,4,1,"_CPPv4N4espp8LedStrip9set_pixelEi3Rgbf","espp::LedStrip::set_pixel::rgb"],[51,3,1,"_CPPv4N4espp8LedStrip10shift_leftEi","espp::LedStrip::shift_left"],[51,4,1,"_CPPv4N4espp8LedStrip10shift_leftEi","espp::LedStrip::shift_left::shift_by"],[51,3,1,"_CPPv4N4espp8LedStrip11shift_rightEi","espp::LedStrip::shift_right"],[51,4,1,"_CPPv4N4espp8LedStrip11shift_rightEi","espp::LedStrip::shift_right::shift_by"],[51,3,1,"_CPPv4N4espp8LedStrip4showEv","espp::LedStrip::show"],[51,8,1,"_CPPv4N4espp8LedStrip8write_fnE","espp::LedStrip::write_fn"],[11,2,1,"_CPPv4N4espp9LineInputE","espp::LineInput"],[11,8,1,"_CPPv4N4espp9LineInput7HistoryE","espp::LineInput::History"],[11,3,1,"_CPPv4N4espp9LineInput9LineInputEv","espp::LineInput::LineInput"],[11,3,1,"_CPPv4N4espp9LineInput10clear_lineEv","espp::LineInput::clear_line"],[11,3,1,"_CPPv4N4espp9LineInput12clear_screenEv","espp::LineInput::clear_screen"],[11,3,1,"_CPPv4N4espp9LineInput20clear_to_end_of_lineEv","espp::LineInput::clear_to_end_of_line"],[11,3,1,"_CPPv4N4espp9LineInput22clear_to_start_of_lineEv","espp::LineInput::clear_to_start_of_line"],[11,3,1,"_CPPv4NK4espp9LineInput11get_historyEv","espp::LineInput::get_history"],[11,3,1,"_CPPv4N4espp9LineInput17get_terminal_sizeERiRi","espp::LineInput::get_terminal_size"],[11,4,1,"_CPPv4N4espp9LineInput17get_terminal_sizeERiRi","espp::LineInput::get_terminal_size::height"],[11,4,1,"_CPPv4N4espp9LineInput17get_terminal_sizeERiRi","espp::LineInput::get_terminal_size::width"],[11,3,1,"_CPPv4N4espp9LineInput14get_user_inputERNSt7istreamE9prompt_fn","espp::LineInput::get_user_input"],[11,4,1,"_CPPv4N4espp9LineInput14get_user_inputERNSt7istreamE9prompt_fn","espp::LineInput::get_user_input::is"],[11,4,1,"_CPPv4N4espp9LineInput14get_user_inputERNSt7istreamE9prompt_fn","espp::LineInput::get_user_input::prompt"],[11,8,1,"_CPPv4N4espp9LineInput9prompt_fnE","espp::LineInput::prompt_fn"],[11,3,1,"_CPPv4N4espp9LineInput17set_handle_resizeEb","espp::LineInput::set_handle_resize"],[11,4,1,"_CPPv4N4espp9LineInput17set_handle_resizeEb","espp::LineInput::set_handle_resize::handle_resize"],[11,3,1,"_CPPv4N4espp9LineInput11set_historyERK7History","espp::LineInput::set_history"],[11,4,1,"_CPPv4N4espp9LineInput11set_historyERK7History","espp::LineInput::set_history::history"],[11,3,1,"_CPPv4N4espp9LineInput16set_history_sizeE6size_t","espp::LineInput::set_history_size"],[11,4,1,"_CPPv4N4espp9LineInput16set_history_sizeE6size_t","espp::LineInput::set_history_size::new_size"],[11,3,1,"_CPPv4N4espp9LineInputD0Ev","espp::LineInput::~LineInput"],[52,2,1,"_CPPv4N4espp6LoggerE","espp::Logger"],[52,2,1,"_CPPv4N4espp6Logger6ConfigE","espp::Logger::Config"],[52,1,1,"_CPPv4N4espp6Logger6Config5levelE","espp::Logger::Config::level"],[52,1,1,"_CPPv4N4espp6Logger6Config10rate_limitE","espp::Logger::Config::rate_limit"],[52,1,1,"_CPPv4N4espp6Logger6Config3tagE","espp::Logger::Config::tag"],[52,3,1,"_CPPv4N4espp6Logger6LoggerERK6Config","espp::Logger::Logger"],[52,4,1,"_CPPv4N4espp6Logger6LoggerERK6Config","espp::Logger::Logger::config"],[52,6,1,"_CPPv4N4espp6Logger9VerbosityE","espp::Logger::Verbosity"],[52,7,1,"_CPPv4N4espp6Logger9Verbosity5DEBUGE","espp::Logger::Verbosity::DEBUG"],[52,7,1,"_CPPv4N4espp6Logger9Verbosity5ERRORE","espp::Logger::Verbosity::ERROR"],[52,7,1,"_CPPv4N4espp6Logger9Verbosity4INFOE","espp::Logger::Verbosity::INFO"],[52,7,1,"_CPPv4N4espp6Logger9Verbosity4NONEE","espp::Logger::Verbosity::NONE"],[52,7,1,"_CPPv4N4espp6Logger9Verbosity4WARNE","espp::Logger::Verbosity::WARN"],[52,3,1,"_CPPv4IDpEN4espp6Logger5debugEvNSt11string_viewEDpRR4Args","espp::Logger::debug"],[52,5,1,"_CPPv4IDpEN4espp6Logger5debugEvNSt11string_viewEDpRR4Args","espp::Logger::debug::Args"],[52,4,1,"_CPPv4IDpEN4espp6Logger5debugEvNSt11string_viewEDpRR4Args","espp::Logger::debug::args"],[52,4,1,"_CPPv4IDpEN4espp6Logger5debugEvNSt11string_viewEDpRR4Args","espp::Logger::debug::rt_fmt_str"],[52,3,1,"_CPPv4IDpEN4espp6Logger18debug_rate_limitedEvNSt11string_viewEDpRR4Args","espp::Logger::debug_rate_limited"],[52,5,1,"_CPPv4IDpEN4espp6Logger18debug_rate_limitedEvNSt11string_viewEDpRR4Args","espp::Logger::debug_rate_limited::Args"],[52,4,1,"_CPPv4IDpEN4espp6Logger18debug_rate_limitedEvNSt11string_viewEDpRR4Args","espp::Logger::debug_rate_limited::args"],[52,4,1,"_CPPv4IDpEN4espp6Logger18debug_rate_limitedEvNSt11string_viewEDpRR4Args","espp::Logger::debug_rate_limited::rt_fmt_str"],[52,3,1,"_CPPv4IDpEN4espp6Logger5errorEvNSt11string_viewEDpRR4Args","espp::Logger::error"],[52,5,1,"_CPPv4IDpEN4espp6Logger5errorEvNSt11string_viewEDpRR4Args","espp::Logger::error::Args"],[52,4,1,"_CPPv4IDpEN4espp6Logger5errorEvNSt11string_viewEDpRR4Args","espp::Logger::error::args"],[52,4,1,"_CPPv4IDpEN4espp6Logger5errorEvNSt11string_viewEDpRR4Args","espp::Logger::error::rt_fmt_str"],[52,3,1,"_CPPv4IDpEN4espp6Logger18error_rate_limitedEvNSt11string_viewEDpRR4Args","espp::Logger::error_rate_limited"],[52,5,1,"_CPPv4IDpEN4espp6Logger18error_rate_limitedEvNSt11string_viewEDpRR4Args","espp::Logger::error_rate_limited::Args"],[52,4,1,"_CPPv4IDpEN4espp6Logger18error_rate_limitedEvNSt11string_viewEDpRR4Args","espp::Logger::error_rate_limited::args"],[52,4,1,"_CPPv4IDpEN4espp6Logger18error_rate_limitedEvNSt11string_viewEDpRR4Args","espp::Logger::error_rate_limited::rt_fmt_str"],[52,3,1,"_CPPv4IDpEN4espp6Logger6formatENSt6stringENSt11string_viewEDpRR4Args","espp::Logger::format"],[52,5,1,"_CPPv4IDpEN4espp6Logger6formatENSt6stringENSt11string_viewEDpRR4Args","espp::Logger::format::Args"],[52,4,1,"_CPPv4IDpEN4espp6Logger6formatENSt6stringENSt11string_viewEDpRR4Args","espp::Logger::format::args"],[52,4,1,"_CPPv4IDpEN4espp6Logger6formatENSt6stringENSt11string_viewEDpRR4Args","espp::Logger::format::rt_fmt_str"],[52,3,1,"_CPPv4IDpEN4espp6Logger4infoEvNSt11string_viewEDpRR4Args","espp::Logger::info"],[52,5,1,"_CPPv4IDpEN4espp6Logger4infoEvNSt11string_viewEDpRR4Args","espp::Logger::info::Args"],[52,4,1,"_CPPv4IDpEN4espp6Logger4infoEvNSt11string_viewEDpRR4Args","espp::Logger::info::args"],[52,4,1,"_CPPv4IDpEN4espp6Logger4infoEvNSt11string_viewEDpRR4Args","espp::Logger::info::rt_fmt_str"],[52,3,1,"_CPPv4IDpEN4espp6Logger17info_rate_limitedEvNSt11string_viewEDpRR4Args","espp::Logger::info_rate_limited"],[52,5,1,"_CPPv4IDpEN4espp6Logger17info_rate_limitedEvNSt11string_viewEDpRR4Args","espp::Logger::info_rate_limited::Args"],[52,4,1,"_CPPv4IDpEN4espp6Logger17info_rate_limitedEvNSt11string_viewEDpRR4Args","espp::Logger::info_rate_limited::args"],[52,4,1,"_CPPv4IDpEN4espp6Logger17info_rate_limitedEvNSt11string_viewEDpRR4Args","espp::Logger::info_rate_limited::rt_fmt_str"],[52,3,1,"_CPPv4N4espp6Logger7set_tagEKNSt11string_viewE","espp::Logger::set_tag"],[52,4,1,"_CPPv4N4espp6Logger7set_tagEKNSt11string_viewE","espp::Logger::set_tag::tag"],[52,3,1,"_CPPv4N4espp6Logger13set_verbosityEK9Verbosity","espp::Logger::set_verbosity"],[52,4,1,"_CPPv4N4espp6Logger13set_verbosityEK9Verbosity","espp::Logger::set_verbosity::level"],[52,3,1,"_CPPv4IDpEN4espp6Logger4warnEvNSt11string_viewEDpRR4Args","espp::Logger::warn"],[52,5,1,"_CPPv4IDpEN4espp6Logger4warnEvNSt11string_viewEDpRR4Args","espp::Logger::warn::Args"],[52,4,1,"_CPPv4IDpEN4espp6Logger4warnEvNSt11string_viewEDpRR4Args","espp::Logger::warn::args"],[52,4,1,"_CPPv4IDpEN4espp6Logger4warnEvNSt11string_viewEDpRR4Args","espp::Logger::warn::rt_fmt_str"],[52,3,1,"_CPPv4IDpEN4espp6Logger17warn_rate_limitedEvNSt11string_viewEDpRR4Args","espp::Logger::warn_rate_limited"],[52,5,1,"_CPPv4IDpEN4espp6Logger17warn_rate_limitedEvNSt11string_viewEDpRR4Args","espp::Logger::warn_rate_limited::Args"],[52,4,1,"_CPPv4IDpEN4espp6Logger17warn_rate_limitedEvNSt11string_viewEDpRR4Args","espp::Logger::warn_rate_limited::args"],[52,4,1,"_CPPv4IDpEN4espp6Logger17warn_rate_limitedEvNSt11string_viewEDpRR4Args","espp::Logger::warn_rate_limited::rt_fmt_str"],[28,2,1,"_CPPv4N4espp13LowpassFilterE","espp::LowpassFilter"],[28,2,1,"_CPPv4N4espp13LowpassFilter6ConfigE","espp::LowpassFilter::Config"],[28,1,1,"_CPPv4N4espp13LowpassFilter6Config27normalized_cutoff_frequencyE","espp::LowpassFilter::Config::normalized_cutoff_frequency"],[28,1,1,"_CPPv4N4espp13LowpassFilter6Config8q_factorE","espp::LowpassFilter::Config::q_factor"],[28,3,1,"_CPPv4N4espp13LowpassFilter13LowpassFilterERK6Config","espp::LowpassFilter::LowpassFilter"],[28,4,1,"_CPPv4N4espp13LowpassFilter13LowpassFilterERK6Config","espp::LowpassFilter::LowpassFilter::config"],[28,3,1,"_CPPv4N4espp13LowpassFilterclEf","espp::LowpassFilter::operator()"],[28,4,1,"_CPPv4N4espp13LowpassFilterclEf","espp::LowpassFilter::operator()::input"],[28,3,1,"_CPPv4N4espp13LowpassFilter6updateEKf","espp::LowpassFilter::update"],[28,3,1,"_CPPv4N4espp13LowpassFilter6updateEPKfPf6size_t","espp::LowpassFilter::update"],[28,4,1,"_CPPv4N4espp13LowpassFilter6updateEKf","espp::LowpassFilter::update::input"],[28,4,1,"_CPPv4N4espp13LowpassFilter6updateEPKfPf6size_t","espp::LowpassFilter::update::input"],[28,4,1,"_CPPv4N4espp13LowpassFilter6updateEPKfPf6size_t","espp::LowpassFilter::update::length"],[28,4,1,"_CPPv4N4espp13LowpassFilter6updateEPKfPf6size_t","espp::LowpassFilter::update::output"],[48,2,1,"_CPPv4N4espp8Mcp23x17E","espp::Mcp23x17"],[48,2,1,"_CPPv4N4espp8Mcp23x176ConfigE","espp::Mcp23x17::Config"],[48,1,1,"_CPPv4N4espp8Mcp23x176Config9auto_initE","espp::Mcp23x17::Config::auto_init"],[48,1,1,"_CPPv4N4espp8Mcp23x176Config14device_addressE","espp::Mcp23x17::Config::device_address"],[48,1,1,"_CPPv4N4espp8Mcp23x176Config9log_levelE","espp::Mcp23x17::Config::log_level"],[48,1,1,"_CPPv4N4espp8Mcp23x176Config21port_0_direction_maskE","espp::Mcp23x17::Config::port_0_direction_mask"],[48,1,1,"_CPPv4N4espp8Mcp23x176Config21port_0_interrupt_maskE","espp::Mcp23x17::Config::port_0_interrupt_mask"],[48,1,1,"_CPPv4N4espp8Mcp23x176Config21port_1_direction_maskE","espp::Mcp23x17::Config::port_1_direction_mask"],[48,1,1,"_CPPv4N4espp8Mcp23x176Config21port_1_interrupt_maskE","espp::Mcp23x17::Config::port_1_interrupt_mask"],[48,1,1,"_CPPv4N4espp8Mcp23x176Config4readE","espp::Mcp23x17::Config::read"],[48,1,1,"_CPPv4N4espp8Mcp23x176Config5writeE","espp::Mcp23x17::Config::write"],[48,1,1,"_CPPv4N4espp8Mcp23x1715DEFAULT_ADDRESSE","espp::Mcp23x17::DEFAULT_ADDRESS"],[48,3,1,"_CPPv4N4espp8Mcp23x178Mcp23x17ERK6Config","espp::Mcp23x17::Mcp23x17"],[48,4,1,"_CPPv4N4espp8Mcp23x178Mcp23x17ERK6Config","espp::Mcp23x17::Mcp23x17::config"],[48,6,1,"_CPPv4N4espp8Mcp23x174PortE","espp::Mcp23x17::Port"],[48,7,1,"_CPPv4N4espp8Mcp23x174Port5PORT0E","espp::Mcp23x17::Port::PORT0"],[48,7,1,"_CPPv4N4espp8Mcp23x174Port5PORT1E","espp::Mcp23x17::Port::PORT1"],[48,3,1,"_CPPv4N4espp8Mcp23x1721get_interrupt_captureE4PortRNSt10error_codeE","espp::Mcp23x17::get_interrupt_capture"],[48,4,1,"_CPPv4N4espp8Mcp23x1721get_interrupt_captureE4PortRNSt10error_codeE","espp::Mcp23x17::get_interrupt_capture::ec"],[48,4,1,"_CPPv4N4espp8Mcp23x1721get_interrupt_captureE4PortRNSt10error_codeE","espp::Mcp23x17::get_interrupt_capture::port"],[48,3,1,"_CPPv4N4espp8Mcp23x178get_pinsE4PortRNSt10error_codeE","espp::Mcp23x17::get_pins"],[48,3,1,"_CPPv4N4espp8Mcp23x178get_pinsERNSt10error_codeE","espp::Mcp23x17::get_pins"],[48,4,1,"_CPPv4N4espp8Mcp23x178get_pinsE4PortRNSt10error_codeE","espp::Mcp23x17::get_pins::ec"],[48,4,1,"_CPPv4N4espp8Mcp23x178get_pinsERNSt10error_codeE","espp::Mcp23x17::get_pins::ec"],[48,4,1,"_CPPv4N4espp8Mcp23x178get_pinsE4PortRNSt10error_codeE","espp::Mcp23x17::get_pins::port"],[48,3,1,"_CPPv4N4espp8Mcp23x1710initializeERNSt10error_codeE","espp::Mcp23x17::initialize"],[48,4,1,"_CPPv4N4espp8Mcp23x1710initializeERNSt10error_codeE","espp::Mcp23x17::initialize::ec"],[48,8,1,"_CPPv4N4espp8Mcp23x177read_fnE","espp::Mcp23x17::read_fn"],[48,3,1,"_CPPv4N4espp8Mcp23x1713set_directionE4Port7uint8_tRNSt10error_codeE","espp::Mcp23x17::set_direction"],[48,4,1,"_CPPv4N4espp8Mcp23x1713set_directionE4Port7uint8_tRNSt10error_codeE","espp::Mcp23x17::set_direction::ec"],[48,4,1,"_CPPv4N4espp8Mcp23x1713set_directionE4Port7uint8_tRNSt10error_codeE","espp::Mcp23x17::set_direction::mask"],[48,4,1,"_CPPv4N4espp8Mcp23x1713set_directionE4Port7uint8_tRNSt10error_codeE","espp::Mcp23x17::set_direction::port"],[48,3,1,"_CPPv4N4espp8Mcp23x1718set_input_polarityE4Port7uint8_tRNSt10error_codeE","espp::Mcp23x17::set_input_polarity"],[48,4,1,"_CPPv4N4espp8Mcp23x1718set_input_polarityE4Port7uint8_tRNSt10error_codeE","espp::Mcp23x17::set_input_polarity::ec"],[48,4,1,"_CPPv4N4espp8Mcp23x1718set_input_polarityE4Port7uint8_tRNSt10error_codeE","espp::Mcp23x17::set_input_polarity::mask"],[48,4,1,"_CPPv4N4espp8Mcp23x1718set_input_polarityE4Port7uint8_tRNSt10error_codeE","espp::Mcp23x17::set_input_polarity::port"],[48,3,1,"_CPPv4N4espp8Mcp23x1720set_interrupt_mirrorEbRNSt10error_codeE","espp::Mcp23x17::set_interrupt_mirror"],[48,4,1,"_CPPv4N4espp8Mcp23x1720set_interrupt_mirrorEbRNSt10error_codeE","espp::Mcp23x17::set_interrupt_mirror::ec"],[48,4,1,"_CPPv4N4espp8Mcp23x1720set_interrupt_mirrorEbRNSt10error_codeE","espp::Mcp23x17::set_interrupt_mirror::mirror"],[48,3,1,"_CPPv4N4espp8Mcp23x1723set_interrupt_on_changeE4Port7uint8_tRNSt10error_codeE","espp::Mcp23x17::set_interrupt_on_change"],[48,4,1,"_CPPv4N4espp8Mcp23x1723set_interrupt_on_changeE4Port7uint8_tRNSt10error_codeE","espp::Mcp23x17::set_interrupt_on_change::ec"],[48,4,1,"_CPPv4N4espp8Mcp23x1723set_interrupt_on_changeE4Port7uint8_tRNSt10error_codeE","espp::Mcp23x17::set_interrupt_on_change::mask"],[48,4,1,"_CPPv4N4espp8Mcp23x1723set_interrupt_on_changeE4Port7uint8_tRNSt10error_codeE","espp::Mcp23x17::set_interrupt_on_change::port"],[48,3,1,"_CPPv4N4espp8Mcp23x1722set_interrupt_on_valueE4Port7uint8_t7uint8_tRNSt10error_codeE","espp::Mcp23x17::set_interrupt_on_value"],[48,4,1,"_CPPv4N4espp8Mcp23x1722set_interrupt_on_valueE4Port7uint8_t7uint8_tRNSt10error_codeE","espp::Mcp23x17::set_interrupt_on_value::ec"],[48,4,1,"_CPPv4N4espp8Mcp23x1722set_interrupt_on_valueE4Port7uint8_t7uint8_tRNSt10error_codeE","espp::Mcp23x17::set_interrupt_on_value::pin_mask"],[48,4,1,"_CPPv4N4espp8Mcp23x1722set_interrupt_on_valueE4Port7uint8_t7uint8_tRNSt10error_codeE","espp::Mcp23x17::set_interrupt_on_value::port"],[48,4,1,"_CPPv4N4espp8Mcp23x1722set_interrupt_on_valueE4Port7uint8_t7uint8_tRNSt10error_codeE","espp::Mcp23x17::set_interrupt_on_value::val_mask"],[48,3,1,"_CPPv4N4espp8Mcp23x1722set_interrupt_polarityEbRNSt10error_codeE","espp::Mcp23x17::set_interrupt_polarity"],[48,4,1,"_CPPv4N4espp8Mcp23x1722set_interrupt_polarityEbRNSt10error_codeE","espp::Mcp23x17::set_interrupt_polarity::active_high"],[48,4,1,"_CPPv4N4espp8Mcp23x1722set_interrupt_polarityEbRNSt10error_codeE","espp::Mcp23x17::set_interrupt_polarity::ec"],[48,3,1,"_CPPv4N4espp8Mcp23x178set_pinsE4Port7uint8_tRNSt10error_codeE","espp::Mcp23x17::set_pins"],[48,4,1,"_CPPv4N4espp8Mcp23x178set_pinsE4Port7uint8_tRNSt10error_codeE","espp::Mcp23x17::set_pins::ec"],[48,4,1,"_CPPv4N4espp8Mcp23x178set_pinsE4Port7uint8_tRNSt10error_codeE","espp::Mcp23x17::set_pins::output"],[48,4,1,"_CPPv4N4espp8Mcp23x178set_pinsE4Port7uint8_tRNSt10error_codeE","espp::Mcp23x17::set_pins::port"],[48,3,1,"_CPPv4N4espp8Mcp23x1711set_pull_upE4Port7uint8_tRNSt10error_codeE","espp::Mcp23x17::set_pull_up"],[48,4,1,"_CPPv4N4espp8Mcp23x1711set_pull_upE4Port7uint8_tRNSt10error_codeE","espp::Mcp23x17::set_pull_up::ec"],[48,4,1,"_CPPv4N4espp8Mcp23x1711set_pull_upE4Port7uint8_tRNSt10error_codeE","espp::Mcp23x17::set_pull_up::mask"],[48,4,1,"_CPPv4N4espp8Mcp23x1711set_pull_upE4Port7uint8_tRNSt10error_codeE","espp::Mcp23x17::set_pull_up::port"],[48,8,1,"_CPPv4N4espp8Mcp23x178write_fnE","espp::Mcp23x17::write_fn"],[22,2,1,"_CPPv4N4espp6Mt6701E","espp::Mt6701"],[22,1,1,"_CPPv4N4espp6Mt670121COUNTS_PER_REVOLUTIONE","espp::Mt6701::COUNTS_PER_REVOLUTION"],[22,1,1,"_CPPv4N4espp6Mt670123COUNTS_PER_REVOLUTION_FE","espp::Mt6701::COUNTS_PER_REVOLUTION_F"],[22,1,1,"_CPPv4N4espp6Mt670117COUNTS_TO_DEGREESE","espp::Mt6701::COUNTS_TO_DEGREES"],[22,1,1,"_CPPv4N4espp6Mt670117COUNTS_TO_RADIANSE","espp::Mt6701::COUNTS_TO_RADIANS"],[22,2,1,"_CPPv4N4espp6Mt67016ConfigE","espp::Mt6701::Config"],[22,1,1,"_CPPv4N4espp6Mt67016Config9auto_initE","espp::Mt6701::Config::auto_init"],[22,1,1,"_CPPv4N4espp6Mt67016Config14device_addressE","espp::Mt6701::Config::device_address"],[22,1,1,"_CPPv4N4espp6Mt67016Config4readE","espp::Mt6701::Config::read"],[22,1,1,"_CPPv4N4espp6Mt67016Config13update_periodE","espp::Mt6701::Config::update_period"],[22,1,1,"_CPPv4N4espp6Mt67016Config15velocity_filterE","espp::Mt6701::Config::velocity_filter"],[22,1,1,"_CPPv4N4espp6Mt67016Config5writeE","espp::Mt6701::Config::write"],[22,1,1,"_CPPv4N4espp6Mt670115DEFAULT_ADDRESSE","espp::Mt6701::DEFAULT_ADDRESS"],[22,3,1,"_CPPv4N4espp6Mt67016Mt6701ERK6Config","espp::Mt6701::Mt6701"],[22,4,1,"_CPPv4N4espp6Mt67016Mt6701ERK6Config","espp::Mt6701::Mt6701::config"],[22,1,1,"_CPPv4N4espp6Mt670118SECONDS_PER_MINUTEE","espp::Mt6701::SECONDS_PER_MINUTE"],[22,3,1,"_CPPv4NK4espp6Mt670115get_accumulatorEv","espp::Mt6701::get_accumulator"],[22,3,1,"_CPPv4NK4espp6Mt67019get_countEv","espp::Mt6701::get_count"],[22,3,1,"_CPPv4NK4espp6Mt670111get_degreesEv","espp::Mt6701::get_degrees"],[22,3,1,"_CPPv4NK4espp6Mt670122get_mechanical_degreesEv","espp::Mt6701::get_mechanical_degrees"],[22,3,1,"_CPPv4NK4espp6Mt670122get_mechanical_radiansEv","espp::Mt6701::get_mechanical_radians"],[22,3,1,"_CPPv4NK4espp6Mt670111get_radiansEv","espp::Mt6701::get_radians"],[22,3,1,"_CPPv4NK4espp6Mt67017get_rpmEv","espp::Mt6701::get_rpm"],[22,3,1,"_CPPv4N4espp6Mt670110initializeERNSt10error_codeE","espp::Mt6701::initialize"],[22,4,1,"_CPPv4N4espp6Mt670110initializeERNSt10error_codeE","espp::Mt6701::initialize::ec"],[22,3,1,"_CPPv4NK4espp6Mt670117needs_zero_searchEv","espp::Mt6701::needs_zero_search"],[22,8,1,"_CPPv4N4espp6Mt67017read_fnE","espp::Mt6701::read_fn"],[22,8,1,"_CPPv4N4espp6Mt670118velocity_filter_fnE","espp::Mt6701::velocity_filter_fn"],[22,8,1,"_CPPv4N4espp6Mt67018write_fnE","espp::Mt6701::write_fn"],[65,2,1,"_CPPv4N4espp4NdefE","espp::Ndef"],[65,6,1,"_CPPv4N4espp4Ndef7BleRoleE","espp::Ndef::BleRole"],[65,7,1,"_CPPv4N4espp4Ndef7BleRole12CENTRAL_ONLYE","espp::Ndef::BleRole::CENTRAL_ONLY"],[65,7,1,"_CPPv4N4espp4Ndef7BleRole18CENTRAL_PERIPHERALE","espp::Ndef::BleRole::CENTRAL_PERIPHERAL"],[65,7,1,"_CPPv4N4espp4Ndef7BleRole18PERIPHERAL_CENTRALE","espp::Ndef::BleRole::PERIPHERAL_CENTRAL"],[65,7,1,"_CPPv4N4espp4Ndef7BleRole15PERIPHERAL_ONLYE","espp::Ndef::BleRole::PERIPHERAL_ONLY"],[65,6,1,"_CPPv4N4espp4Ndef12BtAppearanceE","espp::Ndef::BtAppearance"],[65,7,1,"_CPPv4N4espp4Ndef12BtAppearance5CLOCKE","espp::Ndef::BtAppearance::CLOCK"],[65,7,1,"_CPPv4N4espp4Ndef12BtAppearance8COMPUTERE","espp::Ndef::BtAppearance::COMPUTER"],[65,7,1,"_CPPv4N4espp4Ndef12BtAppearance7DISPLAYE","espp::Ndef::BtAppearance::DISPLAY"],[65,7,1,"_CPPv4N4espp4Ndef12BtAppearance7GAMEPADE","espp::Ndef::BtAppearance::GAMEPAD"],[65,7,1,"_CPPv4N4espp4Ndef12BtAppearance6GAMINGE","espp::Ndef::BtAppearance::GAMING"],[65,7,1,"_CPPv4N4espp4Ndef12BtAppearance11GENERIC_HIDE","espp::Ndef::BtAppearance::GENERIC_HID"],[65,7,1,"_CPPv4N4espp4Ndef12BtAppearance8JOYSTICKE","espp::Ndef::BtAppearance::JOYSTICK"],[65,7,1,"_CPPv4N4espp4Ndef12BtAppearance8KEYBOARDE","espp::Ndef::BtAppearance::KEYBOARD"],[65,7,1,"_CPPv4N4espp4Ndef12BtAppearance5MOUSEE","espp::Ndef::BtAppearance::MOUSE"],[65,7,1,"_CPPv4N4espp4Ndef12BtAppearance5PHONEE","espp::Ndef::BtAppearance::PHONE"],[65,7,1,"_CPPv4N4espp4Ndef12BtAppearance14REMOTE_CONTROLE","espp::Ndef::BtAppearance::REMOTE_CONTROL"],[65,7,1,"_CPPv4N4espp4Ndef12BtAppearance8TOUCHPADE","espp::Ndef::BtAppearance::TOUCHPAD"],[65,7,1,"_CPPv4N4espp4Ndef12BtAppearance7UNKNOWNE","espp::Ndef::BtAppearance::UNKNOWN"],[65,7,1,"_CPPv4N4espp4Ndef12BtAppearance5WATCHE","espp::Ndef::BtAppearance::WATCH"],[65,6,1,"_CPPv4N4espp4Ndef5BtEirE","espp::Ndef::BtEir"],[65,7,1,"_CPPv4N4espp4Ndef5BtEir10APPEARANCEE","espp::Ndef::BtEir::APPEARANCE"],[65,7,1,"_CPPv4N4espp4Ndef5BtEir15CLASS_OF_DEVICEE","espp::Ndef::BtEir::CLASS_OF_DEVICE"],[65,7,1,"_CPPv4N4espp4Ndef5BtEir5FLAGSE","espp::Ndef::BtEir::FLAGS"],[65,7,1,"_CPPv4N4espp4Ndef5BtEir7LE_ROLEE","espp::Ndef::BtEir::LE_ROLE"],[65,7,1,"_CPPv4N4espp4Ndef5BtEir18LE_SC_CONFIRMATIONE","espp::Ndef::BtEir::LE_SC_CONFIRMATION"],[65,7,1,"_CPPv4N4espp4Ndef5BtEir12LE_SC_RANDOME","espp::Ndef::BtEir::LE_SC_RANDOM"],[65,7,1,"_CPPv4N4espp4Ndef5BtEir15LONG_LOCAL_NAMEE","espp::Ndef::BtEir::LONG_LOCAL_NAME"],[65,7,1,"_CPPv4N4espp4Ndef5BtEir3MACE","espp::Ndef::BtEir::MAC"],[65,7,1,"_CPPv4N4espp4Ndef5BtEir22SECURITY_MANAGER_FLAGSE","espp::Ndef::BtEir::SECURITY_MANAGER_FLAGS"],[65,7,1,"_CPPv4N4espp4Ndef5BtEir19SECURITY_MANAGER_TKE","espp::Ndef::BtEir::SECURITY_MANAGER_TK"],[65,7,1,"_CPPv4N4espp4Ndef5BtEir16SHORT_LOCAL_NAMEE","espp::Ndef::BtEir::SHORT_LOCAL_NAME"],[65,7,1,"_CPPv4N4espp4Ndef5BtEir12SP_HASH_C192E","espp::Ndef::BtEir::SP_HASH_C192"],[65,7,1,"_CPPv4N4espp4Ndef5BtEir12SP_HASH_C256E","espp::Ndef::BtEir::SP_HASH_C256"],[65,7,1,"_CPPv4N4espp4Ndef5BtEir12SP_HASH_R256E","espp::Ndef::BtEir::SP_HASH_R256"],[65,7,1,"_CPPv4N4espp4Ndef5BtEir14SP_RANDOM_R192E","espp::Ndef::BtEir::SP_RANDOM_R192"],[65,7,1,"_CPPv4N4espp4Ndef5BtEir14TX_POWER_LEVELE","espp::Ndef::BtEir::TX_POWER_LEVEL"],[65,7,1,"_CPPv4N4espp4Ndef5BtEir22UUIDS_128_BIT_COMPLETEE","espp::Ndef::BtEir::UUIDS_128_BIT_COMPLETE"],[65,7,1,"_CPPv4N4espp4Ndef5BtEir21UUIDS_128_BIT_PARTIALE","espp::Ndef::BtEir::UUIDS_128_BIT_PARTIAL"],[65,7,1,"_CPPv4N4espp4Ndef5BtEir21UUIDS_16_BIT_COMPLETEE","espp::Ndef::BtEir::UUIDS_16_BIT_COMPLETE"],[65,7,1,"_CPPv4N4espp4Ndef5BtEir20UUIDS_16_BIT_PARTIALE","espp::Ndef::BtEir::UUIDS_16_BIT_PARTIAL"],[65,7,1,"_CPPv4N4espp4Ndef5BtEir21UUIDS_32_BIT_COMPLETEE","espp::Ndef::BtEir::UUIDS_32_BIT_COMPLETE"],[65,7,1,"_CPPv4N4espp4Ndef5BtEir20UUIDS_32_BIT_PARTIALE","espp::Ndef::BtEir::UUIDS_32_BIT_PARTIAL"],[65,6,1,"_CPPv4N4espp4Ndef6BtTypeE","espp::Ndef::BtType"],[65,7,1,"_CPPv4N4espp4Ndef6BtType3BLEE","espp::Ndef::BtType::BLE"],[65,7,1,"_CPPv4N4espp4Ndef6BtType5BREDRE","espp::Ndef::BtType::BREDR"],[65,6,1,"_CPPv4N4espp4Ndef17CarrierPowerStateE","espp::Ndef::CarrierPowerState"],[65,7,1,"_CPPv4N4espp4Ndef17CarrierPowerState10ACTIVATINGE","espp::Ndef::CarrierPowerState::ACTIVATING"],[65,7,1,"_CPPv4N4espp4Ndef17CarrierPowerState6ACTIVEE","espp::Ndef::CarrierPowerState::ACTIVE"],[65,7,1,"_CPPv4N4espp4Ndef17CarrierPowerState8INACTIVEE","espp::Ndef::CarrierPowerState::INACTIVE"],[65,7,1,"_CPPv4N4espp4Ndef17CarrierPowerState7UNKNOWNE","espp::Ndef::CarrierPowerState::UNKNOWN"],[65,1,1,"_CPPv4N4espp4Ndef16HANDOVER_VERSIONE","espp::Ndef::HANDOVER_VERSION"],[65,3,1,"_CPPv4N4espp4Ndef4NdefE3TNFNSt11string_viewENSt11string_viewE","espp::Ndef::Ndef"],[65,4,1,"_CPPv4N4espp4Ndef4NdefE3TNFNSt11string_viewENSt11string_viewE","espp::Ndef::Ndef::payload"],[65,4,1,"_CPPv4N4espp4Ndef4NdefE3TNFNSt11string_viewENSt11string_viewE","espp::Ndef::Ndef::tnf"],[65,4,1,"_CPPv4N4espp4Ndef4NdefE3TNFNSt11string_viewENSt11string_viewE","espp::Ndef::Ndef::type"],[65,6,1,"_CPPv4N4espp4Ndef3TNFE","espp::Ndef::TNF"],[65,7,1,"_CPPv4N4espp4Ndef3TNF12ABSOLUTE_URIE","espp::Ndef::TNF::ABSOLUTE_URI"],[65,7,1,"_CPPv4N4espp4Ndef3TNF5EMPTYE","espp::Ndef::TNF::EMPTY"],[65,7,1,"_CPPv4N4espp4Ndef3TNF13EXTERNAL_TYPEE","espp::Ndef::TNF::EXTERNAL_TYPE"],[65,7,1,"_CPPv4N4espp4Ndef3TNF10MIME_MEDIAE","espp::Ndef::TNF::MIME_MEDIA"],[65,7,1,"_CPPv4N4espp4Ndef3TNF8RESERVEDE","espp::Ndef::TNF::RESERVED"],[65,7,1,"_CPPv4N4espp4Ndef3TNF9UNCHANGEDE","espp::Ndef::TNF::UNCHANGED"],[65,7,1,"_CPPv4N4espp4Ndef3TNF7UNKNOWNE","espp::Ndef::TNF::UNKNOWN"],[65,7,1,"_CPPv4N4espp4Ndef3TNF10WELL_KNOWNE","espp::Ndef::TNF::WELL_KNOWN"],[65,6,1,"_CPPv4N4espp4Ndef3UicE","espp::Ndef::Uic"],[65,7,1,"_CPPv4N4espp4Ndef3Uic6BTGOEPE","espp::Ndef::Uic::BTGOEP"],[65,7,1,"_CPPv4N4espp4Ndef3Uic7BTL2CAPE","espp::Ndef::Uic::BTL2CAP"],[65,7,1,"_CPPv4N4espp4Ndef3Uic5BTSPPE","espp::Ndef::Uic::BTSPP"],[65,7,1,"_CPPv4N4espp4Ndef3Uic3DAVE","espp::Ndef::Uic::DAV"],[65,7,1,"_CPPv4N4espp4Ndef3Uic4FILEE","espp::Ndef::Uic::FILE"],[65,7,1,"_CPPv4N4espp4Ndef3Uic3FTPE","espp::Ndef::Uic::FTP"],[65,7,1,"_CPPv4N4espp4Ndef3Uic4FTPSE","espp::Ndef::Uic::FTPS"],[65,7,1,"_CPPv4N4espp4Ndef3Uic8FTP_ANONE","espp::Ndef::Uic::FTP_ANON"],[65,7,1,"_CPPv4N4espp4Ndef3Uic7FTP_FTPE","espp::Ndef::Uic::FTP_FTP"],[65,7,1,"_CPPv4N4espp4Ndef3Uic4HTTPE","espp::Ndef::Uic::HTTP"],[65,7,1,"_CPPv4N4espp4Ndef3Uic5HTTPSE","espp::Ndef::Uic::HTTPS"],[65,7,1,"_CPPv4N4espp4Ndef3Uic9HTTPS_WWWE","espp::Ndef::Uic::HTTPS_WWW"],[65,7,1,"_CPPv4N4espp4Ndef3Uic8HTTP_WWWE","espp::Ndef::Uic::HTTP_WWW"],[65,7,1,"_CPPv4N4espp4Ndef3Uic4IMAPE","espp::Ndef::Uic::IMAP"],[65,7,1,"_CPPv4N4espp4Ndef3Uic8IRDAOBEXE","espp::Ndef::Uic::IRDAOBEX"],[65,7,1,"_CPPv4N4espp4Ndef3Uic6MAILTOE","espp::Ndef::Uic::MAILTO"],[65,7,1,"_CPPv4N4espp4Ndef3Uic4NEWSE","espp::Ndef::Uic::NEWS"],[65,7,1,"_CPPv4N4espp4Ndef3Uic3NFSE","espp::Ndef::Uic::NFS"],[65,7,1,"_CPPv4N4espp4Ndef3Uic4NONEE","espp::Ndef::Uic::NONE"],[65,7,1,"_CPPv4N4espp4Ndef3Uic3POPE","espp::Ndef::Uic::POP"],[65,7,1,"_CPPv4N4espp4Ndef3Uic4RSTPE","espp::Ndef::Uic::RSTP"],[65,7,1,"_CPPv4N4espp4Ndef3Uic4SFTPE","espp::Ndef::Uic::SFTP"],[65,7,1,"_CPPv4N4espp4Ndef3Uic3SIPE","espp::Ndef::Uic::SIP"],[65,7,1,"_CPPv4N4espp4Ndef3Uic4SIPSE","espp::Ndef::Uic::SIPS"],[65,7,1,"_CPPv4N4espp4Ndef3Uic3SMBE","espp::Ndef::Uic::SMB"],[65,7,1,"_CPPv4N4espp4Ndef3Uic7TCPOBEXE","espp::Ndef::Uic::TCPOBEX"],[65,7,1,"_CPPv4N4espp4Ndef3Uic3TELE","espp::Ndef::Uic::TEL"],[65,7,1,"_CPPv4N4espp4Ndef3Uic6TELNETE","espp::Ndef::Uic::TELNET"],[65,7,1,"_CPPv4N4espp4Ndef3Uic4TFTPE","espp::Ndef::Uic::TFTP"],[65,7,1,"_CPPv4N4espp4Ndef3Uic3URNE","espp::Ndef::Uic::URN"],[65,7,1,"_CPPv4N4espp4Ndef3Uic7URN_EPCE","espp::Ndef::Uic::URN_EPC"],[65,7,1,"_CPPv4N4espp4Ndef3Uic10URN_EPC_IDE","espp::Ndef::Uic::URN_EPC_ID"],[65,7,1,"_CPPv4N4espp4Ndef3Uic11URN_EPC_PATE","espp::Ndef::Uic::URN_EPC_PAT"],[65,7,1,"_CPPv4N4espp4Ndef3Uic11URN_EPC_RAWE","espp::Ndef::Uic::URN_EPC_RAW"],[65,7,1,"_CPPv4N4espp4Ndef3Uic11URN_EPC_TAGE","espp::Ndef::Uic::URN_EPC_TAG"],[65,7,1,"_CPPv4N4espp4Ndef3Uic7URN_NFCE","espp::Ndef::Uic::URN_NFC"],[65,6,1,"_CPPv4N4espp4Ndef22WifiAuthenticationTypeE","espp::Ndef::WifiAuthenticationType"],[65,7,1,"_CPPv4N4espp4Ndef22WifiAuthenticationType4OPENE","espp::Ndef::WifiAuthenticationType::OPEN"],[65,7,1,"_CPPv4N4espp4Ndef22WifiAuthenticationType6SHAREDE","espp::Ndef::WifiAuthenticationType::SHARED"],[65,7,1,"_CPPv4N4espp4Ndef22WifiAuthenticationType15WPA2_ENTERPRISEE","espp::Ndef::WifiAuthenticationType::WPA2_ENTERPRISE"],[65,7,1,"_CPPv4N4espp4Ndef22WifiAuthenticationType13WPA2_PERSONALE","espp::Ndef::WifiAuthenticationType::WPA2_PERSONAL"],[65,7,1,"_CPPv4N4espp4Ndef22WifiAuthenticationType14WPA_ENTERPRISEE","espp::Ndef::WifiAuthenticationType::WPA_ENTERPRISE"],[65,7,1,"_CPPv4N4espp4Ndef22WifiAuthenticationType12WPA_PERSONALE","espp::Ndef::WifiAuthenticationType::WPA_PERSONAL"],[65,7,1,"_CPPv4N4espp4Ndef22WifiAuthenticationType17WPA_WPA2_PERSONALE","espp::Ndef::WifiAuthenticationType::WPA_WPA2_PERSONAL"],[65,2,1,"_CPPv4N4espp4Ndef10WifiConfigE","espp::Ndef::WifiConfig"],[65,1,1,"_CPPv4N4espp4Ndef10WifiConfig14authenticationE","espp::Ndef::WifiConfig::authentication"],[65,1,1,"_CPPv4N4espp4Ndef10WifiConfig10encryptionE","espp::Ndef::WifiConfig::encryption"],[65,1,1,"_CPPv4N4espp4Ndef10WifiConfig3keyE","espp::Ndef::WifiConfig::key"],[65,1,1,"_CPPv4N4espp4Ndef10WifiConfig11mac_addressE","espp::Ndef::WifiConfig::mac_address"],[65,1,1,"_CPPv4N4espp4Ndef10WifiConfig4ssidE","espp::Ndef::WifiConfig::ssid"],[65,6,1,"_CPPv4N4espp4Ndef18WifiEncryptionTypeE","espp::Ndef::WifiEncryptionType"],[65,7,1,"_CPPv4N4espp4Ndef18WifiEncryptionType3AESE","espp::Ndef::WifiEncryptionType::AES"],[65,7,1,"_CPPv4N4espp4Ndef18WifiEncryptionType4NONEE","espp::Ndef::WifiEncryptionType::NONE"],[65,7,1,"_CPPv4N4espp4Ndef18WifiEncryptionType4TKIPE","espp::Ndef::WifiEncryptionType::TKIP"],[65,7,1,"_CPPv4N4espp4Ndef18WifiEncryptionType3WEPE","espp::Ndef::WifiEncryptionType::WEP"],[65,3,1,"_CPPv4NK4espp4Ndef6get_idEv","espp::Ndef::get_id"],[65,3,1,"_CPPv4NK4espp4Ndef8get_sizeEv","espp::Ndef::get_size"],[65,3,1,"_CPPv4N4espp4Ndef24make_alternative_carrierERK17CarrierPowerStatei","espp::Ndef::make_alternative_carrier"],[65,4,1,"_CPPv4N4espp4Ndef24make_alternative_carrierERK17CarrierPowerStatei","espp::Ndef::make_alternative_carrier::carrier_data_ref"],[65,4,1,"_CPPv4N4espp4Ndef24make_alternative_carrierERK17CarrierPowerStatei","espp::Ndef::make_alternative_carrier::power_state"],[65,3,1,"_CPPv4N4espp4Ndef21make_android_launcherENSt11string_viewE","espp::Ndef::make_android_launcher"],[65,4,1,"_CPPv4N4espp4Ndef21make_android_launcherENSt11string_viewE","espp::Ndef::make_android_launcher::uri"],[65,3,1,"_CPPv4N4espp4Ndef21make_handover_requestEi","espp::Ndef::make_handover_request"],[65,4,1,"_CPPv4N4espp4Ndef21make_handover_requestEi","espp::Ndef::make_handover_request::carrier_data_ref"],[65,3,1,"_CPPv4N4espp4Ndef20make_handover_selectEi","espp::Ndef::make_handover_select"],[65,4,1,"_CPPv4N4espp4Ndef20make_handover_selectEi","espp::Ndef::make_handover_select::carrier_data_ref"],[65,3,1,"_CPPv4N4espp4Ndef19make_le_oob_pairingE8uint64_t7BleRoleNSt11string_viewE12BtAppearanceNSt11string_viewENSt11string_viewENSt11string_viewE","espp::Ndef::make_le_oob_pairing"],[65,4,1,"_CPPv4N4espp4Ndef19make_le_oob_pairingE8uint64_t7BleRoleNSt11string_viewE12BtAppearanceNSt11string_viewENSt11string_viewENSt11string_viewE","espp::Ndef::make_le_oob_pairing::appearance"],[65,4,1,"_CPPv4N4espp4Ndef19make_le_oob_pairingE8uint64_t7BleRoleNSt11string_viewE12BtAppearanceNSt11string_viewENSt11string_viewENSt11string_viewE","espp::Ndef::make_le_oob_pairing::confirm_value"],[65,4,1,"_CPPv4N4espp4Ndef19make_le_oob_pairingE8uint64_t7BleRoleNSt11string_viewE12BtAppearanceNSt11string_viewENSt11string_viewENSt11string_viewE","espp::Ndef::make_le_oob_pairing::mac_addr"],[65,4,1,"_CPPv4N4espp4Ndef19make_le_oob_pairingE8uint64_t7BleRoleNSt11string_viewE12BtAppearanceNSt11string_viewENSt11string_viewENSt11string_viewE","espp::Ndef::make_le_oob_pairing::name"],[65,4,1,"_CPPv4N4espp4Ndef19make_le_oob_pairingE8uint64_t7BleRoleNSt11string_viewE12BtAppearanceNSt11string_viewENSt11string_viewENSt11string_viewE","espp::Ndef::make_le_oob_pairing::random_value"],[65,4,1,"_CPPv4N4espp4Ndef19make_le_oob_pairingE8uint64_t7BleRoleNSt11string_viewE12BtAppearanceNSt11string_viewENSt11string_viewENSt11string_viewE","espp::Ndef::make_le_oob_pairing::role"],[65,4,1,"_CPPv4N4espp4Ndef19make_le_oob_pairingE8uint64_t7BleRoleNSt11string_viewE12BtAppearanceNSt11string_viewENSt11string_viewENSt11string_viewE","espp::Ndef::make_le_oob_pairing::tk"],[65,3,1,"_CPPv4N4espp4Ndef16make_oob_pairingE8uint64_t8uint32_tNSt11string_viewENSt11string_viewENSt11string_viewE","espp::Ndef::make_oob_pairing"],[65,4,1,"_CPPv4N4espp4Ndef16make_oob_pairingE8uint64_t8uint32_tNSt11string_viewENSt11string_viewENSt11string_viewE","espp::Ndef::make_oob_pairing::confirm_value"],[65,4,1,"_CPPv4N4espp4Ndef16make_oob_pairingE8uint64_t8uint32_tNSt11string_viewENSt11string_viewENSt11string_viewE","espp::Ndef::make_oob_pairing::device_class"],[65,4,1,"_CPPv4N4espp4Ndef16make_oob_pairingE8uint64_t8uint32_tNSt11string_viewENSt11string_viewENSt11string_viewE","espp::Ndef::make_oob_pairing::mac_addr"],[65,4,1,"_CPPv4N4espp4Ndef16make_oob_pairingE8uint64_t8uint32_tNSt11string_viewENSt11string_viewENSt11string_viewE","espp::Ndef::make_oob_pairing::name"],[65,4,1,"_CPPv4N4espp4Ndef16make_oob_pairingE8uint64_t8uint32_tNSt11string_viewENSt11string_viewENSt11string_viewE","espp::Ndef::make_oob_pairing::random_value"],[65,3,1,"_CPPv4N4espp4Ndef9make_textENSt11string_viewE","espp::Ndef::make_text"],[65,4,1,"_CPPv4N4espp4Ndef9make_textENSt11string_viewE","espp::Ndef::make_text::text"],[65,3,1,"_CPPv4N4espp4Ndef8make_uriENSt11string_viewE3Uic","espp::Ndef::make_uri"],[65,4,1,"_CPPv4N4espp4Ndef8make_uriENSt11string_viewE3Uic","espp::Ndef::make_uri::uic"],[65,4,1,"_CPPv4N4espp4Ndef8make_uriENSt11string_viewE3Uic","espp::Ndef::make_uri::uri"],[65,3,1,"_CPPv4N4espp4Ndef16make_wifi_configERK10WifiConfig","espp::Ndef::make_wifi_config"],[65,4,1,"_CPPv4N4espp4Ndef16make_wifi_configERK10WifiConfig","espp::Ndef::make_wifi_config::config"],[65,3,1,"_CPPv4N4espp4Ndef7payloadEv","espp::Ndef::payload"],[65,3,1,"_CPPv4N4espp4Ndef9serializeEbb","espp::Ndef::serialize"],[65,4,1,"_CPPv4N4espp4Ndef9serializeEbb","espp::Ndef::serialize::message_begin"],[65,4,1,"_CPPv4N4espp4Ndef9serializeEbb","espp::Ndef::serialize::message_end"],[65,3,1,"_CPPv4N4espp4Ndef6set_idEi","espp::Ndef::set_id"],[65,4,1,"_CPPv4N4espp4Ndef6set_idEi","espp::Ndef::set_id::id"],[5,2,1,"_CPPv4N4espp10OneshotAdcE","espp::OneshotAdc"],[5,2,1,"_CPPv4N4espp10OneshotAdc6ConfigE","espp::OneshotAdc::Config"],[5,1,1,"_CPPv4N4espp10OneshotAdc6Config8channelsE","espp::OneshotAdc::Config::channels"],[5,1,1,"_CPPv4N4espp10OneshotAdc6Config9log_levelE","espp::OneshotAdc::Config::log_level"],[5,1,1,"_CPPv4N4espp10OneshotAdc6Config4unitE","espp::OneshotAdc::Config::unit"],[5,3,1,"_CPPv4N4espp10OneshotAdc10OneshotAdcERK6Config","espp::OneshotAdc::OneshotAdc"],[5,4,1,"_CPPv4N4espp10OneshotAdc10OneshotAdcERK6Config","espp::OneshotAdc::OneshotAdc::config"],[5,3,1,"_CPPv4N4espp10OneshotAdc7read_mvERK9AdcConfig","espp::OneshotAdc::read_mv"],[5,4,1,"_CPPv4N4espp10OneshotAdc7read_mvERK9AdcConfig","espp::OneshotAdc::read_mv::config"],[5,3,1,"_CPPv4N4espp10OneshotAdc8read_rawERK9AdcConfig","espp::OneshotAdc::read_raw"],[5,4,1,"_CPPv4N4espp10OneshotAdc8read_rawERK9AdcConfig","espp::OneshotAdc::read_raw::config"],[5,3,1,"_CPPv4N4espp10OneshotAdcD0Ev","espp::OneshotAdc::~OneshotAdc"],[67,2,1,"_CPPv4N4espp3PidE","espp::Pid"],[67,2,1,"_CPPv4N4espp3Pid6ConfigE","espp::Pid::Config"],[67,1,1,"_CPPv4N4espp3Pid6Config14integrator_maxE","espp::Pid::Config::integrator_max"],[67,1,1,"_CPPv4N4espp3Pid6Config14integrator_minE","espp::Pid::Config::integrator_min"],[67,1,1,"_CPPv4N4espp3Pid6Config2kdE","espp::Pid::Config::kd"],[67,1,1,"_CPPv4N4espp3Pid6Config2kiE","espp::Pid::Config::ki"],[67,1,1,"_CPPv4N4espp3Pid6Config2kpE","espp::Pid::Config::kp"],[67,1,1,"_CPPv4N4espp3Pid6Config9log_levelE","espp::Pid::Config::log_level"],[67,1,1,"_CPPv4N4espp3Pid6Config10output_maxE","espp::Pid::Config::output_max"],[67,1,1,"_CPPv4N4espp3Pid6Config10output_minE","espp::Pid::Config::output_min"],[67,3,1,"_CPPv4N4espp3Pid3PidERK6Config","espp::Pid::Pid"],[67,4,1,"_CPPv4N4espp3Pid3PidERK6Config","espp::Pid::Pid::config"],[67,3,1,"_CPPv4N4espp3Pid12change_gainsERK6Configb","espp::Pid::change_gains"],[67,4,1,"_CPPv4N4espp3Pid12change_gainsERK6Configb","espp::Pid::change_gains::config"],[67,4,1,"_CPPv4N4espp3Pid12change_gainsERK6Configb","espp::Pid::change_gains::reset_state"],[67,3,1,"_CPPv4N4espp3Pid5clearEv","espp::Pid::clear"],[67,3,1,"_CPPv4NK4espp3Pid10get_configEv","espp::Pid::get_config"],[67,3,1,"_CPPv4NK4espp3Pid9get_errorEv","espp::Pid::get_error"],[67,3,1,"_CPPv4NK4espp3Pid14get_integratorEv","espp::Pid::get_integrator"],[67,3,1,"_CPPv4N4espp3PidclEf","espp::Pid::operator()"],[67,4,1,"_CPPv4N4espp3PidclEf","espp::Pid::operator()::error"],[67,3,1,"_CPPv4N4espp3Pid10set_configERK6Configb","espp::Pid::set_config"],[67,4,1,"_CPPv4N4espp3Pid10set_configERK6Configb","espp::Pid::set_config::config"],[67,4,1,"_CPPv4N4espp3Pid10set_configERK6Configb","espp::Pid::set_config::reset_state"],[67,3,1,"_CPPv4N4espp3Pid6updateEf","espp::Pid::update"],[67,4,1,"_CPPv4N4espp3Pid6updateEf","espp::Pid::update::error"],[68,2,1,"_CPPv4N4espp8QwiicNesE","espp::QwiicNes"],[68,6,1,"_CPPv4N4espp8QwiicNes6ButtonE","espp::QwiicNes::Button"],[68,7,1,"_CPPv4N4espp8QwiicNes6Button1AE","espp::QwiicNes::Button::A"],[68,7,1,"_CPPv4N4espp8QwiicNes6Button1BE","espp::QwiicNes::Button::B"],[68,7,1,"_CPPv4N4espp8QwiicNes6Button4DOWNE","espp::QwiicNes::Button::DOWN"],[68,7,1,"_CPPv4N4espp8QwiicNes6Button4LEFTE","espp::QwiicNes::Button::LEFT"],[68,7,1,"_CPPv4N4espp8QwiicNes6Button5RIGHTE","espp::QwiicNes::Button::RIGHT"],[68,7,1,"_CPPv4N4espp8QwiicNes6Button6SELECTE","espp::QwiicNes::Button::SELECT"],[68,7,1,"_CPPv4N4espp8QwiicNes6Button5STARTE","espp::QwiicNes::Button::START"],[68,7,1,"_CPPv4N4espp8QwiicNes6Button2UPE","espp::QwiicNes::Button::UP"],[68,2,1,"_CPPv4N4espp8QwiicNes11ButtonStateE","espp::QwiicNes::ButtonState"],[68,2,1,"_CPPv4N4espp8QwiicNes6ConfigE","espp::QwiicNes::Config"],[68,1,1,"_CPPv4N4espp8QwiicNes6Config9log_levelE","espp::QwiicNes::Config::log_level"],[68,1,1,"_CPPv4N4espp8QwiicNes6Config5writeE","espp::QwiicNes::Config::write"],[68,1,1,"_CPPv4N4espp8QwiicNes6Config10write_readE","espp::QwiicNes::Config::write_read"],[68,1,1,"_CPPv4N4espp8QwiicNes15DEFAULT_ADDRESSE","espp::QwiicNes::DEFAULT_ADDRESS"],[68,3,1,"_CPPv4N4espp8QwiicNes8QwiicNesERK6Config","espp::QwiicNes::QwiicNes"],[68,4,1,"_CPPv4N4espp8QwiicNes8QwiicNesERK6Config","espp::QwiicNes::QwiicNes::config"],[68,3,1,"_CPPv4NK4espp8QwiicNes16get_button_stateEv","espp::QwiicNes::get_button_state"],[68,3,1,"_CPPv4N4espp8QwiicNes10is_pressedE7uint8_t6Button","espp::QwiicNes::is_pressed"],[68,3,1,"_CPPv4NK4espp8QwiicNes10is_pressedE6Button","espp::QwiicNes::is_pressed"],[68,4,1,"_CPPv4N4espp8QwiicNes10is_pressedE7uint8_t6Button","espp::QwiicNes::is_pressed::button"],[68,4,1,"_CPPv4NK4espp8QwiicNes10is_pressedE6Button","espp::QwiicNes::is_pressed::button"],[68,4,1,"_CPPv4N4espp8QwiicNes10is_pressedE7uint8_t6Button","espp::QwiicNes::is_pressed::state"],[68,3,1,"_CPPv4NK4espp8QwiicNes12read_addressERNSt10error_codeE","espp::QwiicNes::read_address"],[68,4,1,"_CPPv4NK4espp8QwiicNes12read_addressERNSt10error_codeE","espp::QwiicNes::read_address::ec"],[68,3,1,"_CPPv4NK4espp8QwiicNes18read_current_stateERNSt10error_codeE","espp::QwiicNes::read_current_state"],[68,4,1,"_CPPv4NK4espp8QwiicNes18read_current_stateERNSt10error_codeE","espp::QwiicNes::read_current_state::ec"],[68,3,1,"_CPPv4N4espp8QwiicNes6updateERNSt10error_codeE","espp::QwiicNes::update"],[68,4,1,"_CPPv4N4espp8QwiicNes6updateERNSt10error_codeE","espp::QwiicNes::update::ec"],[68,3,1,"_CPPv4N4espp8QwiicNes14update_addressE7uint8_tRNSt10error_codeE","espp::QwiicNes::update_address"],[68,4,1,"_CPPv4N4espp8QwiicNes14update_addressE7uint8_tRNSt10error_codeE","espp::QwiicNes::update_address::ec"],[68,4,1,"_CPPv4N4espp8QwiicNes14update_addressE7uint8_tRNSt10error_codeE","espp::QwiicNes::update_address::new_address"],[68,8,1,"_CPPv4N4espp8QwiicNes8write_fnE","espp::QwiicNes::write_fn"],[68,8,1,"_CPPv4N4espp8QwiicNes13write_read_fnE","espp::QwiicNes::write_read_fn"],[57,2,1,"_CPPv4I0EN4espp11RangeMapperE","espp::RangeMapper"],[57,2,1,"_CPPv4N4espp11RangeMapper6ConfigE","espp::RangeMapper::Config"],[57,1,1,"_CPPv4N4espp11RangeMapper6Config6centerE","espp::RangeMapper::Config::center"],[57,1,1,"_CPPv4N4espp11RangeMapper6Config8deadbandE","espp::RangeMapper::Config::deadband"],[57,1,1,"_CPPv4N4espp11RangeMapper6Config12invert_inputE","espp::RangeMapper::Config::invert_input"],[57,1,1,"_CPPv4N4espp11RangeMapper6Config13invert_outputE","espp::RangeMapper::Config::invert_output"],[57,1,1,"_CPPv4N4espp11RangeMapper6Config7maximumE","espp::RangeMapper::Config::maximum"],[57,1,1,"_CPPv4N4espp11RangeMapper6Config7minimumE","espp::RangeMapper::Config::minimum"],[57,1,1,"_CPPv4N4espp11RangeMapper6Config13output_centerE","espp::RangeMapper::Config::output_center"],[57,1,1,"_CPPv4N4espp11RangeMapper6Config12output_rangeE","espp::RangeMapper::Config::output_range"],[57,3,1,"_CPPv4N4espp11RangeMapper11RangeMapperERK6Config","espp::RangeMapper::RangeMapper"],[57,4,1,"_CPPv4N4espp11RangeMapper11RangeMapperERK6Config","espp::RangeMapper::RangeMapper::config"],[57,5,1,"_CPPv4I0EN4espp11RangeMapperE","espp::RangeMapper::T"],[57,3,1,"_CPPv4N4espp11RangeMapper9configureERK6Config","espp::RangeMapper::configure"],[57,4,1,"_CPPv4N4espp11RangeMapper9configureERK6Config","espp::RangeMapper::configure::config"],[57,3,1,"_CPPv4NK4espp11RangeMapper17get_output_centerEv","espp::RangeMapper::get_output_center"],[57,3,1,"_CPPv4NK4espp11RangeMapper14get_output_maxEv","espp::RangeMapper::get_output_max"],[57,3,1,"_CPPv4NK4espp11RangeMapper14get_output_minEv","espp::RangeMapper::get_output_min"],[57,3,1,"_CPPv4NK4espp11RangeMapper16get_output_rangeEv","espp::RangeMapper::get_output_range"],[57,3,1,"_CPPv4N4espp11RangeMapper3mapERK1T","espp::RangeMapper::map"],[57,4,1,"_CPPv4N4espp11RangeMapper3mapERK1T","espp::RangeMapper::map::v"],[12,2,1,"_CPPv4N4espp3RgbE","espp::Rgb"],[12,3,1,"_CPPv4N4espp3Rgb3RgbERK3Hsv","espp::Rgb::Rgb"],[12,3,1,"_CPPv4N4espp3Rgb3RgbERK3Rgb","espp::Rgb::Rgb"],[12,3,1,"_CPPv4N4espp3Rgb3RgbERKfRKfRKf","espp::Rgb::Rgb"],[12,4,1,"_CPPv4N4espp3Rgb3RgbERKfRKfRKf","espp::Rgb::Rgb::b"],[12,4,1,"_CPPv4N4espp3Rgb3RgbERKfRKfRKf","espp::Rgb::Rgb::g"],[12,4,1,"_CPPv4N4espp3Rgb3RgbERK3Hsv","espp::Rgb::Rgb::hsv"],[12,4,1,"_CPPv4N4espp3Rgb3RgbERKfRKfRKf","espp::Rgb::Rgb::r"],[12,4,1,"_CPPv4N4espp3Rgb3RgbERK3Rgb","espp::Rgb::Rgb::rgb"],[12,1,1,"_CPPv4N4espp3Rgb1bE","espp::Rgb::b"],[12,1,1,"_CPPv4N4espp3Rgb1gE","espp::Rgb::g"],[12,3,1,"_CPPv4NK4espp3Rgb3hsvEv","espp::Rgb::hsv"],[12,3,1,"_CPPv4NK4espp3RgbplERK3Rgb","espp::Rgb::operator+"],[12,4,1,"_CPPv4NK4espp3RgbplERK3Rgb","espp::Rgb::operator+::rhs"],[12,3,1,"_CPPv4N4espp3RgbpLERK3Rgb","espp::Rgb::operator+="],[12,4,1,"_CPPv4N4espp3RgbpLERK3Rgb","espp::Rgb::operator+=::rhs"],[12,1,1,"_CPPv4N4espp3Rgb1rE","espp::Rgb::r"],[69,2,1,"_CPPv4N4espp3RmtE","espp::Rmt"],[69,2,1,"_CPPv4N4espp3Rmt6ConfigE","espp::Rmt::Config"],[69,1,1,"_CPPv4N4espp3Rmt6Config10block_sizeE","espp::Rmt::Config::block_size"],[69,1,1,"_CPPv4N4espp3Rmt6Config9clock_srcE","espp::Rmt::Config::clock_src"],[69,1,1,"_CPPv4N4espp3Rmt6Config11dma_enabledE","espp::Rmt::Config::dma_enabled"],[69,1,1,"_CPPv4N4espp3Rmt6Config8gpio_numE","espp::Rmt::Config::gpio_num"],[69,1,1,"_CPPv4N4espp3Rmt6Config9log_levelE","espp::Rmt::Config::log_level"],[69,1,1,"_CPPv4N4espp3Rmt6Config13resolution_hzE","espp::Rmt::Config::resolution_hz"],[69,1,1,"_CPPv4N4espp3Rmt6Config23transaction_queue_depthE","espp::Rmt::Config::transaction_queue_depth"],[69,3,1,"_CPPv4N4espp3Rmt3RmtERK6Config","espp::Rmt::Rmt"],[69,4,1,"_CPPv4N4espp3Rmt3RmtERK6Config","espp::Rmt::Rmt::config"],[69,3,1,"_CPPv4N4espp3Rmt8transmitEPK7uint8_t6size_t","espp::Rmt::transmit"],[69,4,1,"_CPPv4N4espp3Rmt8transmitEPK7uint8_t6size_t","espp::Rmt::transmit::data"],[69,4,1,"_CPPv4N4espp3Rmt8transmitEPK7uint8_t6size_t","espp::Rmt::transmit::length"],[69,3,1,"_CPPv4N4espp3RmtD0Ev","espp::Rmt::~Rmt"],[69,2,1,"_CPPv4N4espp10RmtEncoderE","espp::RmtEncoder"],[69,2,1,"_CPPv4N4espp10RmtEncoder6ConfigE","espp::RmtEncoder::Config"],[69,1,1,"_CPPv4N4espp10RmtEncoder6Config20bytes_encoder_configE","espp::RmtEncoder::Config::bytes_encoder_config"],[69,1,1,"_CPPv4N4espp10RmtEncoder6Config3delE","espp::RmtEncoder::Config::del"],[69,1,1,"_CPPv4N4espp10RmtEncoder6Config6encodeE","espp::RmtEncoder::Config::encode"],[69,1,1,"_CPPv4N4espp10RmtEncoder6Config5resetE","espp::RmtEncoder::Config::reset"],[69,3,1,"_CPPv4N4espp10RmtEncoder10RmtEncoderERK6Config","espp::RmtEncoder::RmtEncoder"],[69,4,1,"_CPPv4N4espp10RmtEncoder10RmtEncoderERK6Config","espp::RmtEncoder::RmtEncoder::config"],[69,8,1,"_CPPv4N4espp10RmtEncoder9delete_fnE","espp::RmtEncoder::delete_fn"],[69,8,1,"_CPPv4N4espp10RmtEncoder9encode_fnE","espp::RmtEncoder::encode_fn"],[69,3,1,"_CPPv4NK4espp10RmtEncoder6handleEv","espp::RmtEncoder::handle"],[69,8,1,"_CPPv4N4espp10RmtEncoder8reset_fnE","espp::RmtEncoder::reset_fn"],[69,3,1,"_CPPv4N4espp10RmtEncoderD0Ev","espp::RmtEncoder::~RmtEncoder"],[72,2,1,"_CPPv4N4espp10RtcpPacketE","espp::RtcpPacket"],[72,2,1,"_CPPv4N4espp13RtpJpegPacketE","espp::RtpJpegPacket"],[72,3,1,"_CPPv4N4espp13RtpJpegPacket13RtpJpegPacketEKiKiKiKiKiKiNSt11string_viewE","espp::RtpJpegPacket::RtpJpegPacket"],[72,3,1,"_CPPv4N4espp13RtpJpegPacket13RtpJpegPacketEKiKiKiKiKiNSt11string_viewENSt11string_viewENSt11string_viewE","espp::RtpJpegPacket::RtpJpegPacket"],[72,3,1,"_CPPv4N4espp13RtpJpegPacket13RtpJpegPacketENSt11string_viewE","espp::RtpJpegPacket::RtpJpegPacket"],[72,4,1,"_CPPv4N4espp13RtpJpegPacket13RtpJpegPacketENSt11string_viewE","espp::RtpJpegPacket::RtpJpegPacket::data"],[72,4,1,"_CPPv4N4espp13RtpJpegPacket13RtpJpegPacketEKiKiKiKiKiKiNSt11string_viewE","espp::RtpJpegPacket::RtpJpegPacket::frag_type"],[72,4,1,"_CPPv4N4espp13RtpJpegPacket13RtpJpegPacketEKiKiKiKiKiNSt11string_viewENSt11string_viewENSt11string_viewE","espp::RtpJpegPacket::RtpJpegPacket::frag_type"],[72,4,1,"_CPPv4N4espp13RtpJpegPacket13RtpJpegPacketEKiKiKiKiKiKiNSt11string_viewE","espp::RtpJpegPacket::RtpJpegPacket::height"],[72,4,1,"_CPPv4N4espp13RtpJpegPacket13RtpJpegPacketEKiKiKiKiKiNSt11string_viewENSt11string_viewENSt11string_viewE","espp::RtpJpegPacket::RtpJpegPacket::height"],[72,4,1,"_CPPv4N4espp13RtpJpegPacket13RtpJpegPacketEKiKiKiKiKiKiNSt11string_viewE","espp::RtpJpegPacket::RtpJpegPacket::offset"],[72,4,1,"_CPPv4N4espp13RtpJpegPacket13RtpJpegPacketEKiKiKiKiKiKiNSt11string_viewE","espp::RtpJpegPacket::RtpJpegPacket::q"],[72,4,1,"_CPPv4N4espp13RtpJpegPacket13RtpJpegPacketEKiKiKiKiKiNSt11string_viewENSt11string_viewENSt11string_viewE","espp::RtpJpegPacket::RtpJpegPacket::q"],[72,4,1,"_CPPv4N4espp13RtpJpegPacket13RtpJpegPacketEKiKiKiKiKiNSt11string_viewENSt11string_viewENSt11string_viewE","espp::RtpJpegPacket::RtpJpegPacket::q0"],[72,4,1,"_CPPv4N4espp13RtpJpegPacket13RtpJpegPacketEKiKiKiKiKiNSt11string_viewENSt11string_viewENSt11string_viewE","espp::RtpJpegPacket::RtpJpegPacket::q1"],[72,4,1,"_CPPv4N4espp13RtpJpegPacket13RtpJpegPacketEKiKiKiKiKiKiNSt11string_viewE","espp::RtpJpegPacket::RtpJpegPacket::scan_data"],[72,4,1,"_CPPv4N4espp13RtpJpegPacket13RtpJpegPacketEKiKiKiKiKiNSt11string_viewENSt11string_viewENSt11string_viewE","espp::RtpJpegPacket::RtpJpegPacket::scan_data"],[72,4,1,"_CPPv4N4espp13RtpJpegPacket13RtpJpegPacketEKiKiKiKiKiKiNSt11string_viewE","espp::RtpJpegPacket::RtpJpegPacket::type_specific"],[72,4,1,"_CPPv4N4espp13RtpJpegPacket13RtpJpegPacketEKiKiKiKiKiNSt11string_viewENSt11string_viewENSt11string_viewE","espp::RtpJpegPacket::RtpJpegPacket::type_specific"],[72,4,1,"_CPPv4N4espp13RtpJpegPacket13RtpJpegPacketEKiKiKiKiKiKiNSt11string_viewE","espp::RtpJpegPacket::RtpJpegPacket::width"],[72,4,1,"_CPPv4N4espp13RtpJpegPacket13RtpJpegPacketEKiKiKiKiKiNSt11string_viewENSt11string_viewENSt11string_viewE","espp::RtpJpegPacket::RtpJpegPacket::width"],[72,3,1,"_CPPv4NK4espp13RtpJpegPacket8get_dataEv","espp::RtpJpegPacket::get_data"],[72,3,1,"_CPPv4NK4espp13RtpJpegPacket10get_heightEv","espp::RtpJpegPacket::get_height"],[72,3,1,"_CPPv4NK4espp13RtpJpegPacket13get_jpeg_dataEv","espp::RtpJpegPacket::get_jpeg_data"],[72,3,1,"_CPPv4N4espp13RtpJpegPacket16get_mjpeg_headerEv","espp::RtpJpegPacket::get_mjpeg_header"],[72,3,1,"_CPPv4NK4espp13RtpJpegPacket16get_num_q_tablesEv","espp::RtpJpegPacket::get_num_q_tables"],[72,3,1,"_CPPv4NK4espp13RtpJpegPacket10get_offsetEv","espp::RtpJpegPacket::get_offset"],[72,3,1,"_CPPv4N4espp13RtpJpegPacket10get_packetEv","espp::RtpJpegPacket::get_packet"],[72,3,1,"_CPPv4NK4espp13RtpJpegPacket11get_payloadEv","espp::RtpJpegPacket::get_payload"],[72,3,1,"_CPPv4NK4espp13RtpJpegPacket5get_qEv","espp::RtpJpegPacket::get_q"],[72,3,1,"_CPPv4NK4espp13RtpJpegPacket11get_q_tableEi","espp::RtpJpegPacket::get_q_table"],[72,4,1,"_CPPv4NK4espp13RtpJpegPacket11get_q_tableEi","espp::RtpJpegPacket::get_q_table::index"],[72,3,1,"_CPPv4NK4espp13RtpJpegPacket14get_rpt_headerEv","espp::RtpJpegPacket::get_rpt_header"],[72,3,1,"_CPPv4NK4espp13RtpJpegPacket19get_rtp_header_sizeEv","espp::RtpJpegPacket::get_rtp_header_size"],[72,3,1,"_CPPv4NK4espp13RtpJpegPacket17get_type_specificEv","espp::RtpJpegPacket::get_type_specific"],[72,3,1,"_CPPv4NK4espp13RtpJpegPacket11get_versionEv","espp::RtpJpegPacket::get_version"],[72,3,1,"_CPPv4NK4espp13RtpJpegPacket9get_widthEv","espp::RtpJpegPacket::get_width"],[72,3,1,"_CPPv4NK4espp13RtpJpegPacket12has_q_tablesEv","espp::RtpJpegPacket::has_q_tables"],[72,3,1,"_CPPv4N4espp13RtpJpegPacket9serializeEv","espp::RtpJpegPacket::serialize"],[72,3,1,"_CPPv4N4espp13RtpJpegPacket11set_payloadENSt11string_viewE","espp::RtpJpegPacket::set_payload"],[72,4,1,"_CPPv4N4espp13RtpJpegPacket11set_payloadENSt11string_viewE","espp::RtpJpegPacket::set_payload::payload"],[72,3,1,"_CPPv4N4espp13RtpJpegPacket11set_versionEi","espp::RtpJpegPacket::set_version"],[72,4,1,"_CPPv4N4espp13RtpJpegPacket11set_versionEi","espp::RtpJpegPacket::set_version::version"],[72,2,1,"_CPPv4N4espp9RtpPacketE","espp::RtpPacket"],[72,3,1,"_CPPv4N4espp9RtpPacket9RtpPacketE6size_t","espp::RtpPacket::RtpPacket"],[72,3,1,"_CPPv4N4espp9RtpPacket9RtpPacketENSt11string_viewE","espp::RtpPacket::RtpPacket"],[72,3,1,"_CPPv4N4espp9RtpPacket9RtpPacketEv","espp::RtpPacket::RtpPacket"],[72,4,1,"_CPPv4N4espp9RtpPacket9RtpPacketENSt11string_viewE","espp::RtpPacket::RtpPacket::data"],[72,4,1,"_CPPv4N4espp9RtpPacket9RtpPacketE6size_t","espp::RtpPacket::RtpPacket::payload_size"],[72,3,1,"_CPPv4NK4espp9RtpPacket8get_dataEv","espp::RtpPacket::get_data"],[72,3,1,"_CPPv4N4espp9RtpPacket10get_packetEv","espp::RtpPacket::get_packet"],[72,3,1,"_CPPv4NK4espp9RtpPacket11get_payloadEv","espp::RtpPacket::get_payload"],[72,3,1,"_CPPv4NK4espp9RtpPacket14get_rpt_headerEv","espp::RtpPacket::get_rpt_header"],[72,3,1,"_CPPv4NK4espp9RtpPacket19get_rtp_header_sizeEv","espp::RtpPacket::get_rtp_header_size"],[72,3,1,"_CPPv4NK4espp9RtpPacket11get_versionEv","espp::RtpPacket::get_version"],[72,3,1,"_CPPv4N4espp9RtpPacket9serializeEv","espp::RtpPacket::serialize"],[72,3,1,"_CPPv4N4espp9RtpPacket11set_payloadENSt11string_viewE","espp::RtpPacket::set_payload"],[72,4,1,"_CPPv4N4espp9RtpPacket11set_payloadENSt11string_viewE","espp::RtpPacket::set_payload::payload"],[72,3,1,"_CPPv4N4espp9RtpPacket11set_versionEi","espp::RtpPacket::set_version"],[72,4,1,"_CPPv4N4espp9RtpPacket11set_versionEi","espp::RtpPacket::set_version::version"],[72,2,1,"_CPPv4N4espp10RtspClientE","espp::RtspClient"],[72,2,1,"_CPPv4N4espp10RtspClient6ConfigE","espp::RtspClient::Config"],[72,1,1,"_CPPv4N4espp10RtspClient6Config9log_levelE","espp::RtspClient::Config::log_level"],[72,1,1,"_CPPv4N4espp10RtspClient6Config13on_jpeg_frameE","espp::RtspClient::Config::on_jpeg_frame"],[72,1,1,"_CPPv4N4espp10RtspClient6Config4pathE","espp::RtspClient::Config::path"],[72,1,1,"_CPPv4N4espp10RtspClient6Config9rtsp_portE","espp::RtspClient::Config::rtsp_port"],[72,1,1,"_CPPv4N4espp10RtspClient6Config14server_addressE","espp::RtspClient::Config::server_address"],[72,3,1,"_CPPv4N4espp10RtspClient10RtspClientERK6Config","espp::RtspClient::RtspClient"],[72,4,1,"_CPPv4N4espp10RtspClient10RtspClientERK6Config","espp::RtspClient::RtspClient::config"],[72,3,1,"_CPPv4N4espp10RtspClient7connectERNSt10error_codeE","espp::RtspClient::connect"],[72,4,1,"_CPPv4N4espp10RtspClient7connectERNSt10error_codeE","espp::RtspClient::connect::ec"],[72,3,1,"_CPPv4N4espp10RtspClient8describeERNSt10error_codeE","espp::RtspClient::describe"],[72,4,1,"_CPPv4N4espp10RtspClient8describeERNSt10error_codeE","espp::RtspClient::describe::ec"],[72,3,1,"_CPPv4N4espp10RtspClient10disconnectERNSt10error_codeE","espp::RtspClient::disconnect"],[72,4,1,"_CPPv4N4espp10RtspClient10disconnectERNSt10error_codeE","espp::RtspClient::disconnect::ec"],[72,8,1,"_CPPv4N4espp10RtspClient21jpeg_frame_callback_tE","espp::RtspClient::jpeg_frame_callback_t"],[72,3,1,"_CPPv4N4espp10RtspClient5pauseERNSt10error_codeE","espp::RtspClient::pause"],[72,4,1,"_CPPv4N4espp10RtspClient5pauseERNSt10error_codeE","espp::RtspClient::pause::ec"],[72,3,1,"_CPPv4N4espp10RtspClient4playERNSt10error_codeE","espp::RtspClient::play"],[72,4,1,"_CPPv4N4espp10RtspClient4playERNSt10error_codeE","espp::RtspClient::play::ec"],[72,3,1,"_CPPv4N4espp10RtspClient12send_requestERKNSt6stringERKNSt6stringERKNSt13unordered_mapINSt6stringENSt6stringEEERNSt10error_codeE","espp::RtspClient::send_request"],[72,4,1,"_CPPv4N4espp10RtspClient12send_requestERKNSt6stringERKNSt6stringERKNSt13unordered_mapINSt6stringENSt6stringEEERNSt10error_codeE","espp::RtspClient::send_request::ec"],[72,4,1,"_CPPv4N4espp10RtspClient12send_requestERKNSt6stringERKNSt6stringERKNSt13unordered_mapINSt6stringENSt6stringEEERNSt10error_codeE","espp::RtspClient::send_request::extra_headers"],[72,4,1,"_CPPv4N4espp10RtspClient12send_requestERKNSt6stringERKNSt6stringERKNSt13unordered_mapINSt6stringENSt6stringEEERNSt10error_codeE","espp::RtspClient::send_request::method"],[72,4,1,"_CPPv4N4espp10RtspClient12send_requestERKNSt6stringERKNSt6stringERKNSt13unordered_mapINSt6stringENSt6stringEEERNSt10error_codeE","espp::RtspClient::send_request::path"],[72,3,1,"_CPPv4N4espp10RtspClient5setupE6size_t6size_tRNSt10error_codeE","espp::RtspClient::setup"],[72,3,1,"_CPPv4N4espp10RtspClient5setupERNSt10error_codeE","espp::RtspClient::setup"],[72,4,1,"_CPPv4N4espp10RtspClient5setupE6size_t6size_tRNSt10error_codeE","espp::RtspClient::setup::ec"],[72,4,1,"_CPPv4N4espp10RtspClient5setupERNSt10error_codeE","espp::RtspClient::setup::ec"],[72,4,1,"_CPPv4N4espp10RtspClient5setupE6size_t6size_tRNSt10error_codeE","espp::RtspClient::setup::rtcp_port"],[72,4,1,"_CPPv4N4espp10RtspClient5setupE6size_t6size_tRNSt10error_codeE","espp::RtspClient::setup::rtp_port"],[72,3,1,"_CPPv4N4espp10RtspClient8teardownERNSt10error_codeE","espp::RtspClient::teardown"],[72,4,1,"_CPPv4N4espp10RtspClient8teardownERNSt10error_codeE","espp::RtspClient::teardown::ec"],[72,3,1,"_CPPv4N4espp10RtspClientD0Ev","espp::RtspClient::~RtspClient"],[72,2,1,"_CPPv4N4espp10RtspServerE","espp::RtspServer"],[72,2,1,"_CPPv4N4espp10RtspServer6ConfigE","espp::RtspServer::Config"],[72,1,1,"_CPPv4N4espp10RtspServer6Config9log_levelE","espp::RtspServer::Config::log_level"],[72,1,1,"_CPPv4N4espp10RtspServer6Config13max_data_sizeE","espp::RtspServer::Config::max_data_size"],[72,1,1,"_CPPv4N4espp10RtspServer6Config4pathE","espp::RtspServer::Config::path"],[72,1,1,"_CPPv4N4espp10RtspServer6Config4portE","espp::RtspServer::Config::port"],[72,1,1,"_CPPv4N4espp10RtspServer6Config14server_addressE","espp::RtspServer::Config::server_address"],[72,3,1,"_CPPv4N4espp10RtspServer10RtspServerERK6Config","espp::RtspServer::RtspServer"],[72,4,1,"_CPPv4N4espp10RtspServer10RtspServerERK6Config","espp::RtspServer::RtspServer::config"],[72,3,1,"_CPPv4N4espp10RtspServer10send_frameERK9JpegFrame","espp::RtspServer::send_frame"],[72,4,1,"_CPPv4N4espp10RtspServer10send_frameERK9JpegFrame","espp::RtspServer::send_frame::frame"],[72,3,1,"_CPPv4N4espp10RtspServer21set_session_log_levelEN6Logger9VerbosityE","espp::RtspServer::set_session_log_level"],[72,4,1,"_CPPv4N4espp10RtspServer21set_session_log_levelEN6Logger9VerbosityE","espp::RtspServer::set_session_log_level::log_level"],[72,3,1,"_CPPv4N4espp10RtspServer5startEv","espp::RtspServer::start"],[72,3,1,"_CPPv4N4espp10RtspServer4stopEv","espp::RtspServer::stop"],[72,3,1,"_CPPv4N4espp10RtspServerD0Ev","espp::RtspServer::~RtspServer"],[72,2,1,"_CPPv4N4espp11RtspSessionE","espp::RtspSession"],[72,2,1,"_CPPv4N4espp11RtspSession6ConfigE","espp::RtspSession::Config"],[72,1,1,"_CPPv4N4espp11RtspSession6Config9log_levelE","espp::RtspSession::Config::log_level"],[72,1,1,"_CPPv4N4espp11RtspSession6Config9rtsp_pathE","espp::RtspSession::Config::rtsp_path"],[72,1,1,"_CPPv4N4espp11RtspSession6Config14server_addressE","espp::RtspSession::Config::server_address"],[72,3,1,"_CPPv4N4espp11RtspSession11RtspSessionENSt10unique_ptrI9TcpSocketEERK6Config","espp::RtspSession::RtspSession"],[72,4,1,"_CPPv4N4espp11RtspSession11RtspSessionENSt10unique_ptrI9TcpSocketEERK6Config","espp::RtspSession::RtspSession::config"],[72,4,1,"_CPPv4N4espp11RtspSession11RtspSessionENSt10unique_ptrI9TcpSocketEERK6Config","espp::RtspSession::RtspSession::control_socket"],[72,3,1,"_CPPv4NK4espp11RtspSession14get_session_idEv","espp::RtspSession::get_session_id"],[72,3,1,"_CPPv4NK4espp11RtspSession9is_activeEv","espp::RtspSession::is_active"],[72,3,1,"_CPPv4NK4espp11RtspSession9is_closedEv","espp::RtspSession::is_closed"],[72,3,1,"_CPPv4NK4espp11RtspSession12is_connectedEv","espp::RtspSession::is_connected"],[72,3,1,"_CPPv4N4espp11RtspSession5pauseEv","espp::RtspSession::pause"],[72,3,1,"_CPPv4N4espp11RtspSession4playEv","espp::RtspSession::play"],[72,3,1,"_CPPv4N4espp11RtspSession16send_rtcp_packetERK10RtcpPacket","espp::RtspSession::send_rtcp_packet"],[72,4,1,"_CPPv4N4espp11RtspSession16send_rtcp_packetERK10RtcpPacket","espp::RtspSession::send_rtcp_packet::packet"],[72,3,1,"_CPPv4N4espp11RtspSession15send_rtp_packetERK9RtpPacket","espp::RtspSession::send_rtp_packet"],[72,4,1,"_CPPv4N4espp11RtspSession15send_rtp_packetERK9RtpPacket","espp::RtspSession::send_rtp_packet::packet"],[72,3,1,"_CPPv4N4espp11RtspSession8teardownEv","espp::RtspSession::teardown"],[61,2,1,"_CPPv4N4espp6SocketE","espp::Socket"],[61,2,1,"_CPPv4N4espp6Socket4InfoE","espp::Socket::Info"],[61,1,1,"_CPPv4N4espp6Socket4Info7addressE","espp::Socket::Info::address"],[61,3,1,"_CPPv4N4espp6Socket4Info13from_sockaddrERK11sockaddr_in","espp::Socket::Info::from_sockaddr"],[61,3,1,"_CPPv4N4espp6Socket4Info13from_sockaddrERK12sockaddr_in6","espp::Socket::Info::from_sockaddr"],[61,3,1,"_CPPv4N4espp6Socket4Info13from_sockaddrERK16sockaddr_storage","espp::Socket::Info::from_sockaddr"],[61,4,1,"_CPPv4N4espp6Socket4Info13from_sockaddrERK11sockaddr_in","espp::Socket::Info::from_sockaddr::source_address"],[61,4,1,"_CPPv4N4espp6Socket4Info13from_sockaddrERK12sockaddr_in6","espp::Socket::Info::from_sockaddr::source_address"],[61,4,1,"_CPPv4N4espp6Socket4Info13from_sockaddrERK16sockaddr_storage","espp::Socket::Info::from_sockaddr::source_address"],[61,3,1,"_CPPv4N4espp6Socket4Info9init_ipv4ERKNSt6stringE6size_t","espp::Socket::Info::init_ipv4"],[61,4,1,"_CPPv4N4espp6Socket4Info9init_ipv4ERKNSt6stringE6size_t","espp::Socket::Info::init_ipv4::addr"],[61,4,1,"_CPPv4N4espp6Socket4Info9init_ipv4ERKNSt6stringE6size_t","espp::Socket::Info::init_ipv4::prt"],[61,3,1,"_CPPv4N4espp6Socket4Info8ipv4_ptrEv","espp::Socket::Info::ipv4_ptr"],[61,3,1,"_CPPv4N4espp6Socket4Info8ipv6_ptrEv","espp::Socket::Info::ipv6_ptr"],[61,1,1,"_CPPv4N4espp6Socket4Info4portE","espp::Socket::Info::port"],[61,3,1,"_CPPv4N4espp6Socket4Info6updateEv","espp::Socket::Info::update"],[61,3,1,"_CPPv4N4espp6Socket6SocketE4TypeRKN6Logger6ConfigE","espp::Socket::Socket"],[61,3,1,"_CPPv4N4espp6Socket6SocketEiRKN6Logger6ConfigE","espp::Socket::Socket"],[61,4,1,"_CPPv4N4espp6Socket6SocketE4TypeRKN6Logger6ConfigE","espp::Socket::Socket::logger_config"],[61,4,1,"_CPPv4N4espp6Socket6SocketEiRKN6Logger6ConfigE","espp::Socket::Socket::logger_config"],[61,4,1,"_CPPv4N4espp6Socket6SocketEiRKN6Logger6ConfigE","espp::Socket::Socket::socket_fd"],[61,4,1,"_CPPv4N4espp6Socket6SocketE4TypeRKN6Logger6ConfigE","espp::Socket::Socket::type"],[61,3,1,"_CPPv4N4espp6Socket19add_multicast_groupERKNSt6stringE","espp::Socket::add_multicast_group"],[61,4,1,"_CPPv4N4espp6Socket19add_multicast_groupERKNSt6stringE","espp::Socket::add_multicast_group::multicast_group"],[61,3,1,"_CPPv4N4espp6Socket12enable_reuseEv","espp::Socket::enable_reuse"],[61,3,1,"_CPPv4N4espp6Socket13get_ipv4_infoEv","espp::Socket::get_ipv4_info"],[61,3,1,"_CPPv4N4espp6Socket8is_validEi","espp::Socket::is_valid"],[61,3,1,"_CPPv4NK4espp6Socket8is_validEv","espp::Socket::is_valid"],[61,4,1,"_CPPv4N4espp6Socket8is_validEi","espp::Socket::is_valid::socket_fd"],[61,3,1,"_CPPv4N4espp6Socket14make_multicastE7uint8_t7uint8_t","espp::Socket::make_multicast"],[61,4,1,"_CPPv4N4espp6Socket14make_multicastE7uint8_t7uint8_t","espp::Socket::make_multicast::loopback_enabled"],[61,4,1,"_CPPv4N4espp6Socket14make_multicastE7uint8_t7uint8_t","espp::Socket::make_multicast::time_to_live"],[61,8,1,"_CPPv4N4espp6Socket19receive_callback_fnE","espp::Socket::receive_callback_fn"],[61,8,1,"_CPPv4N4espp6Socket20response_callback_fnE","espp::Socket::response_callback_fn"],[61,3,1,"_CPPv4N4espp6Socket19set_receive_timeoutERKNSt6chrono8durationIfEE","espp::Socket::set_receive_timeout"],[61,4,1,"_CPPv4N4espp6Socket19set_receive_timeoutERKNSt6chrono8durationIfEE","espp::Socket::set_receive_timeout::timeout"],[61,3,1,"_CPPv4N4espp6SocketD0Ev","espp::Socket::~Socket"],[29,2,1,"_CPPv4I_6size_t0EN4espp9SosFilterE","espp::SosFilter"],[29,5,1,"_CPPv4I_6size_t0EN4espp9SosFilterE","espp::SosFilter::N"],[29,5,1,"_CPPv4I_6size_t0EN4espp9SosFilterE","espp::SosFilter::SectionImpl"],[29,3,1,"_CPPv4N4espp9SosFilter9SosFilterERKNSt5arrayI16TransferFunctionIXL3EEE1NEE","espp::SosFilter::SosFilter"],[29,4,1,"_CPPv4N4espp9SosFilter9SosFilterERKNSt5arrayI16TransferFunctionIXL3EEE1NEE","espp::SosFilter::SosFilter::config"],[29,3,1,"_CPPv4N4espp9SosFilterclEf","espp::SosFilter::operator()"],[29,4,1,"_CPPv4N4espp9SosFilterclEf","espp::SosFilter::operator()::input"],[29,3,1,"_CPPv4N4espp9SosFilter6updateEf","espp::SosFilter::update"],[29,4,1,"_CPPv4N4espp9SosFilter6updateEf","espp::SosFilter::update::input"],[66,2,1,"_CPPv4N4espp6St25dvE","espp::St25dv"],[66,2,1,"_CPPv4N4espp6St25dv6ConfigE","espp::St25dv::Config"],[66,1,1,"_CPPv4N4espp6St25dv6Config9auto_initE","espp::St25dv::Config::auto_init"],[66,1,1,"_CPPv4N4espp6St25dv6Config9log_levelE","espp::St25dv::Config::log_level"],[66,1,1,"_CPPv4N4espp6St25dv6Config4readE","espp::St25dv::Config::read"],[66,1,1,"_CPPv4N4espp6St25dv6Config5writeE","espp::St25dv::Config::write"],[66,1,1,"_CPPv4N4espp6St25dv12DATA_ADDRESSE","espp::St25dv::DATA_ADDRESS"],[66,2,1,"_CPPv4N4espp6St25dv7EH_CTRLE","espp::St25dv::EH_CTRL"],[66,2,1,"_CPPv4N4espp6St25dv3GPOE","espp::St25dv::GPO"],[66,2,1,"_CPPv4N4espp6St25dv6IT_STSE","espp::St25dv::IT_STS"],[66,2,1,"_CPPv4N4espp6St25dv6IT_STSE","espp::St25dv::IT_STS"],[66,1,1,"_CPPv4N4espp6St25dv6IT_STS13FIELD_FALLINGE","espp::St25dv::IT_STS::FIELD_FALLING"],[66,1,1,"_CPPv4N4espp6St25dv6IT_STS13FIELD_FALLINGE","espp::St25dv::IT_STS::FIELD_FALLING"],[66,1,1,"_CPPv4N4espp6St25dv6IT_STS12FIELD_RISINGE","espp::St25dv::IT_STS::FIELD_RISING"],[66,1,1,"_CPPv4N4espp6St25dv6IT_STS12FIELD_RISINGE","espp::St25dv::IT_STS::FIELD_RISING"],[66,1,1,"_CPPv4N4espp6St25dv6IT_STS11RF_ACTIVITYE","espp::St25dv::IT_STS::RF_ACTIVITY"],[66,1,1,"_CPPv4N4espp6St25dv6IT_STS11RF_ACTIVITYE","espp::St25dv::IT_STS::RF_ACTIVITY"],[66,1,1,"_CPPv4N4espp6St25dv6IT_STS10RF_GET_MSGE","espp::St25dv::IT_STS::RF_GET_MSG"],[66,1,1,"_CPPv4N4espp6St25dv6IT_STS10RF_GET_MSGE","espp::St25dv::IT_STS::RF_GET_MSG"],[66,1,1,"_CPPv4N4espp6St25dv6IT_STS12RF_INTTERUPTE","espp::St25dv::IT_STS::RF_INTTERUPT"],[66,1,1,"_CPPv4N4espp6St25dv6IT_STS12RF_INTTERUPTE","espp::St25dv::IT_STS::RF_INTTERUPT"],[66,1,1,"_CPPv4N4espp6St25dv6IT_STS10RF_PUT_MSGE","espp::St25dv::IT_STS::RF_PUT_MSG"],[66,1,1,"_CPPv4N4espp6St25dv6IT_STS10RF_PUT_MSGE","espp::St25dv::IT_STS::RF_PUT_MSG"],[66,1,1,"_CPPv4N4espp6St25dv6IT_STS7RF_USERE","espp::St25dv::IT_STS::RF_USER"],[66,1,1,"_CPPv4N4espp6St25dv6IT_STS7RF_USERE","espp::St25dv::IT_STS::RF_USER"],[66,1,1,"_CPPv4N4espp6St25dv6IT_STS8RF_WRITEE","espp::St25dv::IT_STS::RF_WRITE"],[66,1,1,"_CPPv4N4espp6St25dv6IT_STS8RF_WRITEE","espp::St25dv::IT_STS::RF_WRITE"],[66,2,1,"_CPPv4N4espp6St25dv7MB_CTRLE","espp::St25dv::MB_CTRL"],[66,1,1,"_CPPv4N4espp6St25dv12SYST_ADDRESSE","espp::St25dv::SYST_ADDRESS"],[66,3,1,"_CPPv4N4espp6St25dv6St25dvERK6Config","espp::St25dv::St25dv"],[66,4,1,"_CPPv4N4espp6St25dv6St25dvERK6Config","espp::St25dv::St25dv::config"],[66,3,1,"_CPPv4N4espp6St25dv14get_ftm_lengthERNSt10error_codeE","espp::St25dv::get_ftm_length"],[66,4,1,"_CPPv4N4espp6St25dv14get_ftm_lengthERNSt10error_codeE","espp::St25dv::get_ftm_length::ec"],[66,3,1,"_CPPv4N4espp6St25dv20get_interrupt_statusERNSt10error_codeE","espp::St25dv::get_interrupt_status"],[66,4,1,"_CPPv4N4espp6St25dv20get_interrupt_statusERNSt10error_codeE","espp::St25dv::get_interrupt_status::ec"],[66,3,1,"_CPPv4N4espp6St25dv10initializeERNSt10error_codeE","espp::St25dv::initialize"],[66,4,1,"_CPPv4N4espp6St25dv10initializeERNSt10error_codeE","espp::St25dv::initialize::ec"],[66,3,1,"_CPPv4N4espp6St25dv4readEP7uint8_t7uint8_t8uint16_tRNSt10error_codeE","espp::St25dv::read"],[66,3,1,"_CPPv4N4espp6St25dv4readEP7uint8_t7uint8_tRNSt10error_codeE","espp::St25dv::read"],[66,4,1,"_CPPv4N4espp6St25dv4readEP7uint8_t7uint8_t8uint16_tRNSt10error_codeE","espp::St25dv::read::data"],[66,4,1,"_CPPv4N4espp6St25dv4readEP7uint8_t7uint8_tRNSt10error_codeE","espp::St25dv::read::data"],[66,4,1,"_CPPv4N4espp6St25dv4readEP7uint8_t7uint8_t8uint16_tRNSt10error_codeE","espp::St25dv::read::ec"],[66,4,1,"_CPPv4N4espp6St25dv4readEP7uint8_t7uint8_tRNSt10error_codeE","espp::St25dv::read::ec"],[66,4,1,"_CPPv4N4espp6St25dv4readEP7uint8_t7uint8_t8uint16_tRNSt10error_codeE","espp::St25dv::read::length"],[66,4,1,"_CPPv4N4espp6St25dv4readEP7uint8_t7uint8_tRNSt10error_codeE","espp::St25dv::read::length"],[66,4,1,"_CPPv4N4espp6St25dv4readEP7uint8_t7uint8_t8uint16_tRNSt10error_codeE","espp::St25dv::read::offset"],[66,8,1,"_CPPv4N4espp6St25dv7read_fnE","espp::St25dv::read_fn"],[66,3,1,"_CPPv4N4espp6St25dv7receiveEP7uint8_t7uint8_tRNSt10error_codeE","espp::St25dv::receive"],[66,4,1,"_CPPv4N4espp6St25dv7receiveEP7uint8_t7uint8_tRNSt10error_codeE","espp::St25dv::receive::data"],[66,4,1,"_CPPv4N4espp6St25dv7receiveEP7uint8_t7uint8_tRNSt10error_codeE","espp::St25dv::receive::ec"],[66,4,1,"_CPPv4N4espp6St25dv7receiveEP7uint8_t7uint8_tRNSt10error_codeE","espp::St25dv::receive::length"],[66,3,1,"_CPPv4N4espp6St25dv10set_recordER4NdefRNSt10error_codeE","espp::St25dv::set_record"],[66,3,1,"_CPPv4N4espp6St25dv10set_recordERKNSt6vectorI7uint8_tEERNSt10error_codeE","espp::St25dv::set_record"],[66,4,1,"_CPPv4N4espp6St25dv10set_recordER4NdefRNSt10error_codeE","espp::St25dv::set_record::ec"],[66,4,1,"_CPPv4N4espp6St25dv10set_recordERKNSt6vectorI7uint8_tEERNSt10error_codeE","espp::St25dv::set_record::ec"],[66,4,1,"_CPPv4N4espp6St25dv10set_recordER4NdefRNSt10error_codeE","espp::St25dv::set_record::record"],[66,4,1,"_CPPv4N4espp6St25dv10set_recordERKNSt6vectorI7uint8_tEERNSt10error_codeE","espp::St25dv::set_record::record_data"],[66,3,1,"_CPPv4N4espp6St25dv11set_recordsERNSt6vectorI4NdefEERNSt10error_codeE","espp::St25dv::set_records"],[66,4,1,"_CPPv4N4espp6St25dv11set_recordsERNSt6vectorI4NdefEERNSt10error_codeE","espp::St25dv::set_records::ec"],[66,4,1,"_CPPv4N4espp6St25dv11set_recordsERNSt6vectorI4NdefEERNSt10error_codeE","espp::St25dv::set_records::records"],[66,3,1,"_CPPv4N4espp6St25dv24start_fast_transfer_modeERNSt10error_codeE","espp::St25dv::start_fast_transfer_mode"],[66,4,1,"_CPPv4N4espp6St25dv24start_fast_transfer_modeERNSt10error_codeE","espp::St25dv::start_fast_transfer_mode::ec"],[66,3,1,"_CPPv4N4espp6St25dv23stop_fast_transfer_modeERNSt10error_codeE","espp::St25dv::stop_fast_transfer_mode"],[66,4,1,"_CPPv4N4espp6St25dv23stop_fast_transfer_modeERNSt10error_codeE","espp::St25dv::stop_fast_transfer_mode::ec"],[66,3,1,"_CPPv4N4espp6St25dv8transferEP7uint8_t7uint8_tRNSt10error_codeE","espp::St25dv::transfer"],[66,4,1,"_CPPv4N4espp6St25dv8transferEP7uint8_t7uint8_tRNSt10error_codeE","espp::St25dv::transfer::data"],[66,4,1,"_CPPv4N4espp6St25dv8transferEP7uint8_t7uint8_tRNSt10error_codeE","espp::St25dv::transfer::ec"],[66,4,1,"_CPPv4N4espp6St25dv8transferEP7uint8_t7uint8_tRNSt10error_codeE","espp::St25dv::transfer::length"],[66,3,1,"_CPPv4N4espp6St25dv5writeENSt11string_viewERNSt10error_codeE","espp::St25dv::write"],[66,4,1,"_CPPv4N4espp6St25dv5writeENSt11string_viewERNSt10error_codeE","espp::St25dv::write::ec"],[66,4,1,"_CPPv4N4espp6St25dv5writeENSt11string_viewERNSt10error_codeE","espp::St25dv::write::payload"],[66,8,1,"_CPPv4N4espp6St25dv8write_fnE","espp::St25dv::write_fn"],[16,2,1,"_CPPv4N4espp6St7789E","espp::St7789"],[16,3,1,"_CPPv4N4espp6St77895clearE6size_t6size_t6size_t6size_t8uint16_t","espp::St7789::clear"],[16,4,1,"_CPPv4N4espp6St77895clearE6size_t6size_t6size_t6size_t8uint16_t","espp::St7789::clear::color"],[16,4,1,"_CPPv4N4espp6St77895clearE6size_t6size_t6size_t6size_t8uint16_t","espp::St7789::clear::height"],[16,4,1,"_CPPv4N4espp6St77895clearE6size_t6size_t6size_t6size_t8uint16_t","espp::St7789::clear::width"],[16,4,1,"_CPPv4N4espp6St77895clearE6size_t6size_t6size_t6size_t8uint16_t","espp::St7789::clear::x"],[16,4,1,"_CPPv4N4espp6St77895clearE6size_t6size_t6size_t6size_t8uint16_t","espp::St7789::clear::y"],[16,3,1,"_CPPv4N4espp6St77894fillEP13lv_disp_drv_tPK9lv_area_tP10lv_color_t8uint32_t","espp::St7789::fill"],[16,4,1,"_CPPv4N4espp6St77894fillEP13lv_disp_drv_tPK9lv_area_tP10lv_color_t8uint32_t","espp::St7789::fill::area"],[16,4,1,"_CPPv4N4espp6St77894fillEP13lv_disp_drv_tPK9lv_area_tP10lv_color_t8uint32_t","espp::St7789::fill::color_map"],[16,4,1,"_CPPv4N4espp6St77894fillEP13lv_disp_drv_tPK9lv_area_tP10lv_color_t8uint32_t","espp::St7789::fill::drv"],[16,4,1,"_CPPv4N4espp6St77894fillEP13lv_disp_drv_tPK9lv_area_tP10lv_color_t8uint32_t","espp::St7789::fill::flags"],[16,3,1,"_CPPv4N4espp6St77895flushEP13lv_disp_drv_tPK9lv_area_tP10lv_color_t","espp::St7789::flush"],[16,4,1,"_CPPv4N4espp6St77895flushEP13lv_disp_drv_tPK9lv_area_tP10lv_color_t","espp::St7789::flush::area"],[16,4,1,"_CPPv4N4espp6St77895flushEP13lv_disp_drv_tPK9lv_area_tP10lv_color_t","espp::St7789::flush::color_map"],[16,4,1,"_CPPv4N4espp6St77895flushEP13lv_disp_drv_tPK9lv_area_tP10lv_color_t","espp::St7789::flush::drv"],[16,3,1,"_CPPv4N4espp6St778910get_offsetERiRi","espp::St7789::get_offset"],[16,4,1,"_CPPv4N4espp6St778910get_offsetERiRi","espp::St7789::get_offset::x"],[16,4,1,"_CPPv4N4espp6St778910get_offsetERiRi","espp::St7789::get_offset::y"],[16,3,1,"_CPPv4N4espp6St778910initializeERKN15display_drivers6ConfigE","espp::St7789::initialize"],[16,4,1,"_CPPv4N4espp6St778910initializeERKN15display_drivers6ConfigE","espp::St7789::initialize::config"],[16,3,1,"_CPPv4N4espp6St778912send_commandE7uint8_t","espp::St7789::send_command"],[16,4,1,"_CPPv4N4espp6St778912send_commandE7uint8_t","espp::St7789::send_command::command"],[16,3,1,"_CPPv4N4espp6St77899send_dataEPK7uint8_t6size_t8uint32_t","espp::St7789::send_data"],[16,4,1,"_CPPv4N4espp6St77899send_dataEPK7uint8_t6size_t8uint32_t","espp::St7789::send_data::data"],[16,4,1,"_CPPv4N4espp6St77899send_dataEPK7uint8_t6size_t8uint32_t","espp::St7789::send_data::flags"],[16,4,1,"_CPPv4N4espp6St77899send_dataEPK7uint8_t6size_t8uint32_t","espp::St7789::send_data::length"],[16,3,1,"_CPPv4N4espp6St778916set_drawing_areaE6size_t6size_t6size_t6size_t","espp::St7789::set_drawing_area"],[16,3,1,"_CPPv4N4espp6St778916set_drawing_areaEPK9lv_area_t","espp::St7789::set_drawing_area"],[16,4,1,"_CPPv4N4espp6St778916set_drawing_areaEPK9lv_area_t","espp::St7789::set_drawing_area::area"],[16,4,1,"_CPPv4N4espp6St778916set_drawing_areaE6size_t6size_t6size_t6size_t","espp::St7789::set_drawing_area::xe"],[16,4,1,"_CPPv4N4espp6St778916set_drawing_areaE6size_t6size_t6size_t6size_t","espp::St7789::set_drawing_area::xs"],[16,4,1,"_CPPv4N4espp6St778916set_drawing_areaE6size_t6size_t6size_t6size_t","espp::St7789::set_drawing_area::ye"],[16,4,1,"_CPPv4N4espp6St778916set_drawing_areaE6size_t6size_t6size_t6size_t","espp::St7789::set_drawing_area::ys"],[16,3,1,"_CPPv4N4espp6St778910set_offsetEii","espp::St7789::set_offset"],[16,4,1,"_CPPv4N4espp6St778910set_offsetEii","espp::St7789::set_offset::x"],[16,4,1,"_CPPv4N4espp6St778910set_offsetEii","espp::St7789::set_offset::y"],[43,2,1,"_CPPv4N4espp9TKeyboardE","espp::TKeyboard"],[43,2,1,"_CPPv4N4espp9TKeyboard6ConfigE","espp::TKeyboard::Config"],[43,1,1,"_CPPv4N4espp9TKeyboard6Config7addressE","espp::TKeyboard::Config::address"],[43,1,1,"_CPPv4N4espp9TKeyboard6Config10auto_startE","espp::TKeyboard::Config::auto_start"],[43,1,1,"_CPPv4N4espp9TKeyboard6Config6key_cbE","espp::TKeyboard::Config::key_cb"],[43,1,1,"_CPPv4N4espp9TKeyboard6Config9log_levelE","espp::TKeyboard::Config::log_level"],[43,1,1,"_CPPv4N4espp9TKeyboard6Config16polling_intervalE","espp::TKeyboard::Config::polling_interval"],[43,1,1,"_CPPv4N4espp9TKeyboard6Config4readE","espp::TKeyboard::Config::read"],[43,1,1,"_CPPv4N4espp9TKeyboard6Config5writeE","espp::TKeyboard::Config::write"],[43,1,1,"_CPPv4N4espp9TKeyboard15DEFAULT_ADDRESSE","espp::TKeyboard::DEFAULT_ADDRESS"],[43,3,1,"_CPPv4N4espp9TKeyboard9TKeyboardERK6Config","espp::TKeyboard::TKeyboard"],[43,4,1,"_CPPv4N4espp9TKeyboard9TKeyboardERK6Config","espp::TKeyboard::TKeyboard::config"],[43,3,1,"_CPPv4N4espp9TKeyboard7get_keyEv","espp::TKeyboard::get_key"],[43,8,1,"_CPPv4N4espp9TKeyboard9key_cb_fnE","espp::TKeyboard::key_cb_fn"],[43,8,1,"_CPPv4N4espp9TKeyboard7read_fnE","espp::TKeyboard::read_fn"],[43,3,1,"_CPPv4N4espp9TKeyboard8read_keyERNSt10error_codeE","espp::TKeyboard::read_key"],[43,4,1,"_CPPv4N4espp9TKeyboard8read_keyERNSt10error_codeE","espp::TKeyboard::read_key::ec"],[43,3,1,"_CPPv4N4espp9TKeyboard5startEv","espp::TKeyboard::start"],[43,3,1,"_CPPv4N4espp9TKeyboard4stopEv","espp::TKeyboard::stop"],[43,8,1,"_CPPv4N4espp9TKeyboard8write_fnE","espp::TKeyboard::write_fn"],[76,2,1,"_CPPv4N4espp4TaskE","espp::Task"],[76,2,1,"_CPPv4N4espp4Task6ConfigE","espp::Task::Config"],[76,1,1,"_CPPv4N4espp4Task6Config8callbackE","espp::Task::Config::callback"],[76,1,1,"_CPPv4N4espp4Task6Config7core_idE","espp::Task::Config::core_id"],[76,1,1,"_CPPv4N4espp4Task6Config9log_levelE","espp::Task::Config::log_level"],[76,1,1,"_CPPv4N4espp4Task6Config4nameE","espp::Task::Config::name"],[76,1,1,"_CPPv4N4espp4Task6Config8priorityE","espp::Task::Config::priority"],[76,1,1,"_CPPv4N4espp4Task6Config16stack_size_bytesE","espp::Task::Config::stack_size_bytes"],[76,2,1,"_CPPv4N4espp4Task12SimpleConfigE","espp::Task::SimpleConfig"],[76,1,1,"_CPPv4N4espp4Task12SimpleConfig8callbackE","espp::Task::SimpleConfig::callback"],[76,1,1,"_CPPv4N4espp4Task12SimpleConfig7core_idE","espp::Task::SimpleConfig::core_id"],[76,1,1,"_CPPv4N4espp4Task12SimpleConfig9log_levelE","espp::Task::SimpleConfig::log_level"],[76,1,1,"_CPPv4N4espp4Task12SimpleConfig4nameE","espp::Task::SimpleConfig::name"],[76,1,1,"_CPPv4N4espp4Task12SimpleConfig8priorityE","espp::Task::SimpleConfig::priority"],[76,1,1,"_CPPv4N4espp4Task12SimpleConfig16stack_size_bytesE","espp::Task::SimpleConfig::stack_size_bytes"],[76,3,1,"_CPPv4N4espp4Task4TaskERK12SimpleConfig","espp::Task::Task"],[76,3,1,"_CPPv4N4espp4Task4TaskERK6Config","espp::Task::Task"],[76,4,1,"_CPPv4N4espp4Task4TaskERK12SimpleConfig","espp::Task::Task::config"],[76,4,1,"_CPPv4N4espp4Task4TaskERK6Config","espp::Task::Task::config"],[76,8,1,"_CPPv4N4espp4Task11callback_fnE","espp::Task::callback_fn"],[76,3,1,"_CPPv4N4espp4Task10is_runningEv","espp::Task::is_running"],[76,3,1,"_CPPv4N4espp4Task10is_startedEv","espp::Task::is_started"],[76,3,1,"_CPPv4N4espp4Task11make_uniqueERK12SimpleConfig","espp::Task::make_unique"],[76,3,1,"_CPPv4N4espp4Task11make_uniqueERK6Config","espp::Task::make_unique"],[76,4,1,"_CPPv4N4espp4Task11make_uniqueERK12SimpleConfig","espp::Task::make_unique::config"],[76,4,1,"_CPPv4N4espp4Task11make_uniqueERK6Config","espp::Task::make_unique::config"],[76,8,1,"_CPPv4N4espp4Task18simple_callback_fnE","espp::Task::simple_callback_fn"],[76,3,1,"_CPPv4N4espp4Task5startEv","espp::Task::start"],[76,3,1,"_CPPv4N4espp4Task4stopEv","espp::Task::stop"],[76,3,1,"_CPPv4N4espp4TaskD0Ev","espp::Task::~Task"],[59,2,1,"_CPPv4N4espp11TaskMonitorE","espp::TaskMonitor"],[59,2,1,"_CPPv4N4espp11TaskMonitor6ConfigE","espp::TaskMonitor::Config"],[59,1,1,"_CPPv4N4espp11TaskMonitor6Config6periodE","espp::TaskMonitor::Config::period"],[59,1,1,"_CPPv4N4espp11TaskMonitor6Config21task_stack_size_bytesE","espp::TaskMonitor::Config::task_stack_size_bytes"],[59,3,1,"_CPPv4N4espp11TaskMonitor15get_latest_infoEv","espp::TaskMonitor::get_latest_info"],[62,2,1,"_CPPv4N4espp9TcpSocketE","espp::TcpSocket"],[62,2,1,"_CPPv4N4espp9TcpSocket6ConfigE","espp::TcpSocket::Config"],[62,1,1,"_CPPv4N4espp9TcpSocket6Config9log_levelE","espp::TcpSocket::Config::log_level"],[62,2,1,"_CPPv4N4espp9TcpSocket13ConnectConfigE","espp::TcpSocket::ConnectConfig"],[62,1,1,"_CPPv4N4espp9TcpSocket13ConnectConfig10ip_addressE","espp::TcpSocket::ConnectConfig::ip_address"],[62,1,1,"_CPPv4N4espp9TcpSocket13ConnectConfig4portE","espp::TcpSocket::ConnectConfig::port"],[62,3,1,"_CPPv4N4espp9TcpSocket9TcpSocketERK6Config","espp::TcpSocket::TcpSocket"],[62,4,1,"_CPPv4N4espp9TcpSocket9TcpSocketERK6Config","espp::TcpSocket::TcpSocket::config"],[62,3,1,"_CPPv4N4espp9TcpSocket6acceptEv","espp::TcpSocket::accept"],[62,3,1,"_CPPv4N4espp9TcpSocket19add_multicast_groupERKNSt6stringE","espp::TcpSocket::add_multicast_group"],[62,4,1,"_CPPv4N4espp9TcpSocket19add_multicast_groupERKNSt6stringE","espp::TcpSocket::add_multicast_group::multicast_group"],[62,3,1,"_CPPv4N4espp9TcpSocket4bindEi","espp::TcpSocket::bind"],[62,4,1,"_CPPv4N4espp9TcpSocket4bindEi","espp::TcpSocket::bind::port"],[62,3,1,"_CPPv4N4espp9TcpSocket5closeEv","espp::TcpSocket::close"],[62,3,1,"_CPPv4N4espp9TcpSocket7connectERK13ConnectConfig","espp::TcpSocket::connect"],[62,4,1,"_CPPv4N4espp9TcpSocket7connectERK13ConnectConfig","espp::TcpSocket::connect::connect_config"],[62,3,1,"_CPPv4N4espp9TcpSocket12enable_reuseEv","espp::TcpSocket::enable_reuse"],[62,3,1,"_CPPv4N4espp9TcpSocket13get_ipv4_infoEv","espp::TcpSocket::get_ipv4_info"],[62,3,1,"_CPPv4NK4espp9TcpSocket15get_remote_infoEv","espp::TcpSocket::get_remote_info"],[62,3,1,"_CPPv4NK4espp9TcpSocket12is_connectedEv","espp::TcpSocket::is_connected"],[62,3,1,"_CPPv4N4espp9TcpSocket8is_validEi","espp::TcpSocket::is_valid"],[62,3,1,"_CPPv4NK4espp9TcpSocket8is_validEv","espp::TcpSocket::is_valid"],[62,4,1,"_CPPv4N4espp9TcpSocket8is_validEi","espp::TcpSocket::is_valid::socket_fd"],[62,3,1,"_CPPv4N4espp9TcpSocket6listenEi","espp::TcpSocket::listen"],[62,4,1,"_CPPv4N4espp9TcpSocket6listenEi","espp::TcpSocket::listen::max_pending_connections"],[62,3,1,"_CPPv4N4espp9TcpSocket14make_multicastE7uint8_t7uint8_t","espp::TcpSocket::make_multicast"],[62,4,1,"_CPPv4N4espp9TcpSocket14make_multicastE7uint8_t7uint8_t","espp::TcpSocket::make_multicast::loopback_enabled"],[62,4,1,"_CPPv4N4espp9TcpSocket14make_multicastE7uint8_t7uint8_t","espp::TcpSocket::make_multicast::time_to_live"],[62,3,1,"_CPPv4N4espp9TcpSocket7receiveEP7uint8_t6size_t","espp::TcpSocket::receive"],[62,3,1,"_CPPv4N4espp9TcpSocket7receiveERNSt6vectorI7uint8_tEE6size_t","espp::TcpSocket::receive"],[62,4,1,"_CPPv4N4espp9TcpSocket7receiveEP7uint8_t6size_t","espp::TcpSocket::receive::data"],[62,4,1,"_CPPv4N4espp9TcpSocket7receiveERNSt6vectorI7uint8_tEE6size_t","espp::TcpSocket::receive::data"],[62,4,1,"_CPPv4N4espp9TcpSocket7receiveEP7uint8_t6size_t","espp::TcpSocket::receive::max_num_bytes"],[62,4,1,"_CPPv4N4espp9TcpSocket7receiveERNSt6vectorI7uint8_tEE6size_t","espp::TcpSocket::receive::max_num_bytes"],[62,8,1,"_CPPv4N4espp9TcpSocket19receive_callback_fnE","espp::TcpSocket::receive_callback_fn"],[62,3,1,"_CPPv4N4espp9TcpSocket6reinitEv","espp::TcpSocket::reinit"],[62,8,1,"_CPPv4N4espp9TcpSocket20response_callback_fnE","espp::TcpSocket::response_callback_fn"],[62,3,1,"_CPPv4N4espp9TcpSocket19set_receive_timeoutERKNSt6chrono8durationIfEE","espp::TcpSocket::set_receive_timeout"],[62,4,1,"_CPPv4N4espp9TcpSocket19set_receive_timeoutERKNSt6chrono8durationIfEE","espp::TcpSocket::set_receive_timeout::timeout"],[62,3,1,"_CPPv4N4espp9TcpSocket8transmitENSt11string_viewERKN6detail17TcpTransmitConfigE","espp::TcpSocket::transmit"],[62,3,1,"_CPPv4N4espp9TcpSocket8transmitERKNSt6vectorI7uint8_tEERKN6detail17TcpTransmitConfigE","espp::TcpSocket::transmit"],[62,3,1,"_CPPv4N4espp9TcpSocket8transmitERKNSt6vectorIcEERKN6detail17TcpTransmitConfigE","espp::TcpSocket::transmit"],[62,4,1,"_CPPv4N4espp9TcpSocket8transmitENSt11string_viewERKN6detail17TcpTransmitConfigE","espp::TcpSocket::transmit::data"],[62,4,1,"_CPPv4N4espp9TcpSocket8transmitERKNSt6vectorI7uint8_tEERKN6detail17TcpTransmitConfigE","espp::TcpSocket::transmit::data"],[62,4,1,"_CPPv4N4espp9TcpSocket8transmitERKNSt6vectorIcEERKN6detail17TcpTransmitConfigE","espp::TcpSocket::transmit::data"],[62,4,1,"_CPPv4N4espp9TcpSocket8transmitENSt11string_viewERKN6detail17TcpTransmitConfigE","espp::TcpSocket::transmit::transmit_config"],[62,4,1,"_CPPv4N4espp9TcpSocket8transmitERKNSt6vectorI7uint8_tEERKN6detail17TcpTransmitConfigE","espp::TcpSocket::transmit::transmit_config"],[62,4,1,"_CPPv4N4espp9TcpSocket8transmitERKNSt6vectorIcEERKN6detail17TcpTransmitConfigE","espp::TcpSocket::transmit::transmit_config"],[62,3,1,"_CPPv4N4espp9TcpSocketD0Ev","espp::TcpSocket::~TcpSocket"],[77,2,1,"_CPPv4N4espp10ThermistorE","espp::Thermistor"],[77,2,1,"_CPPv4N4espp10Thermistor6ConfigE","espp::Thermistor::Config"],[77,1,1,"_CPPv4N4espp10Thermistor6Config4betaE","espp::Thermistor::Config::beta"],[77,1,1,"_CPPv4N4espp10Thermistor6Config14divider_configE","espp::Thermistor::Config::divider_config"],[77,1,1,"_CPPv4N4espp10Thermistor6Config21fixed_resistance_ohmsE","espp::Thermistor::Config::fixed_resistance_ohms"],[77,1,1,"_CPPv4N4espp10Thermistor6Config9log_levelE","espp::Thermistor::Config::log_level"],[77,1,1,"_CPPv4N4espp10Thermistor6Config23nominal_resistance_ohmsE","espp::Thermistor::Config::nominal_resistance_ohms"],[77,1,1,"_CPPv4N4espp10Thermistor6Config7read_mvE","espp::Thermistor::Config::read_mv"],[77,1,1,"_CPPv4N4espp10Thermistor6Config9supply_mvE","espp::Thermistor::Config::supply_mv"],[77,6,1,"_CPPv4N4espp10Thermistor21ResistorDividerConfigE","espp::Thermistor::ResistorDividerConfig"],[77,7,1,"_CPPv4N4espp10Thermistor21ResistorDividerConfig5LOWERE","espp::Thermistor::ResistorDividerConfig::LOWER"],[77,7,1,"_CPPv4N4espp10Thermistor21ResistorDividerConfig5UPPERE","espp::Thermistor::ResistorDividerConfig::UPPER"],[77,3,1,"_CPPv4N4espp10Thermistor10ThermistorERK6Config","espp::Thermistor::Thermistor"],[77,4,1,"_CPPv4N4espp10Thermistor10ThermistorERK6Config","espp::Thermistor::Thermistor::config"],[77,3,1,"_CPPv4N4espp10Thermistor11get_celsiusEv","espp::Thermistor::get_celsius"],[77,3,1,"_CPPv4N4espp10Thermistor14get_fahrenheitEv","espp::Thermistor::get_fahrenheit"],[77,3,1,"_CPPv4N4espp10Thermistor10get_kelvinEv","espp::Thermistor::get_kelvin"],[77,3,1,"_CPPv4N4espp10Thermistor14get_resistanceEv","espp::Thermistor::get_resistance"],[77,8,1,"_CPPv4N4espp10Thermistor10read_mv_fnE","espp::Thermistor::read_mv_fn"],[78,2,1,"_CPPv4N4espp5TimerE","espp::Timer"],[78,2,1,"_CPPv4N4espp5Timer6ConfigE","espp::Timer::Config"],[78,1,1,"_CPPv4N4espp5Timer6Config10auto_startE","espp::Timer::Config::auto_start"],[78,1,1,"_CPPv4N4espp5Timer6Config8callbackE","espp::Timer::Config::callback"],[78,1,1,"_CPPv4N4espp5Timer6Config7core_idE","espp::Timer::Config::core_id"],[78,1,1,"_CPPv4N4espp5Timer6Config5delayE","espp::Timer::Config::delay"],[78,1,1,"_CPPv4N4espp5Timer6Config9log_levelE","espp::Timer::Config::log_level"],[78,1,1,"_CPPv4N4espp5Timer6Config4nameE","espp::Timer::Config::name"],[78,1,1,"_CPPv4N4espp5Timer6Config6periodE","espp::Timer::Config::period"],[78,1,1,"_CPPv4N4espp5Timer6Config8priorityE","espp::Timer::Config::priority"],[78,1,1,"_CPPv4N4espp5Timer6Config16stack_size_bytesE","espp::Timer::Config::stack_size_bytes"],[78,3,1,"_CPPv4N4espp5Timer5TimerERK6Config","espp::Timer::Timer"],[78,4,1,"_CPPv4N4espp5Timer5TimerERK6Config","espp::Timer::Timer::config"],[78,8,1,"_CPPv4N4espp5Timer11callback_fnE","espp::Timer::callback_fn"],[78,3,1,"_CPPv4N4espp5Timer6cancelEv","espp::Timer::cancel"],[78,3,1,"_CPPv4NK4espp5Timer10is_runningEv","espp::Timer::is_running"],[78,3,1,"_CPPv4N4espp5Timer5startENSt6chrono8durationIfEE","espp::Timer::start"],[78,3,1,"_CPPv4N4espp5Timer5startEv","espp::Timer::start"],[78,4,1,"_CPPv4N4espp5Timer5startENSt6chrono8durationIfEE","espp::Timer::start::delay"],[78,3,1,"_CPPv4N4espp5Timer4stopEv","espp::Timer::stop"],[78,3,1,"_CPPv4N4espp5TimerD0Ev","espp::Timer::~Timer"],[6,2,1,"_CPPv4N4espp7Tla2528E","espp::Tla2528"],[6,6,1,"_CPPv4N4espp7Tla252810AlertLogicE","espp::Tla2528::AlertLogic"],[6,7,1,"_CPPv4N4espp7Tla252810AlertLogic11ACTIVE_HIGHE","espp::Tla2528::AlertLogic::ACTIVE_HIGH"],[6,7,1,"_CPPv4N4espp7Tla252810AlertLogic10ACTIVE_LOWE","espp::Tla2528::AlertLogic::ACTIVE_LOW"],[6,7,1,"_CPPv4N4espp7Tla252810AlertLogic11PULSED_HIGHE","espp::Tla2528::AlertLogic::PULSED_HIGH"],[6,7,1,"_CPPv4N4espp7Tla252810AlertLogic10PULSED_LOWE","espp::Tla2528::AlertLogic::PULSED_LOW"],[6,6,1,"_CPPv4N4espp7Tla25286AppendE","espp::Tla2528::Append"],[6,7,1,"_CPPv4N4espp7Tla25286Append10CHANNEL_IDE","espp::Tla2528::Append::CHANNEL_ID"],[6,7,1,"_CPPv4N4espp7Tla25286Append4NONEE","espp::Tla2528::Append::NONE"],[6,6,1,"_CPPv4N4espp7Tla25287ChannelE","espp::Tla2528::Channel"],[6,7,1,"_CPPv4N4espp7Tla25287Channel3CH0E","espp::Tla2528::Channel::CH0"],[6,7,1,"_CPPv4N4espp7Tla25287Channel3CH1E","espp::Tla2528::Channel::CH1"],[6,7,1,"_CPPv4N4espp7Tla25287Channel3CH2E","espp::Tla2528::Channel::CH2"],[6,7,1,"_CPPv4N4espp7Tla25287Channel3CH3E","espp::Tla2528::Channel::CH3"],[6,7,1,"_CPPv4N4espp7Tla25287Channel3CH4E","espp::Tla2528::Channel::CH4"],[6,7,1,"_CPPv4N4espp7Tla25287Channel3CH5E","espp::Tla2528::Channel::CH5"],[6,7,1,"_CPPv4N4espp7Tla25287Channel3CH6E","espp::Tla2528::Channel::CH6"],[6,7,1,"_CPPv4N4espp7Tla25287Channel3CH7E","espp::Tla2528::Channel::CH7"],[6,2,1,"_CPPv4N4espp7Tla25286ConfigE","espp::Tla2528::Config"],[6,1,1,"_CPPv4N4espp7Tla25286Config13analog_inputsE","espp::Tla2528::Config::analog_inputs"],[6,1,1,"_CPPv4N4espp7Tla25286Config6appendE","espp::Tla2528::Config::append"],[6,1,1,"_CPPv4N4espp7Tla25286Config9auto_initE","espp::Tla2528::Config::auto_init"],[6,1,1,"_CPPv4N4espp7Tla25286Config10avdd_voltsE","espp::Tla2528::Config::avdd_volts"],[6,1,1,"_CPPv4N4espp7Tla25286Config14device_addressE","espp::Tla2528::Config::device_address"],[6,1,1,"_CPPv4N4espp7Tla25286Config14digital_inputsE","espp::Tla2528::Config::digital_inputs"],[6,1,1,"_CPPv4N4espp7Tla25286Config20digital_output_modesE","espp::Tla2528::Config::digital_output_modes"],[6,1,1,"_CPPv4N4espp7Tla25286Config21digital_output_valuesE","espp::Tla2528::Config::digital_output_values"],[6,1,1,"_CPPv4N4espp7Tla25286Config15digital_outputsE","espp::Tla2528::Config::digital_outputs"],[6,1,1,"_CPPv4N4espp7Tla25286Config9log_levelE","espp::Tla2528::Config::log_level"],[6,1,1,"_CPPv4N4espp7Tla25286Config4modeE","espp::Tla2528::Config::mode"],[6,1,1,"_CPPv4N4espp7Tla25286Config18oversampling_ratioE","espp::Tla2528::Config::oversampling_ratio"],[6,1,1,"_CPPv4N4espp7Tla25286Config4readE","espp::Tla2528::Config::read"],[6,1,1,"_CPPv4N4espp7Tla25286Config5writeE","espp::Tla2528::Config::write"],[6,1,1,"_CPPv4N4espp7Tla252815DEFAULT_ADDRESSE","espp::Tla2528::DEFAULT_ADDRESS"],[6,6,1,"_CPPv4N4espp7Tla252810DataFormatE","espp::Tla2528::DataFormat"],[6,7,1,"_CPPv4N4espp7Tla252810DataFormat8AVERAGEDE","espp::Tla2528::DataFormat::AVERAGED"],[6,7,1,"_CPPv4N4espp7Tla252810DataFormat3RAWE","espp::Tla2528::DataFormat::RAW"],[6,6,1,"_CPPv4N4espp7Tla25284ModeE","espp::Tla2528::Mode"],[6,7,1,"_CPPv4N4espp7Tla25284Mode8AUTO_SEQE","espp::Tla2528::Mode::AUTO_SEQ"],[6,7,1,"_CPPv4N4espp7Tla25284Mode6MANUALE","espp::Tla2528::Mode::MANUAL"],[6,6,1,"_CPPv4N4espp7Tla252810OutputModeE","espp::Tla2528::OutputMode"],[6,7,1,"_CPPv4N4espp7Tla252810OutputMode10OPEN_DRAINE","espp::Tla2528::OutputMode::OPEN_DRAIN"],[6,7,1,"_CPPv4N4espp7Tla252810OutputMode9PUSH_PULLE","espp::Tla2528::OutputMode::PUSH_PULL"],[6,6,1,"_CPPv4N4espp7Tla252817OversamplingRatioE","espp::Tla2528::OversamplingRatio"],[6,7,1,"_CPPv4N4espp7Tla252817OversamplingRatio4NONEE","espp::Tla2528::OversamplingRatio::NONE"],[6,7,1,"_CPPv4N4espp7Tla252817OversamplingRatio7OSR_128E","espp::Tla2528::OversamplingRatio::OSR_128"],[6,7,1,"_CPPv4N4espp7Tla252817OversamplingRatio6OSR_16E","espp::Tla2528::OversamplingRatio::OSR_16"],[6,7,1,"_CPPv4N4espp7Tla252817OversamplingRatio5OSR_2E","espp::Tla2528::OversamplingRatio::OSR_2"],[6,7,1,"_CPPv4N4espp7Tla252817OversamplingRatio6OSR_32E","espp::Tla2528::OversamplingRatio::OSR_32"],[6,7,1,"_CPPv4N4espp7Tla252817OversamplingRatio5OSR_4E","espp::Tla2528::OversamplingRatio::OSR_4"],[6,7,1,"_CPPv4N4espp7Tla252817OversamplingRatio6OSR_64E","espp::Tla2528::OversamplingRatio::OSR_64"],[6,7,1,"_CPPv4N4espp7Tla252817OversamplingRatio5OSR_8E","espp::Tla2528::OversamplingRatio::OSR_8"],[6,3,1,"_CPPv4N4espp7Tla25287Tla2528ERK6Config","espp::Tla2528::Tla2528"],[6,4,1,"_CPPv4N4espp7Tla25287Tla2528ERK6Config","espp::Tla2528::Tla2528::config"],[6,3,1,"_CPPv4N4espp7Tla252810get_all_mvERNSt10error_codeE","espp::Tla2528::get_all_mv"],[6,4,1,"_CPPv4N4espp7Tla252810get_all_mvERNSt10error_codeE","espp::Tla2528::get_all_mv::ec"],[6,3,1,"_CPPv4N4espp7Tla252814get_all_mv_mapERNSt10error_codeE","espp::Tla2528::get_all_mv_map"],[6,4,1,"_CPPv4N4espp7Tla252814get_all_mv_mapERNSt10error_codeE","espp::Tla2528::get_all_mv_map::ec"],[6,3,1,"_CPPv4N4espp7Tla252823get_digital_input_valueE7ChannelRNSt10error_codeE","espp::Tla2528::get_digital_input_value"],[6,4,1,"_CPPv4N4espp7Tla252823get_digital_input_valueE7ChannelRNSt10error_codeE","espp::Tla2528::get_digital_input_value::channel"],[6,4,1,"_CPPv4N4espp7Tla252823get_digital_input_valueE7ChannelRNSt10error_codeE","espp::Tla2528::get_digital_input_value::ec"],[6,3,1,"_CPPv4N4espp7Tla252824get_digital_input_valuesERNSt10error_codeE","espp::Tla2528::get_digital_input_values"],[6,4,1,"_CPPv4N4espp7Tla252824get_digital_input_valuesERNSt10error_codeE","espp::Tla2528::get_digital_input_values::ec"],[6,3,1,"_CPPv4N4espp7Tla25286get_mvE7ChannelRNSt10error_codeE","espp::Tla2528::get_mv"],[6,4,1,"_CPPv4N4espp7Tla25286get_mvE7ChannelRNSt10error_codeE","espp::Tla2528::get_mv::channel"],[6,4,1,"_CPPv4N4espp7Tla25286get_mvE7ChannelRNSt10error_codeE","espp::Tla2528::get_mv::ec"],[6,3,1,"_CPPv4N4espp7Tla252810initializeERNSt10error_codeE","espp::Tla2528::initialize"],[6,4,1,"_CPPv4N4espp7Tla252810initializeERNSt10error_codeE","espp::Tla2528::initialize::ec"],[6,8,1,"_CPPv4N4espp7Tla25287read_fnE","espp::Tla2528::read_fn"],[6,3,1,"_CPPv4N4espp7Tla25285resetERNSt10error_codeE","espp::Tla2528::reset"],[6,4,1,"_CPPv4N4espp7Tla25285resetERNSt10error_codeE","espp::Tla2528::reset::ec"],[6,3,1,"_CPPv4N4espp7Tla252823set_digital_output_modeE7Channel10OutputModeRNSt10error_codeE","espp::Tla2528::set_digital_output_mode"],[6,4,1,"_CPPv4N4espp7Tla252823set_digital_output_modeE7Channel10OutputModeRNSt10error_codeE","espp::Tla2528::set_digital_output_mode::channel"],[6,4,1,"_CPPv4N4espp7Tla252823set_digital_output_modeE7Channel10OutputModeRNSt10error_codeE","espp::Tla2528::set_digital_output_mode::ec"],[6,4,1,"_CPPv4N4espp7Tla252823set_digital_output_modeE7Channel10OutputModeRNSt10error_codeE","espp::Tla2528::set_digital_output_mode::output_mode"],[6,3,1,"_CPPv4N4espp7Tla252824set_digital_output_valueE7ChannelbRNSt10error_codeE","espp::Tla2528::set_digital_output_value"],[6,4,1,"_CPPv4N4espp7Tla252824set_digital_output_valueE7ChannelbRNSt10error_codeE","espp::Tla2528::set_digital_output_value::channel"],[6,4,1,"_CPPv4N4espp7Tla252824set_digital_output_valueE7ChannelbRNSt10error_codeE","espp::Tla2528::set_digital_output_value::ec"],[6,4,1,"_CPPv4N4espp7Tla252824set_digital_output_valueE7ChannelbRNSt10error_codeE","espp::Tla2528::set_digital_output_value::value"],[6,8,1,"_CPPv4N4espp7Tla25288write_fnE","espp::Tla2528::write_fn"],[44,2,1,"_CPPv4N4espp13TouchpadInputE","espp::TouchpadInput"],[44,2,1,"_CPPv4N4espp13TouchpadInput6ConfigE","espp::TouchpadInput::Config"],[44,1,1,"_CPPv4N4espp13TouchpadInput6Config8invert_xE","espp::TouchpadInput::Config::invert_x"],[44,1,1,"_CPPv4N4espp13TouchpadInput6Config8invert_yE","espp::TouchpadInput::Config::invert_y"],[44,1,1,"_CPPv4N4espp13TouchpadInput6Config9log_levelE","espp::TouchpadInput::Config::log_level"],[44,1,1,"_CPPv4N4espp13TouchpadInput6Config7swap_xyE","espp::TouchpadInput::Config::swap_xy"],[44,1,1,"_CPPv4N4espp13TouchpadInput6Config13touchpad_readE","espp::TouchpadInput::Config::touchpad_read"],[44,3,1,"_CPPv4N4espp13TouchpadInput13TouchpadInputERK6Config","espp::TouchpadInput::TouchpadInput"],[44,4,1,"_CPPv4N4espp13TouchpadInput13TouchpadInputERK6Config","espp::TouchpadInput::TouchpadInput::config"],[44,3,1,"_CPPv4N4espp13TouchpadInput28get_home_button_input_deviceEv","espp::TouchpadInput::get_home_button_input_device"],[44,3,1,"_CPPv4N4espp13TouchpadInput25get_touchpad_input_deviceEv","espp::TouchpadInput::get_touchpad_input_device"],[44,8,1,"_CPPv4N4espp13TouchpadInput16touchpad_read_fnE","espp::TouchpadInput::touchpad_read_fn"],[44,3,1,"_CPPv4N4espp13TouchpadInputD0Ev","espp::TouchpadInput::~TouchpadInput"],[45,2,1,"_CPPv4N4espp7Tt21100E","espp::Tt21100"],[45,2,1,"_CPPv4N4espp7Tt211006ConfigE","espp::Tt21100::Config"],[45,1,1,"_CPPv4N4espp7Tt211006Config9log_levelE","espp::Tt21100::Config::log_level"],[45,1,1,"_CPPv4N4espp7Tt211006Config4readE","espp::Tt21100::Config::read"],[45,1,1,"_CPPv4N4espp7Tt2110015DEFAULT_ADDRESSE","espp::Tt21100::DEFAULT_ADDRESS"],[45,3,1,"_CPPv4N4espp7Tt211007Tt21100ERK6Config","espp::Tt21100::Tt21100"],[45,4,1,"_CPPv4N4espp7Tt211007Tt21100ERK6Config","espp::Tt21100::Tt21100::config"],[45,3,1,"_CPPv4NK4espp7Tt2110021get_home_button_stateEv","espp::Tt21100::get_home_button_state"],[45,3,1,"_CPPv4NK4espp7Tt2110020get_num_touch_pointsEv","espp::Tt21100::get_num_touch_points"],[45,3,1,"_CPPv4NK4espp7Tt2110015get_touch_pointEP7uint8_tP8uint16_tP8uint16_t","espp::Tt21100::get_touch_point"],[45,4,1,"_CPPv4NK4espp7Tt2110015get_touch_pointEP7uint8_tP8uint16_tP8uint16_t","espp::Tt21100::get_touch_point::num_touch_points"],[45,4,1,"_CPPv4NK4espp7Tt2110015get_touch_pointEP7uint8_tP8uint16_tP8uint16_t","espp::Tt21100::get_touch_point::x"],[45,4,1,"_CPPv4NK4espp7Tt2110015get_touch_pointEP7uint8_tP8uint16_tP8uint16_t","espp::Tt21100::get_touch_point::y"],[45,8,1,"_CPPv4N4espp7Tt211007read_fnE","espp::Tt21100::read_fn"],[45,3,1,"_CPPv4N4espp7Tt211006updateERNSt10error_codeE","espp::Tt21100::update"],[45,4,1,"_CPPv4N4espp7Tt211006updateERNSt10error_codeE","espp::Tt21100::update::ec"],[63,2,1,"_CPPv4N4espp9UdpSocketE","espp::UdpSocket"],[63,2,1,"_CPPv4N4espp9UdpSocket6ConfigE","espp::UdpSocket::Config"],[63,1,1,"_CPPv4N4espp9UdpSocket6Config9log_levelE","espp::UdpSocket::Config::log_level"],[63,2,1,"_CPPv4N4espp9UdpSocket13ReceiveConfigE","espp::UdpSocket::ReceiveConfig"],[63,1,1,"_CPPv4N4espp9UdpSocket13ReceiveConfig11buffer_sizeE","espp::UdpSocket::ReceiveConfig::buffer_size"],[63,1,1,"_CPPv4N4espp9UdpSocket13ReceiveConfig21is_multicast_endpointE","espp::UdpSocket::ReceiveConfig::is_multicast_endpoint"],[63,1,1,"_CPPv4N4espp9UdpSocket13ReceiveConfig15multicast_groupE","espp::UdpSocket::ReceiveConfig::multicast_group"],[63,1,1,"_CPPv4N4espp9UdpSocket13ReceiveConfig19on_receive_callbackE","espp::UdpSocket::ReceiveConfig::on_receive_callback"],[63,1,1,"_CPPv4N4espp9UdpSocket13ReceiveConfig4portE","espp::UdpSocket::ReceiveConfig::port"],[63,2,1,"_CPPv4N4espp9UdpSocket10SendConfigE","espp::UdpSocket::SendConfig"],[63,1,1,"_CPPv4N4espp9UdpSocket10SendConfig10ip_addressE","espp::UdpSocket::SendConfig::ip_address"],[63,1,1,"_CPPv4N4espp9UdpSocket10SendConfig21is_multicast_endpointE","espp::UdpSocket::SendConfig::is_multicast_endpoint"],[63,1,1,"_CPPv4N4espp9UdpSocket10SendConfig20on_response_callbackE","espp::UdpSocket::SendConfig::on_response_callback"],[63,1,1,"_CPPv4N4espp9UdpSocket10SendConfig4portE","espp::UdpSocket::SendConfig::port"],[63,1,1,"_CPPv4N4espp9UdpSocket10SendConfig13response_sizeE","espp::UdpSocket::SendConfig::response_size"],[63,1,1,"_CPPv4N4espp9UdpSocket10SendConfig16response_timeoutE","espp::UdpSocket::SendConfig::response_timeout"],[63,1,1,"_CPPv4N4espp9UdpSocket10SendConfig17wait_for_responseE","espp::UdpSocket::SendConfig::wait_for_response"],[63,3,1,"_CPPv4N4espp9UdpSocket9UdpSocketERK6Config","espp::UdpSocket::UdpSocket"],[63,4,1,"_CPPv4N4espp9UdpSocket9UdpSocketERK6Config","espp::UdpSocket::UdpSocket::config"],[63,3,1,"_CPPv4N4espp9UdpSocket19add_multicast_groupERKNSt6stringE","espp::UdpSocket::add_multicast_group"],[63,4,1,"_CPPv4N4espp9UdpSocket19add_multicast_groupERKNSt6stringE","espp::UdpSocket::add_multicast_group::multicast_group"],[63,3,1,"_CPPv4N4espp9UdpSocket12enable_reuseEv","espp::UdpSocket::enable_reuse"],[63,3,1,"_CPPv4N4espp9UdpSocket13get_ipv4_infoEv","espp::UdpSocket::get_ipv4_info"],[63,3,1,"_CPPv4N4espp9UdpSocket8is_validEi","espp::UdpSocket::is_valid"],[63,3,1,"_CPPv4NK4espp9UdpSocket8is_validEv","espp::UdpSocket::is_valid"],[63,4,1,"_CPPv4N4espp9UdpSocket8is_validEi","espp::UdpSocket::is_valid::socket_fd"],[63,3,1,"_CPPv4N4espp9UdpSocket14make_multicastE7uint8_t7uint8_t","espp::UdpSocket::make_multicast"],[63,4,1,"_CPPv4N4espp9UdpSocket14make_multicastE7uint8_t7uint8_t","espp::UdpSocket::make_multicast::loopback_enabled"],[63,4,1,"_CPPv4N4espp9UdpSocket14make_multicastE7uint8_t7uint8_t","espp::UdpSocket::make_multicast::time_to_live"],[63,3,1,"_CPPv4N4espp9UdpSocket7receiveE6size_tRNSt6vectorI7uint8_tEERN6Socket4InfoE","espp::UdpSocket::receive"],[63,4,1,"_CPPv4N4espp9UdpSocket7receiveE6size_tRNSt6vectorI7uint8_tEERN6Socket4InfoE","espp::UdpSocket::receive::data"],[63,4,1,"_CPPv4N4espp9UdpSocket7receiveE6size_tRNSt6vectorI7uint8_tEERN6Socket4InfoE","espp::UdpSocket::receive::max_num_bytes"],[63,4,1,"_CPPv4N4espp9UdpSocket7receiveE6size_tRNSt6vectorI7uint8_tEERN6Socket4InfoE","espp::UdpSocket::receive::remote_info"],[63,8,1,"_CPPv4N4espp9UdpSocket19receive_callback_fnE","espp::UdpSocket::receive_callback_fn"],[63,8,1,"_CPPv4N4espp9UdpSocket20response_callback_fnE","espp::UdpSocket::response_callback_fn"],[63,3,1,"_CPPv4N4espp9UdpSocket4sendENSt11string_viewERK10SendConfig","espp::UdpSocket::send"],[63,3,1,"_CPPv4N4espp9UdpSocket4sendERKNSt6vectorI7uint8_tEERK10SendConfig","espp::UdpSocket::send"],[63,4,1,"_CPPv4N4espp9UdpSocket4sendENSt11string_viewERK10SendConfig","espp::UdpSocket::send::data"],[63,4,1,"_CPPv4N4espp9UdpSocket4sendERKNSt6vectorI7uint8_tEERK10SendConfig","espp::UdpSocket::send::data"],[63,4,1,"_CPPv4N4espp9UdpSocket4sendENSt11string_viewERK10SendConfig","espp::UdpSocket::send::send_config"],[63,4,1,"_CPPv4N4espp9UdpSocket4sendERKNSt6vectorI7uint8_tEERK10SendConfig","espp::UdpSocket::send::send_config"],[63,3,1,"_CPPv4N4espp9UdpSocket19set_receive_timeoutERKNSt6chrono8durationIfEE","espp::UdpSocket::set_receive_timeout"],[63,4,1,"_CPPv4N4espp9UdpSocket19set_receive_timeoutERKNSt6chrono8durationIfEE","espp::UdpSocket::set_receive_timeout::timeout"],[63,3,1,"_CPPv4N4espp9UdpSocket15start_receivingERN4Task6ConfigERK13ReceiveConfig","espp::UdpSocket::start_receiving"],[63,4,1,"_CPPv4N4espp9UdpSocket15start_receivingERN4Task6ConfigERK13ReceiveConfig","espp::UdpSocket::start_receiving::receive_config"],[63,4,1,"_CPPv4N4espp9UdpSocket15start_receivingERN4Task6ConfigERK13ReceiveConfig","espp::UdpSocket::start_receiving::task_config"],[63,3,1,"_CPPv4N4espp9UdpSocketD0Ev","espp::UdpSocket::~UdpSocket"],[58,2,1,"_CPPv4I0EN4espp8Vector2dE","espp::Vector2d"],[58,5,1,"_CPPv4I0EN4espp8Vector2dE","espp::Vector2d::T"],[58,3,1,"_CPPv4N4espp8Vector2d8Vector2dE1T1T","espp::Vector2d::Vector2d"],[58,3,1,"_CPPv4N4espp8Vector2d8Vector2dERK8Vector2d","espp::Vector2d::Vector2d"],[58,4,1,"_CPPv4N4espp8Vector2d8Vector2dERK8Vector2d","espp::Vector2d::Vector2d::other"],[58,4,1,"_CPPv4N4espp8Vector2d8Vector2dE1T1T","espp::Vector2d::Vector2d::x"],[58,4,1,"_CPPv4N4espp8Vector2d8Vector2dE1T1T","espp::Vector2d::Vector2d::y"],[58,3,1,"_CPPv4NK4espp8Vector2d3dotERK8Vector2d","espp::Vector2d::dot"],[58,4,1,"_CPPv4NK4espp8Vector2d3dotERK8Vector2d","espp::Vector2d::dot::other"],[58,3,1,"_CPPv4NK4espp8Vector2d9magnitudeEv","espp::Vector2d::magnitude"],[58,3,1,"_CPPv4NK4espp8Vector2d17magnitude_squaredEv","espp::Vector2d::magnitude_squared"],[58,3,1,"_CPPv4NK4espp8Vector2d10normalizedEv","espp::Vector2d::normalized"],[58,3,1,"_CPPv4NK4espp8Vector2dmlERK1T","espp::Vector2d::operator*"],[58,4,1,"_CPPv4NK4espp8Vector2dmlERK1T","espp::Vector2d::operator*::v"],[58,3,1,"_CPPv4N4espp8Vector2dmLERK1T","espp::Vector2d::operator*="],[58,4,1,"_CPPv4N4espp8Vector2dmLERK1T","espp::Vector2d::operator*=::v"],[58,3,1,"_CPPv4NK4espp8Vector2dplERK8Vector2d","espp::Vector2d::operator+"],[58,4,1,"_CPPv4NK4espp8Vector2dplERK8Vector2d","espp::Vector2d::operator+::rhs"],[58,3,1,"_CPPv4N4espp8Vector2dpLERK8Vector2d","espp::Vector2d::operator+="],[58,4,1,"_CPPv4N4espp8Vector2dpLERK8Vector2d","espp::Vector2d::operator+=::rhs"],[58,3,1,"_CPPv4NK4espp8Vector2dmiERK8Vector2d","espp::Vector2d::operator-"],[58,3,1,"_CPPv4NK4espp8Vector2dmiEv","espp::Vector2d::operator-"],[58,4,1,"_CPPv4NK4espp8Vector2dmiERK8Vector2d","espp::Vector2d::operator-::rhs"],[58,3,1,"_CPPv4N4espp8Vector2dmIERK8Vector2d","espp::Vector2d::operator-="],[58,4,1,"_CPPv4N4espp8Vector2dmIERK8Vector2d","espp::Vector2d::operator-=::rhs"],[58,3,1,"_CPPv4NK4espp8Vector2ddvERK1T","espp::Vector2d::operator/"],[58,3,1,"_CPPv4NK4espp8Vector2ddvERK8Vector2d","espp::Vector2d::operator/"],[58,4,1,"_CPPv4NK4espp8Vector2ddvERK1T","espp::Vector2d::operator/::v"],[58,4,1,"_CPPv4NK4espp8Vector2ddvERK8Vector2d","espp::Vector2d::operator/::v"],[58,3,1,"_CPPv4N4espp8Vector2ddVERK1T","espp::Vector2d::operator/="],[58,3,1,"_CPPv4N4espp8Vector2ddVERK8Vector2d","espp::Vector2d::operator/="],[58,4,1,"_CPPv4N4espp8Vector2ddVERK1T","espp::Vector2d::operator/=::v"],[58,4,1,"_CPPv4N4espp8Vector2ddVERK8Vector2d","espp::Vector2d::operator/=::v"],[58,3,1,"_CPPv4N4espp8Vector2daSERK8Vector2d","espp::Vector2d::operator="],[58,4,1,"_CPPv4N4espp8Vector2daSERK8Vector2d","espp::Vector2d::operator=::other"],[58,3,1,"_CPPv4N4espp8Vector2dixEi","espp::Vector2d::operator[]"],[58,4,1,"_CPPv4N4espp8Vector2dixEi","espp::Vector2d::operator[]::index"],[58,3,1,"_CPPv4I0_PNSt9enable_ifINSt17is_floating_pointI1UE5valueEE4typeEENK4espp8Vector2d7rotatedE8Vector2d1T","espp::Vector2d::rotated"],[58,5,1,"_CPPv4I0_PNSt9enable_ifINSt17is_floating_pointI1UE5valueEE4typeEENK4espp8Vector2d7rotatedE8Vector2d1T","espp::Vector2d::rotated::U"],[58,4,1,"_CPPv4I0_PNSt9enable_ifINSt17is_floating_pointI1UE5valueEE4typeEENK4espp8Vector2d7rotatedE8Vector2d1T","espp::Vector2d::rotated::radians"],[58,3,1,"_CPPv4N4espp8Vector2d1xE1T","espp::Vector2d::x"],[58,3,1,"_CPPv4NK4espp8Vector2d1xEv","espp::Vector2d::x"],[58,4,1,"_CPPv4N4espp8Vector2d1xE1T","espp::Vector2d::x::v"],[58,3,1,"_CPPv4N4espp8Vector2d1yE1T","espp::Vector2d::y"],[58,3,1,"_CPPv4NK4espp8Vector2d1yEv","espp::Vector2d::y"],[58,4,1,"_CPPv4N4espp8Vector2d1yE1T","espp::Vector2d::y::v"],[80,2,1,"_CPPv4N4espp6WifiApE","espp::WifiAp"],[80,2,1,"_CPPv4N4espp6WifiAp6ConfigE","espp::WifiAp::Config"],[80,1,1,"_CPPv4N4espp6WifiAp6Config7channelE","espp::WifiAp::Config::channel"],[80,1,1,"_CPPv4N4espp6WifiAp6Config9log_levelE","espp::WifiAp::Config::log_level"],[80,1,1,"_CPPv4N4espp6WifiAp6Config22max_number_of_stationsE","espp::WifiAp::Config::max_number_of_stations"],[80,1,1,"_CPPv4N4espp6WifiAp6Config8passwordE","espp::WifiAp::Config::password"],[80,1,1,"_CPPv4N4espp6WifiAp6Config4ssidE","espp::WifiAp::Config::ssid"],[80,3,1,"_CPPv4N4espp6WifiAp6WifiApERK6Config","espp::WifiAp::WifiAp"],[80,4,1,"_CPPv4N4espp6WifiAp6WifiApERK6Config","espp::WifiAp::WifiAp::config"],[81,2,1,"_CPPv4N4espp7WifiStaE","espp::WifiSta"],[81,2,1,"_CPPv4N4espp7WifiSta6ConfigE","espp::WifiSta::Config"],[81,1,1,"_CPPv4N4espp7WifiSta6Config6ap_macE","espp::WifiSta::Config::ap_mac"],[81,1,1,"_CPPv4N4espp7WifiSta6Config7channelE","espp::WifiSta::Config::channel"],[81,1,1,"_CPPv4N4espp7WifiSta6Config9log_levelE","espp::WifiSta::Config::log_level"],[81,1,1,"_CPPv4N4espp7WifiSta6Config19num_connect_retriesE","espp::WifiSta::Config::num_connect_retries"],[81,1,1,"_CPPv4N4espp7WifiSta6Config12on_connectedE","espp::WifiSta::Config::on_connected"],[81,1,1,"_CPPv4N4espp7WifiSta6Config15on_disconnectedE","espp::WifiSta::Config::on_disconnected"],[81,1,1,"_CPPv4N4espp7WifiSta6Config9on_got_ipE","espp::WifiSta::Config::on_got_ip"],[81,1,1,"_CPPv4N4espp7WifiSta6Config8passwordE","espp::WifiSta::Config::password"],[81,1,1,"_CPPv4N4espp7WifiSta6Config10set_ap_macE","espp::WifiSta::Config::set_ap_mac"],[81,1,1,"_CPPv4N4espp7WifiSta6Config4ssidE","espp::WifiSta::Config::ssid"],[81,3,1,"_CPPv4N4espp7WifiSta7WifiStaERK6Config","espp::WifiSta::WifiSta"],[81,4,1,"_CPPv4N4espp7WifiSta7WifiStaERK6Config","espp::WifiSta::WifiSta::config"],[81,8,1,"_CPPv4N4espp7WifiSta16connect_callbackE","espp::WifiSta::connect_callback"],[81,8,1,"_CPPv4N4espp7WifiSta19disconnect_callbackE","espp::WifiSta::disconnect_callback"],[81,8,1,"_CPPv4N4espp7WifiSta11ip_callbackE","espp::WifiSta::ip_callback"],[81,3,1,"_CPPv4N4espp7WifiSta12is_connectedEv","espp::WifiSta::is_connected"],[81,3,1,"_CPPv4N4espp7WifiStaD0Ev","espp::WifiSta::~WifiSta"],[14,2,1,"_CPPv4N4espp21__csv_documentation__E","espp::__csv_documentation__"],[73,2,1,"_CPPv4N4espp31__serialization_documentation__E","espp::__serialization_documentation__"],[74,2,1,"_CPPv4N4espp31__state_machine_documentation__E","espp::__state_machine_documentation__"],[75,2,1,"_CPPv4N4espp26__tabulate_documentation__E","espp::__tabulate_documentation__"],[74,2,1,"_CPPv4N4espp13state_machine16DeepHistoryStateE","espp::state_machine::DeepHistoryState"],[74,3,1,"_CPPv4N4espp13state_machine16DeepHistoryState5entryEv","espp::state_machine::DeepHistoryState::entry"],[74,3,1,"_CPPv4N4espp13state_machine16DeepHistoryState4exitEv","espp::state_machine::DeepHistoryState::exit"],[74,3,1,"_CPPv4N4espp13state_machine16DeepHistoryState12exitChildrenEv","espp::state_machine::DeepHistoryState::exitChildren"],[74,3,1,"_CPPv4N4espp13state_machine16DeepHistoryState14getActiveChildEv","espp::state_machine::DeepHistoryState::getActiveChild"],[74,3,1,"_CPPv4N4espp13state_machine16DeepHistoryState13getActiveLeafEv","espp::state_machine::DeepHistoryState::getActiveLeaf"],[74,3,1,"_CPPv4N4espp13state_machine16DeepHistoryState10getInitialEv","espp::state_machine::DeepHistoryState::getInitial"],[74,3,1,"_CPPv4N4espp13state_machine16DeepHistoryState14getParentStateEv","espp::state_machine::DeepHistoryState::getParentState"],[74,3,1,"_CPPv4N4espp13state_machine16DeepHistoryState11handleEventEP9EventBase","espp::state_machine::DeepHistoryState::handleEvent"],[74,4,1,"_CPPv4N4espp13state_machine16DeepHistoryState11handleEventEP9EventBase","espp::state_machine::DeepHistoryState::handleEvent::event"],[74,3,1,"_CPPv4N4espp13state_machine16DeepHistoryState10initializeEv","espp::state_machine::DeepHistoryState::initialize"],[74,3,1,"_CPPv4N4espp13state_machine16DeepHistoryState10makeActiveEv","espp::state_machine::DeepHistoryState::makeActive"],[74,3,1,"_CPPv4N4espp13state_machine16DeepHistoryState14setActiveChildEP9StateBase","espp::state_machine::DeepHistoryState::setActiveChild"],[74,4,1,"_CPPv4N4espp13state_machine16DeepHistoryState14setActiveChildEP9StateBase","espp::state_machine::DeepHistoryState::setActiveChild::childState"],[74,3,1,"_CPPv4N4espp13state_machine16DeepHistoryState14setDeepHistoryEv","espp::state_machine::DeepHistoryState::setDeepHistory"],[74,3,1,"_CPPv4N4espp13state_machine16DeepHistoryState14setParentStateEP9StateBase","espp::state_machine::DeepHistoryState::setParentState"],[74,4,1,"_CPPv4N4espp13state_machine16DeepHistoryState14setParentStateEP9StateBase","espp::state_machine::DeepHistoryState::setParentState::parent"],[74,3,1,"_CPPv4N4espp13state_machine16DeepHistoryState17setShallowHistoryEv","espp::state_machine::DeepHistoryState::setShallowHistory"],[74,3,1,"_CPPv4N4espp13state_machine16DeepHistoryState4tickEv","espp::state_machine::DeepHistoryState::tick"],[74,2,1,"_CPPv4N4espp13state_machine9EventBaseE","espp::state_machine::EventBase"],[74,2,1,"_CPPv4N4espp13state_machine19ShallowHistoryStateE","espp::state_machine::ShallowHistoryState"],[74,3,1,"_CPPv4N4espp13state_machine19ShallowHistoryState5entryEv","espp::state_machine::ShallowHistoryState::entry"],[74,3,1,"_CPPv4N4espp13state_machine19ShallowHistoryState4exitEv","espp::state_machine::ShallowHistoryState::exit"],[74,3,1,"_CPPv4N4espp13state_machine19ShallowHistoryState12exitChildrenEv","espp::state_machine::ShallowHistoryState::exitChildren"],[74,3,1,"_CPPv4N4espp13state_machine19ShallowHistoryState14getActiveChildEv","espp::state_machine::ShallowHistoryState::getActiveChild"],[74,3,1,"_CPPv4N4espp13state_machine19ShallowHistoryState13getActiveLeafEv","espp::state_machine::ShallowHistoryState::getActiveLeaf"],[74,3,1,"_CPPv4N4espp13state_machine19ShallowHistoryState10getInitialEv","espp::state_machine::ShallowHistoryState::getInitial"],[74,3,1,"_CPPv4N4espp13state_machine19ShallowHistoryState14getParentStateEv","espp::state_machine::ShallowHistoryState::getParentState"],[74,3,1,"_CPPv4N4espp13state_machine19ShallowHistoryState11handleEventEP9EventBase","espp::state_machine::ShallowHistoryState::handleEvent"],[74,4,1,"_CPPv4N4espp13state_machine19ShallowHistoryState11handleEventEP9EventBase","espp::state_machine::ShallowHistoryState::handleEvent::event"],[74,3,1,"_CPPv4N4espp13state_machine19ShallowHistoryState10initializeEv","espp::state_machine::ShallowHistoryState::initialize"],[74,3,1,"_CPPv4N4espp13state_machine19ShallowHistoryState10makeActiveEv","espp::state_machine::ShallowHistoryState::makeActive"],[74,3,1,"_CPPv4N4espp13state_machine19ShallowHistoryState14setActiveChildEP9StateBase","espp::state_machine::ShallowHistoryState::setActiveChild"],[74,4,1,"_CPPv4N4espp13state_machine19ShallowHistoryState14setActiveChildEP9StateBase","espp::state_machine::ShallowHistoryState::setActiveChild::childState"],[74,3,1,"_CPPv4N4espp13state_machine19ShallowHistoryState14setDeepHistoryEv","espp::state_machine::ShallowHistoryState::setDeepHistory"],[74,3,1,"_CPPv4N4espp13state_machine19ShallowHistoryState14setParentStateEP9StateBase","espp::state_machine::ShallowHistoryState::setParentState"],[74,4,1,"_CPPv4N4espp13state_machine19ShallowHistoryState14setParentStateEP9StateBase","espp::state_machine::ShallowHistoryState::setParentState::parent"],[74,3,1,"_CPPv4N4espp13state_machine19ShallowHistoryState17setShallowHistoryEv","espp::state_machine::ShallowHistoryState::setShallowHistory"],[74,3,1,"_CPPv4N4espp13state_machine19ShallowHistoryState4tickEv","espp::state_machine::ShallowHistoryState::tick"],[74,2,1,"_CPPv4N4espp13state_machine9StateBaseE","espp::state_machine::StateBase"],[74,3,1,"_CPPv4N4espp13state_machine9StateBase5entryEv","espp::state_machine::StateBase::entry"],[74,3,1,"_CPPv4N4espp13state_machine9StateBase4exitEv","espp::state_machine::StateBase::exit"],[74,3,1,"_CPPv4N4espp13state_machine9StateBase12exitChildrenEv","espp::state_machine::StateBase::exitChildren"],[74,3,1,"_CPPv4N4espp13state_machine9StateBase14getActiveChildEv","espp::state_machine::StateBase::getActiveChild"],[74,3,1,"_CPPv4N4espp13state_machine9StateBase13getActiveLeafEv","espp::state_machine::StateBase::getActiveLeaf"],[74,3,1,"_CPPv4N4espp13state_machine9StateBase10getInitialEv","espp::state_machine::StateBase::getInitial"],[74,3,1,"_CPPv4N4espp13state_machine9StateBase14getParentStateEv","espp::state_machine::StateBase::getParentState"],[74,3,1,"_CPPv4N4espp13state_machine9StateBase11handleEventEP9EventBase","espp::state_machine::StateBase::handleEvent"],[74,4,1,"_CPPv4N4espp13state_machine9StateBase11handleEventEP9EventBase","espp::state_machine::StateBase::handleEvent::event"],[74,3,1,"_CPPv4N4espp13state_machine9StateBase10initializeEv","espp::state_machine::StateBase::initialize"],[74,3,1,"_CPPv4N4espp13state_machine9StateBase10makeActiveEv","espp::state_machine::StateBase::makeActive"],[74,3,1,"_CPPv4N4espp13state_machine9StateBase14setActiveChildEP9StateBase","espp::state_machine::StateBase::setActiveChild"],[74,4,1,"_CPPv4N4espp13state_machine9StateBase14setActiveChildEP9StateBase","espp::state_machine::StateBase::setActiveChild::childState"],[74,3,1,"_CPPv4N4espp13state_machine9StateBase14setDeepHistoryEv","espp::state_machine::StateBase::setDeepHistory"],[74,3,1,"_CPPv4N4espp13state_machine9StateBase14setParentStateEP9StateBase","espp::state_machine::StateBase::setParentState"],[74,4,1,"_CPPv4N4espp13state_machine9StateBase14setParentStateEP9StateBase","espp::state_machine::StateBase::setParentState::parent"],[74,3,1,"_CPPv4N4espp13state_machine9StateBase17setShallowHistoryEv","espp::state_machine::StateBase::setShallowHistory"],[74,3,1,"_CPPv4N4espp13state_machine9StateBase4tickEv","espp::state_machine::StateBase::tick"]]},objnames:{"0":["c","macro","C macro"],"1":["cpp","member","C++ member"],"2":["cpp","class","C++ class"],"3":["cpp","function","C++ function"],"4":["cpp","functionParam","C++ function parameter"],"5":["cpp","templateParam","C++ template parameter"],"6":["cpp","enum","C++ enum"],"7":["cpp","enumerator","C++ enumerator"],"8":["cpp","type","C++ type"]},objtypes:{"0":"c:macro","1":"cpp:member","2":"cpp:class","3":"cpp:function","4":"cpp:functionParam","5":"cpp:templateParam","6":"cpp:enum","7":"cpp:enumerator","8":"cpp:type"},terms:{"0":[1,2,6,7,8,10,11,12,13,14,15,16,18,19,22,23,24,25,26,28,33,34,36,39,40,43,45,46,48,49,50,51,52,53,55,57,58,59,61,62,63,65,66,67,68,69,72,75,76,77,78,81],"00":19,"000":[75,77],"000f":8,"00b":65,"01":[15,33,66],"010f":8,"01f":[19,22],"02":[7,66],"024v":1,"02x":66,"03":[52,59,66],"04":[33,66],"048v":1,"04x":36,"05":66,"054":75,"05f":51,"06":66,"067488":77,"0693":75,"06f":76,"0755":24,"096v":1,"0b00000001":66,"0b00000010":66,"0b00000011":46,"0b00000100":66,"0b00001000":66,"0b0000110":22,"0b00010000":66,"0b00100000":66,"0b00111111":46,"0b0100000":48,"0b01000000":66,"0b0110110":19,"0b10000000":66,"0b11":46,"0b11111":51,"0f":[7,8,13,19,22,23,33,49,50,51,52,53,55,59,67,69],"0m":78,"0s":50,"0x00":[46,48,66],"0x0000":16,"0x06":6,"0x060504030201":66,"0x10":[2,6],"0x13":65,"0x14":40,"0x16":6,"0x24":45,"0x38":39,"0x48":1,"0x51":70,"0x54":68,"0x55":43,"0x58":[36,46],"0x5d":40,"0xa6":66,"0xa8":68,"0xae":66,"0xf412fa42fe9":65,"0xff":[51,66],"0xffffffffffff":65,"1":[1,2,3,6,7,8,10,11,12,13,14,15,16,18,19,22,23,24,25,26,34,36,43,46,48,49,50,52,53,55,57,61,62,63,65,66,67,68,72,73,75,76,77,80],"10":[2,8,11,15,18,36,43,45,50,52,59,73,75,76,77],"100":[16,23,48,49,50,67,77],"1000":[3,8,16,18,36,50,67,72,77],"10000":77,"1000000":69,"10000000":69,"100m":[16,50,59,67,74,76,81],"1024":[1,2,3,6,8,10,13,19,22,23,34,46,48,51,59,62,63,66,69,76,77],"10k":77,"10m":[2,6,50,62,66,76,77],"10mhz":69,"11":[70,75],"11k":6,"12":[2,6,65,75],"123":34,"127":[62,63,65],"128":[1,2,6,62,63,65,72],"12800":16,"128x":[2,6],"13":[46,80],"135":16,"14":46,"144v":1,"14763":77,"15":[2,6,46,70,73,75,77],"1500":72,"152":77,"16":[1,2,6,16,46,48,65,66,75],"1600":1,"16384":[16,19,22],"1678892742599":34,"16kb":66,"16x":[2,6],"17":75,"1700":[13,49],"18":[65,69,75],"18688":65,"187":75,"19":[],"192":65,"1b":65,"1f":[18,23,49,50,67],"1s":[10,33,34,51,52,59,62,63,67,70,72,74,76,78],"2":[1,2,3,6,8,10,13,14,15,19,22,23,24,25,26,28,46,49,50,52,55,58,59,62,63,65,66,67,69,72,75,78],"20":[3,8,16,24,75,77],"200":[33,72,75],"200m":[1,76],"2013":75,"20143":19,"2016":75,"2019":75,"2023":70,"2046":65,"20df":19,"20m":13,"21":[8,13,75],"22":[],"224":[61,62,63],"23":[70,75],"23017":48,"239":[61,62,63],"23s17":48,"240":16,"2400":1,"2435":72,"2494":77,"25":[23,46,75,77],"250":1,"250136576":65,"250m":[18,43],"255":[12,46,51,61,62,63,65,66,69],"256":[3,65,69,72],"2566":75,"256v":1,"25c":77,"264":72,"265":72,"2657":77,"273":77,"298":77,"299":75,"2f":[13,23,77],"2pi":[19,22],"2s":78,"2x":[2,6],"3":[1,2,6,7,8,13,14,15,29,33,46,48,50,62,63,65,69,73,75,77,78],"30":[70,75,77],"300f":8,"300m":52,"31":[13,51,77],"313":75,"32":[1,2,6,13,65],"320":[8,16],"32x":[2,6],"33":13,"3300":[1,49,77],"3380":77,"34":[2,6,8],"3422":77,"3435":77,"3453":77,"3484":69,"3484_datasheet":69,"35981":77,"36":[8,13],"360":[12,19,22,51,69],"36005":19,"37":13,"370":75,"376":75,"37ma":46,"38":13,"39":13,"3940":77,"3950":77,"3986":65,"3f":[1,2,6,10,18,19,22,34,46,48,52,66,67,77,78],"3s":3,"4":[1,2,6,8,10,13,14,19,22,34,51,53,62,63,65,66,69,70,75,76,80],"40":[16,75,77],"400":36,"4096":[18,78],"42":[13,65,73],"43173a3eb323":19,"458":75,"461":75,"475":1,"48":[23,65,66],"4886":46,"48b":66,"490":1,"4\u03c0":75,"4b":65,"4kb":66,"4x":[2,6],"5":[1,2,3,6,8,13,14,19,22,23,26,28,33,34,39,46,48,51,55,59,62,63,65,66,69,73,75,77],"50":[16,46,50,66,69,75,77],"5000":[50,62,63,72],"5001":72,"500m":[3,5,13,23,36,39,40,49,52,59,76,78],"50c":77,"50m":[19,22,45,46,48,51,68,69],"50u":69,"512v":1,"53":16,"53229":77,"55":75,"571":75,"5f":[19,22,50,51,55,63,69],"5m":67,"5s":23,"6":[1,2,6,7,12,13,14,34,62,63,65,66,69,75,81],"60":[16,19,22,75],"61067330":24,"614":75,"61622309":66,"626":75,"64":[1,2,6,69],"649ee61c":19,"64kb":66,"64x":[2,6],"6742":75,"68":75,"7":[2,6,8,34,48,65,68,73,75,77],"70":75,"720":[19,22],"72593":34,"730":75,"75":[46,77],"792":75,"8":[1,2,6,12,15,23,34,46,48,59,65,66,70,75],"80":77,"80552":77,"817":75,"8192":18,"85":77,"8502":77,"854":75,"8554":72,"860":1,"8f9a":19,"8x":[2,6],"9":[18,46,69,75],"90":75,"920":1,"93hart_equ":77,"9692":11,"9781449324094":65,"9907":77,"999":11,"9e":65,"9e10":19,"9th":[2,6],"\u00b2":75,"\u00b3\u2074":75,"\u00b9":75,"\u00b9\u00b2f":75,"\u00b9\u00b9m\u00b3":75,"\u03ba":77,"\u03c9":[75,77],"\u16a0":75,"\u16a1":75,"\u16a2":75,"\u16a3":75,"\u16a4":75,"\u16a5":75,"\u16a6":75,"\u16a7":75,"\u16a8":75,"\u16a9":75,"\u16aa":75,"\u16ab":75,"\u16ac":75,"\u16ad":75,"\u16ae":75,"\u16af":75,"\u16b0":75,"\u16b1":75,"\u16b2":75,"\u16b3":75,"\u16b4":75,"\u16b5":75,"\u16b6":75,"\u16b7":75,"\u16b8":75,"\u16b9":75,"\u16ba":75,"\u16bb":75,"\u16bc":75,"\u16bd":75,"\u16be":75,"\u16bf":75,"\u16c0":75,"\u16c1":75,"\u16c2":75,"\u16c3":75,"\u16c4":75,"\u16c5":75,"\u16c6":75,"\u16c7":75,"\u16c8":75,"\u16c9":75,"\u16ca":75,"\u16cb":75,"\u16cc":75,"\u16cd":75,"\u16ce":75,"\u16cf":75,"\u16d0":75,"\u16d1":75,"\u16d2":75,"\u16d3":75,"\u2076":75,"\u2077":75,"abstract":[37,60,61,76],"boolean":24,"break":74,"byte":[1,2,3,6,15,16,19,22,23,24,34,46,48,51,59,61,62,63,65,66,68,69,70,72],"case":[19,22,63,69],"char":[24,43,62,72,76],"class":27,"const":[1,2,3,5,6,7,8,10,11,12,13,14,15,16,18,19,22,23,24,25,26,28,29,31,33,34,36,38,39,40,42,43,44,45,46,48,49,50,51,52,53,55,57,58,61,62,63,65,66,67,68,69,70,72,76,77,78,80,81],"default":[1,2,6,11,13,15,16,33,34,39,40,43,45,46,48,51,53,55,57,58,59,68,69,70,72,73,80,81],"do":[2,5,10,13,14,23,34,43,59,72,73,74,75,76],"enum":[1,2,6,10,13,15,34,39,46,48,49,51,52,65,68,77],"export":75,"final":[13,19,22,36,39,40,45,46,48,59,65,66,68,70,72,74],"float":[1,2,3,5,6,7,8,10,12,13,15,18,19,22,23,25,26,28,29,33,34,46,48,49,50,51,52,53,54,55,58,59,61,62,63,67,69,74,76,77,78],"function":[1,2,3,5,6,7,8,10,11,12,13,15,16,18,19,22,23,24,25,26,27,28,29,33,34,35,36,37,38,39,40,42,43,44,45,46,48,49,50,51,52,53,54,55,57,58,59,60,61,62,63,65,66,67,69,72,74,76,77,78,80,81],"goto":69,"int":[1,2,5,7,10,11,13,16,18,19,22,23,24,31,46,50,51,58,59,61,62,63,65,66,67,68,69,72,73,74,75,76,77,78],"long":[11,72,75,78],"new":[5,7,8,10,11,16,23,25,26,28,29,31,39,40,45,46,49,50,51,52,55,57,58,65,66,67,68,72,76,78],"null":43,"public":[1,2,3,5,6,7,8,10,11,12,13,15,16,18,19,22,23,24,25,26,28,29,31,33,34,36,38,39,40,42,43,44,45,46,48,49,50,51,52,53,55,57,58,59,61,62,63,65,66,67,68,69,70,72,74,76,77,78,80,81],"return":[1,2,3,5,6,7,8,10,11,12,13,15,16,18,19,22,23,24,25,26,28,29,31,33,34,36,38,39,40,42,43,44,45,46,48,49,50,51,52,53,55,57,58,59,61,62,63,65,66,67,68,69,70,72,74,76,77,78,81],"short":[13,65],"static":[1,2,6,8,10,11,16,19,22,23,24,33,34,36,39,40,43,45,46,48,50,51,54,59,61,62,63,65,66,68,69,70,74,76,77,78],"super":14,"switch":[2,6,15,69],"throw":[11,24],"true":[1,2,6,7,8,10,11,13,14,15,16,18,19,22,23,24,31,33,34,36,39,40,43,44,45,46,48,49,50,51,52,57,61,62,63,65,66,67,68,69,70,72,74,75,76,78,81],"try":[],"void":[2,3,6,7,8,10,11,13,15,16,19,22,23,25,28,31,33,34,36,39,40,43,44,45,46,48,49,50,51,52,55,57,58,61,62,63,65,66,67,68,69,70,72,74,77,78,81],"while":[10,11,16,23,43,50,52,59,72,74,76,81],A:[2,6,7,10,13,23,30,31,48,51,62,65,68,72,75,78],And:51,As:23,By:11,For:[11,15,29,34,68,72,75,76],IN:34,IT:[24,66],If:[2,5,6,7,11,12,23,33,34,36,44,50,57,61,62,63,65,72,74,76,78,80,81],In:[13,23,46],Is:[61,62,63,76],It:[2,3,5,6,8,10,11,13,14,19,22,23,24,31,33,34,36,43,45,46,50,51,67,69,72,74,75,76,77],NOT:[2,13],No:[2,6,33,52,65],Not:24,ON:11,ONE:1,On:[2,33,43],The:[1,2,3,5,6,7,8,9,10,11,12,13,14,15,18,19,22,23,24,25,26,28,29,30,31,32,33,34,36,38,39,40,42,43,45,46,48,49,50,51,52,53,54,55,57,58,59,60,61,62,63,65,66,67,68,69,70,72,73,74,75,76,77,78,80,81],There:[19,21,22,27,35,47,59,74],These:[2,6,9,69,72],To:[23,68,72],Will:[7,19,22,46,57,59,61,66,72,74],With:49,_1:[39,40,43,45,59,68,70],_2:[39,40,43,45,59,68,70],_3:[39,40,43,45,68,70],_4:[39,40,68,70],_5:40,_:14,__csv_documentation__:14,__gnu_linux__:[14,73],__linux__:11,__serialization_documentation__:73,__state_machine_documentation__:74,__tabulate_documentation__:75,__unix__:75,__unnamed11__:68,__unnamed13__:68,__unnamed7__:65,__unnamed9__:65,_activest:74,_build:[31,68,70],_cli:11,_event_data:74,_in:11,_lv_refr_get_disp_refresh:[],_out:11,_parentst:74,_rate_limit:52,_really_:51,a0:[48,49],a1:49,a2:48,a_0:25,a_1:25,a_2:25,a_gpio:18,a_pin:48,ab:[57,77],abi:[21,37],abi_encod:18,abil:[52,59],abl:[31,49,62,74,78],about:[11,14,59,63,65,66,69,74,75,77],abov:[2,6,11,19,22,23,46,51,69,74],absolut:[19,22,24,65],absolute_uri:65,abxi:13,ac:65,acceler:28,accept:[31,62,72],access:[18,24,37,61,66,74,79,81],accord:[24,46,48,49,50,52,72],accordingli:[10,13],accumul:[18,19,22,68],accur:67,ack:[2,6],acknowledg:[36,62],across:[3,33],act:65,action:[74,76],activ:[2,6,7,10,13,48,65,66,72,74],active_high:[2,6,48],active_level:10,active_low:[2,6,13],activeleaf:74,activelevel:10,actual:[1,2,6,13,16,23,33,34,65,72,74,77],actual_celsiu:77,actual_kelvin:77,actuat:[34,35],ad0:46,ad1:46,ad:[1,2,8,13,23,58,65,72],adafruit:[13,34,46,65,69],adc1:77,adc:[13,18,34,37,67],adc_atten_db_11:[3,5,13,49,77],adc_channel_1:13,adc_channel_2:13,adc_channel_6:[3,5],adc_channel_7:[3,5,77],adc_channel_8:49,adc_channel_9:49,adc_channel_t:[3,5],adc_conv_single_unit_1:[3,77],adc_conv_single_unit_2:[],adc_decap:6,adc_digi_convert_mode_t:3,adc_typ:0,adc_unit_1:[3,5,77],adc_unit_2:[13,49],adc_unit_t:5,adcconfig:[3,5,13,49,68,70,77],add:[7,12,16,58,61,62,63,72],add_multicast_group:[61,62,63],add_publish:23,add_row:75,add_scan:72,add_subscrib:[10,23],addit:[3,12,15,37,49,58,76],addition:[2,6,10,11,72],addr:[34,61,66],address:[1,2,6,16,19,22,31,34,36,39,40,43,45,46,48,61,62,63,65,66,68,70,72,81],adjust:[33,62],ads1015:1,ads1015config:[1,13],ads1015rat:1,ads1115:1,ads1115config:1,ads1115rat:1,ads1x15:[4,13,37],ads7128:[2,6],ads7138:[4,37],ads_read:[1,2,13],ads_read_task_fn:[1,2,13],ads_task:[1,2,13],ads_writ:[1,2,13],adventur:14,advis:57,ae:65,affect:[19,22,72],affin:76,after:[2,6,15,43,49,51,57,61,62,63,66,69,72,78,81],again:[23,66,74],agent:72,alert:[2,6],alert_1000m:34,alert_750m:34,alert_log:2,alert_pin:2,alert_task:2,alertlog:[2,6],algorithm:[7,8,9,12,75],alias:[19,22],align:[51,75],aliv:31,all:[2,5,6,7,11,23,24,34,46,51,52,57,59,63,68,69,72,74],all_mv:[2,6],all_mv_map:6,alloc:[3,15,59,76],allocatingconfig:[15,16],allocation_flag:15,allow:[1,2,3,5,6,7,8,11,13,15,18,19,22,33,34,36,39,40,43,45,46,48,49,50,51,55,57,60,61,62,63,67,68,69,70,72,74,76,77],along:[54,66],alow:55,alpaca:[23,37],alpha:[50,55],alreadi:[23,24,25,62,63,72,76,78],also:[2,6,11,13,14,15,16,19,22,23,24,33,34,46,59,69,72,74,75,76],alt:43,alter_unit:[3,77],altern:[2,3,24,40,65],alwai:[3,5,7,8,19,22,24,34,57,59,72,74],am:19,amount:[3,24,57,58],amp:8,amplitud:55,an:[0,1,2,5,6,7,10,11,12,13,18,19,22,23,24,25,26,28,29,30,32,33,34,40,43,44,45,46,48,49,51,53,55,57,59,61,62,63,65,68,69,72,74,75,76,78,81],analog:[2,3,5,6,34,49],analog_input:[2,6],analogev:2,analogjoystickconfig:13,analyz:59,anaolg:13,android:[65,66],angl:[8,19,22],angle_filt:8,angle_openloop:8,angle_pid_config:8,ani:[2,5,6,7,8,10,11,14,19,22,31,46,51,61,62,63,66,69,72,74,75,76,78],anonym:[23,65],anoth:[10,11,23,24,58],answer:11,any_edg:10,anyth:[14,52,59,73,74,75],anywher:11,ap:[37,79,81],ap_mac:81,apa102_start_fram:51,apa:65,api:37,app:[65,66],app_main:59,appear:65,append:[2,6,72],appli:[3,46,49],applic:[37,72,75],appropri:[7,62,63],approxim:[2,6,49,54],ar:[2,4,6,7,8,9,11,13,16,17,18,21,23,24,27,33,34,35,46,47,48,49,51,52,57,59,60,62,65,66,67,68,69,72,73,74,76,78,79],arari:73,arbitrari:11,area:[15,16],arg:52,argument:[31,52,68,70],arithmet:25,around:[3,5,7,10,11,14,15,24,36,38,42,44,49,50,52,53,55,57,61,69,73,74,75,76],arrai:[1,2,6,16,19,22,25,28,29,34,46,48,53,61,62,63,66,73],arrow:11,articl:77,artifact:69,as5600:[21,37],as5600_ds000365_5:19,as5600_read:19,as5600_writ:19,asid:50,ask:76,aspect:11,assert:[],asset:34,assign:58,associ:[0,3,5,10,13,15,16,18,23,38,42,44,46,48,49,50,53,58,59,61,62,63,76],associt:[61,62,63],assum:[11,51,62,63,77],assumpt:[19,22],asymmetr:67,ate:24,atom:[8,13],attach:[16,46],attenu:[0,3,5,13,49,77],attribut:[1,2,6,19,22,39,40,43,45,46,48,51,65,66,68,69,70],audio:34,audiovib:34,authent:[31,65],auto:[1,2,3,5,6,8,10,11,13,14,16,18,19,22,23,24,33,34,36,39,40,43,45,46,48,49,50,51,52,59,62,63,66,67,68,69,70,73,74,75,76,77,78],auto_init:[2,6,19,22,34,36,46,48,66],auto_seq:[2,6],auto_start:[43,78],autoc:34,automat:[2,6,11,12,19,22,36,43,46,66,72,75,76,78],autonom:[2,6],autostop:76,avail:[3,18,23,58,66],avdd:[2,6],avdd_volt:[2,6],averag:[2,6,12],aw9523:[37,47],aw9523_read:46,aw9523_writ:46,aw9523b:46,awaken:14,ax:[13,49],axi:[2,8,13,49],b0:65,b1:65,b25:77,b2:65,b3:65,b4:65,b7:48,b:[7,11,12,13,14,18,30,43,46,48,51,55,59,65,66,68,69,73,76,77],b_0:25,b_1:25,b_2:25,b_bright:46,b_down:46,b_gpio:18,b_led:46,b_pin:48,b_up:46,back:[11,15,24,62,63,66,69],background:[33,78],background_color:75,backlight:[15,16,43],backlight_on_valu:[15,16],backlight_pin:[15,16],backspac:11,bad:[12,77],band:65,bandwidth:62,base:[8,12,19,22,25,26,27,28,29,33,50,51,59,61,66,67,69,72,74,75,77],base_encod:69,basi:[2,6],basic:11,batch:75,batteri:23,batteryst:23,bcd2byte:70,bcd:70,becaus:[8,19,22,24,69,75,78],becom:6,been:[2,6,11,25,34,43,51,62,63,66,68,69,72,76,78],befor:[2,6,18,24,33,51,62,66,72,74,76,78,81],beg:24,begin:[11,23,24,62,63,65,76],behavior:[33,67],being:[1,2,3,5,6,8,11,13,18,19,22,23,34,36,39,40,45,46,48,49,51,67,68,69,70,74,76,77],belong:63,below:[2,6,8,74,75],beta:[50,55,77],better:[28,67],between:[12,15,23,32,53,57,66],beyond:[11,14,69,75],bezier:[37,56],bezierinfo:53,bgr:51,bi:66,bia:33,biequad:25,binari:24,bind:[31,39,40,43,45,52,59,62,63,68,70,72],biquad:[26,27,29,37],biquad_filt:25,biquadfilt:25,biquadfilterdf1:25,biquadfilterdf2:[19,22,25,26,29],biquadrat:25,bit0:69,bit1:69,bit:[2,6,11,13,16,46,48,50,65,66,68],bitfield:[2,6],bitmask:2,bldc:[35,37],bldc_driver:7,bldc_haptic:33,bldc_motor:[8,9],bldc_type:8,bldcdriver:[7,8],bldchaptic:33,bldcmotor:[8,19,22,33],ble:[65,66],ble_appear:66,ble_radio_nam:66,ble_rol:66,blend:12,blerol:[65,66],blob:[11,16],block:[2,3,5,6,11,33,50,51,62,63,69,72,76,78],block_siz:69,blue:[12,14,51,69,75],bluetooth:65,bm8563:[37,68,71],board:[16,68],bob:[8,31,68,70],bodmer:16,bold:75,bool:[1,2,6,7,8,10,11,13,15,16,18,19,22,23,24,31,33,34,36,39,40,43,44,45,46,48,49,50,51,57,61,62,63,65,66,67,68,69,70,72,74,76,78,81],boot:43,border_bottom:75,border_color:75,border_left:75,border_right:75,border_top:75,both:[2,3,6,13,14,25,33,45,46,48,49,50,57,65,69,75],both_unit:[3,77],bother:45,bottom:11,bound:[33,62,69],bounded_no_det:33,box:[13,31,45,66,68,70],boxart:14,bp:2,br:65,breakout:68,breathing_period:50,breathing_start:50,bredr:65,bright:[15,46,51],bro:14,broadcast:[63,65],broken:72,brushless:[7,8,9],bs:23,bsp:16,bt:65,btappear:[65,66],bteir:65,btgoep:65,btl2cap:65,btspp:65,btssp_1_1:65,bttype:65,bu:[2,6,16,36,39,68],budget:75,bufer:76,buffer:[2,3,6,10,15,23,62,69,72,73,76],buffer_s:63,build:[27,37,72],built:[14,62,73,74,75],bundl:13,buscfg:16,busi:63,butterworth:[27,37],butterworth_filt:26,butterworthfilt:[19,22,26,29],button:[2,13,37,38,40,42,44,45,46,68],button_2:10,button_component_nam:10,button_st:[45,68],button_top:10,buttonst:[68,70],buzz1:34,buzz2:34,buzz3:34,buzz4:34,buzz5:34,byte2bcd:70,byte_ord:51,byteord:51,bytes_encod:69,bytes_encoder_config:69,bytes_written:[10,73],c:[7,11,14,16,23,24,37,65,69,73,75,77],c_str:24,cach:[40,72],calcul:[2,6,8,33,77],calibr:[5,8,34,49],call:[2,3,5,6,10,11,12,13,15,18,19,22,23,33,34,40,43,45,46,49,51,52,59,61,62,63,66,67,68,69,72,74,76,78,80,81],call_onc:23,callback:[1,2,3,5,6,8,10,13,15,18,19,22,23,34,36,39,40,43,45,46,48,49,50,51,59,60,61,62,63,66,67,68,69,70,72,74,76,77,78],callback_fn:[76,78],camera:72,can:[2,6,7,8,9,10,11,12,13,15,16,18,19,22,24,31,32,33,34,43,45,49,50,51,52,53,57,59,62,63,65,66,67,69,72,73,74,75,76,77,78,80],can_chang:50,cannot:[24,62,66,72,73],capabl:[46,65,66],capacit:[39,45],captain:75,captur:[2,6,48],carrier:65,carrier_data_ref:65,carrierpowerst:65,catalog:77,caus:[72,74],caution:11,cb:[16,23,72],cc:66,cdn:[46,69],cell:[14,75],celsiu:77,center:[13,33,49,57,75],central:65,central_onli:65,central_peripher:65,certain:[33,74],cf:65,ch04:65,ch0:[2,6],ch1:[2,6],ch2:[2,6],ch3:[2,6],ch4:[2,6],ch5:[2,6],ch6:[2,6],ch7:[2,6],chang:[8,10,12,33,46,48,50,52,55,67,72,74],change_gain:67,channel:[0,1,2,3,5,6,7,12,13,18,49,50,69,72,77,80,81],channel_id:[2,6],channel_sel:[2,6],channelconfig:50,charact:11,characterist:75,chart:[59,75],chdir:24,check:[2,7,8,10,24,31,33,50,61,62,68,72,78,81],child:74,childstat:74,chip:[1,2,3,6,18,21,40,46,47,48,51,66,70,77],choos:7,chose:77,chrono:[1,2,6,8,10,15,19,22,34,43,46,48,50,51,52,59,61,62,63,67,69,74,76,77,78],chrono_liter:[1,2,6,13,34],chunk:65,cin:[11,74],circl:49,circuit:77,circular:49,clamp:[7,12,67,69],clang:77,class_of_devic:65,classic:65,clean:[24,62,76],cleanup:[24,61],clear:[2,11,16,18,46,66,67,72],clear_event_high_flag:2,clear_event_low_flag:2,clear_lin:11,clear_pin:46,clear_screen:11,clear_to_end_of_lin:11,clear_to_start_of_lin:11,cli:[37,74],client:[31,32,37,60,61],client_socket:[62,63],client_task:[62,63],client_task_fn:[62,63],clifilesesson:11,clint:75,clisess:11,clk_speed:[1,2,6,13,19,22,34,36,46,48,66],clock:[2,6,36,51,65,69],clock_spe:16,clock_speed_hz:16,clock_src:69,close:[8,9,19,22,24,33,62,72],clutter:74,co:[51,69],coars:33,coarse_values_strong_det:33,code:[1,2,4,6,8,9,11,16,17,18,19,22,23,24,34,39,40,43,45,46,48,49,52,59,60,65,66,67,68,69,72,73,74,75,76,78,79],coeffici:[25,28,30,55,77],collect:[2,72],color:[11,15,16,37,51,69,75],color_data:15,color_map:16,column:[75,77],column_separ:75,com:[2,6,7,8,11,14,16,19,24,25,29,33,34,46,52,63,65,66,69,72,74,75,77,80,81],combin:[61,62,63],combo:61,come:63,comma:14,command:[8,16,31,37],common:[13,16,34,65],common_compon:11,commun:[1,2,6,13,19,22,34,39,40,43,45,46,48,62,63,66,68,70],compat:72,complet:[2,6,11,14,34,50,65,72,75,76],complex:76,complex_root:74,compon:[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,18,19,20,21,22,23,24,25,26,28,29,30,31,33,34,35,36,37,38,39,40,42,43,44,45,46,47,48,49,50,51,52,53,54,55,57,58,59,61,62,63,65,66,67,68,69,70,72,73,74,75,76,77,78,80,81],compos:65,comput:[12,19,22,32,57,65,67,77],compute_voltag:77,condit:[18,36,50,76],condition_vari:[1,2,3,5,6,8,13,18,19,22,34,36,39,40,45,46,48,49,51,66,67,68,69,70,74,76,77],conf:[3,5],config:[1,2,3,5,6,7,8,10,13,15,18,19,22,24,26,28,29,33,34,36,38,39,40,42,43,44,45,46,48,49,50,51,52,53,55,57,59,61,62,63,65,66,67,68,69,70,72,76,77,78,80,81],config_bt_ble_en:66,config_esp32_wifi_nvs_en:[80,81],config_esp_maximum_retri:81,config_esp_wifi_password:[66,80,81],config_esp_wifi_ssid:[66,80,81],config_freertos_generate_run_time_stat:59,config_freertos_use_trace_facil:59,config_hardware_box:16,config_hardware_ttgo:16,config_hardware_wrover_kit:16,config_rtsp_server_port:72,configur:[0,1,2,3,5,6,7,8,10,11,13,15,16,18,19,22,24,26,28,29,33,34,36,38,39,40,42,43,44,45,46,48,49,50,51,52,53,55,57,59,61,62,63,65,66,67,68,69,70,72,73,74,76,77,78,81],configure_alert:2,configure_global_control:46,configure_l:46,configure_pow:7,configure_stdin_stdout:[11,74],confirm:65,confirm_valu:65,connect:[6,8,10,13,31,34,48,50,62,65,72,80,81],connect_callback:81,connect_config:62,connectconfig:62,consecut:2,consol:75,constant:[67,75],constexpr:[1,2,6,16,19,22,33,36,39,40,43,45,46,48,65,66,68,69,70,73],construct:[1,2,6,10,11,12,19,20,22,26,29,34,36,39,46,48,52,53,55,59,61,66,68,72,76,78],constructor:[2,6,11,12,23,33,40,43,45,46,51,52,58,61,69,70,72,77],consum:74,contain:[0,10,11,12,13,15,16,18,23,24,30,33,38,42,44,53,58,59,63,65,66,67,68,72,73,74,81],content:[24,75],context:[23,74,78],contin:[],continu:[2,4,6,11,24,34,37,63,76,77],continuous_adc:3,continuousadc:[3,77],control:[2,6,7,8,9,16,19,22,23,31,33,34,37,41,43,46,48,50,51,53,65,67,68,72],control_point:53,control_socket:72,controller_driv:16,conveni:[11,13,14,19,22,50,61,73,74,75],convers:[1,2,3,6,12,19,22,49,61],convert:[2,5,6,7,8,12,13,19,22,23,24,49,57,61,66,70,72,77],convert_mod:[3,77],convieni:[53,55],cool:52,coolei:75,coordin:[16,39,40,44],copi:[11,12,24,58,69,74,76],copy_encod:69,core:[10,65,76,78],core_id:[8,10,76,78],core_update_period:8,corner:[16,75],correct:[8,74],correspond:[2,6,16,34,46,68,77],could:[2,6,12,14,19,24,39,40,67,73,74,75],couldn:[23,24],count:[1,2,6,8,10,18,19,22,34,46,48,50,51,52,59,67,69,76,77],counter:[18,19,22],counts_per_revolut:[18,19,22],counts_per_revolution_f:[19,22],counts_to_degre:[19,22],counts_to_radian:[19,22],coupl:[23,49],cout:[11,75],cplusplu:11,cpp:[24,31,37,52,66,68,70,72],cpprefer:[24,52],cpu:59,cr:72,crd:18,creat:[2,8,10,11,12,13,14,16,18,19,22,24,31,33,49,51,52,57,59,62,63,65,66,67,69,72,74,75,76,77,80,81],create_dev:[],create_directori:24,creation:[19,22],credenti:65,cross:[2,52,76,78],cs:8,cseq:72,csv2:14,csv:[2,6,24,37],csv_data:14,ctrl:11,cubic:53,curent:[61,74],current:[7,8,10,11,13,16,18,19,22,23,31,32,33,43,44,46,50,52,55,58,59,60,67,68,69,72,77,81],current_directori:31,current_duti:50,current_hfsm_period:74,current_limit:8,current_pid_config:8,current_sens:8,currentlyact:74,currentsensor:8,currentsensorconcept:8,cursor:[11,16],curv:53,custom:[15,23,24,34,69,73],cutoff:[8,26,28],cv:[1,2,3,5,6,8,13,18,19,22,23,34,36,39,40,45,46,48,49,50,51,62,66,67,68,69,70,74,76,77],cv_retval:76,cv_statu:76,cxx:[],cyan:75,cycl:[7,34,50,69],d2:13,d3:13,d4:13,d5:13,d6:13,d:[8,13,23,52,61,62,63,70],d_current_filt:8,dai:70,dam:77,daniele77:11,data:[0,1,2,3,5,6,8,10,12,13,14,15,16,19,22,23,24,25,26,28,29,31,34,36,39,40,43,44,45,46,48,49,51,59,61,62,63,65,66,68,70,72,73,74,77,81],data_address:66,data_command_pin:16,data_len:[1,2,6,13,19,22,34,36,39,45,46,48,68],data_s:69,data_sheet:77,data_str:23,dataformat:[2,6],datasheet:[19,34,46,66,69,77],datasheet_info:77,date:[3,24,68,70,75],date_tim:[24,70],datetim:[68,70],dav:65,db:77,dbm:65,dc:[7,8,9,16],dc_level_bit:16,dc_pin:16,dc_pin_num:16,de:23,dead_zon:7,deadband:[13,49,57],deadzon:49,deadzone_radiu:49,deal:65,debug:[8,52,66,74,76,78],debug_rate_limit:52,deck:43,decod:[8,19,22,39,40,43,66,68,72],dedic:13,deep:74,deep_history_st:74,deephistoryst:74,default_address:[1,2,6,19,22,34,39,43,45,46,48,68,70],default_address_1:40,default_address_2:40,defautl:55,defin:[23,51,57,69,72,73,74],definit:[20,23],deftail:68,degre:[18,19,22],deinit:[3,36,81],deiniti:36,del:69,delai:[8,25],delet:[5,11,13,18,24,69],delete_fn:69,delimit:14,demo:[11,16],depend:[3,33,57,69,74],depth:69,dequ:11,deriv:[67,74],describ:[15,16,57,62,65,72],descriptor:[61,62,63],deseri:[10,23,65,73],design:[13,19,22,33,35,38,42,43,44,51,72,74,77],desir:[0,7,33],destin:24,destroi:[1,2,3,5,6,7,8,10,13,18,19,22,31,34,36,39,40,45,46,48,49,51,67,68,69,70,72,74,76,77,78],destruct:76,destructor:[11,23,33,69,72,76],detail:[8,33,62,65],detect:[10,11,39],detent:33,detent_config:33,detentconfig:[33,68,70],determin:[19,22],determinist:3,dev:16,dev_addr:[1,2,6,13,19,22,34,36,45,46,48],dev_kit:16,devcfg:16,develop:[8,16,65,74],devic:[1,2,6,16,19,22,33,34,36,38,39,42,44,45,46,48,65,66,68,80],device_address:[1,2,6,19,22,34,36,46,48],device_class:65,devkit:16,diagno:34,diagnost:34,did_pub:23,did_sub:[10,23],differ:[2,6,16,19,20,21,22,23,25,27,34,47,50,51,52,66,67,69,74],digial:28,digit:[2,6,25,26,29],digital_biquad_filt:[25,29],digital_input:[2,6],digital_output:[2,6],digital_output_mod:[2,6],digital_output_valu:[2,6],digitalconfig:13,digitalev:2,dim:46,dimension:58,dir_entri:24,dirac:75,direct:[5,13,25,46,48,66],directli:[2,6,7,9,21,34,35,51,53],director:75,directori:[24,31,68,70],directory_iter:24,directory_list:24,disabl:[2,6,7,8,11,18,19,46,66,69],disconnect:[72,81],disconnect_callback:81,discontinu:57,discover:65,discuss:[11,66],disp:[],displai:[14,37,65,72],display_driv:[16,17],display_event_menu:74,distinguish:73,distribut:[23,57],divid:[12,25,58,67,69,77],divider_config:77,divis:77,dma:[3,69,77],dma_en:69,dnp:[2,6],doc:[7,11,15,31,68,69,70,77,80,81],document:[11,14,19,69,73,74,75],doe:[3,5,7,11,14,18,19,22,24,31,33,46,48,51,61,68,72,73,74,75,78],doesn:[2,6,24],don:[1,2,3,5,6,8,13,18,19,22,23,34,36,39,40,45,46,48,49,51,59,62,63,66,67,68,69,70,74,76,77,78],done:[23,50,61,62,63],dot:58,doubl:[11,15],double_buff:15,double_click:34,down:[11,13,42,51,61,62,63,67,68,74,76],download:65,doxygen:[31,68,70],doxygenfunct:[31,68,70],drain:[2,6],draw:[15,16],drive:[2,8,23,34,35,46,69],driven:[33,35],driver:[1,2,6,8,9,11,13,15,17,19,22,35,36,37,38,40,42,44,45,46,48,51,66,68,70,72],driverconcept:8,drv2605:[35,37],drv:16,ds:[2,6,34],dsiplai:15,dsp:[25,28],dsprelat:[25,29],dt:70,dual:[13,65],dualconfig:13,dummycurrentsens:8,dump:75,durat:[1,2,6,8,10,15,19,22,33,34,46,48,50,51,52,59,61,62,63,67,69,74,76,77,78],duration0:69,duration1:69,dure:[66,67,74],duti:[7,50],duty_a:7,duty_b:7,duty_c:7,duty_perc:50,duty_resolut:50,dx:14,dynam:[8,33,55,66,67],dynamictask:76,e2:77,e:[11,24,34,51,55,65,69,74,77],each:[2,3,5,6,7,12,13,23,24,29,31,33,46,49,52,59,68,72,73],earli:[1,2,3,5,6,8,13,18,19,22,34,36,39,40,45,46,48,49,51,67,68,69,70,74,76,77],easili:[2,6,19,60,75,76],eastwood:75,ec:[1,2,6,10,13,19,22,23,24,34,36,39,40,43,45,46,48,66,68,70,72,73],eccentr:[34,35],ecm:34,ed:18,edg:[2,6,10,19,22,33,34,69],edit:11,edr:65,eeprom:66,effici:[6,14],eh_ctrl:66,eight:1,eir:65,either:[13,18,59,77],el_angl:8,elaps:[1,2,6,10,34,50,52,66,67,76,77,78],electr:[8,75],element:[5,58],els:[2,3,5,8,10,24,36,45,46,48,66,70,73,74,75,77],em:[10,23],emb:75,embed:75,embedded_t:75,emplace_back:66,empti:[34,51,65,72,80,81],empty_row:75,emu:[31,68,70],en:[7,11,24,25,26,29,31,52,61,62,63,65,66,68,69,70,77,80,81],enabl:[2,3,5,6,7,8,10,11,13,15,23,33,43,46,59,60,62,66,75,76,80,81],enable_if:[18,58],enable_reus:[61,62,63],encapsul:66,encod:[33,37,41,72],encode_fn:69,encoded_symbol:69,encoder_input:38,encoder_typ:20,encoder_update_period:[19,22],encoderinput:38,encodertyp:18,encrypt:65,end:[2,6,11,16,23,24,33,34,51,62,63,65,66,74,76],end_fram:51,endev:74,endif:[16,66,75],endl:[11,75],endpoint:[61,62,63],energi:65,enforc:[74,75],english:[46,65],enough:[11,76],ensur:[8,11,57,68,69,80,81],enter:[2,6,11,42,74],enterpris:65,entri:[59,74],enumer:[1,2,6,10,13,15,34,39,46,48,49,51,52,65,68,77],eoi:72,epc:65,equal:11,equat:[18,25,77],equival:[11,14,46,75],erm:[34,35],erm_0:34,erm_1:34,erm_2:34,erm_3:34,erm_4:34,err:[1,2,6,13,19,22,24,34,46,48,66],error:[1,2,6,10,13,19,22,23,24,34,39,40,43,45,46,48,52,66,67,68,69,70,72,77],error_cod:[1,2,6,10,13,19,22,23,24,34,36,39,40,43,45,46,48,66,68,70,72,73],error_rate_limit:52,escap:42,esp32:[3,7,11,13,24,31,33,45,49,68,69,70,72,75,80,81],esp32s2:3,esp32s3:3,esp:[3,5,7,10,11,16,18,25,28,31,36,37,50,52,63,66,68,69,70,72,75,76,78,80,81],esp_bt_dev_get_address:66,esp_err_t:[16,69],esp_error_check:16,esp_lcd_ili9341:16,esp_log:52,esp_ok:[1,2,6,13,19,22,34,46,48,66,69],esp_wrover_dev_kit:[],esphom:16,espp:[1,2,3,5,6,7,8,10,11,12,13,15,16,18,19,22,23,24,25,26,28,29,31,32,33,34,36,38,39,40,42,43,44,45,46,48,49,50,51,52,53,55,57,58,59,61,62,63,65,66,67,68,69,70,72,73,74,76,77,78,80,81],espressif:[7,11,16,28,63,69,80,81],estim:75,etc:[10,24,42,46,48,51,67,69,73],evalu:[53,55],even:[66,73,75],evenli:33,event1:23,event1_cb:23,event2:23,event2_cb:23,event:[2,6,10,11,37,66,74,81],event_callback_fn:[10,23],event_count:2,event_flag:2,event_high_flag:2,event_low_flag:2,event_manag:23,eventbas:74,eventdata:81,eventmanag:[10,23],everi:[15,19,22,52],everybodi:11,everyth:11,exactli:65,exampl:[4,9,17,60,79],exceed:81,excel:8,except:[11,24],exchang:65,execut:[11,23,74,76,78],exis:81,exist:[7,11,14,24,72,73,74,75],exit:[1,2,3,5,6,8,11,13,18,19,22,34,36,39,40,45,46,48,49,51,67,68,69,70,74,76,77],exitact:11,exitchildren:74,exitselect:74,exp:[55,59],expand:37,expir:78,explicit:[10,11,36,39,40,43,45,61,68,70,72,76,77,78],explicitli:[11,76],expos:[11,14,52,75],extend:65,extern:[2,6,11,34,49,65,74,75],external_typ:65,extra:[69,72],extra_head:72,exttrigedg:34,exttriglvl:34,f4:65,f:[11,24],f_cutoff:[26,28],f_sampl:[26,28],fa:65,facil:59,factor:[19,22,28,33,77],fade:50,fade_time_m:50,fahrenheit:77,fail:[1,2,6,10,13,19,22,34,36,39,45,46,48,66,68,73,81],fake:76,fall:[2,6,10,66,69],falling_edg:10,fals:[1,2,3,5,6,7,8,10,11,13,16,18,19,22,23,24,31,33,34,36,39,40,43,44,45,46,48,49,50,51,57,59,62,63,66,67,68,69,70,72,74,76,77,78,81],famili:[1,2,6],far:11,fast:[37,56,66],fast_co:54,fast_ln:54,fast_math:54,fast_sin:54,fast_sqrt:54,fastest:[19,22],fault:7,fclose:24,fe:65,featur:[2,11],feedback:[33,34,35],feel:8,few:[11,16,23,74],ff:65,fi:[80,81],field:[2,6,8,24,49,65,66,68,72],field_fal:66,field_ris:66,figur:[14,24,73,74,75],file2:24,file:[32,37],file_byt:24,file_cont:24,file_s:24,file_str:24,file_system:24,filenam:14,filesystem:31,fill:[16,25,28,44,49,61,62,63,66],filter:[3,5,8,18,19,22,30,37,77],filter_cutoff_hz:[19,22],filter_fn:[8,19,22],fine:33,fine_values_no_det:33,fine_values_with_det:33,finger563:74,finish:[11,33,69],first:[2,8,23,34,51,62,63,65,66,72,77,78],first_row_is_head:14,fish:11,fit:15,fix:77,fixed_length_encod:73,fixed_resistance_ohm:77,flag:[2,6,16,23,65,66,69],flip:57,floatrangemapp:49,flush:[15,16,24],flush_callback:[15,16],flush_cb:16,flush_fn:15,fmod:50,fmt:[2,3,5,6,11,13,14,16,18,19,22,23,36,39,40,43,45,46,48,49,50,59,62,63,66,67,68,69,70,72,73,74,75,76,77,78,81],foc:[7,8],foc_typ:8,foctyp:8,folder:[4,9,11,14,17,18,49,52,59,60,67,73,74,75,76,78,79],follow:[2,6,8,25,33,34,51,54,59,65,66,69,74,77],font_align:75,font_background_color:75,font_color:75,font_styl:75,fontalign:75,fontstyl:75,fopen:24,forc:[7,15],force_refresh:15,form:[25,26,72],format:[2,6,14,16,23,24,37,59,65,72,75,76,77],formula:77,forum:65,forward:11,found:[19,22,34,45,65,66],four:1,frac:[25,55,77],frag_typ:72,fragment:72,frame:[2,6,51,72],fread:24,free:[15,24,50,69,75],free_spac:24,freebook:[25,29],freerto:[10,59,76,78],frequenc:[3,5,19,22,26,28,33,50],frequency_hz:50,frequent:[15,67],from:[1,2,3,5,6,7,8,11,12,13,15,16,19,22,23,24,27,31,33,34,35,36,37,39,40,43,44,45,46,48,49,50,52,55,57,58,61,62,63,65,66,67,68,69,70,72,73,74,75,76,77,81],from_sockaddr:61,fs:24,fseek:24,ft5x06:[37,41],ftell:24,fthat:12,ftm:66,ftp:[37,65,72],ftp_anon:65,ftp_client_sess:31,ftp_ftp:65,ftp_server:31,ftpclientsess:31,ftpserver:31,fulfil:[19,22],full:[7,46,51,72],fulli:[34,74,76],fun:23,further:72,futur:[52,65,72],fwrite:24,g:[12,24,34,46,51,55,65,69,77],g_bright:46,g_down:46,g_led:46,g_up:46,gain:[1,33,67],game:65,gamepad:[65,66],gamma:[50,55],gate:7,gaussian:[37,50,56],gb:14,gbc:14,gener:[2,19,22,27,61,65,69,72,80,81],generatedeventbas:74,generic_hid:65,geometr:12,gestur:39,get:[1,2,3,6,7,8,10,11,12,13,14,15,16,18,19,22,23,24,31,33,38,39,40,42,43,44,45,46,48,49,50,51,55,59,61,62,63,65,66,67,69,70,72,73,74,75,76,77,81],get_accumul:[19,22],get_all_mv:[2,6],get_all_mv_map:[2,6],get_bright:15,get_button_input_devic:38,get_button_st:68,get_celsiu:77,get_config:67,get_count:[18,19,22],get_dat:70,get_data:72,get_date_tim:70,get_degre:[18,19,22],get_digital_input_valu:[2,6],get_duti:50,get_electrical_angl:8,get_encoder_input_devic:38,get_error:67,get_event_data:2,get_event_flag:2,get_event_high_flag:2,get_event_low_flag:2,get_fahrenheit:77,get_free_spac:24,get_ftm_length:66,get_head:72,get_height:72,get_histori:11,get_home_button_input_devic:44,get_home_button_st:[40,45],get_id:65,get_info:76,get_input_devic:42,get_integr:67,get_interrupt_captur:48,get_interrupt_statu:66,get_ipv4_info:[61,62,63],get_jpeg_data:72,get_kei:43,get_kelvin:77,get_mechanical_degre:[19,22],get_mechanical_radian:[19,22],get_mjpeg_head:72,get_mount_point:24,get_mv:[2,3,6,77],get_num_q_t:72,get_num_touch_point:[39,40,45],get_offset:[16,72],get_output:46,get_output_cent:57,get_output_max:57,get_output_min:57,get_output_rang:57,get_packet:72,get_partition_label:24,get_payload:72,get_pin:[46,48],get_posit:33,get_power_supply_limit:7,get_q:72,get_q_tabl:72,get_quantization_t:72,get_radian:[18,19,22],get_rat:3,get_remote_info:62,get_resist:77,get_revolut:18,get_root_path:24,get_rpm:[19,22],get_rpt_head:72,get_rtp_header_s:72,get_scan_data:72,get_session_id:72,get_shaft_angl:8,get_shaft_veloc:8,get_siz:65,get_stat:13,get_terminal_s:11,get_tim:70,get_total_spac:24,get_touch_point:[39,40,45],get_touchpad_input_devic:44,get_type_specif:72,get_used_spac:24,get_user_input:11,get_user_select:74,get_valu:[13,49],get_values_fn:49,get_vers:72,get_voltag:77,get_voltage_limit:7,get_width:72,getactivechild:74,getactiveleaf:74,getiniti:74,getinputhistori:11,getlin:11,getparentst:74,getsocknam:[61,62,63],getter:[58,72],gettimerperiod:74,gettin:49,gimbal:33,github:[11,14,16,33,53,63,66,69,72,74,75],give:[61,74,76],given:[2,6,23,26,68,72,74],glitch:18,global:[3,46],go:[23,24,74],goe:[2,6],gone:76,goodby:11,googl:66,got:[2,23,72,81],gotten:[11,81],gpio:[2,7,10,13,15,18,46,48,50,69],gpio_a:13,gpio_a_h:[7,8],gpio_a_l:[7,8],gpio_b:13,gpio_b_h:[7,8],gpio_b_l:[7,8],gpio_c_h:[7,8],gpio_c_l:[7,8],gpio_config:2,gpio_config_t:2,gpio_down:13,gpio_en:[7,8],gpio_evt_queu:2,gpio_fault:[7,8],gpio_i:13,gpio_install_isr_servic:2,gpio_intr_negedg:2,gpio_isr_handl:2,gpio_isr_handler_add:2,gpio_joystick_select:13,gpio_left:13,gpio_mode_input:2,gpio_mode_output:43,gpio_num:[10,51,69],gpio_num_10:43,gpio_num_12:70,gpio_num_14:70,gpio_num_18:[16,39,40,43,45],gpio_num_19:[16,36,68],gpio_num_22:[16,36,68],gpio_num_23:16,gpio_num_2:10,gpio_num_37:10,gpio_num_45:16,gpio_num_48:16,gpio_num_4:16,gpio_num_5:16,gpio_num_6:16,gpio_num_7:16,gpio_num_8:[39,40,43,45],gpio_num_nc:36,gpio_num_t:[15,16,36],gpio_pullup:13,gpio_pullup_dis:[2,6,36],gpio_pullup_en:[1,2,13,19,22,34,39,45,46,48,66,70],gpio_pullup_t:36,gpio_right:13,gpio_select:13,gpio_set_direct:43,gpio_set_level:43,gpio_start:13,gpio_up:13,gpio_x:13,gpo:66,grab:49,gradient:12,grai:52,graphic:12,gravit:75,grb:51,greater:52,green:[12,51,52,69,75],greengrass:75,grei:75,ground:13,group:[24,61,62,63,65],group_publ:65,grow:[],gt911:[37,41],guarante:51,guard:74,gui:[15,16,59],guid:[11,80,81],h:[11,12,16,52,72],ha:[2,6,8,11,13,18,19,22,23,24,31,34,40,43,46,48,50,51,59,62,63,65,66,69,72,74,75,76,78,81],hack:11,half:[19,22,25],handl:[10,11,31,46,48,51,62,63,69,74,76],handle_all_ev:74,handle_res:11,handleev:74,handler:[2,10,63],handov:65,handover_vers:65,happen:[11,23],haptic:37,haptic_config:33,haptic_motor:33,hapticconfig:33,hardawr:50,hardwar:[8,18,28,46,50,51,72],harmless:78,hart:77,has_ev:74,has_q_tabl:72,has_stop:74,has_valu:[3,5,13,49,50,77],hash:65,have:[2,6,8,11,14,15,23,25,33,34,38,46,49,50,51,52,59,62,67,68,69,72,74,75,76,77,78,80,81],hc:65,heart:8,height:[11,15,16,72],hello:[11,66],hello_everysess:11,help:65,helper:61,henri:8,here:[11,14,19,23,34,46,48,66,67,74,75,78],hertz:36,hid:65,hid_dev_mod:66,hide_bord:75,hide_border_left:75,hide_border_right:75,hide_border_top:75,high:[2,3,6,7,10,15,18,33,43,48,59,69],high_level:10,high_limit:18,high_resolution_clock:[1,2,6,8,10,19,22,34,46,48,50,51,52,59,67,69,76,77],high_threshold_mv:2,high_water_mark:59,higher:[25,28],highlight:75,histori:[11,25,26,28,29,74],history_s:11,hmi:16,hold:[11,15,65,66],home:[38,40,44,45],hop:[61,62,63],horizont:75,host:[2,6,16,46,65,80],hot:77,hour:70,how:[8,14,15,18,67,73,74,75,77],howev:25,hpp:[0,1,2,3,5,6,7,8,10,11,12,13,14,15,16,18,19,20,22,23,24,25,26,28,29,30,31,33,34,36,38,39,40,42,43,44,45,46,48,49,50,51,52,53,54,55,57,58,59,61,62,63,65,66,67,68,69,70,72,73,74,75,76,77,78,80,81],hr:65,hs:65,hsfm:74,hsv:[12,51,68,69,70],html:[7,11,15,16,25,29,65,69,80,81],http:[2,6,7,8,11,14,15,16,19,24,25,26,29,33,34,46,52,53,61,62,63,65,66,69,72,74,75,77,80,81],http_www:65,https_www:65,hue:[12,51,69],human:[14,24,75],human_read:24,hz:[3,33],i2c:[4,19,21,22,34,37,39,40,43,45,46,47,48,51,66,68,70],i2c_cfg:[1,2,6,13,19,22,34,46,48,66],i2c_config_t:[1,2,6,13,19,22,34,46,48,66],i2c_driver_instal:[1,2,6,13,19,22,34,46,48,66],i2c_freq_hz:[1,2,6,13,19,22,34,46,48,66],i2c_master_read_from_devic:[1,2,6,13],i2c_master_write_read_devic:[19,22,34,46,48,66],i2c_master_write_to_devic:[1,2,6,13,19,22,34,46,48,66],i2c_mode_mast:[1,2,6,13,19,22,34,46,48,66],i2c_num:[1,2,6,13,19,22,34,46,48,66],i2c_num_0:[36,39,40,43,45,68,70],i2c_param_config:[1,2,6,13,19,22,34,46,48,66],i2c_port_t:36,i2c_read:34,i2c_scl_io:[1,2,6,13,19,22,34,46,48,66],i2c_sda_io:[1,2,6,13,19,22,34,46,48,66],i2c_timeout_m:[1,2,6,13,19,22,34,46,48,66],i2c_writ:34,i:[2,6,8,14,18,37,47,51,59,66,67,73,74,75,76,77],i_gpio:18,id:[2,6,10,31,34,65,72,76,78],ident:11,identifi:[34,65,72],idf:[3,5,7,10,11,36,37,50,52,63,69,80,81],ifs:24,ifstream:24,ignor:[11,18,23],iir:28,il:65,ili9331:[],imag:72,imap:65,imax:46,imax_25:46,imax_50:46,imax_75:46,immedi:[74,76],imped:[7,75],impl:[26,29],implement:[2,6,7,8,9,11,12,25,26,28,29,31,32,33,53,54,55,58,65,72,74,78],implicit:[19,22],improv:11,impuls:28,inact:65,includ:[0,1,2,3,5,6,7,8,10,11,12,13,14,15,16,18,19,20,22,23,24,25,26,28,29,30,31,33,34,36,38,39,40,42,43,44,45,46,48,49,50,51,52,53,54,55,57,58,59,61,62,63,65,66,67,68,69,70,72,73,74,75,76,77,78,80,81],incom:62,incomplet:65,increas:[10,18,52,67],increment:[2,6,18,38,46],incur:15,independ:[49,58,75],index:[2,6,18,51,58,72,77],indic:[46,48,62,63,65,66,76],individu:[6,49,53],induct:8,infinit:28,info:[1,2,3,5,6,10,13,18,23,33,34,49,51,52,59,61,62,63,67,69,72,77,78],info_rate_limit:52,inform:[12,15,19,22,26,29,46,48,49,51,53,59,61,62,63,65,66,69,74,77,80,81],infrar:69,inherit:11,init:[34,36,49,61,62],init_ipv4:61,init_low_level:66,initail:[3,77],initi:[1,2,3,5,6,7,8,10,13,15,16,18,19,22,28,34,36,38,42,43,44,46,48,49,50,55,57,61,62,63,66,69,74,76,78,80,81],inlin:[1,2,3,5,6,7,8,10,11,13,15,16,18,19,22,23,24,25,26,28,29,31,33,34,36,38,39,40,42,43,44,45,46,48,49,50,51,52,53,55,57,58,59,61,62,63,65,66,67,68,69,70,72,74,76,77,78,80,81],inout:2,input:[2,6,8,10,11,13,19,22,25,26,28,29,33,34,37,40,46,48,49,57,70],input_delay_n:16,input_driv:[38,42,44],input_valu:2,inquiri:65,insert:11,insid:2,instal:[1,2,6,10,13,19,22,34,46,48,66],instanc:[23,24,75],instant:50,instanti:59,instead:[11,31,57,73,74],instruct:28,instrument:[2,6,34],int16_t:18,int8_t:73,integ:[7,18,54,61,66],integr:67,integrator_max:[8,67],integrator_min:[8,67],intend:[53,74,76],interact:[11,21,23,24,43,47,72],interest:[13,23],interfac:[7,9,10,15,21,24,31,33,34,36,37,40,43,46,47,48,51,68,69,72],interfer:33,intermedi:65,intern:[2,11,13,16,18,25,26,28,29,34,46,48,61,74],interpol:12,interrupt:[2,10,18,46,48,66,76],interrupt_typ:10,interrupttyp:10,interv:43,intr_typ:2,introduc:57,inttrig:34,invalid:[11,12],invalid_argu:11,invers:50,invert:[13,44,46,48,50,57],invert_color:16,invert_i:44,invert_input:57,invert_output:57,invert_x:44,invoc:67,io:[15,16,24,37,53,65],io_conf:2,io_num:2,ip2str:81,ip:[31,61,62,63,72,81],ip_add_membership:[61,62,63],ip_address:[31,62,63,72],ip_callback:81,ip_event_got_ip_t:81,ip_evt:81,ip_info:81,ip_multicast_loop:[61,62,63],ip_multicast_ttl:[61,62,63],ipv4:61,ipv4_ptr:61,ipv6:61,ipv6_ptr:61,ir:69,irdaobex:65,is_a_press:13,is_act:72,is_al:31,is_b_press:13,is_charg:23,is_clos:72,is_complet:72,is_connect:[31,62,72,81],is_dir:24,is_directori:24,is_down_press:13,is_en:[7,8],is_fault:7,is_floating_point:58,is_left_press:13,is_multicast_endpoint:63,is_passive_data_connect:31,is_press:[10,13,68],is_right_press:13,is_run:[33,76,78],is_select_press:13,is_start:76,is_start_press:13,is_up_press:13,is_valid:[61,62,63],isr:[2,10],issu:11,istream:11,it_st:66,ital:75,item:[14,24],iter:[16,23,24,62,63,76,78],its:[2,3,6,19,22,23,31,33,46,48,55,59,61,62,63,66,67,74,80],itself:[15,23,38,42,44,72,76],j:75,join:[61,62,63],josh:75,joybonnet:[1,13],joystick:[2,13,37,65],joystick_config:13,joystick_i:13,joystick_select:13,joystick_x:13,jpeg:72,jpeg_data:72,jpeg_fram:72,jpeg_frame_callback_t:72,jpeg_head:72,jpegfram:72,jpeghead:72,jpg:14,js1:49,js2:49,jump:57,june:75,just:[2,13,19,22,23,65,69,72,73,74,77],k:[11,77],k_bemf:8,kbit:66,kd:[8,33,67],kd_factor_max:33,kd_factor_min:33,keep:78,keepal:62,kei:[11,43,65,66,72],kelvin:77,key_cb:43,key_cb_fn:43,keyboard:[11,37,41,65],keypad:[37,41,43],keypad_input:42,keypadinput:42,kg:75,ki:[8,67],kind:[20,74],kit:[],know:[15,19,22,23,76],known:[65,74],kohm:48,kp:[8,33,67],kp_factor:33,kv:8,kv_rate:8,l:11,label:[16,24],lack:24,lambda:[1,2,6,13,19,22,34,46,48,52,66,77],landscap:[15,16],landscape_invert:15,larg:72,larger:[3,11,72],last:[13,18,34,40,45,49,51,65,67,68,74],last_button_st:68,last_it_st:66,last_unus:13,latch:69,later:[7,16,18,78],latest:[7,11,44,49,59,67,69,77,80,81],launch:65,lazi:14,lcd:16,lcd_send_lin:16,lcd_spi_post_transfer_callback:16,lcd_spi_pre_transfer_callback:16,lcd_write:16,le:65,le_rol:65,le_sc_confirm:65,le_sc_random:65,lead:[3,12],leaf:74,learn:[34,65],least:[18,51,62,68],leav:[2,6],led:[2,37,46,69],led_callback:50,led_channel:50,led_encod:[51,69],led_encoder_st:69,led_fade_time_m:50,led_reset_cod:69,led_stip:69,led_strip:[51,69],led_task:50,ledc:50,ledc_channel_5:50,ledc_channel_t:50,ledc_high_speed_mod:[],ledc_low_speed_mod:50,ledc_mode_t:50,ledc_timer_10_bit:50,ledc_timer_13_bit:50,ledc_timer_2:50,ledc_timer_bit_t:50,ledc_timer_t:50,ledstrip:51,left:[13,16,18,42,51,68,75],legaci:65,legend:[14,75],len:[40,51],length:[2,6,16,25,28,36,39,40,45,51,58,65,66,68,69],less:[7,49,65,66,76],let:[11,15,23,59],level0:69,level1:69,level:[7,8,9,10,23,33,34,39,43,45,48,51,52,61,62,63,65,68,69,72,74,77,78],leverag:28,lh:[68,70],lib:34,libarari:73,libfmt:52,librari:[11,23,24,33,34,37,65,73,75],licens:75,life:[11,73],lifecycl:15,light:[12,38,42,44,52,73,74,75],like:[23,61],lilygo:[37,41],limit:[7,8,11,18,52,65,67],limit_voltag:[7,8],line:37,line_input:11,linear:[34,35],lineinput:11,link:[14,24],links_awaken:14,list:[2,6,24,34,65],list_directori:24,listconfig:24,listen:[31,62,72],lit:[2,6,34],littl:[23,50],littlef:24,lk:[1,2,3,5,6,8,13,18,19,22,23,34,36,39,40,45,46,48,49,50,51,67,68,69,70,74,76,77],ll:[1,2,6,13,19,22,23,34,39,40,43,45,46,48,51,66,68,70,78],ln:77,load:[13,14,65],local:65,lock:[62,66,76],log:[2,6,8,10,23,33,34,37,38,39,40,42,43,44,45,46,48,50,51,59,66,68,69,70,72,74,76,77,78],log_level:[1,2,3,5,6,7,8,10,13,15,18,19,22,33,34,36,38,39,40,42,43,44,45,46,48,49,50,51,62,63,66,67,68,69,70,72,74,76,77,78,80,81],logger1:52,logger1_thread:52,logger2:52,logger2_thread:52,logger:[1,2,3,5,6,7,8,10,13,15,18,19,22,23,24,33,34,36,37,38,39,40,42,43,44,45,46,48,49,50,51,61,62,63,66,67,68,69,70,72,74,76,77,78,80,81],logger_:[15,49],logger_config:61,logger_fn:52,logic:[2,6,13,63,65],long_local_nam:65,longer:11,loop:[8,9,11,19,22,24,33,52,76],loop_foc:8,loop_iter:52,loopback_en:[61,62,63],loos:23,lose:11,lot:[10,75],low:[2,5,6,7,8,9,10,13,18,23,48,61,65,69],low_level:10,low_limit:18,low_threshold_mv:2,lower:[18,46,48,77],lowest:[10,76,78],lowpass:[27,37],lowpass_filt:28,lowpassfilt:28,lra:[34,35],lsb:[2,6,46,48],lv_area_t:[15,16],lv_color_t:[15,16],lv_disp_drv_t:[15,16],lv_disp_flush_readi:15,lv_disp_t:[],lv_indev_t:[38,42,44],lv_tick_inc:15,lvgl:[15,16,38,42,44],lvgl_esp32_driv:16,lvgl_tft:16,m:[1,2,3,5,6,8,13,18,19,22,23,33,34,36,39,40,45,46,48,49,50,51,52,62,66,67,68,69,70,74,75,76,77],m_pi:[19,22,59],ma:77,mac:[65,66,81],mac_addr:65,mac_address:65,machin:37,macro:52,made:66,magenta:75,magic_enum_no_check_support:74,magnet:[21,33,37,75],magnetic_det:33,magnitud:[49,58,67],magnitude_squar:58,mai:[2,3,6,10,33,51,65,66,74],mailbox:66,mailto:65,main:[8,15,69],mainli:15,maintain:[15,19,22,66],make:[1,2,6,8,13,19,22,23,24,34,36,39,40,43,45,46,48,61,65,66,68,70,72,74,77],make_alternative_carri:65,make_android_launch:[65,66],make_ev:74,make_handover_request:65,make_handover_select:[65,66],make_le_oob_pair:[65,66],make_multicast:[61,62,63],make_oob_pair:65,make_shar:[8,16],make_text:[65,66],make_uniqu:[1,2,6,11,13,34,50,59,62,63,69,76],make_uri:[65,66],make_wifi_config:[65,66],makeact:74,maker:75,malloc_cap_8bit:15,malloc_cap_dma:15,manag:[5,12,13,14,15,24,37,46,48,50,62,63,65,66],mani:[8,10,18,23,62,63,81],manipul:10,manual:[2,6,11,33,72,74],manual_chid:[2,6],map:[2,6,13,49,57,72],mapped_mv:2,mapper:[37,49,56],mario:14,mark:[59,72],markdownexport:75,marker:72,mask:[46,48],maskaravivek:65,mass:[34,35],master:[1,2,6,11,13,16,19,22,34,46,48,63,66,69],match:[24,31,68,70],math:[37,53,55,57,58],matrix:42,max:[2,7,18,33,34,46,55,57,62,63,67,80],max_connect:62,max_data_s:72,max_glitch_n:18,max_led_curr:46,max_num_byt:[62,63],max_number_of_st:80,max_pending_connect:62,max_receive_s:62,max_transfer_sz:16,maximum:[7,13,19,22,46,49,57,62,63,67,72],maxledcurr:46,maybe_duti:50,maybe_mv:[3,5,77],maybe_r:3,maybe_x_mv:[13,49],maybe_y_mv:[13,49],mb:[24,65],mb_ctrl:66,mcp23x17:[37,47],mcp23x17_read:48,mcp23x17_write:48,mcpwm:[7,33],me:65,mean:[7,10,12,19,22,25,49,57,59,69,73,76,78],measur:[3,5,8,18,19,22,49,67,77],mechan:[3,8,19,22,23,31],media:65,mega_man:14,megaman1:14,megaman:14,member:[1,2,3,5,6,7,8,10,12,13,15,18,19,22,24,26,28,33,34,36,38,39,40,42,43,44,45,46,48,49,50,51,52,53,55,57,59,61,62,63,65,66,67,68,69,70,72,76,77,78,80,81],memori:[11,15,25,28,50,66,69,75,76],memset:[1,2,6,13,16,19,22,34,46,48,66],mention:11,menu:11,menuconfig:24,mere:7,messag:[1,2,6,10,13,23,24,34,45,46,48,65,66,68,70,72,73,74],message_begin:65,message_end:65,method:[8,10,18,24,53,55,67,72,73],metroid1:14,metroid:14,mhz:[],micro:16,micros_per_sec:69,middl:65,might:78,millisecond:[36,43,50],millivolt:77,mime_media:65,min:[2,33,57],minimum:[13,49,57,67],minu:72,minut:[19,22,70],mireq:16,mirror:48,mirror_i:16,mirror_x:16,miso:[],miso_io_num:16,mit:75,mix:12,mjepg:72,mjpeg:72,mkdir:24,mode:[1,2,3,6,10,13,16,19,22,33,34,46,48,50,65,66],model:[12,74],moder:5,modern:75,modif:8,modifi:[16,46,72],modulo:[19,22],monitor:37,month:70,more:[2,3,6,11,12,15,26,27,29,34,49,50,51,52,55,61,62,63,65,69,74,77],mosi:16,mosi_io_num:16,most:[3,8,13,19,22,49,67],motion:[8,33],motion_control_typ:8,motioncontroltyp:8,motoion:8,motor:[7,9,19,22,33,35,37],motor_task:8,motor_task_fn:8,motor_typ:34,motorconcept:33,motortyp:34,mount:24,mount_point:24,mous:65,move:[8,11,51,59,69,76],move_down:39,move_left:39,move_right:39,move_up:39,movement:11,movi:75,ms:15,msb:[2,6,46,48],msb_first:69,msg:74,mt6701:[8,21,37],mt6701_read:[8,22],mt6701_write:[8,22],much:[25,75],multi_byte_charact:75,multi_rev_no_det:33,multicast:[61,62],multicast_address:[61,62,63],multicast_group:[61,62,63],multipl:[3,5,8,13,33,34,35,52,67,72],multipli:[33,58,67],must:[2,5,6,8,11,18,23,24,43,59,61,62,63,65,66,73,74,76,80,81],mutabl:[58,76],mutat:76,mute:2,mutex:[1,2,3,5,6,8,13,18,19,22,23,34,36,39,40,45,46,48,49,50,51,62,66,67,68,69,70,74,76,77],mutual:45,mux:[2,6],mv:[1,2,3,5,6,49,77],mystruct:73,n:[2,3,5,6,11,13,14,18,19,22,23,24,25,29,30,36,39,40,43,45,46,48,49,50,59,62,63,66,67,68,69,70,72,73,74,75,76,77,78,81],name:[1,2,3,5,6,8,10,13,14,18,19,22,23,34,36,39,40,45,46,48,49,50,51,59,62,63,65,66,67,68,69,70,72,73,74,75,76,77,78],namespac:[1,2,6,13,24,34,75],nanosecond:18,navig:11,nby:75,ncharact:75,ncustom:75,ndef:[37,64,66],ndeflib:65,ndefmessag:65,ne:[14,68],nearest:[33,54],necessari:[8,76],need:[3,5,10,11,19,22,23,24,25,33,43,46,59,65,67,69,74,76],needs_zero_search:[19,22],neg:[51,58,67,77],negat:[13,58],neo_bff_io:51,neo_bff_num_l:51,neopixel_writ:51,nest:75,network:[37,62,63,65,80],new_address:68,new_data:[40,45],new_duti:50,new_object:73,new_siz:11,new_target:8,newli:76,newlin:59,newtonian:75,next:[11,33,34,69],nf:65,nfault:8,nfc:[37,65,66],nfcforum:65,nice:75,nicer:52,nm:8,no_timeout:76,nocolor:11,node:[61,62,63,74],nois:57,nomin:77,nominal_resistance_ohm:77,non:[3,33,57,66],nonallocatingconfig:15,none:[2,6,15,31,39,52,65,68,70,74],normal:[15,23,25,58,74],normalizd:[26,28],normalized_cutoff_frequ:[19,22,26,28],note:[1,2,3,5,6,8,10,11,13,18,19,22,23,24,31,33,34,36,39,40,45,46,48,49,51,52,62,63,67,68,69,70,73,74,75,76,77],noth:[7,59,78],notifi:[2,72,76],now:[1,2,6,8,10,11,14,19,22,23,33,34,39,40,43,45,46,48,50,51,52,59,62,63,66,67,68,69,70,76,77],ntc:[6,77],ntc_channel:6,ntc_mv:6,ntc_smd_standard_series_0402:77,ntcg103jf103ft1:77,nthe:81,nullopt:[50,63],nullptr:[8,11,19,22,24,58,62,63,66,74,81],num:72,num_connect_retri:81,num_l:51,num_periods_to_run:50,num_pole_pair:8,num_seconds_to_run:[50,52,67,76],num_steps_per_iter:76,num_task:[59,76],num_touch:44,num_touch_point:[39,40,45],number:[1,2,3,6,8,10,11,15,16,18,19,22,24,25,28,33,34,39,40,44,45,46,48,50,51,54,61,62,63,65,66,69,70,72,77,80,81],number_of_link:24,nvs_flash_init:[80,81],o:[2,6,37,47],object:[8,10,11,12,14,23,51,52,55,59,65,68,69,72,73,74,76,77,78],occur:[2,6,23,40,43,45,46,48,66,72,74],octob:75,oddli:[],off:[2,7,11,18,33,46,52,65,72,77],offset:[16,66,72],offset_i:16,offset_x:16,ofs:24,ofstream:24,ohm:[8,77],ok:[11,72],oldest:11,on_connect:81,on_disconnect:81,on_got_ip:81,on_jpeg_fram:72,on_off_strong_det:33,on_receive_callback:63,on_response_callback:[62,63],onc:[6,13,18,19,22,23,72,78],once_flag:23,one:[2,10,11,19,22,23,31,50,51,62,63,66,69,74,75,78],oneshot:[4,37],oneshot_adc:5,oneshotadc:[5,13,49],onli:[2,6,8,11,13,14,18,19,22,23,25,49,52,58,63,65,66,69,72,73,74,75,78],oob:[65,66],open:[2,6,8,9,11,24,33,62,65,80,81],open_drain:[2,6,46],oper:[2,6,12,24,26,28,29,53,55,58,67,68,70,77],oppos:12,opposit:50,optim:[8,25,54],option:[2,3,5,6,7,8,11,13,15,16,19,22,38,44,49,50,51,52,57,61,62,63,65,72,73,76,78],order:[2,6,25,26,27,30,37,51,52,62],oreilli:65,org:[25,26,29,61,62,63,65,77],orient:[8,15],origin:24,oscil:[2,57],osr_128:[2,6],osr_16:[2,6],osr_2:[2,6],osr_32:[2,6],osr_4:[2,6],osr_64:[2,6],osr_8:[2,6],ostream:11,ostringstream:14,other:[2,6,8,11,12,15,58,61,62,63,66,67,73,74,76,80],otherwis:[2,6,7,8,10,13,19,22,23,31,33,34,40,43,46,48,49,50,62,63,65,66,69,70,72,74,76,78,81],our:[50,61,62,63,76],out:[11,14,24,59,61,62,63,65,69,73,74,75,77],output:[2,6,8,9,11,18,23,24,25,26,28,29,31,44,46,48,50,52,55,57,59,66,67,68,70],output_cent:57,output_drive_mode_p0:46,output_invert:50,output_max:[8,57,67],output_min:[8,57,67],output_mod:[2,6],output_rang:57,outputdrivemodep0:46,outputmod:[2,6],outsid:[2,11,12],over:[2,7,21,24,47,50,60,62,63,72,76],overflow:[18,25],overhead:[15,23],overload:24,oversampl:[2,6],oversampling_ratio:[2,6],oversamplingratio:[2,6],overstai:52,overth:[2,6],overwrit:[46,72,78],own:[3,15,19,22,31,46,48,61,62,63,80],owner:24,p0:46,p0_0:46,p0_1:46,p0_2:46,p0_3:46,p0_5:46,p1:46,p1_0:46,p1_1:46,p1_5:46,p1_6:46,p1_7:46,p1_8:46,p:[2,6,11,14,67,75],pa_0:48,pack:13,packag:65,packet:[61,62,63,65,72],packet_:72,pad:13,padding_bottom:75,padding_left:75,padding_right:75,padding_top:75,page:[24,65,77],pair:[8,65,66],panel:44,param:[1,2,6,8,15,19,22,23,34,39,40,43,44,45,46,48,49,51,61,62,63,66,68,69,70,76,81],paramet:[1,2,3,5,6,7,8,10,11,12,13,15,16,19,20,22,23,24,25,26,28,29,31,33,34,36,38,39,40,42,43,44,45,46,48,49,50,51,52,53,55,57,58,61,62,63,65,66,67,68,69,70,72,74,76,77,78,80,81],parent:74,pars:[14,59,72],part:[7,16,33,44,77],parti:73,partit:24,partition_label:24,pass:[2,6,10,16,23,31,52,57],passiv:31,password:[31,65,80,81],pasv:31,pat:65,path:[24,31,72],paul:75,paus:[15,72],payload:[65,66,72],payload_id:66,payload_s:72,pb_7:48,pdf:[2,6,19,34,46,65,66,69,77],pend:62,per:[1,2,3,6,8,19,22],perceiv:12,percent:50,percentag:[7,33,50],perform:[2,3,5,6,12,24,49,76],perhipher:50,period:[10,13,15,19,22,23,36,39,40,45,46,48,59,66,68,70,74,78],peripher:[7,18,33,35,43,50,51,65,69],peripheral_centr:65,peripheral_onli:[65,66],permeabl:75,permiss:24,permitt:75,person:65,phase:[7,8],phase_induct:8,phase_resist:8,phillip:75,phone:[65,66],photo:66,php:65,pick:18,pico:49,pid:[8,33,37],pid_config:67,pin:[1,2,6,7,8,10,13,15,16,34,36,43,46,48,50,69,76,78],pin_bit_mask:2,pin_mask:48,pinout:8,pixel:[15,16,51,72],pixel_buffer_s:[15,16],place:[23,33],placehold:[39,40,43,45,68,70],plai:[34,72,75],plan:77,planck:75,platform:[52,76,78],play_hapt:33,playback:34,pleas:[11,12,14,29,34,74,75],plot:[2,6],pn532:65,point:[12,18,24,25,28,33,37,39,40,44,45,50,53,54,58,62,63,65,66,79,81],pointer:[1,2,6,15,16,19,22,25,28,33,34,44,46,48,49,51,61,62,66,69,72,74,76,81],pokemon:14,pokemon_blu:14,pokemon_r:14,pokemon_yellow:14,polar:48,pole:8,poll:[13,19,22,39,40,43,45,46,48,66,68,70],polling_interv:43,pomax:53,pop:65,popul:63,port0:[46,48],port1:[46,48],port:[8,15,31,36,39,40,43,45,46,48,61,62,63,68,70,72],port_0_direction_mask:[46,48],port_0_interrupt_mask:[46,48],port_1_direction_mask:[46,48],port_1_interrupt_mask:[46,48],port_a:48,port_a_direction_mask:[],port_a_interrupt_mask:[],port_b:48,port_b_direction_mask:[],port_b_interrupt_mask:[],portmax_delai:2,portrait:[15,16],portrait_invert:15,porttick_period_m:[1,2,6,13,19,22,34,46,48,66],pos_typ:24,posit:[8,11,16,18,19,22,33,44,45,49,57],posix:[60,61],possibl:[2,6,7,15,57,65],post:65,post_cb:16,post_transfer_callback:15,poster:65,potenti:[3,25,31,68,70],power:[2,6,7,8,43,51,65],power_ctrl:43,power_st:65,power_supply_voltag:[7,8],pranav:14,pre:[16,67,69],pre_cb:16,precis:69,preconfigur:34,predetermin:[2,6],prefer:65,prefix:[2,6,24],prepend:52,present:[36,45,65,72],preset:34,press:[2,10,11,13,40,43,44,45,68],prevent:[15,67],previou:[11,46,50,78],previous:[7,57],primari:69,primarili:11,primary_data:69,print:[2,3,5,6,11,13,14,18,19,22,23,36,39,40,43,45,46,48,49,50,52,59,62,63,66,67,68,69,70,72,73,74,75,76,77,78,81],printf:[13,19,22,46,48,66],prior:[66,80,81],prioriti:[3,8,10,15,52,59,76,78],privat:11,probe:36,probe_devic:[36,43],process:[50,62,63,76],processor:[2,6,28,76],produc:12,product:[46,58,69,74,77],profil:33,programm:2,programmed_data:66,project:[7,11,31,68,69,70,72,80,81],prompt:11,prompt_fn:11,proper:[12,74],properli:[5,72],proport:67,protocol:[31,51,62,63,69],protocol_examples_common:11,prototyp:[23,44,70],provid:[1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,21,22,23,24,25,26,27,28,29,30,32,33,35,36,37,38,40,42,43,44,46,47,48,49,50,51,52,53,54,55,57,58,59,60,61,62,63,65,66,67,68,69,70,72,73,74,75,76,77,78,79,81],prt:61,pseudost:74,psram:75,pub:23,publish:[10,23],pull:[2,6,46,48],pull_up_en:2,pulldown:10,pulldown_en:10,pullup:[10,36],pullup_en:10,puls:[2,6,18,69],pulsed_high:[2,6],pulsed_low:[2,6],pulsing_strong_1:34,pulsing_strong_2:34,pure:[18,74],push:[2,6],push_back:75,push_pul:[2,6,46],put:66,pwm:[7,8,9,34,50],pwmanalog:34,py:49,python:59,q0:72,q0_tabl:72,q1:72,q1_tabl:72,q:[8,28,72],q_current_filt:8,q_factor:28,qt:49,qtpy:36,quadhd_io_num:16,quadratur:18,quadwp_io_num:16,qualiti:28,quantiti:75,quantiz:72,queri:36,question:[11,14,50,66,75],queu:69,queue:[2,10,11,69],queue_siz:16,quickli:74,quit:66,quit_test:[13,19,22,48,66,68],quote_charact:14,qwiic:[36,68],qwiicn:[37,70],r0:77,r1:[2,6,77],r25:77,r2:[2,6,77],r:[12,24,46,51,57,65,69,77],r_0:77,r_bright:46,r_down:46,r_led:46,r_scale:77,r_up:46,race:50,rad:8,radian:[8,18,19,22,58],radio:[65,66],radio_mac_addr:66,radiu:49,rainbow:[51,69],ram:15,ranav:[14,75],random:65,random_valu:65,rang:[1,7,12,19,22,24,26,28,33,35,37,49,55,56,77,80],range_mapp:57,rangemapp:[49,57],rate:[1,3,8,19,22,46,48,52],rate_limit:52,ratio:[2,6],ration:53,raw:[1,2,5,6,8,13,19,22,49,53,61,65,66,68],rb:24,re:[11,13,19,22,34,61,62,63,69,74,77],reach:[34,62,66,74],read:[1,2,3,5,6,8,10,11,13,19,22,24,34,36,38,39,40,42,43,44,45,46,48,49,62,66,68,70,77],read_address:68,read_at_regist:[36,39,68,70],read_at_register_fn:39,read_button_accumul:68,read_current_st:68,read_data:[36,40],read_fn:[1,2,6,19,22,34,38,42,43,45,46,48,66,70],read_gestur:39,read_joystick:[13,49],read_kei:43,read_len:40,read_mv:[5,13,49,77],read_mv_fn:77,read_raw:5,read_siz:36,read_valu:14,readabl:[14,24,75],reader:[3,5,49],readi:[43,78],readm:75,readthedoc:65,real:[23,34],realli:[14,73,74,75],realtim:34,reason:[73,76],receic:23,receiv:[2,16,61,62,63,66,72],receive_callback_fn:[61,62,63],receive_config:63,receiveconfig:63,recent:[2,3,8,13,19,22,49,67],recommend:[19,22,23,49,76],record:[65,66],record_data:66,rectangular:49,recurs:[24,74],recursive_directory_iter:24,recvfrom:[61,63],red:[12,14,51,52,69,75],redraw:[11,15],redrawn:11,reepres:72,refer:37,reference_wrapp:33,refresh:15,reg:66,reg_addr:[19,22,34,36,46,48,66],regard:[19,22],regardless:49,region:[2,6],regist:[2,6,10,19,22,23,34,36,38,39,42,44,46,48,66,68,70,72],register_address:[36,70],registr:23,registri:23,reinit:62,reiniti:62,reistor:46,rel:57,relat:[11,50],releas:[10,75],relev:[24,77],reli:74,reliabl:[19,22,62],remain:52,remot:[37,62,63,65],remote_control:65,remote_info:63,remov:[7,11,23,24],remove_publish:23,remove_subscrib:23,renam:24,render:[15,59],repeat:78,repeatedli:[69,76,78],replac:11,report:66,repres:[12,19,22,31,50,58,65,66,67,68,69,72],represent:[12,65,75],request:[2,6,31,61,62,63,65,66,72],requir:[8,66,75],rescal:12,reserv:65,reset:[2,6,16,18,66,67,69],reset_fn:69,reset_pin:16,reset_st:67,reset_tick:69,reset_valu:16,resist:[8,77],resistor:[10,46,77],resistordividerconfig:77,resiz:[11,24,59,76],resolut:[50,69],resolution_hz:[51,69],resolv:[31,68,70],reson:[34,35],resourc:[5,61,62,63,66,69],respect:[4,72,74],respond:[61,62,63],respons:[15,24,28,31,65,67,72],response_callback_fn:[61,62,63],response_s:[62,63],response_timeout:63,restart:[74,78],restartselect:74,restrict:[19,22],result:[2,3,6,11,12,58,72],resum:15,ret:16,ret_stat:69,retri:[72,81],retriev:[3,13,44,49],return_to_center_with_det:33,return_to_center_with_detents_and_multiple_revolut:33,reusabl:[11,37],revers:[62,63],revolut:[18,19,22,33],rf:66,rf_activ:66,rf_get_msg:66,rf_intterupt:66,rf_put_msg:66,rf_user:66,rf_write:66,rfc:[65,72],rfid:[65,66],rgb:[12,51,68,69,70],rh:[12,58,68,70],right:[8,11,13,31,42,51,66,68,75],rise:[10,34,66,69],rising_edg:10,risk:25,rmdir:24,rmt:[37,51],rmt_bytes_encoder_config_t:69,rmt_channel_handle_t:69,rmt_clk_src_default:69,rmt_clock_source_t:69,rmt_encod:69,rmt_encode_state_t:69,rmt_encoder_handle_t:69,rmt_encoder_t:69,rmt_encoding_complet:69,rmt_encoding_mem_ful:69,rmt_encoding_reset:69,rmt_symbol_word_t:69,rmtencod:[51,69],robust:[11,52],robustli:57,role:65,root:[24,31,74],root_list:24,root_menu:11,root_path:24,rotari:33,rotat:[8,15,16,19,22,33,34,35,51,58,69],round:54,routin:49,row:[14,75],row_index:14,row_t:75,rpm:[8,19,22],rpm_to_rad:8,rstp:65,rt_fmt_str:52,rtc:[37,70],rtcp:72,rtcp_packet:72,rtcp_port:72,rtcppacket:72,rtd:65,rtp:[34,72],rtp_jpeg_packet:72,rtp_packet:72,rtp_port:72,rtpjpegpacket:72,rtppacket:72,rtsp:[37,65],rtsp_client:72,rtsp_path:72,rtsp_port:72,rtsp_server:72,rtsp_session:72,rtspclient:72,rtspserver:72,rtspsession:72,rule:75,run:[3,8,11,15,19,22,23,31,33,43,50,52,59,75,78],runtim:52,s2:[3,16],s3:[3,13,45],s:[2,6,8,9,10,11,12,14,19,22,23,31,33,46,48,49,50,51,52,57,59,63,68,69,73,74,75,76,77],s_isdir:24,safe:[50,67],same:[2,5,6,8,23,65,67,78],sampl:[1,2,3,6,8,11,19,22,25,26,28,29,66,67,77],sample_mv:[1,13],sample_r:1,sample_rate_hz:[3,77],sandbox:24,sar:[2,6],sarch:[19,22],satisfi:74,satur:[12,67],scalar:58,scale:[8,55,58,67,77],scaler:55,scan:[2,6,72,81],scan_data:72,scenario:[80,81],schedul:78,scheme:8,scl:[2,6,36],scl_io_num:[1,2,6,13,19,22,34,36,39,40,43,45,46,48,66,68,70],scl_pullup_en:[1,2,6,13,19,22,34,36,39,45,46,48,66,70],sclk:16,sclk_io_num:16,scope:76,scottbez1:33,screen:[11,16],sda:36,sda_io_num:[1,2,6,13,19,22,34,36,39,40,43,45,46,48,66,68,70],sda_pullup_en:[1,2,6,13,19,22,34,36,39,45,46,48,66,70],sdp:72,search:[19,22],second:[1,2,3,8,19,22,26,27,37,46,48,50,52,58,70,72,76,77,78],secondari:15,seconds_per_minut:[19,22],seconds_since_start:59,section:[12,26,27,37],sectionimpl:29,secur:[65,80,81],security_manager_flag:65,security_manager_tk:65,see:[2,6,8,11,12,14,15,16,18,25,26,29,34,49,53,59,61,62,63,65,66,69,74,75,77,80,81],seek_end:24,seek_set:24,seekg:24,seem:[11,24,72],segment:15,sel:2,select:[2,3,13,31,34,51,65,68,74],select_bit_mask:2,select_librari:34,select_press:2,select_valu:2,self:45,send:[10,15,16,31,36,51,62,63,66,69,72],send_bright:51,send_command:16,send_config:[62,63],send_data:16,send_fram:72,send_request:72,send_rtcp_packet:72,send_rtp_packet:72,sendconfig:63,sender:[61,62,63],sender_info:[61,62,63],sendto:61,sens:[8,45],sensor:[8,19,22,45,77],sensor_direct:8,sensorconcept:8,sensordirect:8,sent:[2,6,16,31,51,62,63,69,72],sentenc:75,separ:[13,14,15,46,59],septemb:75,sequenc:[2,6,23,34,59,65,66,74],seri:[29,72,77],serial:[10,21,23,34,37,43,46,47,48,65,66,72],serializa:73,series_second_order_sect:[25,29],serizalizt:14,server:[32,37,60,61],server_address:[62,63,72],server_config:63,server_port:72,server_socket:[62,63],server_task:62,server_task_config:[62,63],server_task_fn:62,server_uri:72,servic:[2,65],session:[11,31,69,72],session_st:69,set:[1,2,6,7,8,10,11,15,16,19,22,23,34,40,43,45,46,48,49,50,51,54,55,57,59,61,62,63,65,66,68,69,70,72,74,77,78,80,81],set_al:51,set_analog_alert:2,set_ap_mac:81,set_bright:15,set_calibr:49,set_config:67,set_dat:70,set_date_tim:70,set_deadzon:49,set_digital_alert:2,set_digital_output_mod:[2,6],set_digital_output_valu:[2,6],set_direct:[46,48],set_drawing_area:16,set_duti:50,set_encod:[51,69],set_fade_with_tim:50,set_handle_res:11,set_histori:11,set_history_s:11,set_id:[65,66],set_input_polar:48,set_interrupt:46,set_interrupt_mirror:48,set_interrupt_on_chang:48,set_interrupt_on_valu:48,set_interrupt_polar:48,set_label:16,set_log_callback:74,set_log_level:23,set_met:16,set_mod:34,set_motion_control_typ:8,set_offset:16,set_payload:72,set_phase_st:7,set_phase_voltag:8,set_pin:[46,48],set_pixel:51,set_pull_up:48,set_pwm:7,set_receive_timeout:[61,62,63],set_record:66,set_session_log_level:72,set_tag:52,set_text:75,set_tim:70,set_verbos:52,set_vers:72,set_voltag:7,set_waveform:34,setactivechild:74,setcolor:11,setdeephistori:74,sethandleres:11,setinputhistori:11,setinputhistorys:11,setnocolor:11,setparentst:74,setpoint:[8,33],setshallowhistori:74,setter:[58,72],setup:[2,72],sever:[21,27,47],sftp:65,sgn:54,shaft:[8,19,22],shallow:74,shallow_history_st:74,shallowhistoryst:74,shamelessli:75,shape:55,share:65,shared_ptr:8,sharp_click:34,sheet:[2,6],shield:13,shift:[51,55,68],shift_bi:51,shift_left:51,shift_right:51,shifter:55,shop:[46,69],short_local_nam:65,shorten:65,shot:78,should:[7,8,11,12,13,15,16,24,25,28,43,48,49,50,51,58,61,62,63,65,67,68,69,72,74,76,78],shouldn:[24,52],show:[11,51,74,76],showcas:23,shown:52,shut:76,side:[7,32],sign:[18,54,57],signal:[2,13,15,25,26,28,29,34,51,67,69],signatur:[43,45,76],signific:68,similar:69,simpl:[0,5,10,23,24,30,31,36,43,52,65,67,73,76,77],simple_callback_fn:76,simpleconfig:76,simplefoc:8,simpler:[50,69],simpli:[2,3,6,11,19],simplifi:72,simultan:[11,65],sin:59,sinc:[2,8,18,19,22,23,24,43,46,68,69,72,76,77],singl:[2,5,6,18,33,38,51,52],single_unit_1:[3,77],single_unit_2:3,singleton:[23,24],sinusoid:8,sip:65,sixteen:1,size:[10,11,15,23,24,34,43,59,62,63,65,66,69,70,72,73,76,77,78],size_t:[1,2,3,6,8,10,11,13,14,15,16,18,19,22,23,24,25,26,28,29,34,36,39,40,43,45,46,48,50,51,52,59,61,62,63,68,69,70,72,73,75,76,78,81],sizeof:[1,2,6,13,16,19,22,34,46,48,66,69,72],sk6085:69,sk6805:69,sk6805_10mhz_bytes_encoder_config:69,sk6805_freq_hz:51,sk6812:51,sleep:[1,2,3,5,6,8,13,18,19,22,23,34,36,39,40,45,46,48,49,50,51,52,59,67,68,69,70,74,76,77,78],sleep_for:[3,10,16,23,43,50,51,52,59,62,63,67,72,74,76,78,81],sleep_until:76,slope:55,slot:34,slow:5,small:[33,55],smart:65,smartknob:33,smb:65,snap:33,snprintf:76,so:[1,2,5,6,8,11,13,14,16,18,19,22,23,24,27,31,33,34,37,45,46,48,51,57,59,66,67,69,72,74,75,76,77,78],so_recvtimeo:[61,62,63],so_reuseaddr:[61,62,63],so_reuseport:[61,62,63],sockaddr:61,sockaddr_in6:61,sockaddr_in:61,sockaddr_storag:[61,62,63],socket:[31,37,60,72],socket_fd:[61,62,63],soft_bump:34,soft_fuzz:34,softwar:[2,6,15,23],software_rotation_en:[15,16],some:[1,2,6,8,11,13,19,21,22,23,24,27,33,34,46,48,52,54,59,61,65,66,69,74,76],someth:[15,76],sometim:11,somewhat:33,sos_filt:29,sosfilt:[26,29],sourc:[63,69],source_address:61,sp:65,sp_hash_c192:65,sp_hash_c256:65,sp_hash_r256:65,sp_random_r192:65,space:[8,12,24,33,51,69,75],space_vector_pwm:8,sparignli:57,sparkfun:[13,68],spawn:[19,22,31,72,74,76],spawn_endevent_ev:74,spawn_event1_ev:74,spawn_event2_ev:74,spawn_event3_ev:74,spawn_event4_ev:74,specfici:1,special:[20,34,46,69],specif:[12,33,35,38,42,44,72,74,76],specifi:[2,6,19,22,24,33,52,63,72,78],speed:[8,19,22,36,50,62,75],speed_mod:50,spi2_host:16,spi:[16,19,22,48],spi_bus_add_devic:16,spi_bus_config_t:16,spi_bus_initi:16,spi_device_interface_config_t:16,spi_dma_ch_auto:16,spi_dmaconfig:[],spi_num:16,spi_queue_s:16,spic:16,spics_io_num:16,spike:55,spimast:[],spinum:[],spitransfers:[],sporad:5,spot:8,sps128:1,sps1600:1,sps16:1,sps2400:1,sps250:1,sps32:1,sps3300:1,sps475:1,sps490:1,sps64:1,sps860:1,sps8:1,sps920:1,squar:58,sr:65,ssid:[65,66,80,81],st25dv04k:66,st25dv:[37,64],st25dv_read:66,st25dv_write:66,st7789_defin:16,st7789v_8h_sourc:16,st:[24,66],st_mode:24,st_size:24,sta:[37,79],stabl:65,stack:[10,23,59,76,78],stack_size_byt:[1,2,6,8,13,19,22,23,34,46,48,51,59,62,63,66,69,76,78],stackoverflow:[24,66,75],stand:8,standalon:[21,47],standard:[24,52,57,72],star:34,start:[1,2,3,5,6,8,10,11,13,15,16,18,19,22,23,31,33,34,36,39,40,43,45,46,48,49,50,51,52,58,59,60,62,63,66,67,68,69,70,72,74,76,77],start_fast_transfer_mod:66,start_fram:51,start_receiv:63,startup:[19,22],stat:[24,59],state:[7,10,13,19,22,23,25,26,28,29,34,37,39,40,44,45,46,48,59,65,66,67,68,69,70],state_a:7,state_b:7,state_bas:74,state_c:7,state_machin:74,state_of_charg:23,statebas:74,static_cast:[2,52,69],station:[37,79,80],statist:2,statistics_en:2,statu:[2,66],std:[1,2,3,5,6,8,10,11,13,14,15,16,18,19,22,23,29,31,33,34,36,39,40,43,44,45,46,48,49,50,51,52,53,57,58,59,60,61,62,63,65,66,67,68,69,70,72,73,74,75,76,77,78,80,81],stdby:8,stdin:74,stdin_out:11,stdout:74,steinhart:77,step:76,still:49,stop:[1,2,3,5,6,8,13,15,18,19,22,23,31,33,34,36,39,40,43,45,46,48,49,50,51,59,62,63,66,67,68,69,70,72,74,77,78,81],stop_fast_transfer_mod:66,storag:[11,61],store:[11,13,16,24,30,55,65,66,72,77],stori:75,str:14,strcutur:16,stream:[11,14,72],streamer:72,strength:33,strictli:73,string:[10,11,14,23,24,52,59,61,62,63,65,72,73,76,80,81],string_view:[10,16,24,31,52,62,63,65,66,72,74,76,78],strip:[37,69],strong:33,strong_buzz:34,strong_click:34,strongli:73,struct:[1,2,3,5,6,7,8,10,12,13,15,18,19,22,23,24,26,28,30,33,34,36,38,39,40,42,43,44,45,46,48,49,50,51,52,53,55,57,59,61,62,63,65,66,67,68,69,70,72,73,76,77,78,80,81],structur:[1,2,6,8,13,15,16,23,34,38,42,43,44,46,48,49,50,53,55,61,62,63,65,67,70,74,80,81],sub:[11,23],sub_menu:11,sub_sub_menu:11,subclass:[29,61,72,74],subdirectori:24,submenu:11,submodul:11,subscib:23,subscrib:[10,23],subscript:23,subsequ:[2,65],subset:13,substat:74,subsub:11,subsubmenu:11,subsystem:[3,5,15,50],subtract:58,subystem:81,succe:[39,68],success:[1,2,6,19,22,34,36,43,46,48,66,70,72],successfulli:[18,23,61,62,63,69,72,73],suffix:52,suggest:69,suit:12,sulli:75,super_mario_1:14,super_mario_3:14,super_mario_bros_1:14,super_mario_bros_3:14,suppli:[7,77],supply_mv:77,support:[2,6,8,11,12,13,18,20,24,34,39,45,46,51,60,65,66,72],sure:[8,72],swap:44,swap_xi:44,symlink:[2,6,34],symmetr:55,syst_address:66,system:[11,14,23,37,59,66,73,74,75,76,77],sytl:73,t5t:66,t:[1,2,3,5,6,8,13,14,16,18,19,22,23,24,34,36,37,39,40,41,45,46,48,49,50,51,52,53,55,57,58,59,62,63,65,66,67,68,69,70,74,76,77,78],t_0:77,t_keyboard:43,ta:13,tabl:[2,6,24,59,65,72,75,77],tabul:37,tag:[52,65,66],take:[5,24,75],taken:24,talk:[46,51],target:[8,81],task1:23,task2:23,task:[1,2,3,5,6,8,10,13,15,18,19,22,23,31,33,34,36,37,39,40,43,45,46,48,49,50,51,62,63,66,67,68,69,70,72,74,77,78],task_1_fn:23,task_2_fn:23,task_callback:59,task_config:63,task_fn:[3,5,13,18,19,22,34,36,39,40,45,46,48,49,51,59,66,67,68,69,70,74,76,77],task_id:59,task_iter:76,task_monitor:59,task_nam:[59,76],task_prior:3,task_stack_size_byt:[10,59],taskmonitor:59,tb:13,tcp:[37,60,72],tcp_socket:62,tcpclientsess:62,tcpobex:65,tcpserver:62,tcpsocket:[61,62,72],tcptransmitconfig:62,tdata:73,tdk:77,tdown:13,tear:[61,62,63,76],teardown:72,tel:65,tell:[51,69],tellg:24,telnet:65,temp:77,temperatur:77,temperature_celsiu:23,templat:[8,18,20,24,26,29,31,33,52,53,57,58,76],temporari:65,termin:[11,74,75,76],test2:24,test:[3,8],test_dir:24,test_fil:24,test_start:76,texa:[2,6,34],text:65,tflite:16,tft_driver:16,tft_espi:16,tftp:65,th:[15,30],than:[7,11,15,49,52,66,72],thank:11,thei:[11,13,33,72,74,76],them:[2,6,11,12,13,23,55,69,72,74,76],therefor:[3,5,11,12,19,22,34,57,76],thermistor:37,thermistor_ntcg_en:77,thi:[1,2,3,5,6,7,8,10,11,12,13,14,15,16,18,19,22,23,24,25,31,33,34,36,37,39,40,43,45,46,48,49,50,51,52,57,58,59,61,62,63,65,66,67,68,69,70,72,73,74,75,76,77,78,80,81],thin:55,thing:59,think:11,third:73,this_thread:[3,10,16,23,43,50,51,52,59,62,63,67,72,74,76,78,81],those:[23,46,52,59,74],though:[23,76],thread:[23,31,33,50,59,62,63,67,72,76],threshold:[2,6],through:[2,6,8,33,34,51,57,69,74],throughput:3,ti:[2,6,34],tick:74,tickselect:74,time:[2,5,6,7,11,13,19,22,23,24,34,46,48,50,51,52,59,63,66,67,68,69,70,74,76,77,78,81],time_point:24,time_t:[24,31],time_to_l:[61,62,63],timeout:[36,61,62,63,76],timeout_m:36,timer:[37,50],timer_fn:78,tinys3:[8,69],tk:65,tkeyboard:43,tkip:65,tla2528:[4,37],tla:6,tla_read:6,tla_read_task_fn:6,tla_task:6,tla_writ:6,tleft:13,tloz_links_awaken:14,tloz_links_awakening_dx:14,tm:59,tmc6300:8,tname:73,tnf:65,to_str:75,to_time_t:[24,31],toggl:43,toi:75,toler:77,tone:51,too:[11,72,75],top:74,topic:[10,23],torqu:8,torque_control:8,torquecontroltyp:8,total:[18,24],total_spac:24,touch:[37,41,44],touchpad:[37,41,45,65],touchpad_input:44,touchpad_read:44,touchpad_read_fn:44,touchpadinput:44,tp:[24,31],tpd_commercial_ntc:77,trace:59,track:67,transact:69,transaction_queue_depth:69,transceiv:37,transfer:[16,27,32,37,66],transfer_funct:30,transferfunct:[29,30],transform:[8,23],transit:74,transition_click_1:34,transition_hum_1:34,transmiss:[62,69],transmit:[23,51,61,62,63,65],transmit_config:62,transmitconfig:[],transmitt:69,transport:72,tree:[63,69,74],tri:11,trigger:[2,5,6,33,34,48,66],tright:13,trim_polici:14,trim_whitespac:14,triple_click:34,truncat:11,ts:34,tselect:13,tstart:13,tt1535109:75,tt1979376:75,tt21100:[37,41],tt3263904:75,ttgo:[],ttl:[61,62,63],tup:13,tupl:77,turn:[2,15,52,65],tvalu:73,two:[1,12,13,15,46,48,52,59,69],twothird:1,tx:65,tx_config:[],tx_power_level:65,type:[1,2,4,6,8,10,11,13,15,18,19,21,22,23,24,27,33,34,37,39,40,43,44,45,46,47,48,49,51,52,58,61,62,63,65,66,68,69,70,72,73,76,77,78,81],type_specif:72,typedef:[1,2,6,8,10,11,15,19,22,23,34,39,40,43,44,45,46,48,49,51,61,62,63,66,68,69,70,76,77,78,81],typenam:[24,31,52,53,57,58],typic:42,u:[58,65],ua:7,uart:11,uart_serial_plott:[2,6],ub:7,uc:7,ud:8,udp:[37,60,72],udp_multicast:63,udp_socket:63,udpserv:63,udpsocket:[61,63],uic:[65,66],uint16_t:[1,15,16,31,39,40,44,45,46,48,65,66,69,70],uint32_t:[2,13,15,16,36,50,65,72,73],uint64_t:[65,66],uint8_t:[1,2,6,10,13,15,16,19,22,23,34,36,39,40,43,44,45,46,48,51,52,61,62,63,65,66,68,69,70,72,73,80,81],uint:69,uk:65,unabl:[31,68,70],unbound:33,unbounded_no_det:33,uncalibr:[13,49],uncent:57,unchang:65,under:[18,24],underflow:18,underlin:75,understand:65,unicast:63,uniqu:[62,72,76],unique_lock:[1,2,3,5,6,8,13,18,19,22,23,34,36,39,40,45,46,48,49,50,51,62,66,67,68,69,70,74,76,77],unique_ptr:[59,62,72,76],unit:[0,3,5,8,13,18,24,25,49,58,77],univers:11,universal_const:75,unknown:[8,65,81],unless:23,unlimit:11,unlink:24,unmap:49,unord:[2,6,63],unordered_map:[2,6,72],unregist:[38,42,44],unreli:63,until:[2,6,11,23,24,33,34,50,51,62,63,69,74,76,78],unus:[13,18,33],unweight:53,unwind:74,up:[2,3,11,13,15,18,24,34,39,42,43,45,46,48,55,62,66,67,68,72,74,76,78],upat:15,updat:[7,8,10,13,15,19,22,25,26,28,29,33,40,45,46,48,49,50,52,55,57,58,61,66,67,68,74],update_address:68,update_detent_config:33,update_period:[8,15,19,22],upper:[16,77],uq:8,uri:[65,72],urn:65,urn_epc:65,urn_epc_id:65,urn_epc_pat:65,urn_epc_raw:65,urn_epc_tag:65,urn_nfc:65,us:[1,2,3,5,6,7,8,9,10,11,12,13,15,16,18,19,20,22,23,24,25,26,31,32,33,34,35,39,40,42,43,45,46,48,49,50,51,52,53,55,57,59,60,61,62,63,65,66,68,69,70,72,73,74,75,76,77,78],usag:[11,14,75],used_spac:24,user:[2,3,5,6,9,10,11,16,18,19,22,31,33,34,46,48,68,69,70,72,76],user_data:[],usernam:31,ust:23,util:[24,49,52,54,58,59,61,65,66],uuid:65,uuids_128_bit_complet:65,uuids_128_bit_parti:65,uuids_16_bit_complet:65,uuids_16_bit_parti:65,uuids_32_bit_complet:65,uuids_32_bit_parti:65,v:[8,12,57,58],v_in:77,vacuum:75,val_mask:48,valid:[31,34,51,61,62,63,72],valu:[1,2,3,5,6,10,12,13,14,15,18,19,22,24,28,33,34,39,40,46,48,49,50,51,52,53,54,55,57,58,65,66,67,68,69,70,72,73,75,76,77],vari:33,variabl:[16,49,52,76],varieti:[2,6],variou:51,ve:[11,24,76],vector2d:[37,53,56],vector2f:[49,68,70],vector:[2,3,5,6,8,10,13,14,23,24,28,49,50,51,58,59,61,62,63,65,66,72,73,76,77],veloc:[8,19,22],velocity_filt:[8,19,22],velocity_filter_fn:[19,22],velocity_limit:8,velocity_openloop:8,velocity_pid_config:8,veloicti:8,veolciti:[19,22],verbos:[1,2,3,5,6,7,8,10,13,15,18,19,22,23,33,34,36,38,39,40,42,43,44,45,46,48,49,50,51,62,63,66,67,68,69,70,72,74,76,77,78,80,81],veri:11,version:[6,11,58,65,72],via:[6,24,34,46,48],vibe:34,vibrat:[33,34],video:[15,72],view:[62,63,65],vio:8,virtual:[13,74],visual:59,volt:[2,6,7],voltag:[1,2,3,5,6,7,8,9,23,77],voltage_limit:7,vram0:15,vram1:15,vram:15,vram_size_byt:15,vram_size_px:15,vtaskgetinfo:59,w:[24,34,52,57],wa:[1,2,3,5,6,7,10,11,13,16,18,19,22,23,31,34,39,43,45,48,49,61,62,63,66,68,69,70,72,74,76],wai:[1,2,3,5,6,8,11,13,14,18,19,22,24,33,34,36,39,40,45,46,48,49,51,65,67,68,69,70,73,74,75,76,77],wait:[23,33,43,62,63,76],wait_for:[1,3,5,13,18,19,22,23,34,36,39,40,45,46,48,49,50,51,62,66,67,68,69,70,74,76],wait_for_respons:[62,63],wait_tim:50,wait_until:[2,6,8,76,77],want:[1,2,3,5,6,8,11,13,15,18,19,22,23,33,34,46,48,49,50,51,59,62,63,66,67,69,74,76,77,78],warn:[1,2,3,5,6,7,8,10,13,15,18,19,22,23,24,34,36,38,39,40,42,43,44,45,46,48,49,50,51,52,62,63,66,67,68,69,70,72,76,77,78,80,81],warn_rate_limit:52,watch:65,water:59,wave:55,waveform:34,we:[1,2,6,7,8,11,13,19,22,23,24,33,34,39,40,43,45,46,48,50,51,61,62,63,66,68,69,70,74,76,77,78],weak:33,webgm:74,week:70,weekdai:70,weight:53,weightedconfig:53,welcom:52,well:[2,13,21,23,27,29,34,55,59,62,65,66,72,74,76],well_known:65,wep:65,were:[2,6,7,11,45,49,61,62,63,67,74,76],what:[5,6,7,23,69,74],whatev:[46,48],whe:81,when:[1,2,3,5,6,8,11,13,16,18,19,20,22,23,33,34,36,39,40,43,45,46,48,49,51,57,61,62,63,66,67,68,69,70,72,73,74,76,77,78,81],whenev:74,where:[9,18,33,59,63,74,77],whether:[3,10,11,13,15,19,22,24,43,50,51,57,61,62,63,69,72,76,81],which:[1,2,3,5,6,8,9,10,11,12,13,14,15,19,22,23,24,25,26,27,28,33,34,35,38,39,40,42,43,46,47,48,50,51,52,53,54,57,58,59,62,63,65,66,68,69,72,74,75,76,77,80,81],white:75,who:16,whole:[72,74],wi:[80,81],width:[11,15,16,33,72,75],wifi:[37,65],wifi_ap:80,wifi_sta:81,wifiap:80,wifiauthenticationtyp:65,wificonfig:65,wifiencryptiontyp:65,wifista:81,wiki:[25,26,29,61,62,63,77],wikipedia:[18,25,26,29,61,62,63,77],wind:67,window_size_byt:[3,77],windup:67,wire:69,wireless:66,wish:[11,13],witdth:18,within:[12,19,21,22,23,33,52,57,63,75,76,77],without:[2,3,11,33,59,66,69,72],word:75,work:[6,8,10,11,24,33,59,72,76],world:11,worri:77,would:[18,23,74,76],wpa2:65,wpa2_enterpris:65,wpa2_person:65,wpa:65,wpa_enterpris:65,wpa_person:65,wpa_wpa2_person:65,wrap:[7,18,23,46,69,75],wrapper:[3,5,10,11,14,15,24,36,38,42,44,49,50,52,53,55,69,73,74,75],write:[1,2,6,8,11,13,15,16,19,22,24,28,34,36,39,40,43,46,48,51,66,68,70],write_data:[36,40],write_fn:[1,2,6,19,22,34,39,40,43,46,48,51,66,68,70],write_len:40,write_read:[36,40,68],write_read_fn:[40,68],write_row:14,write_s:36,written:[51,65,66,74],wrote:[14,24],ws2811:51,ws2812:51,ws2812_10mhz_bytes_encoder_config:69,ws2812_freq_hz:69,ws2812b:69,ws2813:51,www:[2,6,25,29,34,65,66],x1:58,x2:58,x:[2,6,11,13,16,25,39,40,44,45,46,48,49,58,59,66,72],x_calibr:[13,49],x_channel:6,x_mv:[1,2,6,13,49],xe:16,xml:[31,68,70],xml_in:[31,68,70],xqueuecreat:2,xqueuerec:2,xs:16,y1:58,y2:58,y:[2,6,13,16,25,39,40,44,45,49,52,55,58,72,80,81],y_calibr:[13,49],y_channel:6,y_mv:[1,2,6,13,49],ye:[16,81],year:70,yellow:[14,52,75],yet:[8,19,22,32,76],yield:69,you:[3,6,8,11,13,14,15,18,23,24,43,50,51,52,55,57,59,66,67,69,72,73,74,75,76,80,81],your:[23,52,59,75],yourself:74,ys:16,z:18,zelda1:14,zelda2:14,zelda:14,zelda_2:14,zero:[8,18,51,57,66,77],zero_electric_offset:8,zoom_in:39,zoom_out:39},titles:["ADC Types","ADS1x15 I2C ADC","ADS7138 I2C ADC","Continuous ADC","ADC APIs","Oneshot ADC","TLA2528 I2C ADC","BLDC Driver","BLDC Motor","BLDC APIs","Button APIs","Command Line Interface (CLI) APIs","Color APIs","Controller APIs","CSV APIs","Display","Display Drivers","Display APIs","ABI Encoder","AS5600 Magnetic Encoder","Encoder Types","Encoder APIs","MT6701 Magnetic Encoder","Event Manager APIs","File System APIs","Biquad Filter","Butterworth Filter","Filter APIs","Lowpass Filter","Second Order Sections (SoS) Filter","Transfer Function API","FTP Server","FTP APIs","BLDC Haptics","DRV2605 Haptic Motor Driver","Haptics APIs","I2C","ESPP Documentation","Encoder Input","FT5x06 Touch Controller","GT911 Touch Controller","Input APIs","Keypad Input","LilyGo T-Keyboard","Touchpad Input","TT21100 Touch Controller","AW9523 I/O Expander","IO Expander APIs","MCP23x17 I/O Expander","Joystick APIs","LED APIs","LED Strip APIs","Logging APIs","Bezier","Fast Math","Gaussian","Math APIs","Range Mapper","Vector2d","Monitoring APIs","Network APIs","Sockets","TCP Sockets","UDP Sockets","NFC APIs","NDEF","ST25DV","PID APIs","QwiicNES","Remote Control Transceiver (RMT)","BM8563","RTC APIs","RTSP APIs","Serialization APIs","State Machine APIs","Tabulate APIs","Task APIs","Thermistor APIs","Timer APIs","WiFi APIs","WiFi Access Point (AP)","WiFi Station (STA)"],titleterms:{"1":[33,51,69,78],"2":33,"class":[1,2,3,5,6,7,8,10,11,12,13,14,15,16,18,19,22,23,24,25,26,28,29,31,33,34,36,38,39,40,42,43,44,45,46,48,49,50,51,52,53,55,57,58,59,61,62,63,65,66,67,68,69,70,72,73,74,75,76,77,78,80,81],"function":[30,31,68,70],"long":76,Then:78,abi:18,abiencod:18,access:80,adc:[0,1,2,3,4,5,6,49,77],ads1x15:1,ads7138:2,again:78,alpaca:73,analog:13,ap:80,apa102:51,api:[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81],as5600:19,aw9523:46,basic:[33,52,59,67,76],bench:74,bezier:53,biquad:25,bldc:[7,8,9,33],bm8563:70,box:16,breath:50,butterworth:26,button:10,buzz:33,cancel:78,cli:11,click:33,client:[62,63,72],color:12,command:11,complex:[14,67,73,74,75],config:16,continu:3,control:[13,39,40,45,69],csv:14,data:69,de:73,delai:78,devic:74,digit:13,displai:[15,16,17],document:37,driver:[7,16,34],drv2605:34,encod:[18,19,20,21,22,38,69],esp32:16,espp:37,event:23,exampl:[1,2,3,5,6,8,10,11,13,14,16,18,19,22,23,24,33,34,36,39,40,43,45,46,48,49,50,51,52,59,62,63,66,67,68,69,70,72,73,74,75,76,77,78,80,81],expand:[46,47,48],fast:54,file:[0,1,2,3,5,6,7,8,10,11,12,13,14,15,16,18,19,20,22,23,24,25,26,28,29,30,31,33,34,36,38,39,40,42,43,44,45,46,48,49,50,51,52,53,54,55,57,58,59,61,62,63,65,66,67,68,69,70,72,73,74,75,76,77,78,80,81],filesystem:24,filter:[25,26,27,28,29],format:52,ft5x06:39,ftp:[31,32],gaussian:55,gener:74,get_latest_info:59,gt911:40,haptic:[33,34,35],header:[0,1,2,3,5,6,7,8,10,11,12,13,14,15,16,18,19,20,22,23,24,25,26,28,29,30,31,33,34,36,38,39,40,42,43,44,45,46,48,49,50,51,52,53,54,55,57,58,59,61,62,63,65,66,67,68,69,70,72,73,74,75,76,77,78,80,81],hfsm:74,i2c:[1,2,6,13,36],i:[46,48],ili9341:16,info:[24,76],input:[38,41,42,44],interfac:11,io:47,itself:78,joystick:49,keyboard:43,keypad:42,kit:16,led:[50,51],lilygo:43,line:11,linear:[18,50],log:52,logger:52,lowpass:28,machin:74,macro:[11,14,73,74,75],magnet:[19,22],manag:23,mani:76,mapper:57,markdown:75,math:[54,56],mcp23x17:48,monitor:59,motor:[8,34],mt6701:22,multicast:63,ndef:65,network:60,newlib:24,nfc:64,o:[46,48],oneshot:[5,11,78],order:29,pid:67,plai:33,point:80,posix:24,qwiicn:68,rang:57,reader:14,real:74,refer:[0,1,2,3,5,6,7,8,10,11,12,13,14,15,16,18,19,20,22,23,24,25,26,28,29,30,31,33,34,36,38,39,40,42,43,44,45,46,48,49,50,51,52,53,54,55,57,58,59,61,62,63,65,66,67,68,69,70,72,73,74,75,76,77,78,80,81],remot:69,request:76,respons:[62,63],rmt:69,rotat:18,rtc:71,rtsp:72,run:[74,76],s3:16,second:29,section:29,serial:73,server:[31,62,63,72],so:29,socket:[61,62,63],spi:51,st25dv:66,st7789:16,sta:81,start:78,state:74,station:81,std:24,stop:76,strip:51,structur:73,system:24,t:43,tabul:75,task:[59,76],tcp:62,test:74,thermistor:77,thread:52,timer:78,tla2528:6,touch:[39,40,45],touchpad:44,transceiv:69,transfer:30,transmit:69,tt21100:45,ttgo:16,type:[0,20],udp:63,union:[65,68],usag:[8,33],valid:77,vector2d:58,verbos:52,via:51,wifi:[79,80,81],writer:14,wrover:16,ws2812:69}}) \ No newline at end of file diff --git a/docs/serialization.html b/docs/serialization.html index a6df8a159..3fa703606 100644 --- a/docs/serialization.html +++ b/docs/serialization.html @@ -140,7 +140,7 @@
  • »
  • Serialization APIs
  • - Edit on GitHub + Edit on GitHub

  • @@ -168,7 +168,7 @@

    API Reference

    Header File

    diff --git a/docs/state_machine.html b/docs/state_machine.html index 5a680a07a..d4f0191d9 100644 --- a/docs/state_machine.html +++ b/docs/state_machine.html @@ -144,7 +144,7 @@
  • »
  • State Machine APIs
  • - Edit on GitHub + Edit on GitHub

  • @@ -167,7 +167,7 @@

    API Reference

    Header File

    @@ -323,7 +323,7 @@

    Running the HFSM Test Bench on a Real Device:

    Header File

    @@ -463,7 +463,7 @@

    Classes

    Header File

    @@ -594,7 +594,7 @@

    Classes

    Header File

    diff --git a/docs/tabulate.html b/docs/tabulate.html index 77b498681..58d2d9684 100644 --- a/docs/tabulate.html +++ b/docs/tabulate.html @@ -138,7 +138,7 @@
  • »
  • Tabulate APIs
  • - Edit on GitHub + Edit on GitHub

  • @@ -159,7 +159,7 @@

    API Reference

    Header File

    diff --git a/docs/task.html b/docs/task.html index 53bde8814..8fb6e0375 100644 --- a/docs/task.html +++ b/docs/task.html @@ -138,7 +138,7 @@
  • »
  • Task APIs
  • - Edit on GitHub + Edit on GitHub

  • @@ -161,7 +161,7 @@

    API Reference

    Header File

    diff --git a/docs/thermistor.html b/docs/thermistor.html index 33dd86411..dc371e8dd 100644 --- a/docs/thermistor.html +++ b/docs/thermistor.html @@ -138,7 +138,7 @@
  • »
  • Thermistor APIs
  • - Edit on GitHub + Edit on GitHub

  • @@ -178,7 +178,7 @@

    API Reference

    Header File

    diff --git a/docs/timer.html b/docs/timer.html index 44a4c8f7e..afdab9f38 100644 --- a/docs/timer.html +++ b/docs/timer.html @@ -138,7 +138,7 @@
  • »
  • Timer APIs
  • - Edit on GitHub + Edit on GitHub

  • @@ -163,7 +163,7 @@

    API Reference

    Header File

    diff --git a/docs/wifi/index.html b/docs/wifi/index.html index 6021e3bda..ec9688613 100644 --- a/docs/wifi/index.html +++ b/docs/wifi/index.html @@ -134,7 +134,7 @@
  • »
  • WiFi APIs
  • - Edit on GitHub + Edit on GitHub

  • diff --git a/docs/wifi/wifi_ap.html b/docs/wifi/wifi_ap.html index 90d752b71..f380ff8d0 100644 --- a/docs/wifi/wifi_ap.html +++ b/docs/wifi/wifi_ap.html @@ -141,7 +141,7 @@
  • WiFi APIs »
  • WiFi Access Point (AP)
  • - Edit on GitHub + Edit on GitHub

  • @@ -158,7 +158,7 @@

    API Reference

    Header File

    diff --git a/docs/wifi/wifi_sta.html b/docs/wifi/wifi_sta.html index 1427dbbd0..9ebea2d78 100644 --- a/docs/wifi/wifi_sta.html +++ b/docs/wifi/wifi_sta.html @@ -142,7 +142,7 @@
  • WiFi APIs »
  • WiFi Station (STA)
  • - Edit on GitHub + Edit on GitHub

  • @@ -159,7 +159,7 @@

    API Reference

    Header File