├── .gitignore ├── .vscode ├── arduino.json └── settings.json ├── Desktop_App ├── pyRFPowerMeter.py ├── simple_server.py ├── udp_rx_test.py └── wsjtx_packets.py ├── Desktop_App_190 ├── pyRFPowerMeter.py ├── simple_server.py ├── udp_rx_test.py └── wsjtx_packets.py ├── LICENSE ├── Nextion Files ├── RF Wattmeter-2.4-Horizontal common variable interface.HMI ├── RF Wattmeter-3.5-Horizontal common variable interface-Paul_1296_Amplifier.HMI └── RF Wattmeter-3.5-Horizontal common variable interface.HMI ├── Pictures ├── 1296MHz Amplifier Front Panel with OLED RF Wattmeter Mounted.jpg ├── 3.5in RF Wattmeter with Band Decoder.jpg ├── BandDecoderWattmeter_PCB_V1_Bottom.jpg ├── BandDecoderWattmeter_PCB_V1_Top.jpg ├── Bi-Directional Coupler assortment.jpg ├── Desktop App Snapshot - No Titlebar.JPG ├── Desktop App Snapshot.JPG ├── Desktop Configuration Page Screen Shot.JPG ├── Edit Meter Table Screen Shot.JPG ├── Finished Rotor Controller Back.jpg ├── Finished Rotor Controller Side.jpg ├── K7MDL 2.4 inch PSoC LCD Main Page.jpg ├── K7MDL 2.4inch PSoC RF Meter.jpg ├── K7MDL Desktop App with UDP Rotator Control Enabled.jpg ├── K7MDL RF Power Detector Cal Screen.jpg ├── K7MDL RF Power Detector.jpg ├── New May 2024 Edit Meter Config Screen Shot.JPG ├── OLED Power and Band Decoder Combo screen.jpg ├── PCB V.01 built 4-11-2022.jpg ├── RF Wattmeter Hardware Block Diagram.JPG ├── Remote Band Decoder Front Panel.jpg ├── Remote Band Decoder Rear Panel.jpg ├── Teensy 4.1 Band Decoder-Wattmeter CPU board connectorization.jpg └── Teensy 4.1 Wattmeter and Band Decoder Combo Build PinOut Chart.jpg ├── README.md ├── RF_Meter_PSoC5LP ├── Amp and Antenna Selection Page.JPG ├── Band Decoder Page.JPG ├── Main Drawing.JPG ├── RF_Wattmeter_PSoC5LP and BCD Band Decoder-000.cywrk.Archive27.zip └── SWR Voltage Output for Amps.JPG ├── RF_Nano_Headless ├── .vscode │ ├── arduino.json │ └── c_cpp_properties.json └── RF_Nano_Headless.ino ├── RF_Power_Meter ├── .vscode │ ├── arduino.json │ └── c_cpp_properties.json ├── ADS1100.cpp ├── ADS1100.h ├── RF_Power_Meter.ino └── V102.code-workspace ├── RF_Power_Meter_V1.code-workspace ├── RF_Wattmeter_Teensy41 ├── .vscode │ ├── arduino.json │ └── c_cpp_properties.json ├── Ethernet_Test_Programs │ ├── Rotor-Controller-UDP-Client │ │ └── Rotor-Controller-UDP-Client.ino │ ├── Rotor-Controller-UDP-Server │ │ ├── Rotor-Controller-UDP-Server-Enet.ino │ │ ├── Rotor-Controller-UDP-Server-RotorHandler.ino │ │ ├── Rotor-Controller-UDP-Server.h │ │ └── Rotor-Controller-UDP-Server.ino │ ├── UDP-CPU-1 │ │ └── UDP-CPU-1.ino │ ├── UDP-CPU-2 │ │ └── UDP-CPU-2.ino │ └── UDP-Radio-Test │ │ └── UDP-Radio-Test.ino ├── NativeEthernetPatch │ └── NativeEthernet.cpp ├── RF_Wattmeter_Arduino.h ├── RF_Wattmeter_Teensy41.ino └── nextion_patched │ └── ITEADLIB_Arduino_Nextion_patched │ ├── NexButton.cpp │ ├── NexButton.h │ ├── NexCheckbox.cpp │ ├── NexCheckbox.h │ ├── NexConfig.h │ ├── NexCrop.cpp │ ├── NexCrop.h │ ├── NexDualStateButton.cpp │ ├── NexDualStateButton.h │ ├── NexGauge.cpp │ ├── NexGauge.h │ ├── NexGpio.cpp │ ├── NexGpio.h │ ├── NexHardware.cpp │ ├── NexHardware.h │ ├── NexHotspot.cpp │ ├── NexHotspot.h │ ├── NexNumber.cpp │ ├── NexNumber.h │ ├── NexObject.cpp │ ├── NexObject.h │ ├── NexPage.cpp │ ├── NexPage.h │ ├── NexPicture.cpp │ ├── NexPicture.h │ ├── NexProgressBar.cpp │ ├── NexProgressBar.h │ ├── NexRadio.cpp │ ├── NexRadio.h │ ├── NexRtc.cpp │ ├── NexRtc.h │ ├── NexScrolltext.cpp │ ├── NexScrolltext.h │ ├── NexSlider.cpp │ ├── NexSlider.h │ ├── NexText.cpp │ ├── NexText.h │ ├── NexTimer.cpp │ ├── NexTimer.h │ ├── NexTouch.cpp │ ├── NexTouch.h │ ├── NexUpload.cpp │ ├── NexUpload.h │ ├── NexVariable.cpp │ ├── NexVariable.h │ ├── NexWaveform.cpp │ ├── NexWaveform.h │ ├── Nextion.h │ ├── RF_Wattmeter_Nextion.h │ ├── doc │ ├── Documentation │ │ ├── Logo.png │ │ ├── _comp_button_8ino-example.html │ │ ├── _comp_button_8ino_source.html │ │ ├── _comp_button__v0__32_8ino_source.html │ │ ├── _comp_button_v0_32_8ino-example.html │ │ ├── _comp_crop_8ino-example.html │ │ ├── _comp_crop_8ino_source.html │ │ ├── _comp_crop__v0__32_8ino_source.html │ │ ├── _comp_crop_v0_32_8ino-example.html │ │ ├── _comp_dual_state_button_8ino-example.html │ │ ├── _comp_dual_state_button_8ino_source.html │ │ ├── _comp_dual_state_button__v0__32_8ino_source.html │ │ ├── _comp_dual_state_button_v0_32_8ino-example.html │ │ ├── _comp_gauge_8ino-example.html │ │ ├── _comp_gauge_8ino_source.html │ │ ├── _comp_gauge__v0__32_8ino_source.html │ │ ├── _comp_gauge_v0_32_8ino-example.html │ │ ├── _comp_gpio_2_comp_gpio_8ino_source.html │ │ ├── _comp_gpio_8ino-example.html │ │ ├── _comp_gpio_8ino_source.html │ │ ├── _comp_hotspot_8ino-example.html │ │ ├── _comp_hotspot_8ino_source.html │ │ ├── _comp_hotspot__v0__32_8ino_source.html │ │ ├── _comp_hotspot_v0_32_8ino-example.html │ │ ├── _comp_number_8ino-example.html │ │ ├── _comp_number_8ino_source.html │ │ ├── _comp_number__v0__32_8ino_source.html │ │ ├── _comp_number_v0_32_8ino-example.html │ │ ├── _comp_page_8ino-example.html │ │ ├── _comp_page_8ino_source.html │ │ ├── _comp_page__v0__32_8ino_source.html │ │ ├── _comp_page_v0_32_8ino-example.html │ │ ├── _comp_picture_8ino-example.html │ │ ├── _comp_picture_8ino_source.html │ │ ├── _comp_picture__v0__32_8ino_source.html │ │ ├── _comp_picture_v0_32_8ino-example.html │ │ ├── _comp_progress_bar_8ino-example.html │ │ ├── _comp_progress_bar_8ino_source.html │ │ ├── _comp_progress_bar__v0__32_8ino_source.html │ │ ├── _comp_progress_bar_v0_32_8ino-example.html │ │ ├── _comp_rtc_8ino-example.html │ │ ├── _comp_rtc_8ino_source.html │ │ ├── _comp_slider_8ino-example.html │ │ ├── _comp_slider_8ino_source.html │ │ ├── _comp_slider__v0__32_8ino_source.html │ │ ├── _comp_slider_v0_32_8ino-example.html │ │ ├── _comp_text_8ino-example.html │ │ ├── _comp_text_8ino_source.html │ │ ├── _comp_text__v0__32_8ino_source.html │ │ ├── _comp_text_v0_32_8ino-example.html │ │ ├── _comp_timer_2_comp_waveform__v0__32_8ino_source.html │ │ ├── _comp_timer_8ino-example.html │ │ ├── _comp_timer_8ino_source.html │ │ ├── _comp_timer__v0__32_8ino_source.html │ │ ├── _comp_timer_v0_32_8ino-example.html │ │ ├── _comp_waveform_2_comp_waveform__v0__32_8ino_source.html │ │ ├── _comp_waveform_8ino-example.html │ │ ├── _comp_waveform_8ino_source.html │ │ ├── _comp_waveform__v0__32_8ino_source.html │ │ ├── _comp_waveform_v0_32_8ino-example.html │ │ ├── _nex_button_8cpp.html │ │ ├── _nex_button_8cpp__incl.map │ │ ├── _nex_button_8cpp__incl.md5 │ │ ├── _nex_button_8cpp__incl.png │ │ ├── _nex_button_8cpp_source.html │ │ ├── _nex_button_8h.html │ │ ├── _nex_button_8h__dep__incl.map │ │ ├── _nex_button_8h__dep__incl.md5 │ │ ├── _nex_button_8h__dep__incl.png │ │ ├── _nex_button_8h__incl.map │ │ ├── _nex_button_8h__incl.md5 │ │ ├── _nex_button_8h__incl.png │ │ ├── _nex_button_8h_source.html │ │ ├── _nex_checkbox_8cpp.html │ │ ├── _nex_checkbox_8cpp__incl.map │ │ ├── _nex_checkbox_8cpp__incl.md5 │ │ ├── _nex_checkbox_8cpp__incl.png │ │ ├── _nex_checkbox_8cpp_source.html │ │ ├── _nex_checkbox_8h.html │ │ ├── _nex_checkbox_8h__dep__incl.map │ │ ├── _nex_checkbox_8h__dep__incl.md5 │ │ ├── _nex_checkbox_8h__dep__incl.png │ │ ├── _nex_checkbox_8h__incl.map │ │ ├── _nex_checkbox_8h__incl.md5 │ │ ├── _nex_checkbox_8h__incl.png │ │ ├── _nex_checkbox_8h_source.html │ │ ├── _nex_config_8h.html │ │ ├── _nex_config_8h.js │ │ ├── _nex_config_8h__dep__incl.map │ │ ├── _nex_config_8h__dep__incl.md5 │ │ ├── _nex_config_8h__dep__incl.png │ │ ├── _nex_config_8h_source.html │ │ ├── _nex_crop_8cpp.html │ │ ├── _nex_crop_8cpp__incl.map │ │ ├── _nex_crop_8cpp__incl.md5 │ │ ├── _nex_crop_8cpp__incl.png │ │ ├── _nex_crop_8cpp_source.html │ │ ├── _nex_crop_8h.html │ │ ├── _nex_crop_8h__dep__incl.map │ │ ├── _nex_crop_8h__dep__incl.md5 │ │ ├── _nex_crop_8h__dep__incl.png │ │ ├── _nex_crop_8h__incl.map │ │ ├── _nex_crop_8h__incl.md5 │ │ ├── _nex_crop_8h__incl.png │ │ ├── _nex_crop_8h_source.html │ │ ├── _nex_dual_state_button_8cpp.html │ │ ├── _nex_dual_state_button_8cpp__incl.map │ │ ├── _nex_dual_state_button_8cpp__incl.md5 │ │ ├── _nex_dual_state_button_8cpp__incl.png │ │ ├── _nex_dual_state_button_8cpp_source.html │ │ ├── _nex_dual_state_button_8h.html │ │ ├── _nex_dual_state_button_8h__dep__incl.map │ │ ├── _nex_dual_state_button_8h__dep__incl.md5 │ │ ├── _nex_dual_state_button_8h__dep__incl.png │ │ ├── _nex_dual_state_button_8h__incl.map │ │ ├── _nex_dual_state_button_8h__incl.md5 │ │ ├── _nex_dual_state_button_8h__incl.png │ │ ├── _nex_dual_state_button_8h_source.html │ │ ├── _nex_gauge_8cpp.html │ │ ├── _nex_gauge_8cpp__incl.map │ │ ├── _nex_gauge_8cpp__incl.md5 │ │ ├── _nex_gauge_8cpp__incl.png │ │ ├── _nex_gauge_8cpp_source.html │ │ ├── _nex_gauge_8h.html │ │ ├── _nex_gauge_8h__dep__incl.map │ │ ├── _nex_gauge_8h__dep__incl.md5 │ │ ├── _nex_gauge_8h__dep__incl.png │ │ ├── _nex_gauge_8h__incl.map │ │ ├── _nex_gauge_8h__incl.md5 │ │ ├── _nex_gauge_8h__incl.png │ │ ├── _nex_gauge_8h_source.html │ │ ├── _nex_gpio_8cpp.html │ │ ├── _nex_gpio_8cpp_source.html │ │ ├── _nex_gpio_8h.html │ │ ├── _nex_gpio_8h_source.html │ │ ├── _nex_hardware_8cpp.html │ │ ├── _nex_hardware_8cpp.js │ │ ├── _nex_hardware_8cpp__incl.map │ │ ├── _nex_hardware_8cpp__incl.md5 │ │ ├── _nex_hardware_8cpp__incl.png │ │ ├── _nex_hardware_8cpp_source.html │ │ ├── _nex_hardware_8h.html │ │ ├── _nex_hardware_8h.js │ │ ├── _nex_hardware_8h__dep__incl.map │ │ ├── _nex_hardware_8h__dep__incl.md5 │ │ ├── _nex_hardware_8h__dep__incl.png │ │ ├── _nex_hardware_8h__incl.map │ │ ├── _nex_hardware_8h__incl.md5 │ │ ├── _nex_hardware_8h__incl.png │ │ ├── _nex_hardware_8h_source.html │ │ ├── _nex_hotspot_8cpp.html │ │ ├── _nex_hotspot_8cpp__incl.map │ │ ├── _nex_hotspot_8cpp__incl.md5 │ │ ├── _nex_hotspot_8cpp__incl.png │ │ ├── _nex_hotspot_8cpp_source.html │ │ ├── _nex_hotspot_8h.html │ │ ├── _nex_hotspot_8h__dep__incl.map │ │ ├── _nex_hotspot_8h__dep__incl.md5 │ │ ├── _nex_hotspot_8h__dep__incl.png │ │ ├── _nex_hotspot_8h__incl.map │ │ ├── _nex_hotspot_8h__incl.md5 │ │ ├── _nex_hotspot_8h__incl.png │ │ ├── _nex_hotspot_8h_source.html │ │ ├── _nex_number_8cpp.html │ │ ├── _nex_number_8cpp__incl.map │ │ ├── _nex_number_8cpp__incl.md5 │ │ ├── _nex_number_8cpp__incl.png │ │ ├── _nex_number_8cpp_source.html │ │ ├── _nex_number_8h.html │ │ ├── _nex_number_8h__dep__incl.map │ │ ├── _nex_number_8h__dep__incl.md5 │ │ ├── _nex_number_8h__dep__incl.png │ │ ├── _nex_number_8h__incl.map │ │ ├── _nex_number_8h__incl.md5 │ │ ├── _nex_number_8h__incl.png │ │ ├── _nex_number_8h_source.html │ │ ├── _nex_object_8cpp.html │ │ ├── _nex_object_8cpp__incl.map │ │ ├── _nex_object_8cpp__incl.md5 │ │ ├── _nex_object_8cpp__incl.png │ │ ├── _nex_object_8cpp_source.html │ │ ├── _nex_object_8h.html │ │ ├── _nex_object_8h__dep__incl.map │ │ ├── _nex_object_8h__dep__incl.md5 │ │ ├── _nex_object_8h__dep__incl.png │ │ ├── _nex_object_8h__incl.map │ │ ├── _nex_object_8h__incl.md5 │ │ ├── _nex_object_8h__incl.png │ │ ├── _nex_object_8h_source.html │ │ ├── _nex_page_8cpp.html │ │ ├── _nex_page_8cpp__incl.map │ │ ├── _nex_page_8cpp__incl.md5 │ │ ├── _nex_page_8cpp__incl.png │ │ ├── _nex_page_8cpp_source.html │ │ ├── _nex_page_8h.html │ │ ├── _nex_page_8h__dep__incl.map │ │ ├── _nex_page_8h__dep__incl.md5 │ │ ├── _nex_page_8h__dep__incl.png │ │ ├── _nex_page_8h__incl.map │ │ ├── _nex_page_8h__incl.md5 │ │ ├── _nex_page_8h__incl.png │ │ ├── _nex_page_8h_source.html │ │ ├── _nex_picture_8cpp.html │ │ ├── _nex_picture_8cpp__incl.map │ │ ├── _nex_picture_8cpp__incl.md5 │ │ ├── _nex_picture_8cpp__incl.png │ │ ├── _nex_picture_8cpp_source.html │ │ ├── _nex_picture_8h.html │ │ ├── _nex_picture_8h__dep__incl.map │ │ ├── _nex_picture_8h__dep__incl.md5 │ │ ├── _nex_picture_8h__dep__incl.png │ │ ├── _nex_picture_8h__incl.map │ │ ├── _nex_picture_8h__incl.md5 │ │ ├── _nex_picture_8h__incl.png │ │ ├── _nex_picture_8h_source.html │ │ ├── _nex_progress_bar_8cpp.html │ │ ├── _nex_progress_bar_8cpp__incl.map │ │ ├── _nex_progress_bar_8cpp__incl.md5 │ │ ├── _nex_progress_bar_8cpp__incl.png │ │ ├── _nex_progress_bar_8cpp_source.html │ │ ├── _nex_progress_bar_8h.html │ │ ├── _nex_progress_bar_8h__dep__incl.map │ │ ├── _nex_progress_bar_8h__dep__incl.md5 │ │ ├── _nex_progress_bar_8h__dep__incl.png │ │ ├── _nex_progress_bar_8h__incl.map │ │ ├── _nex_progress_bar_8h__incl.md5 │ │ ├── _nex_progress_bar_8h__incl.png │ │ ├── _nex_progress_bar_8h_source.html │ │ ├── _nex_radio_8cpp.html │ │ ├── _nex_radio_8cpp__incl.map │ │ ├── _nex_radio_8cpp__incl.md5 │ │ ├── _nex_radio_8cpp__incl.png │ │ ├── _nex_radio_8cpp_source.html │ │ ├── _nex_radio_8h.html │ │ ├── _nex_radio_8h__dep__incl.map │ │ ├── _nex_radio_8h__dep__incl.md5 │ │ ├── _nex_radio_8h__dep__incl.png │ │ ├── _nex_radio_8h__incl.map │ │ ├── _nex_radio_8h__incl.md5 │ │ ├── _nex_radio_8h__incl.png │ │ ├── _nex_radio_8h_source.html │ │ ├── _nex_rtc_8cpp.html │ │ ├── _nex_rtc_8cpp_source.html │ │ ├── _nex_rtc_8h.html │ │ ├── _nex_rtc_8h_source.html │ │ ├── _nex_scrolltext_8cpp.html │ │ ├── _nex_scrolltext_8cpp__incl.map │ │ ├── _nex_scrolltext_8cpp__incl.md5 │ │ ├── _nex_scrolltext_8cpp__incl.png │ │ ├── _nex_scrolltext_8cpp_source.html │ │ ├── _nex_scrolltext_8h.html │ │ ├── _nex_scrolltext_8h__dep__incl.map │ │ ├── _nex_scrolltext_8h__dep__incl.md5 │ │ ├── _nex_scrolltext_8h__dep__incl.png │ │ ├── _nex_scrolltext_8h__incl.map │ │ ├── _nex_scrolltext_8h__incl.md5 │ │ ├── _nex_scrolltext_8h__incl.png │ │ ├── _nex_scrolltext_8h_source.html │ │ ├── _nex_slider_8cpp.html │ │ ├── _nex_slider_8cpp__incl.map │ │ ├── _nex_slider_8cpp__incl.md5 │ │ ├── _nex_slider_8cpp__incl.png │ │ ├── _nex_slider_8cpp_source.html │ │ ├── _nex_slider_8h.html │ │ ├── _nex_slider_8h__dep__incl.map │ │ ├── _nex_slider_8h__dep__incl.md5 │ │ ├── _nex_slider_8h__dep__incl.png │ │ ├── _nex_slider_8h__incl.map │ │ ├── _nex_slider_8h__incl.md5 │ │ ├── _nex_slider_8h__incl.png │ │ ├── _nex_slider_8h_source.html │ │ ├── _nex_text_8cpp.html │ │ ├── _nex_text_8cpp__incl.map │ │ ├── _nex_text_8cpp__incl.md5 │ │ ├── _nex_text_8cpp__incl.png │ │ ├── _nex_text_8cpp_source.html │ │ ├── _nex_text_8h.html │ │ ├── _nex_text_8h__dep__incl.map │ │ ├── _nex_text_8h__dep__incl.md5 │ │ ├── _nex_text_8h__dep__incl.png │ │ ├── _nex_text_8h__incl.map │ │ ├── _nex_text_8h__incl.md5 │ │ ├── _nex_text_8h__incl.png │ │ ├── _nex_text_8h_source.html │ │ ├── _nex_timer_8cpp.html │ │ ├── _nex_timer_8cpp__incl.map │ │ ├── _nex_timer_8cpp__incl.md5 │ │ ├── _nex_timer_8cpp__incl.png │ │ ├── _nex_timer_8cpp_source.html │ │ ├── _nex_timer_8h.html │ │ ├── _nex_timer_8h__dep__incl.map │ │ ├── _nex_timer_8h__dep__incl.md5 │ │ ├── _nex_timer_8h__dep__incl.png │ │ ├── _nex_timer_8h__incl.map │ │ ├── _nex_timer_8h__incl.md5 │ │ ├── _nex_timer_8h__incl.png │ │ ├── _nex_timer_8h_source.html │ │ ├── _nex_touch_8cpp.html │ │ ├── _nex_touch_8cpp__incl.map │ │ ├── _nex_touch_8cpp__incl.md5 │ │ ├── _nex_touch_8cpp__incl.png │ │ ├── _nex_touch_8cpp_source.html │ │ ├── _nex_touch_8h.html │ │ ├── _nex_touch_8h.js │ │ ├── _nex_touch_8h__dep__incl.map │ │ ├── _nex_touch_8h__dep__incl.md5 │ │ ├── _nex_touch_8h__dep__incl.png │ │ ├── _nex_touch_8h__incl.map │ │ ├── _nex_touch_8h__incl.md5 │ │ ├── _nex_touch_8h__incl.png │ │ ├── _nex_touch_8h_source.html │ │ ├── _nex_upload_8cpp.html │ │ ├── _nex_upload_8cpp__incl.map │ │ ├── _nex_upload_8cpp__incl.md5 │ │ ├── _nex_upload_8cpp__incl.png │ │ ├── _nex_upload_8cpp_source.html │ │ ├── _nex_upload_8h.html │ │ ├── _nex_upload_8h__dep__incl.map │ │ ├── _nex_upload_8h__dep__incl.md5 │ │ ├── _nex_upload_8h__dep__incl.png │ │ ├── _nex_upload_8h__incl.map │ │ ├── _nex_upload_8h__incl.md5 │ │ ├── _nex_upload_8h__incl.png │ │ ├── _nex_upload_8h_source.html │ │ ├── _nex_variable_8cpp.html │ │ ├── _nex_variable_8cpp__incl.map │ │ ├── _nex_variable_8cpp__incl.md5 │ │ ├── _nex_variable_8cpp__incl.png │ │ ├── _nex_variable_8cpp_source.html │ │ ├── _nex_variable_8h_source.html │ │ ├── _nex_waveform_8cpp.html │ │ ├── _nex_waveform_8cpp__incl.map │ │ ├── _nex_waveform_8cpp__incl.md5 │ │ ├── _nex_waveform_8cpp__incl.png │ │ ├── _nex_waveform_8cpp_source.html │ │ ├── _nex_waveform_8h.html │ │ ├── _nex_waveform_8h__dep__incl.map │ │ ├── _nex_waveform_8h__dep__incl.md5 │ │ ├── _nex_waveform_8h__dep__incl.png │ │ ├── _nex_waveform_8h__incl.map │ │ ├── _nex_waveform_8h__incl.md5 │ │ ├── _nex_waveform_8h__incl.png │ │ ├── _nex_waveform_8h_source.html │ │ ├── _nextion_8h.html │ │ ├── _nextion_8h__dep__incl.map │ │ ├── _nextion_8h__dep__incl.md5 │ │ ├── _nextion_8h__dep__incl.png │ │ ├── _nextion_8h__incl.map │ │ ├── _nextion_8h__incl.md5 │ │ ├── _nextion_8h__incl.png │ │ ├── _nextion_8h_source.html │ │ ├── _upload_8ino_source.html │ │ ├── all__0_8js_source.html │ │ ├── all__1_8js_source.html │ │ ├── all__2_8js_source.html │ │ ├── all__3_8js_source.html │ │ ├── all__4_8js_source.html │ │ ├── all__5_8js_source.html │ │ ├── all__6_8js_source.html │ │ ├── all__7_8js_source.html │ │ ├── all__8_8js_source.html │ │ ├── all__9_8js_source.html │ │ ├── all__a_8js_source.html │ │ ├── all__b_8js_source.html │ │ ├── all__c_8js_source.html │ │ ├── annotated.html │ │ ├── annotated.js │ │ ├── bc_s.png │ │ ├── bdwn.png │ │ ├── class_nex_button-members.html │ │ ├── class_nex_button.html │ │ ├── class_nex_button.js │ │ ├── class_nex_button__coll__graph.map │ │ ├── class_nex_button__coll__graph.md5 │ │ ├── class_nex_button__coll__graph.png │ │ ├── class_nex_button__inherit__graph.map │ │ ├── class_nex_button__inherit__graph.md5 │ │ ├── class_nex_button__inherit__graph.png │ │ ├── class_nex_checkbox-members.html │ │ ├── class_nex_checkbox.html │ │ ├── class_nex_checkbox.js │ │ ├── class_nex_checkbox__coll__graph.map │ │ ├── class_nex_checkbox__coll__graph.md5 │ │ ├── class_nex_checkbox__coll__graph.png │ │ ├── class_nex_checkbox__inherit__graph.map │ │ ├── class_nex_checkbox__inherit__graph.md5 │ │ ├── class_nex_checkbox__inherit__graph.png │ │ ├── class_nex_crop-members.html │ │ ├── class_nex_crop.html │ │ ├── class_nex_crop.js │ │ ├── class_nex_crop__coll__graph.map │ │ ├── class_nex_crop__coll__graph.md5 │ │ ├── class_nex_crop__coll__graph.png │ │ ├── class_nex_crop__inherit__graph.map │ │ ├── class_nex_crop__inherit__graph.md5 │ │ ├── class_nex_crop__inherit__graph.png │ │ ├── class_nex_d_s_button-members.html │ │ ├── class_nex_d_s_button.html │ │ ├── class_nex_d_s_button.js │ │ ├── class_nex_d_s_button__coll__graph.map │ │ ├── class_nex_d_s_button__coll__graph.md5 │ │ ├── class_nex_d_s_button__coll__graph.png │ │ ├── class_nex_d_s_button__inherit__graph.map │ │ ├── class_nex_d_s_button__inherit__graph.md5 │ │ ├── class_nex_d_s_button__inherit__graph.png │ │ ├── class_nex_gauge-members.html │ │ ├── class_nex_gauge.html │ │ ├── class_nex_gauge.js │ │ ├── class_nex_gauge__coll__graph.map │ │ ├── class_nex_gauge__coll__graph.md5 │ │ ├── class_nex_gauge__coll__graph.png │ │ ├── class_nex_gauge__inherit__graph.map │ │ ├── class_nex_gauge__inherit__graph.md5 │ │ ├── class_nex_gauge__inherit__graph.png │ │ ├── class_nex_gpio-members.html │ │ ├── class_nex_gpio.html │ │ ├── class_nex_gpio.js │ │ ├── class_nex_hotspot-members.html │ │ ├── class_nex_hotspot.html │ │ ├── class_nex_hotspot.js │ │ ├── class_nex_hotspot__coll__graph.map │ │ ├── class_nex_hotspot__coll__graph.md5 │ │ ├── class_nex_hotspot__coll__graph.png │ │ ├── class_nex_hotspot__inherit__graph.map │ │ ├── class_nex_hotspot__inherit__graph.md5 │ │ ├── class_nex_hotspot__inherit__graph.png │ │ ├── class_nex_number-members.html │ │ ├── class_nex_number.html │ │ ├── class_nex_number.js │ │ ├── class_nex_number__coll__graph.map │ │ ├── class_nex_number__coll__graph.md5 │ │ ├── class_nex_number__coll__graph.png │ │ ├── class_nex_number__inherit__graph.map │ │ ├── class_nex_number__inherit__graph.md5 │ │ ├── class_nex_number__inherit__graph.png │ │ ├── class_nex_object-members.html │ │ ├── class_nex_object.html │ │ ├── class_nex_object.js │ │ ├── class_nex_object__inherit__graph.map │ │ ├── class_nex_object__inherit__graph.md5 │ │ ├── class_nex_object__inherit__graph.png │ │ ├── class_nex_page-members.html │ │ ├── class_nex_page.html │ │ ├── class_nex_page.js │ │ ├── class_nex_page__coll__graph.map │ │ ├── class_nex_page__coll__graph.md5 │ │ ├── class_nex_page__coll__graph.png │ │ ├── class_nex_page__inherit__graph.map │ │ ├── class_nex_page__inherit__graph.md5 │ │ ├── class_nex_page__inherit__graph.png │ │ ├── class_nex_picture-members.html │ │ ├── class_nex_picture.html │ │ ├── class_nex_picture.js │ │ ├── class_nex_picture__coll__graph.map │ │ ├── class_nex_picture__coll__graph.md5 │ │ ├── class_nex_picture__coll__graph.png │ │ ├── class_nex_picture__inherit__graph.map │ │ ├── class_nex_picture__inherit__graph.md5 │ │ ├── class_nex_picture__inherit__graph.png │ │ ├── class_nex_progress_bar-members.html │ │ ├── class_nex_progress_bar.html │ │ ├── class_nex_progress_bar.js │ │ ├── class_nex_progress_bar__coll__graph.map │ │ ├── class_nex_progress_bar__coll__graph.md5 │ │ ├── class_nex_progress_bar__coll__graph.png │ │ ├── class_nex_progress_bar__inherit__graph.map │ │ ├── class_nex_progress_bar__inherit__graph.md5 │ │ ├── class_nex_progress_bar__inherit__graph.png │ │ ├── class_nex_radio-members.html │ │ ├── class_nex_radio.html │ │ ├── class_nex_radio.js │ │ ├── class_nex_radio__coll__graph.map │ │ ├── class_nex_radio__coll__graph.md5 │ │ ├── class_nex_radio__coll__graph.png │ │ ├── class_nex_radio__inherit__graph.map │ │ ├── class_nex_radio__inherit__graph.md5 │ │ ├── class_nex_radio__inherit__graph.png │ │ ├── class_nex_rtc-members.html │ │ ├── class_nex_rtc.html │ │ ├── class_nex_rtc.js │ │ ├── class_nex_scrolltext-members.html │ │ ├── class_nex_scrolltext.html │ │ ├── class_nex_scrolltext.js │ │ ├── class_nex_scrolltext__coll__graph.map │ │ ├── class_nex_scrolltext__coll__graph.md5 │ │ ├── class_nex_scrolltext__coll__graph.png │ │ ├── class_nex_scrolltext__inherit__graph.map │ │ ├── class_nex_scrolltext__inherit__graph.md5 │ │ ├── class_nex_scrolltext__inherit__graph.png │ │ ├── class_nex_slider-members.html │ │ ├── class_nex_slider.html │ │ ├── class_nex_slider.js │ │ ├── class_nex_slider__coll__graph.map │ │ ├── class_nex_slider__coll__graph.md5 │ │ ├── class_nex_slider__coll__graph.png │ │ ├── class_nex_slider__inherit__graph.map │ │ ├── class_nex_slider__inherit__graph.md5 │ │ ├── class_nex_slider__inherit__graph.png │ │ ├── class_nex_text-members.html │ │ ├── class_nex_text.html │ │ ├── class_nex_text.js │ │ ├── class_nex_text__coll__graph.map │ │ ├── class_nex_text__coll__graph.md5 │ │ ├── class_nex_text__coll__graph.png │ │ ├── class_nex_text__inherit__graph.map │ │ ├── class_nex_text__inherit__graph.md5 │ │ ├── class_nex_text__inherit__graph.png │ │ ├── class_nex_timer-members.html │ │ ├── class_nex_timer.html │ │ ├── class_nex_timer.js │ │ ├── class_nex_timer__coll__graph.map │ │ ├── class_nex_timer__coll__graph.md5 │ │ ├── class_nex_timer__coll__graph.png │ │ ├── class_nex_timer__inherit__graph.map │ │ ├── class_nex_timer__inherit__graph.md5 │ │ ├── class_nex_timer__inherit__graph.png │ │ ├── class_nex_timer_a365d08df4623ce8a146e73ff9204d5cb_cgraph.map │ │ ├── class_nex_timer_a365d08df4623ce8a146e73ff9204d5cb_cgraph.md5 │ │ ├── class_nex_timer_a365d08df4623ce8a146e73ff9204d5cb_cgraph.png │ │ ├── class_nex_timer_ae6f1ae95ef40b8bc6f482185b1ec5175_cgraph.map │ │ ├── class_nex_timer_ae6f1ae95ef40b8bc6f482185b1ec5175_cgraph.md5 │ │ ├── class_nex_timer_ae6f1ae95ef40b8bc6f482185b1ec5175_cgraph.png │ │ ├── class_nex_touch-members.html │ │ ├── class_nex_touch.html │ │ ├── class_nex_touch.js │ │ ├── class_nex_touch__coll__graph.map │ │ ├── class_nex_touch__coll__graph.md5 │ │ ├── class_nex_touch__coll__graph.png │ │ ├── class_nex_touch__inherit__graph.map │ │ ├── class_nex_touch__inherit__graph.md5 │ │ ├── class_nex_touch__inherit__graph.png │ │ ├── class_nex_touch_a4da1c4fcdfadb7eabfb9ccaba9ecad11_icgraph.map │ │ ├── class_nex_touch_a4da1c4fcdfadb7eabfb9ccaba9ecad11_icgraph.md5 │ │ ├── class_nex_touch_a4da1c4fcdfadb7eabfb9ccaba9ecad11_icgraph.png │ │ ├── class_nex_touch_af656640c1078a553287a68bf792dd291_icgraph.map │ │ ├── class_nex_touch_af656640c1078a553287a68bf792dd291_icgraph.md5 │ │ ├── class_nex_touch_af656640c1078a553287a68bf792dd291_icgraph.png │ │ ├── class_nex_upload-members.html │ │ ├── class_nex_upload.html │ │ ├── class_nex_upload.js │ │ ├── class_nex_upload_a017c25b02bc9a674ab5beb447a3511a0_icgraph.map │ │ ├── class_nex_upload_a017c25b02bc9a674ab5beb447a3511a0_icgraph.md5 │ │ ├── class_nex_upload_a017c25b02bc9a674ab5beb447a3511a0_icgraph.png │ │ ├── class_nex_upload_a97d6aeee29cfdeb1ec4dcec8d5a58396_cgraph.map │ │ ├── class_nex_upload_a97d6aeee29cfdeb1ec4dcec8d5a58396_cgraph.md5 │ │ ├── class_nex_upload_a97d6aeee29cfdeb1ec4dcec8d5a58396_cgraph.png │ │ ├── class_nex_variable-members.html │ │ ├── class_nex_variable.html │ │ ├── class_nex_variable.js │ │ ├── class_nex_variable__coll__graph.map │ │ ├── class_nex_variable__coll__graph.md5 │ │ ├── class_nex_variable__coll__graph.png │ │ ├── class_nex_variable__inherit__graph.map │ │ ├── class_nex_variable__inherit__graph.md5 │ │ ├── class_nex_variable__inherit__graph.png │ │ ├── class_nex_waveform-members.html │ │ ├── class_nex_waveform.html │ │ ├── class_nex_waveform.js │ │ ├── class_nex_waveform__coll__graph.map │ │ ├── class_nex_waveform__coll__graph.md5 │ │ ├── class_nex_waveform__coll__graph.png │ │ ├── class_nex_waveform__inherit__graph.map │ │ ├── class_nex_waveform__inherit__graph.md5 │ │ ├── class_nex_waveform__inherit__graph.png │ │ ├── classes.html │ │ ├── classes__0_8js_source.html │ │ ├── closed.png │ │ ├── dir_03b339e07921b59492972343ca10817a.html │ │ ├── dir_03b339e07921b59492972343ca10817a.js │ │ ├── dir_13cb27e7707bad7dfc51e3225831c378.html │ │ ├── dir_13cb27e7707bad7dfc51e3225831c378.js │ │ ├── dir_13fdc5ade55290335ffe8ce184cef04a.html │ │ ├── dir_13fdc5ade55290335ffe8ce184cef04a.js │ │ ├── dir_2af451c22587252d0014dbc596e2e19a.html │ │ ├── dir_2af451c22587252d0014dbc596e2e19a.js │ │ ├── dir_2af451c22587252d0014dbc596e2e19a_dep.map │ │ ├── dir_2af451c22587252d0014dbc596e2e19a_dep.md5 │ │ ├── dir_2af451c22587252d0014dbc596e2e19a_dep.png │ │ ├── dir_2c7bb7af606a816dc5d12b9c9f93cdb0.html │ │ ├── dir_2c7bb7af606a816dc5d12b9c9f93cdb0.js │ │ ├── dir_2dae0a562653f78d59931f0e4b070746.html │ │ ├── dir_2dae0a562653f78d59931f0e4b070746.js │ │ ├── dir_362f30179229d7166f5b27ed31213abf.html │ │ ├── dir_362f30179229d7166f5b27ed31213abf.js │ │ ├── dir_37f22946f81336e96770e95cfc44f0d2.html │ │ ├── dir_37f22946f81336e96770e95cfc44f0d2.js │ │ ├── dir_3a828b7214103d705cc83e20f29bdad9.html │ │ ├── dir_3a828b7214103d705cc83e20f29bdad9.js │ │ ├── dir_3a828b7214103d705cc83e20f29bdad9_dep.map │ │ ├── dir_3a828b7214103d705cc83e20f29bdad9_dep.md5 │ │ ├── dir_3a828b7214103d705cc83e20f29bdad9_dep.png │ │ ├── dir_44a14d16127103fb968497cef18e2651.html │ │ ├── dir_44a14d16127103fb968497cef18e2651.js │ │ ├── dir_472f54fb1d9b74971d8e15d62f212bd3.html │ │ ├── dir_472f54fb1d9b74971d8e15d62f212bd3.js │ │ ├── dir_472f54fb1d9b74971d8e15d62f212bd3_dep.map │ │ ├── dir_472f54fb1d9b74971d8e15d62f212bd3_dep.md5 │ │ ├── dir_472f54fb1d9b74971d8e15d62f212bd3_dep.png │ │ ├── dir_4b43661efaa18af91f213d2681ebd37e.html │ │ ├── dir_4b43661efaa18af91f213d2681ebd37e.js │ │ ├── dir_4b43661efaa18af91f213d2681ebd37e_dep.map │ │ ├── dir_4b43661efaa18af91f213d2681ebd37e_dep.md5 │ │ ├── dir_4b43661efaa18af91f213d2681ebd37e_dep.png │ │ ├── dir_53835f0dfcb7abf9d97bc46682fab859.html │ │ ├── dir_53835f0dfcb7abf9d97bc46682fab859.js │ │ ├── dir_53835f0dfcb7abf9d97bc46682fab859_dep.map │ │ ├── dir_53835f0dfcb7abf9d97bc46682fab859_dep.md5 │ │ ├── dir_53835f0dfcb7abf9d97bc46682fab859_dep.png │ │ ├── dir_56b2cc69259505f347a71fbc57576a27.html │ │ ├── dir_56b2cc69259505f347a71fbc57576a27.js │ │ ├── dir_575635cc091aa47ec7be91b5cee17183.html │ │ ├── dir_575635cc091aa47ec7be91b5cee17183.js │ │ ├── dir_58f5ecea2e2241e947c6d0b6b0a6574c.html │ │ ├── dir_58f5ecea2e2241e947c6d0b6b0a6574c.js │ │ ├── dir_58f5ecea2e2241e947c6d0b6b0a6574c_dep.map │ │ ├── dir_58f5ecea2e2241e947c6d0b6b0a6574c_dep.md5 │ │ ├── dir_58f5ecea2e2241e947c6d0b6b0a6574c_dep.png │ │ ├── dir_5e6e68a9c696254bbe284f64da34b89b.html │ │ ├── dir_5e6e68a9c696254bbe284f64da34b89b.js │ │ ├── dir_64c3f06c647884d4700075d99ac5b054.html │ │ ├── dir_64c3f06c647884d4700075d99ac5b054.js │ │ ├── dir_67a124841349777013960f48b4ca08cd.html │ │ ├── dir_67a124841349777013960f48b4ca08cd.js │ │ ├── dir_6cfe794d384e1e9411c8ed4782275733.html │ │ ├── dir_6cfe794d384e1e9411c8ed4782275733.js │ │ ├── dir_72ff46b74e37ff2b17afdc4e77374e7e.html │ │ ├── dir_72ff46b74e37ff2b17afdc4e77374e7e.js │ │ ├── dir_745a997035d9a4e2cc7e167d495d0fea.html │ │ ├── dir_745a997035d9a4e2cc7e167d495d0fea.js │ │ ├── dir_774ce03e0cf0196adaf36811ea67e4fe.html │ │ ├── dir_774ce03e0cf0196adaf36811ea67e4fe.js │ │ ├── dir_78dd7a2fe86fb9861d4d5f2b99877d05.html │ │ ├── dir_78dd7a2fe86fb9861d4d5f2b99877d05.js │ │ ├── dir_7962cac16a99e8bbaaea18abede03fcb.html │ │ ├── dir_7962cac16a99e8bbaaea18abede03fcb.js │ │ ├── dir_7962cac16a99e8bbaaea18abede03fcb_dep.map │ │ ├── dir_7962cac16a99e8bbaaea18abede03fcb_dep.md5 │ │ ├── dir_7962cac16a99e8bbaaea18abede03fcb_dep.png │ │ ├── dir_79c8dee8d7e42a0e610f37121a84c3a9.html │ │ ├── dir_79c8dee8d7e42a0e610f37121a84c3a9.js │ │ ├── dir_88a597dd2562898b9ec6ba971ad7a8dd.html │ │ ├── dir_88a597dd2562898b9ec6ba971ad7a8dd.js │ │ ├── dir_88b085927d35ec3e069c44673959ea9f.html │ │ ├── dir_88b085927d35ec3e069c44673959ea9f.js │ │ ├── dir_8dcbebf38b229bfa7bb34d68bf824093.html │ │ ├── dir_8dcbebf38b229bfa7bb34d68bf824093.js │ │ ├── dir_8dcbebf38b229bfa7bb34d68bf824093_dep.map │ │ ├── dir_8dcbebf38b229bfa7bb34d68bf824093_dep.md5 │ │ ├── dir_8dcbebf38b229bfa7bb34d68bf824093_dep.png │ │ ├── dir_948fd774738d2193a0c62cde43f2828a.html │ │ ├── dir_948fd774738d2193a0c62cde43f2828a.js │ │ ├── dir_94f957df570c2c6f9ce99687820a8979.html │ │ ├── dir_94f957df570c2c6f9ce99687820a8979.js │ │ ├── dir_9bbf8342b0f9a157b7af08fe1412fc17.html │ │ ├── dir_9bbf8342b0f9a157b7af08fe1412fc17.js │ │ ├── dir_9bbf8342b0f9a157b7af08fe1412fc17_dep.map │ │ ├── dir_9bbf8342b0f9a157b7af08fe1412fc17_dep.md5 │ │ ├── dir_9bbf8342b0f9a157b7af08fe1412fc17_dep.png │ │ ├── dir_9d128665765fcd7de990374f9fac59bd.html │ │ ├── dir_9d128665765fcd7de990374f9fac59bd.js │ │ ├── dir_9eb8f3e2c1e15f49f92fa8db657a0769.html │ │ ├── dir_9eb8f3e2c1e15f49f92fa8db657a0769.js │ │ ├── dir_a121929b9544fab6b74c5c8052ef2940.html │ │ ├── dir_a121929b9544fab6b74c5c8052ef2940.js │ │ ├── dir_a1532c81ac7ffe94cd7af0c8adbf41fd.html │ │ ├── dir_a1532c81ac7ffe94cd7af0c8adbf41fd.js │ │ ├── dir_a239a53bd1465befb8d39895b56e9769.html │ │ ├── dir_a239a53bd1465befb8d39895b56e9769.js │ │ ├── dir_a48692e2802a027399b146b680655303.html │ │ ├── dir_a48692e2802a027399b146b680655303.js │ │ ├── dir_a48692e2802a027399b146b680655303_dep.map │ │ ├── dir_a48692e2802a027399b146b680655303_dep.md5 │ │ ├── dir_a48692e2802a027399b146b680655303_dep.png │ │ ├── dir_a6952c8402f497b804d4dc074e4d0d34.html │ │ ├── dir_a6952c8402f497b804d4dc074e4d0d34.js │ │ ├── dir_a6c6ee996e64a0a9573e0623ecba0f92.html │ │ ├── dir_a6c6ee996e64a0a9573e0623ecba0f92.js │ │ ├── dir_a844282e018cbc370849ee176c1e0170.html │ │ ├── dir_a844282e018cbc370849ee176c1e0170.js │ │ ├── dir_a923273c60bfbb58e031a3ae0355ae2a.html │ │ ├── dir_a923273c60bfbb58e031a3ae0355ae2a.js │ │ ├── dir_b3d36b9fee6f94e0e9351d3ce179e46a.html │ │ ├── dir_b3d36b9fee6f94e0e9351d3ce179e46a.js │ │ ├── dir_baeae3733d35da11d00f3bdec2bcf189.html │ │ ├── dir_baeae3733d35da11d00f3bdec2bcf189.js │ │ ├── dir_c918e8bf3fc71f849978cdb0d900e61c.html │ │ ├── dir_c918e8bf3fc71f849978cdb0d900e61c.js │ │ ├── dir_c918e8bf3fc71f849978cdb0d900e61c_dep.map │ │ ├── dir_c918e8bf3fc71f849978cdb0d900e61c_dep.md5 │ │ ├── dir_c918e8bf3fc71f849978cdb0d900e61c_dep.png │ │ ├── dir_ca98f8e97468ceedc413f5dac34c5fa4.html │ │ ├── dir_ca98f8e97468ceedc413f5dac34c5fa4.js │ │ ├── dir_ce36ac18ad3deaf5eae0bd2e09775a7d.html │ │ ├── dir_ce36ac18ad3deaf5eae0bd2e09775a7d.js │ │ ├── dir_ce36ac18ad3deaf5eae0bd2e09775a7d_dep.map │ │ ├── dir_ce36ac18ad3deaf5eae0bd2e09775a7d_dep.md5 │ │ ├── dir_ce36ac18ad3deaf5eae0bd2e09775a7d_dep.png │ │ ├── dir_d28a4824dc47e487b107a5db32ef43c4.html │ │ ├── dir_d28a4824dc47e487b107a5db32ef43c4.js │ │ ├── dir_d28a4824dc47e487b107a5db32ef43c4_dep.map │ │ ├── dir_d28a4824dc47e487b107a5db32ef43c4_dep.md5 │ │ ├── dir_d28a4824dc47e487b107a5db32ef43c4_dep.png │ │ ├── dir_d3260f5c9df29a04ffb2fb4dcbe826a0.html │ │ ├── dir_d3260f5c9df29a04ffb2fb4dcbe826a0.js │ │ ├── dir_d3f8111a063a965b5243b82006fc3654.html │ │ ├── dir_d3f8111a063a965b5243b82006fc3654.js │ │ ├── dir_d4ccf8ea657e68a549605ed7009e9385.html │ │ ├── dir_d4ccf8ea657e68a549605ed7009e9385.js │ │ ├── dir_da2f6b5bc4c7a05969000ccffa56cdba.html │ │ ├── dir_da2f6b5bc4c7a05969000ccffa56cdba.js │ │ ├── dir_ddeed1b19b98904c6aa1b48c4ffa871b.html │ │ ├── dir_ddeed1b19b98904c6aa1b48c4ffa871b.js │ │ ├── dir_decd89faf7b7ac7dc2c3b4f68098211d.html │ │ ├── dir_decd89faf7b7ac7dc2c3b4f68098211d.js │ │ ├── dir_e41b6c247808b0e8972a01b8d58acefc.html │ │ ├── dir_e41b6c247808b0e8972a01b8d58acefc.js │ │ ├── dir_e79857bc4faa7405ea054e9dea791d5c.html │ │ ├── dir_e79857bc4faa7405ea054e9dea791d5c.js │ │ ├── dir_f3d39c87bc262720c50d5e3885667b8a.html │ │ ├── dir_f3d39c87bc262720c50d5e3885667b8a.js │ │ ├── dir_f3d39c87bc262720c50d5e3885667b8a_dep.map │ │ ├── dir_f3d39c87bc262720c50d5e3885667b8a_dep.md5 │ │ ├── dir_f3d39c87bc262720c50d5e3885667b8a_dep.png │ │ ├── dir_f5fbbb3bb8d47423eec30b73de0af948.html │ │ ├── dir_f5fbbb3bb8d47423eec30b73de0af948.js │ │ ├── dir_f76977d9ffe8ddf3ad01f3d689aa5df4.html │ │ ├── dir_f76977d9ffe8ddf3ad01f3d689aa5df4.js │ │ ├── dir_f76977d9ffe8ddf3ad01f3d689aa5df4_dep.map │ │ ├── dir_f76977d9ffe8ddf3ad01f3d689aa5df4_dep.md5 │ │ ├── dir_f76977d9ffe8ddf3ad01f3d689aa5df4_dep.png │ │ ├── dir_fb9e35f5ea815af588c3e61147b6fddc.html │ │ ├── dir_fb9e35f5ea815af588c3e61147b6fddc.js │ │ ├── dir_fcb17c1a6a78f3a510af094d9b07469a.html │ │ ├── dir_fcb17c1a6a78f3a510af094d9b07469a.js │ │ ├── doc_2html_2dynsections_8js_source.html │ │ ├── doc_2html_2jquery_8js_source.html │ │ ├── doc_2html_2search_2search_8js_source.html │ │ ├── doxygen.css │ │ ├── doxygen.png │ │ ├── doxygen_8h.html │ │ ├── doxygen_8h_source.html │ │ ├── dynsections.js │ │ ├── dynsections_8js_source.html │ │ ├── examples.html │ │ ├── examples.js │ │ ├── files.html │ │ ├── files.js │ │ ├── files__0_8js_source.html │ │ ├── files__1_8js_source.html │ │ ├── ftv2blank.png │ │ ├── ftv2doc.png │ │ ├── ftv2folderclosed.png │ │ ├── ftv2folderopen.png │ │ ├── ftv2lastnode.png │ │ ├── ftv2link.png │ │ ├── ftv2mlastnode.png │ │ ├── ftv2mnode.png │ │ ├── ftv2node.png │ │ ├── ftv2plastnode.png │ │ ├── ftv2pnode.png │ │ ├── ftv2splitbar.png │ │ ├── ftv2vertline.png │ │ ├── functions.html │ │ ├── functions__0_8js_source.html │ │ ├── functions__1_8js_source.html │ │ ├── functions__2_8js_source.html │ │ ├── functions__3_8js_source.html │ │ ├── functions__4_8js_source.html │ │ ├── functions__5_8js_source.html │ │ ├── functions__6_8js_source.html │ │ ├── functions__7_8js_source.html │ │ ├── functions__8_8js_source.html │ │ ├── functions__9_8js_source.html │ │ ├── functions_d.html │ │ ├── functions_dup.js │ │ ├── functions_e.html │ │ ├── functions_func.html │ │ ├── functions_func.js │ │ ├── functions_func_d.html │ │ ├── functions_func_e.html │ │ ├── functions_func_g.html │ │ ├── functions_func_n.html │ │ ├── functions_func_p.html │ │ ├── functions_func_r.html │ │ ├── functions_func_s.html │ │ ├── functions_func_w.html │ │ ├── functions_func_~.html │ │ ├── functions_g.html │ │ ├── functions_n.html │ │ ├── functions_p.html │ │ ├── functions_r.html │ │ ├── functions_s.html │ │ ├── functions_w.html │ │ ├── functions_~.html │ │ ├── globals.html │ │ ├── globals_defs.html │ │ ├── globals_func.html │ │ ├── globals_type.html │ │ ├── graph_legend.html │ │ ├── graph_legend.md5 │ │ ├── graph_legend.png │ │ ├── group___component.html │ │ ├── group___component.js │ │ ├── group___configuration.html │ │ ├── group___configuration.js │ │ ├── group___core_a_p_i.html │ │ ├── group___core_a_p_i.js │ │ ├── group___core_a_p_i.map │ │ ├── group___core_a_p_i.md5 │ │ ├── group___core_a_p_i.png │ │ ├── group___get_started.html │ │ ├── group___touch_event.html │ │ ├── group___touch_event.js │ │ ├── group___touch_event.map │ │ ├── group___touch_event.md5 │ │ ├── group___touch_event.png │ │ ├── groups__0_8js_source.html │ │ ├── groups__1_8js_source.html │ │ ├── groups__2_8js_source.html │ │ ├── groups__3_8js_source.html │ │ ├── hierarchy.html │ │ ├── hierarchy.js │ │ ├── html │ │ │ ├── bc_s.png │ │ │ ├── bdwn.png │ │ │ ├── closed.png │ │ │ ├── doxygen.css │ │ │ ├── doxygen.png │ │ │ ├── dynsections.js │ │ │ ├── ftv2blank.png │ │ │ ├── ftv2doc.png │ │ │ ├── ftv2folderclosed.png │ │ │ ├── ftv2folderopen.png │ │ │ ├── ftv2lastnode.png │ │ │ ├── ftv2link.png │ │ │ ├── ftv2mlastnode.png │ │ │ ├── ftv2mnode.png │ │ │ ├── ftv2node.png │ │ │ ├── ftv2plastnode.png │ │ │ ├── ftv2pnode.png │ │ │ ├── ftv2splitbar.png │ │ │ ├── ftv2vertline.png │ │ │ ├── index.html │ │ │ ├── jquery.js │ │ │ ├── nav_f.png │ │ │ ├── nav_g.png │ │ │ ├── nav_h.png │ │ │ ├── open.png │ │ │ ├── search │ │ │ │ ├── close.png │ │ │ │ ├── mag_sel.png │ │ │ │ ├── nomatches.html │ │ │ │ ├── search.css │ │ │ │ ├── search.js │ │ │ │ ├── search_l.png │ │ │ │ ├── search_m.png │ │ │ │ └── search_r.png │ │ │ ├── sync_off.png │ │ │ ├── sync_on.png │ │ │ ├── tab_a.png │ │ │ ├── tab_b.png │ │ │ ├── tab_h.png │ │ │ ├── tab_s.png │ │ │ └── tabs.css │ │ ├── html_2dynsections_8js_source.html │ │ ├── html_2jquery_8js_source.html │ │ ├── html_2search_2search_8js_source.html │ │ ├── index.html │ │ ├── inherit_graph_0.map │ │ ├── inherit_graph_0.md5 │ │ ├── inherit_graph_0.png │ │ ├── inherit_graph_1.map │ │ ├── inherit_graph_1.md5 │ │ ├── inherit_graph_1.png │ │ ├── inherits.html │ │ ├── jquery.js │ │ ├── jquery_8js_source.html │ │ ├── latex │ │ │ ├── Makefile │ │ │ ├── doxygen.sty │ │ │ ├── make.bat │ │ │ └── refman.tex │ │ ├── license_8md_source.html │ │ ├── md_license.html │ │ ├── md_readme.html │ │ ├── md_release_notes.html │ │ ├── modules.html │ │ ├── modules.js │ │ ├── nav_f.png │ │ ├── nav_g.png │ │ ├── nav_h.png │ │ ├── navtree.css │ │ ├── navtree.js │ │ ├── navtreeindex0.js │ │ ├── navtreeindex1.js │ │ ├── open.png │ │ ├── pages.html │ │ ├── pages__0_8js_source.html │ │ ├── pages__1_8js_source.html │ │ ├── readme_8md_source.html │ │ ├── release__notes_8md_source.html │ │ ├── resize.js │ │ ├── search_8js_source.html │ │ ├── sync_off.png │ │ ├── sync_on.png │ │ ├── tab_a.png │ │ ├── tab_b.png │ │ ├── tab_h.png │ │ ├── tab_s.png │ │ ├── tabs.css │ │ └── typedefs__0_8js_source.html │ ├── Logo.png │ ├── doxygen_sqlite3.db │ ├── html │ │ ├── bc_s.png │ │ ├── bdwn.png │ │ ├── closed.png │ │ ├── doxygen.css │ │ ├── doxygen.png │ │ ├── dynsections.js │ │ ├── ftv2blank.png │ │ ├── ftv2doc.png │ │ ├── ftv2folderclosed.png │ │ ├── ftv2folderopen.png │ │ ├── ftv2lastnode.png │ │ ├── ftv2link.png │ │ ├── ftv2mlastnode.png │ │ ├── ftv2mnode.png │ │ ├── ftv2node.png │ │ ├── ftv2plastnode.png │ │ ├── ftv2pnode.png │ │ ├── ftv2splitbar.png │ │ ├── ftv2vertline.png │ │ ├── index.html │ │ ├── jquery.js │ │ ├── nav_f.png │ │ ├── nav_g.png │ │ ├── nav_h.png │ │ ├── open.png │ │ ├── search │ │ │ ├── close.png │ │ │ ├── mag_sel.png │ │ │ ├── nomatches.html │ │ │ ├── search.css │ │ │ ├── search.js │ │ │ ├── search_l.png │ │ │ ├── search_m.png │ │ │ └── search_r.png │ │ ├── sync_off.png │ │ ├── sync_on.png │ │ ├── tab_a.png │ │ ├── tab_b.png │ │ ├── tab_h.png │ │ ├── tab_s.png │ │ └── tabs.css │ └── latex │ │ ├── Makefile │ │ ├── doxygen.sty │ │ ├── make.bat │ │ └── refman.tex │ ├── doxygen.doxy │ ├── doxygen.h │ ├── examples │ ├── CompButton │ │ ├── CompButton.tft │ │ ├── CompButton_v0_32.HMI │ │ └── CompButton_v0_32.ino │ ├── CompCrop │ │ ├── CompCrop.tft │ │ ├── CompCrop_v0_32.HMI │ │ └── CompCrop_v0_32.ino │ ├── CompDualStateButton │ │ ├── CompDualStateButton.tft │ │ ├── CompDualStateButton_v0_32.HMI │ │ └── CompDualStateButton_v0_32.ino │ ├── CompGauge │ │ ├── CompGauge.tft │ │ ├── CompGauge_v0_32.HMI │ │ └── CompGauge_v0_32.ino │ ├── CompGpio │ │ ├── CompGpio.HMI │ │ ├── CompGpio.ino │ │ └── font.zi │ ├── CompHotspot │ │ ├── CompHotspot.tft │ │ ├── CompHotspot_v0_32.HMI │ │ └── CompHotspot_v0_32.ino │ ├── CompNumber │ │ ├── CompNumber.tft │ │ ├── CompNumber_v0_32.HMI │ │ └── CompNumber_v0_32.ino │ ├── CompPage │ │ ├── CompPage.tft │ │ ├── CompPage_v0_32.HMI │ │ └── CompPage_v0_32.ino │ ├── CompPicture │ │ ├── CompPicture.tft │ │ ├── CompPicture_v0_32.HMI │ │ └── CompPicture_v0_32.ino │ ├── CompProgressBar │ │ ├── CompProgressBar.tft │ │ ├── CompProgressBar_v0_32.HMI │ │ └── CompProgressBar_v0_32.ino │ ├── CompRtc │ │ ├── CompRtc.HMI │ │ ├── CompRtc.ino │ │ └── font.zi │ ├── CompSlider │ │ ├── CompSlider.tft │ │ ├── CompSlider_v0_32.HMI │ │ └── CompSlider_v0_32.ino │ ├── CompText │ │ ├── CompText.tft │ │ ├── CompText_v0_32.HMI │ │ └── CompText_v0_32.ino │ ├── CompTimer │ │ ├── CompTimer.tft │ │ ├── CompTimer_v0_32.HMI │ │ └── CompTimer_v0_32.ino │ ├── CompWaveform │ │ ├── CompWaveform.tft │ │ ├── CompWaveform_v0_32.HMI │ │ └── CompWaveform_v0_32.ino │ └── Upload │ │ └── Upload.ino │ ├── html │ ├── _nex_button_8cpp.html │ ├── _nex_button_8h.html │ ├── _nex_button_8h_source.html │ ├── _nex_checkbox_8cpp.html │ ├── _nex_checkbox_8h.html │ ├── _nex_checkbox_8h_source.html │ ├── _nex_config_8h.html │ ├── _nex_config_8h_source.html │ ├── _nex_crop_8cpp.html │ ├── _nex_crop_8h.html │ ├── _nex_crop_8h_source.html │ ├── _nex_dual_state_button_8cpp.html │ ├── _nex_dual_state_button_8h.html │ ├── _nex_dual_state_button_8h_source.html │ ├── _nex_gauge_8cpp.html │ ├── _nex_gauge_8h.html │ ├── _nex_gauge_8h_source.html │ ├── _nex_gpio_8cpp.html │ ├── _nex_gpio_8h_source.html │ ├── _nex_hardware_8cpp.html │ ├── _nex_hardware_8h.html │ ├── _nex_hardware_8h_source.html │ ├── _nex_hotspot_8cpp.html │ ├── _nex_hotspot_8h.html │ ├── _nex_hotspot_8h_source.html │ ├── _nex_number_8cpp.html │ ├── _nex_number_8h.html │ ├── _nex_number_8h_source.html │ ├── _nex_object_8cpp.html │ ├── _nex_object_8h.html │ ├── _nex_object_8h_source.html │ ├── _nex_page_8cpp.html │ ├── _nex_page_8h.html │ ├── _nex_page_8h_source.html │ ├── _nex_picture_8cpp.html │ ├── _nex_picture_8h.html │ ├── _nex_picture_8h_source.html │ ├── _nex_progress_bar_8cpp.html │ ├── _nex_progress_bar_8h.html │ ├── _nex_progress_bar_8h_source.html │ ├── _nex_radio_8cpp.html │ ├── _nex_radio_8h.html │ ├── _nex_radio_8h_source.html │ ├── _nex_rtc_8cpp.html │ ├── _nex_rtc_8h_source.html │ ├── _nex_scrolltext_8cpp.html │ ├── _nex_scrolltext_8h.html │ ├── _nex_scrolltext_8h_source.html │ ├── _nex_slider_8cpp.html │ ├── _nex_slider_8h.html │ ├── _nex_slider_8h_source.html │ ├── _nex_text_8cpp.html │ ├── _nex_text_8h.html │ ├── _nex_text_8h_source.html │ ├── _nex_timer_8cpp.html │ ├── _nex_timer_8h.html │ ├── _nex_timer_8h_source.html │ ├── _nex_touch_8cpp.html │ ├── _nex_touch_8h.html │ ├── _nex_touch_8h_source.html │ ├── _nex_upload_8cpp.html │ ├── _nex_upload_8h.html │ ├── _nex_upload_8h_source.html │ ├── _nex_variable_8cpp.html │ ├── _nex_variable_8h_source.html │ ├── _nex_waveform_8cpp.html │ ├── _nex_waveform_8h.html │ ├── _nex_waveform_8h_source.html │ ├── _nextion_8h.html │ ├── _nextion_8h_source.html │ ├── annotated.html │ ├── bc_s.png │ ├── bdwn.png │ ├── class_nex_button-members.html │ ├── class_nex_button.html │ ├── class_nex_button.png │ ├── class_nex_checkbox-members.html │ ├── class_nex_checkbox.html │ ├── class_nex_checkbox.png │ ├── class_nex_crop-members.html │ ├── class_nex_crop.html │ ├── class_nex_crop.png │ ├── class_nex_d_s_button-members.html │ ├── class_nex_d_s_button.html │ ├── class_nex_d_s_button.png │ ├── class_nex_gauge-members.html │ ├── class_nex_gauge.html │ ├── class_nex_gauge.png │ ├── class_nex_gpio-members.html │ ├── class_nex_gpio.html │ ├── class_nex_hotspot-members.html │ ├── class_nex_hotspot.html │ ├── class_nex_hotspot.png │ ├── class_nex_number-members.html │ ├── class_nex_number.html │ ├── class_nex_number.png │ ├── class_nex_object-members.html │ ├── class_nex_object.html │ ├── class_nex_object.png │ ├── class_nex_page-members.html │ ├── class_nex_page.html │ ├── class_nex_page.png │ ├── class_nex_picture-members.html │ ├── class_nex_picture.html │ ├── class_nex_picture.png │ ├── class_nex_progress_bar-members.html │ ├── class_nex_progress_bar.html │ ├── class_nex_progress_bar.png │ ├── class_nex_radio-members.html │ ├── class_nex_radio.html │ ├── class_nex_radio.png │ ├── class_nex_rtc-members.html │ ├── class_nex_rtc.html │ ├── class_nex_scrolltext-members.html │ ├── class_nex_scrolltext.html │ ├── class_nex_scrolltext.png │ ├── class_nex_slider-members.html │ ├── class_nex_slider.html │ ├── class_nex_slider.png │ ├── class_nex_text-members.html │ ├── class_nex_text.html │ ├── class_nex_text.png │ ├── class_nex_timer-members.html │ ├── class_nex_timer.html │ ├── class_nex_timer.png │ ├── class_nex_touch-members.html │ ├── class_nex_touch.html │ ├── class_nex_touch.png │ ├── class_nex_upload-members.html │ ├── class_nex_upload.html │ ├── class_nex_variable-members.html │ ├── class_nex_variable.html │ ├── class_nex_variable.png │ ├── class_nex_waveform-members.html │ ├── class_nex_waveform.html │ ├── class_nex_waveform.png │ ├── classes.html │ ├── closed.png │ ├── doxygen.css │ ├── doxygen.png │ ├── doxygen_8h.html │ ├── doxygen_8h_source.html │ ├── dynsections.js │ ├── files.html │ ├── ftv2blank.png │ ├── ftv2doc.png │ ├── ftv2folderclosed.png │ ├── ftv2folderopen.png │ ├── ftv2lastnode.png │ ├── ftv2link.png │ ├── ftv2mlastnode.png │ ├── ftv2mnode.png │ ├── ftv2node.png │ ├── ftv2plastnode.png │ ├── ftv2pnode.png │ ├── ftv2splitbar.png │ ├── ftv2vertline.png │ ├── functions.html │ ├── functions_d.html │ ├── functions_e.html │ ├── functions_func.html │ ├── functions_func_d.html │ ├── functions_func_e.html │ ├── functions_func_g.html │ ├── functions_func_n.html │ ├── functions_func_p.html │ ├── functions_func_r.html │ ├── functions_func_s.html │ ├── functions_func_w.html │ ├── functions_func_~.html │ ├── functions_g.html │ ├── functions_n.html │ ├── functions_p.html │ ├── functions_r.html │ ├── functions_s.html │ ├── functions_w.html │ ├── functions_~.html │ ├── globals.html │ ├── globals_defs.html │ ├── globals_func.html │ ├── globals_type.html │ ├── group___component.html │ ├── group___configuration.html │ ├── group___core_a_p_i.html │ ├── group___get_started.html │ ├── group___touch_event.html │ ├── hierarchy.html │ ├── index.html │ ├── jquery.js │ ├── md_readme.html │ ├── md_release_notes.html │ ├── modules.html │ ├── nav_f.png │ ├── nav_g.png │ ├── nav_h.png │ ├── open.png │ ├── pages.html │ ├── search │ │ ├── all_0.html │ │ ├── all_0.js │ │ ├── all_1.html │ │ ├── all_1.js │ │ ├── all_2.html │ │ ├── all_2.js │ │ ├── all_3.html │ │ ├── all_3.js │ │ ├── all_4.html │ │ ├── all_4.js │ │ ├── all_5.html │ │ ├── all_5.js │ │ ├── all_6.html │ │ ├── all_6.js │ │ ├── all_7.html │ │ ├── all_7.js │ │ ├── all_8.html │ │ ├── all_8.js │ │ ├── all_9.html │ │ ├── all_9.js │ │ ├── all_a.html │ │ ├── all_a.js │ │ ├── all_b.html │ │ ├── all_b.js │ │ ├── all_c.html │ │ ├── all_c.js │ │ ├── classes_0.html │ │ ├── classes_0.js │ │ ├── close.png │ │ ├── files_0.html │ │ ├── files_0.js │ │ ├── files_1.html │ │ ├── files_1.js │ │ ├── functions_0.html │ │ ├── functions_0.js │ │ ├── functions_1.html │ │ ├── functions_1.js │ │ ├── functions_2.html │ │ ├── functions_2.js │ │ ├── functions_3.html │ │ ├── functions_3.js │ │ ├── functions_4.html │ │ ├── functions_4.js │ │ ├── functions_5.html │ │ ├── functions_5.js │ │ ├── functions_6.html │ │ ├── functions_6.js │ │ ├── functions_7.html │ │ ├── functions_7.js │ │ ├── functions_8.html │ │ ├── functions_8.js │ │ ├── functions_9.html │ │ ├── functions_9.js │ │ ├── groups_0.html │ │ ├── groups_0.js │ │ ├── groups_1.html │ │ ├── groups_1.js │ │ ├── groups_2.html │ │ ├── groups_2.js │ │ ├── groups_3.html │ │ ├── groups_3.js │ │ ├── mag_sel.png │ │ ├── nomatches.html │ │ ├── pages_0.html │ │ ├── pages_0.js │ │ ├── pages_1.html │ │ ├── pages_1.js │ │ ├── search.css │ │ ├── search.js │ │ ├── search_l.png │ │ ├── search_m.png │ │ ├── search_r.png │ │ ├── typedefs_0.html │ │ └── typedefs_0.js │ ├── sync_off.png │ ├── sync_on.png │ ├── tab_a.png │ ├── tab_b.png │ ├── tab_h.png │ ├── tab_s.png │ └── tabs.css │ ├── latex │ ├── Makefile │ ├── _nex_button_8cpp.tex │ ├── _nex_button_8h.tex │ ├── _nex_checkbox_8cpp.tex │ ├── _nex_checkbox_8h.tex │ ├── _nex_config_8h.tex │ ├── _nex_crop_8cpp.tex │ ├── _nex_crop_8h.tex │ ├── _nex_dual_state_button_8cpp.tex │ ├── _nex_dual_state_button_8h.tex │ ├── _nex_gauge_8cpp.tex │ ├── _nex_gauge_8h.tex │ ├── _nex_gpio_8cpp.tex │ ├── _nex_hardware_8cpp.tex │ ├── _nex_hardware_8h.tex │ ├── _nex_hotspot_8cpp.tex │ ├── _nex_hotspot_8h.tex │ ├── _nex_number_8cpp.tex │ ├── _nex_number_8h.tex │ ├── _nex_object_8cpp.tex │ ├── _nex_object_8h.tex │ ├── _nex_page_8cpp.tex │ ├── _nex_page_8h.tex │ ├── _nex_picture_8cpp.tex │ ├── _nex_picture_8h.tex │ ├── _nex_progress_bar_8cpp.tex │ ├── _nex_progress_bar_8h.tex │ ├── _nex_radio_8cpp.tex │ ├── _nex_radio_8h.tex │ ├── _nex_rtc_8cpp.tex │ ├── _nex_scrolltext_8cpp.tex │ ├── _nex_scrolltext_8h.tex │ ├── _nex_slider_8cpp.tex │ ├── _nex_slider_8h.tex │ ├── _nex_text_8cpp.tex │ ├── _nex_text_8h.tex │ ├── _nex_timer_8cpp.tex │ ├── _nex_timer_8h.tex │ ├── _nex_touch_8cpp.tex │ ├── _nex_touch_8h.tex │ ├── _nex_upload_8cpp.tex │ ├── _nex_upload_8h.tex │ ├── _nex_variable_8cpp.tex │ ├── _nex_waveform_8cpp.tex │ ├── _nex_waveform_8h.tex │ ├── _nextion_8h.tex │ ├── annotated.tex │ ├── class_nex_button.eps │ ├── class_nex_button.tex │ ├── class_nex_checkbox.eps │ ├── class_nex_checkbox.tex │ ├── class_nex_crop.eps │ ├── class_nex_crop.tex │ ├── class_nex_d_s_button.eps │ ├── class_nex_d_s_button.tex │ ├── class_nex_gauge.eps │ ├── class_nex_gauge.tex │ ├── class_nex_gpio.tex │ ├── class_nex_hotspot.eps │ ├── class_nex_hotspot.tex │ ├── class_nex_number.eps │ ├── class_nex_number.tex │ ├── class_nex_object.eps │ ├── class_nex_object.tex │ ├── class_nex_page.eps │ ├── class_nex_page.tex │ ├── class_nex_picture.eps │ ├── class_nex_picture.tex │ ├── class_nex_progress_bar.eps │ ├── class_nex_progress_bar.tex │ ├── class_nex_radio.eps │ ├── class_nex_radio.tex │ ├── class_nex_rtc.tex │ ├── class_nex_scrolltext.eps │ ├── class_nex_scrolltext.tex │ ├── class_nex_slider.eps │ ├── class_nex_slider.tex │ ├── class_nex_text.eps │ ├── class_nex_text.tex │ ├── class_nex_timer.eps │ ├── class_nex_timer.tex │ ├── class_nex_touch.eps │ ├── class_nex_touch.tex │ ├── class_nex_upload.tex │ ├── class_nex_variable.eps │ ├── class_nex_variable.tex │ ├── class_nex_waveform.eps │ ├── class_nex_waveform.tex │ ├── doxygen.sty │ ├── doxygen_8h.tex │ ├── files.tex │ ├── group___component.tex │ ├── group___configuration.tex │ ├── group___core_a_p_i.tex │ ├── group___get_started.tex │ ├── group___touch_event.tex │ ├── hierarchy.tex │ ├── index.tex │ ├── make.bat │ ├── md_readme.tex │ ├── md_release_notes.tex │ ├── modules.tex │ └── refman.tex │ ├── license.md │ ├── readme.md │ ├── release_notes.md │ └── version.txt ├── RF_Wattmeter_Teensy41_PCB_V1 ├── .vscode │ ├── arduino.json │ └── c_cpp_properties.json ├── Docs │ ├── Remote Wattmeter with Band Decoder.docx │ └── Teensy 4.1 RF Wattmeter and Band Decoder Project.pptx ├── Ethernet_Test_Programs │ ├── Rotor-Controller-UDP-Client │ │ └── Rotor-Controller-UDP-Client.ino │ ├── Rotor-Controller-UDP-Server │ │ ├── Rotor-Controller-UDP-Server-Enet.ino │ │ ├── Rotor-Controller-UDP-Server-RotorHandler.ino │ │ ├── Rotor-Controller-UDP-Server.h │ │ └── Rotor-Controller-UDP-Server.ino │ ├── UDP-CPU-1 │ │ └── UDP-CPU-1.ino │ ├── UDP-CPU-2 │ │ └── UDP-CPU-2.ino │ └── UDP-Radio-Test │ │ └── UDP-Radio-Test.ino ├── NativeEthernetPatch │ └── NativeEthernet.cpp ├── PCB_Files │ ├── PowerMeter_BandDecoder_V1.sch │ ├── PowerMeter_BandDecoder_V1_Schematic_CPU.bmp │ ├── PowerMeter_BandDecoder_V1_Schematic_IO.bmp │ ├── PowerMeter_PCBv.02.bmp │ ├── PowerMeter_PCBv.02.pcb │ ├── PowerMeter_PCBv.02_Top_and_Bottom_Layers.pdf │ ├── PowerMeter_PCBv.02_mechanical.bmp │ ├── PowerMeter_PCBv.03.pcb │ ├── PowerMeter_PCBv.04.pcb │ └── PowerMeter_PCBv.04_Top_and_Bottom_Layers.pdf ├── RF_Wattmeter_Nextion.h ├── RF_Wattmeter_Teensy41_PCB_V1.h ├── RF_Wattmeter_Teensy41_PCB_V1.ino └── nextion_patched │ └── ITEADLIB_Arduino_Nextion_patched │ ├── NexButton.cpp │ ├── NexButton.h │ ├── NexCheckbox.cpp │ ├── NexCheckbox.h │ ├── NexConfig.h │ ├── NexCrop.cpp │ ├── NexCrop.h │ ├── NexDualStateButton.cpp │ ├── NexDualStateButton.h │ ├── NexGauge.cpp │ ├── NexGauge.h │ ├── NexGpio.cpp │ ├── NexGpio.h │ ├── NexHardware.cpp │ ├── NexHardware.h │ ├── NexHotspot.cpp │ ├── NexHotspot.h │ ├── NexNumber.cpp │ ├── NexNumber.h │ ├── NexObject.cpp │ ├── NexObject.h │ ├── NexPage.cpp │ ├── NexPage.h │ ├── NexPicture.cpp │ ├── NexPicture.h │ ├── NexProgressBar.cpp │ ├── NexProgressBar.h │ ├── NexRadio.cpp │ ├── NexRadio.h │ ├── NexRtc.cpp │ ├── NexRtc.h │ ├── NexScrolltext.cpp │ ├── NexScrolltext.h │ ├── NexSlider.cpp │ ├── NexSlider.h │ ├── NexText.cpp │ ├── NexText.h │ ├── NexTimer.cpp │ ├── NexTimer.h │ ├── NexTouch.cpp │ ├── NexTouch.h │ ├── NexUpload.cpp │ ├── NexUpload.h │ ├── NexVariable.cpp │ ├── NexVariable.h │ ├── NexWaveform.cpp │ ├── NexWaveform.h │ ├── Nextion.h │ ├── RF_Wattmeter_Nextion.h │ ├── doc │ ├── Documentation │ │ ├── Logo.png │ │ ├── _comp_button_8ino-example.html │ │ ├── _comp_button_8ino_source.html │ │ ├── _comp_button__v0__32_8ino_source.html │ │ ├── _comp_button_v0_32_8ino-example.html │ │ ├── _comp_crop_8ino-example.html │ │ ├── _comp_crop_8ino_source.html │ │ ├── _comp_crop__v0__32_8ino_source.html │ │ ├── _comp_crop_v0_32_8ino-example.html │ │ ├── _comp_dual_state_button_8ino-example.html │ │ ├── _comp_dual_state_button_8ino_source.html │ │ ├── _comp_dual_state_button__v0__32_8ino_source.html │ │ ├── _comp_dual_state_button_v0_32_8ino-example.html │ │ ├── _comp_gauge_8ino-example.html │ │ ├── _comp_gauge_8ino_source.html │ │ ├── _comp_gauge__v0__32_8ino_source.html │ │ ├── _comp_gauge_v0_32_8ino-example.html │ │ ├── _comp_gpio_2_comp_gpio_8ino_source.html │ │ ├── _comp_gpio_8ino-example.html │ │ ├── _comp_gpio_8ino_source.html │ │ ├── _comp_hotspot_8ino-example.html │ │ ├── _comp_hotspot_8ino_source.html │ │ ├── _comp_hotspot__v0__32_8ino_source.html │ │ ├── _comp_hotspot_v0_32_8ino-example.html │ │ ├── _comp_number_8ino-example.html │ │ ├── _comp_number_8ino_source.html │ │ ├── _comp_number__v0__32_8ino_source.html │ │ ├── _comp_number_v0_32_8ino-example.html │ │ ├── _comp_page_8ino-example.html │ │ ├── _comp_page_8ino_source.html │ │ ├── _comp_page__v0__32_8ino_source.html │ │ ├── _comp_page_v0_32_8ino-example.html │ │ ├── _comp_picture_8ino-example.html │ │ ├── _comp_picture_8ino_source.html │ │ ├── _comp_picture__v0__32_8ino_source.html │ │ ├── _comp_picture_v0_32_8ino-example.html │ │ ├── _comp_progress_bar_8ino-example.html │ │ ├── _comp_progress_bar_8ino_source.html │ │ ├── _comp_progress_bar__v0__32_8ino_source.html │ │ ├── _comp_progress_bar_v0_32_8ino-example.html │ │ ├── _comp_rtc_8ino-example.html │ │ ├── _comp_rtc_8ino_source.html │ │ ├── _comp_slider_8ino-example.html │ │ ├── _comp_slider_8ino_source.html │ │ ├── _comp_slider__v0__32_8ino_source.html │ │ ├── _comp_slider_v0_32_8ino-example.html │ │ ├── _comp_text_8ino-example.html │ │ ├── _comp_text_8ino_source.html │ │ ├── _comp_text__v0__32_8ino_source.html │ │ ├── _comp_text_v0_32_8ino-example.html │ │ ├── _comp_timer_2_comp_waveform__v0__32_8ino_source.html │ │ ├── _comp_timer_8ino-example.html │ │ ├── _comp_timer_8ino_source.html │ │ ├── _comp_timer__v0__32_8ino_source.html │ │ ├── _comp_timer_v0_32_8ino-example.html │ │ ├── _comp_waveform_2_comp_waveform__v0__32_8ino_source.html │ │ ├── _comp_waveform_8ino-example.html │ │ ├── _comp_waveform_8ino_source.html │ │ ├── _comp_waveform__v0__32_8ino_source.html │ │ ├── _comp_waveform_v0_32_8ino-example.html │ │ ├── _nex_button_8cpp.html │ │ ├── _nex_button_8cpp__incl.map │ │ ├── _nex_button_8cpp__incl.md5 │ │ ├── _nex_button_8cpp__incl.png │ │ ├── _nex_button_8cpp_source.html │ │ ├── _nex_button_8h.html │ │ ├── _nex_button_8h__dep__incl.map │ │ ├── _nex_button_8h__dep__incl.md5 │ │ ├── _nex_button_8h__dep__incl.png │ │ ├── _nex_button_8h__incl.map │ │ ├── _nex_button_8h__incl.md5 │ │ ├── _nex_button_8h__incl.png │ │ ├── _nex_button_8h_source.html │ │ ├── _nex_checkbox_8cpp.html │ │ ├── _nex_checkbox_8cpp__incl.map │ │ ├── _nex_checkbox_8cpp__incl.md5 │ │ ├── _nex_checkbox_8cpp__incl.png │ │ ├── _nex_checkbox_8cpp_source.html │ │ ├── _nex_checkbox_8h.html │ │ ├── _nex_checkbox_8h__dep__incl.map │ │ ├── _nex_checkbox_8h__dep__incl.md5 │ │ ├── _nex_checkbox_8h__dep__incl.png │ │ ├── _nex_checkbox_8h__incl.map │ │ ├── _nex_checkbox_8h__incl.md5 │ │ ├── _nex_checkbox_8h__incl.png │ │ ├── _nex_checkbox_8h_source.html │ │ ├── _nex_config_8h.html │ │ ├── _nex_config_8h.js │ │ ├── _nex_config_8h__dep__incl.map │ │ ├── _nex_config_8h__dep__incl.md5 │ │ ├── _nex_config_8h__dep__incl.png │ │ ├── _nex_config_8h_source.html │ │ ├── _nex_crop_8cpp.html │ │ ├── _nex_crop_8cpp__incl.map │ │ ├── _nex_crop_8cpp__incl.md5 │ │ ├── _nex_crop_8cpp__incl.png │ │ ├── _nex_crop_8cpp_source.html │ │ ├── _nex_crop_8h.html │ │ ├── _nex_crop_8h__dep__incl.map │ │ ├── _nex_crop_8h__dep__incl.md5 │ │ ├── _nex_crop_8h__dep__incl.png │ │ ├── _nex_crop_8h__incl.map │ │ ├── _nex_crop_8h__incl.md5 │ │ ├── _nex_crop_8h__incl.png │ │ ├── _nex_crop_8h_source.html │ │ ├── _nex_dual_state_button_8cpp.html │ │ ├── _nex_dual_state_button_8cpp__incl.map │ │ ├── _nex_dual_state_button_8cpp__incl.md5 │ │ ├── _nex_dual_state_button_8cpp__incl.png │ │ ├── _nex_dual_state_button_8cpp_source.html │ │ ├── _nex_dual_state_button_8h.html │ │ ├── _nex_dual_state_button_8h__dep__incl.map │ │ ├── _nex_dual_state_button_8h__dep__incl.md5 │ │ ├── _nex_dual_state_button_8h__dep__incl.png │ │ ├── _nex_dual_state_button_8h__incl.map │ │ ├── _nex_dual_state_button_8h__incl.md5 │ │ ├── _nex_dual_state_button_8h__incl.png │ │ ├── _nex_dual_state_button_8h_source.html │ │ ├── _nex_gauge_8cpp.html │ │ ├── _nex_gauge_8cpp__incl.map │ │ ├── _nex_gauge_8cpp__incl.md5 │ │ ├── _nex_gauge_8cpp__incl.png │ │ ├── _nex_gauge_8cpp_source.html │ │ ├── _nex_gauge_8h.html │ │ ├── _nex_gauge_8h__dep__incl.map │ │ ├── _nex_gauge_8h__dep__incl.md5 │ │ ├── _nex_gauge_8h__dep__incl.png │ │ ├── _nex_gauge_8h__incl.map │ │ ├── _nex_gauge_8h__incl.md5 │ │ ├── _nex_gauge_8h__incl.png │ │ ├── _nex_gauge_8h_source.html │ │ ├── _nex_gpio_8cpp.html │ │ ├── _nex_gpio_8cpp_source.html │ │ ├── _nex_gpio_8h.html │ │ ├── _nex_gpio_8h_source.html │ │ ├── _nex_hardware_8cpp.html │ │ ├── _nex_hardware_8cpp.js │ │ ├── _nex_hardware_8cpp__incl.map │ │ ├── _nex_hardware_8cpp__incl.md5 │ │ ├── _nex_hardware_8cpp__incl.png │ │ ├── _nex_hardware_8cpp_source.html │ │ ├── _nex_hardware_8h.html │ │ ├── _nex_hardware_8h.js │ │ ├── _nex_hardware_8h__dep__incl.map │ │ ├── _nex_hardware_8h__dep__incl.md5 │ │ ├── _nex_hardware_8h__dep__incl.png │ │ ├── _nex_hardware_8h__incl.map │ │ ├── _nex_hardware_8h__incl.md5 │ │ ├── _nex_hardware_8h__incl.png │ │ ├── _nex_hardware_8h_source.html │ │ ├── _nex_hotspot_8cpp.html │ │ ├── _nex_hotspot_8cpp__incl.map │ │ ├── _nex_hotspot_8cpp__incl.md5 │ │ ├── _nex_hotspot_8cpp__incl.png │ │ ├── _nex_hotspot_8cpp_source.html │ │ ├── _nex_hotspot_8h.html │ │ ├── _nex_hotspot_8h__dep__incl.map │ │ ├── _nex_hotspot_8h__dep__incl.md5 │ │ ├── _nex_hotspot_8h__dep__incl.png │ │ ├── _nex_hotspot_8h__incl.map │ │ ├── _nex_hotspot_8h__incl.md5 │ │ ├── _nex_hotspot_8h__incl.png │ │ ├── _nex_hotspot_8h_source.html │ │ ├── _nex_number_8cpp.html │ │ ├── _nex_number_8cpp__incl.map │ │ ├── _nex_number_8cpp__incl.md5 │ │ ├── _nex_number_8cpp__incl.png │ │ ├── _nex_number_8cpp_source.html │ │ ├── _nex_number_8h.html │ │ ├── _nex_number_8h__dep__incl.map │ │ ├── _nex_number_8h__dep__incl.md5 │ │ ├── _nex_number_8h__dep__incl.png │ │ ├── _nex_number_8h__incl.map │ │ ├── _nex_number_8h__incl.md5 │ │ ├── _nex_number_8h__incl.png │ │ ├── _nex_number_8h_source.html │ │ ├── _nex_object_8cpp.html │ │ ├── _nex_object_8cpp__incl.map │ │ ├── _nex_object_8cpp__incl.md5 │ │ ├── _nex_object_8cpp__incl.png │ │ ├── _nex_object_8cpp_source.html │ │ ├── _nex_object_8h.html │ │ ├── _nex_object_8h__dep__incl.map │ │ ├── _nex_object_8h__dep__incl.md5 │ │ ├── _nex_object_8h__dep__incl.png │ │ ├── _nex_object_8h__incl.map │ │ ├── _nex_object_8h__incl.md5 │ │ ├── _nex_object_8h__incl.png │ │ ├── _nex_object_8h_source.html │ │ ├── _nex_page_8cpp.html │ │ ├── _nex_page_8cpp__incl.map │ │ ├── _nex_page_8cpp__incl.md5 │ │ ├── _nex_page_8cpp__incl.png │ │ ├── _nex_page_8cpp_source.html │ │ ├── _nex_page_8h.html │ │ ├── _nex_page_8h__dep__incl.map │ │ ├── _nex_page_8h__dep__incl.md5 │ │ ├── _nex_page_8h__dep__incl.png │ │ ├── _nex_page_8h__incl.map │ │ ├── _nex_page_8h__incl.md5 │ │ ├── _nex_page_8h__incl.png │ │ ├── _nex_page_8h_source.html │ │ ├── _nex_picture_8cpp.html │ │ ├── _nex_picture_8cpp__incl.map │ │ ├── _nex_picture_8cpp__incl.md5 │ │ ├── _nex_picture_8cpp__incl.png │ │ ├── _nex_picture_8cpp_source.html │ │ ├── _nex_picture_8h.html │ │ ├── _nex_picture_8h__dep__incl.map │ │ ├── _nex_picture_8h__dep__incl.md5 │ │ ├── _nex_picture_8h__dep__incl.png │ │ ├── _nex_picture_8h__incl.map │ │ ├── _nex_picture_8h__incl.md5 │ │ ├── _nex_picture_8h__incl.png │ │ ├── _nex_picture_8h_source.html │ │ ├── _nex_progress_bar_8cpp.html │ │ ├── _nex_progress_bar_8cpp__incl.map │ │ ├── _nex_progress_bar_8cpp__incl.md5 │ │ ├── _nex_progress_bar_8cpp__incl.png │ │ ├── _nex_progress_bar_8cpp_source.html │ │ ├── _nex_progress_bar_8h.html │ │ ├── _nex_progress_bar_8h__dep__incl.map │ │ ├── _nex_progress_bar_8h__dep__incl.md5 │ │ ├── _nex_progress_bar_8h__dep__incl.png │ │ ├── _nex_progress_bar_8h__incl.map │ │ ├── _nex_progress_bar_8h__incl.md5 │ │ ├── _nex_progress_bar_8h__incl.png │ │ ├── _nex_progress_bar_8h_source.html │ │ ├── _nex_radio_8cpp.html │ │ ├── _nex_radio_8cpp__incl.map │ │ ├── _nex_radio_8cpp__incl.md5 │ │ ├── _nex_radio_8cpp__incl.png │ │ ├── _nex_radio_8cpp_source.html │ │ ├── _nex_radio_8h.html │ │ ├── _nex_radio_8h__dep__incl.map │ │ ├── _nex_radio_8h__dep__incl.md5 │ │ ├── _nex_radio_8h__dep__incl.png │ │ ├── _nex_radio_8h__incl.map │ │ ├── _nex_radio_8h__incl.md5 │ │ ├── _nex_radio_8h__incl.png │ │ ├── _nex_radio_8h_source.html │ │ ├── _nex_rtc_8cpp.html │ │ ├── _nex_rtc_8cpp_source.html │ │ ├── _nex_rtc_8h.html │ │ ├── _nex_rtc_8h_source.html │ │ ├── _nex_scrolltext_8cpp.html │ │ ├── _nex_scrolltext_8cpp__incl.map │ │ ├── _nex_scrolltext_8cpp__incl.md5 │ │ ├── _nex_scrolltext_8cpp__incl.png │ │ ├── _nex_scrolltext_8cpp_source.html │ │ ├── _nex_scrolltext_8h.html │ │ ├── _nex_scrolltext_8h__dep__incl.map │ │ ├── _nex_scrolltext_8h__dep__incl.md5 │ │ ├── _nex_scrolltext_8h__dep__incl.png │ │ ├── _nex_scrolltext_8h__incl.map │ │ ├── _nex_scrolltext_8h__incl.md5 │ │ ├── _nex_scrolltext_8h__incl.png │ │ ├── _nex_scrolltext_8h_source.html │ │ ├── _nex_slider_8cpp.html │ │ ├── _nex_slider_8cpp__incl.map │ │ ├── _nex_slider_8cpp__incl.md5 │ │ ├── _nex_slider_8cpp__incl.png │ │ ├── _nex_slider_8cpp_source.html │ │ ├── _nex_slider_8h.html │ │ ├── _nex_slider_8h__dep__incl.map │ │ ├── _nex_slider_8h__dep__incl.md5 │ │ ├── _nex_slider_8h__dep__incl.png │ │ ├── _nex_slider_8h__incl.map │ │ ├── _nex_slider_8h__incl.md5 │ │ ├── _nex_slider_8h__incl.png │ │ ├── _nex_slider_8h_source.html │ │ ├── _nex_text_8cpp.html │ │ ├── _nex_text_8cpp__incl.map │ │ ├── _nex_text_8cpp__incl.md5 │ │ ├── _nex_text_8cpp__incl.png │ │ ├── _nex_text_8cpp_source.html │ │ ├── _nex_text_8h.html │ │ ├── _nex_text_8h__dep__incl.map │ │ ├── _nex_text_8h__dep__incl.md5 │ │ ├── _nex_text_8h__dep__incl.png │ │ ├── _nex_text_8h__incl.map │ │ ├── _nex_text_8h__incl.md5 │ │ ├── _nex_text_8h__incl.png │ │ ├── _nex_text_8h_source.html │ │ ├── _nex_timer_8cpp.html │ │ ├── _nex_timer_8cpp__incl.map │ │ ├── _nex_timer_8cpp__incl.md5 │ │ ├── _nex_timer_8cpp__incl.png │ │ ├── _nex_timer_8cpp_source.html │ │ ├── _nex_timer_8h.html │ │ ├── _nex_timer_8h__dep__incl.map │ │ ├── _nex_timer_8h__dep__incl.md5 │ │ ├── _nex_timer_8h__dep__incl.png │ │ ├── _nex_timer_8h__incl.map │ │ ├── _nex_timer_8h__incl.md5 │ │ ├── _nex_timer_8h__incl.png │ │ ├── _nex_timer_8h_source.html │ │ ├── _nex_touch_8cpp.html │ │ ├── _nex_touch_8cpp__incl.map │ │ ├── _nex_touch_8cpp__incl.md5 │ │ ├── _nex_touch_8cpp__incl.png │ │ ├── _nex_touch_8cpp_source.html │ │ ├── _nex_touch_8h.html │ │ ├── _nex_touch_8h.js │ │ ├── _nex_touch_8h__dep__incl.map │ │ ├── _nex_touch_8h__dep__incl.md5 │ │ ├── _nex_touch_8h__dep__incl.png │ │ ├── _nex_touch_8h__incl.map │ │ ├── _nex_touch_8h__incl.md5 │ │ ├── _nex_touch_8h__incl.png │ │ ├── _nex_touch_8h_source.html │ │ ├── _nex_upload_8cpp.html │ │ ├── _nex_upload_8cpp__incl.map │ │ ├── _nex_upload_8cpp__incl.md5 │ │ ├── _nex_upload_8cpp__incl.png │ │ ├── _nex_upload_8cpp_source.html │ │ ├── _nex_upload_8h.html │ │ ├── _nex_upload_8h__dep__incl.map │ │ ├── _nex_upload_8h__dep__incl.md5 │ │ ├── _nex_upload_8h__dep__incl.png │ │ ├── _nex_upload_8h__incl.map │ │ ├── _nex_upload_8h__incl.md5 │ │ ├── _nex_upload_8h__incl.png │ │ ├── _nex_upload_8h_source.html │ │ ├── _nex_variable_8cpp.html │ │ ├── _nex_variable_8cpp__incl.map │ │ ├── _nex_variable_8cpp__incl.md5 │ │ ├── _nex_variable_8cpp__incl.png │ │ ├── _nex_variable_8cpp_source.html │ │ ├── _nex_variable_8h_source.html │ │ ├── _nex_waveform_8cpp.html │ │ ├── _nex_waveform_8cpp__incl.map │ │ ├── _nex_waveform_8cpp__incl.md5 │ │ ├── _nex_waveform_8cpp__incl.png │ │ ├── _nex_waveform_8cpp_source.html │ │ ├── _nex_waveform_8h.html │ │ ├── _nex_waveform_8h__dep__incl.map │ │ ├── _nex_waveform_8h__dep__incl.md5 │ │ ├── _nex_waveform_8h__dep__incl.png │ │ ├── _nex_waveform_8h__incl.map │ │ ├── _nex_waveform_8h__incl.md5 │ │ ├── _nex_waveform_8h__incl.png │ │ ├── _nex_waveform_8h_source.html │ │ ├── _nextion_8h.html │ │ ├── _nextion_8h__dep__incl.map │ │ ├── _nextion_8h__dep__incl.md5 │ │ ├── _nextion_8h__dep__incl.png │ │ ├── _nextion_8h__incl.map │ │ ├── _nextion_8h__incl.md5 │ │ ├── _nextion_8h__incl.png │ │ ├── _nextion_8h_source.html │ │ ├── _upload_8ino_source.html │ │ ├── all__0_8js_source.html │ │ ├── all__1_8js_source.html │ │ ├── all__2_8js_source.html │ │ ├── all__3_8js_source.html │ │ ├── all__4_8js_source.html │ │ ├── all__5_8js_source.html │ │ ├── all__6_8js_source.html │ │ ├── all__7_8js_source.html │ │ ├── all__8_8js_source.html │ │ ├── all__9_8js_source.html │ │ ├── all__a_8js_source.html │ │ ├── all__b_8js_source.html │ │ ├── all__c_8js_source.html │ │ ├── annotated.html │ │ ├── annotated.js │ │ ├── bc_s.png │ │ ├── bdwn.png │ │ ├── class_nex_button-members.html │ │ ├── class_nex_button.html │ │ ├── class_nex_button.js │ │ ├── class_nex_button__coll__graph.map │ │ ├── class_nex_button__coll__graph.md5 │ │ ├── class_nex_button__coll__graph.png │ │ ├── class_nex_button__inherit__graph.map │ │ ├── class_nex_button__inherit__graph.md5 │ │ ├── class_nex_button__inherit__graph.png │ │ ├── class_nex_checkbox-members.html │ │ ├── class_nex_checkbox.html │ │ ├── class_nex_checkbox.js │ │ ├── class_nex_checkbox__coll__graph.map │ │ ├── class_nex_checkbox__coll__graph.md5 │ │ ├── class_nex_checkbox__coll__graph.png │ │ ├── class_nex_checkbox__inherit__graph.map │ │ ├── class_nex_checkbox__inherit__graph.md5 │ │ ├── class_nex_checkbox__inherit__graph.png │ │ ├── class_nex_crop-members.html │ │ ├── class_nex_crop.html │ │ ├── class_nex_crop.js │ │ ├── class_nex_crop__coll__graph.map │ │ ├── class_nex_crop__coll__graph.md5 │ │ ├── class_nex_crop__coll__graph.png │ │ ├── class_nex_crop__inherit__graph.map │ │ ├── class_nex_crop__inherit__graph.md5 │ │ ├── class_nex_crop__inherit__graph.png │ │ ├── class_nex_d_s_button-members.html │ │ ├── class_nex_d_s_button.html │ │ ├── class_nex_d_s_button.js │ │ ├── class_nex_d_s_button__coll__graph.map │ │ ├── class_nex_d_s_button__coll__graph.md5 │ │ ├── class_nex_d_s_button__coll__graph.png │ │ ├── class_nex_d_s_button__inherit__graph.map │ │ ├── class_nex_d_s_button__inherit__graph.md5 │ │ ├── class_nex_d_s_button__inherit__graph.png │ │ ├── class_nex_gauge-members.html │ │ ├── class_nex_gauge.html │ │ ├── class_nex_gauge.js │ │ ├── class_nex_gauge__coll__graph.map │ │ ├── class_nex_gauge__coll__graph.md5 │ │ ├── class_nex_gauge__coll__graph.png │ │ ├── class_nex_gauge__inherit__graph.map │ │ ├── class_nex_gauge__inherit__graph.md5 │ │ ├── class_nex_gauge__inherit__graph.png │ │ ├── class_nex_gpio-members.html │ │ ├── class_nex_gpio.html │ │ ├── class_nex_gpio.js │ │ ├── class_nex_hotspot-members.html │ │ ├── class_nex_hotspot.html │ │ ├── class_nex_hotspot.js │ │ ├── class_nex_hotspot__coll__graph.map │ │ ├── class_nex_hotspot__coll__graph.md5 │ │ ├── class_nex_hotspot__coll__graph.png │ │ ├── class_nex_hotspot__inherit__graph.map │ │ ├── class_nex_hotspot__inherit__graph.md5 │ │ ├── class_nex_hotspot__inherit__graph.png │ │ ├── class_nex_number-members.html │ │ ├── class_nex_number.html │ │ ├── class_nex_number.js │ │ ├── class_nex_number__coll__graph.map │ │ ├── class_nex_number__coll__graph.md5 │ │ ├── class_nex_number__coll__graph.png │ │ ├── class_nex_number__inherit__graph.map │ │ ├── class_nex_number__inherit__graph.md5 │ │ ├── class_nex_number__inherit__graph.png │ │ ├── class_nex_object-members.html │ │ ├── class_nex_object.html │ │ ├── class_nex_object.js │ │ ├── class_nex_object__inherit__graph.map │ │ ├── class_nex_object__inherit__graph.md5 │ │ ├── class_nex_object__inherit__graph.png │ │ ├── class_nex_page-members.html │ │ ├── class_nex_page.html │ │ ├── class_nex_page.js │ │ ├── class_nex_page__coll__graph.map │ │ ├── class_nex_page__coll__graph.md5 │ │ ├── class_nex_page__coll__graph.png │ │ ├── class_nex_page__inherit__graph.map │ │ ├── class_nex_page__inherit__graph.md5 │ │ ├── class_nex_page__inherit__graph.png │ │ ├── class_nex_picture-members.html │ │ ├── class_nex_picture.html │ │ ├── class_nex_picture.js │ │ ├── class_nex_picture__coll__graph.map │ │ ├── class_nex_picture__coll__graph.md5 │ │ ├── class_nex_picture__coll__graph.png │ │ ├── class_nex_picture__inherit__graph.map │ │ ├── class_nex_picture__inherit__graph.md5 │ │ ├── class_nex_picture__inherit__graph.png │ │ ├── class_nex_progress_bar-members.html │ │ ├── class_nex_progress_bar.html │ │ ├── class_nex_progress_bar.js │ │ ├── class_nex_progress_bar__coll__graph.map │ │ ├── class_nex_progress_bar__coll__graph.md5 │ │ ├── class_nex_progress_bar__coll__graph.png │ │ ├── class_nex_progress_bar__inherit__graph.map │ │ ├── class_nex_progress_bar__inherit__graph.md5 │ │ ├── class_nex_progress_bar__inherit__graph.png │ │ ├── class_nex_radio-members.html │ │ ├── class_nex_radio.html │ │ ├── class_nex_radio.js │ │ ├── class_nex_radio__coll__graph.map │ │ ├── class_nex_radio__coll__graph.md5 │ │ ├── class_nex_radio__coll__graph.png │ │ ├── class_nex_radio__inherit__graph.map │ │ ├── class_nex_radio__inherit__graph.md5 │ │ ├── class_nex_radio__inherit__graph.png │ │ ├── class_nex_rtc-members.html │ │ ├── class_nex_rtc.html │ │ ├── class_nex_rtc.js │ │ ├── class_nex_scrolltext-members.html │ │ ├── class_nex_scrolltext.html │ │ ├── class_nex_scrolltext.js │ │ ├── class_nex_scrolltext__coll__graph.map │ │ ├── class_nex_scrolltext__coll__graph.md5 │ │ ├── class_nex_scrolltext__coll__graph.png │ │ ├── class_nex_scrolltext__inherit__graph.map │ │ ├── class_nex_scrolltext__inherit__graph.md5 │ │ ├── class_nex_scrolltext__inherit__graph.png │ │ ├── class_nex_slider-members.html │ │ ├── class_nex_slider.html │ │ ├── class_nex_slider.js │ │ ├── class_nex_slider__coll__graph.map │ │ ├── class_nex_slider__coll__graph.md5 │ │ ├── class_nex_slider__coll__graph.png │ │ ├── class_nex_slider__inherit__graph.map │ │ ├── class_nex_slider__inherit__graph.md5 │ │ ├── class_nex_slider__inherit__graph.png │ │ ├── class_nex_text-members.html │ │ ├── class_nex_text.html │ │ ├── class_nex_text.js │ │ ├── class_nex_text__coll__graph.map │ │ ├── class_nex_text__coll__graph.md5 │ │ ├── class_nex_text__coll__graph.png │ │ ├── class_nex_text__inherit__graph.map │ │ ├── class_nex_text__inherit__graph.md5 │ │ ├── class_nex_text__inherit__graph.png │ │ ├── class_nex_timer-members.html │ │ ├── class_nex_timer.html │ │ ├── class_nex_timer.js │ │ ├── class_nex_timer__coll__graph.map │ │ ├── class_nex_timer__coll__graph.md5 │ │ ├── class_nex_timer__coll__graph.png │ │ ├── class_nex_timer__inherit__graph.map │ │ ├── class_nex_timer__inherit__graph.md5 │ │ ├── class_nex_timer__inherit__graph.png │ │ ├── class_nex_timer_a365d08df4623ce8a146e73ff9204d5cb_cgraph.map │ │ ├── class_nex_timer_a365d08df4623ce8a146e73ff9204d5cb_cgraph.md5 │ │ ├── class_nex_timer_a365d08df4623ce8a146e73ff9204d5cb_cgraph.png │ │ ├── class_nex_timer_ae6f1ae95ef40b8bc6f482185b1ec5175_cgraph.map │ │ ├── class_nex_timer_ae6f1ae95ef40b8bc6f482185b1ec5175_cgraph.md5 │ │ ├── class_nex_timer_ae6f1ae95ef40b8bc6f482185b1ec5175_cgraph.png │ │ ├── class_nex_touch-members.html │ │ ├── class_nex_touch.html │ │ ├── class_nex_touch.js │ │ ├── class_nex_touch__coll__graph.map │ │ ├── class_nex_touch__coll__graph.md5 │ │ ├── class_nex_touch__coll__graph.png │ │ ├── class_nex_touch__inherit__graph.map │ │ ├── class_nex_touch__inherit__graph.md5 │ │ ├── class_nex_touch__inherit__graph.png │ │ ├── class_nex_touch_a4da1c4fcdfadb7eabfb9ccaba9ecad11_icgraph.map │ │ ├── class_nex_touch_a4da1c4fcdfadb7eabfb9ccaba9ecad11_icgraph.md5 │ │ ├── class_nex_touch_a4da1c4fcdfadb7eabfb9ccaba9ecad11_icgraph.png │ │ ├── class_nex_touch_af656640c1078a553287a68bf792dd291_icgraph.map │ │ ├── class_nex_touch_af656640c1078a553287a68bf792dd291_icgraph.md5 │ │ ├── class_nex_touch_af656640c1078a553287a68bf792dd291_icgraph.png │ │ ├── class_nex_upload-members.html │ │ ├── class_nex_upload.html │ │ ├── class_nex_upload.js │ │ ├── class_nex_upload_a017c25b02bc9a674ab5beb447a3511a0_icgraph.map │ │ ├── class_nex_upload_a017c25b02bc9a674ab5beb447a3511a0_icgraph.md5 │ │ ├── class_nex_upload_a017c25b02bc9a674ab5beb447a3511a0_icgraph.png │ │ ├── class_nex_upload_a97d6aeee29cfdeb1ec4dcec8d5a58396_cgraph.map │ │ ├── class_nex_upload_a97d6aeee29cfdeb1ec4dcec8d5a58396_cgraph.md5 │ │ ├── class_nex_upload_a97d6aeee29cfdeb1ec4dcec8d5a58396_cgraph.png │ │ ├── class_nex_variable-members.html │ │ ├── class_nex_variable.html │ │ ├── class_nex_variable.js │ │ ├── class_nex_variable__coll__graph.map │ │ ├── class_nex_variable__coll__graph.md5 │ │ ├── class_nex_variable__coll__graph.png │ │ ├── class_nex_variable__inherit__graph.map │ │ ├── class_nex_variable__inherit__graph.md5 │ │ ├── class_nex_variable__inherit__graph.png │ │ ├── class_nex_waveform-members.html │ │ ├── class_nex_waveform.html │ │ ├── class_nex_waveform.js │ │ ├── class_nex_waveform__coll__graph.map │ │ ├── class_nex_waveform__coll__graph.md5 │ │ ├── class_nex_waveform__coll__graph.png │ │ ├── class_nex_waveform__inherit__graph.map │ │ ├── class_nex_waveform__inherit__graph.md5 │ │ ├── class_nex_waveform__inherit__graph.png │ │ ├── classes.html │ │ ├── classes__0_8js_source.html │ │ ├── closed.png │ │ ├── dir_03b339e07921b59492972343ca10817a.html │ │ ├── dir_03b339e07921b59492972343ca10817a.js │ │ ├── dir_13cb27e7707bad7dfc51e3225831c378.html │ │ ├── dir_13cb27e7707bad7dfc51e3225831c378.js │ │ ├── dir_13fdc5ade55290335ffe8ce184cef04a.html │ │ ├── dir_13fdc5ade55290335ffe8ce184cef04a.js │ │ ├── dir_2af451c22587252d0014dbc596e2e19a.html │ │ ├── dir_2af451c22587252d0014dbc596e2e19a.js │ │ ├── dir_2af451c22587252d0014dbc596e2e19a_dep.map │ │ ├── dir_2af451c22587252d0014dbc596e2e19a_dep.md5 │ │ ├── dir_2af451c22587252d0014dbc596e2e19a_dep.png │ │ ├── dir_2c7bb7af606a816dc5d12b9c9f93cdb0.html │ │ ├── dir_2c7bb7af606a816dc5d12b9c9f93cdb0.js │ │ ├── dir_2dae0a562653f78d59931f0e4b070746.html │ │ ├── dir_2dae0a562653f78d59931f0e4b070746.js │ │ ├── dir_362f30179229d7166f5b27ed31213abf.html │ │ ├── dir_362f30179229d7166f5b27ed31213abf.js │ │ ├── dir_37f22946f81336e96770e95cfc44f0d2.html │ │ ├── dir_37f22946f81336e96770e95cfc44f0d2.js │ │ ├── dir_3a828b7214103d705cc83e20f29bdad9.html │ │ ├── dir_3a828b7214103d705cc83e20f29bdad9.js │ │ ├── dir_3a828b7214103d705cc83e20f29bdad9_dep.map │ │ ├── dir_3a828b7214103d705cc83e20f29bdad9_dep.md5 │ │ ├── dir_3a828b7214103d705cc83e20f29bdad9_dep.png │ │ ├── dir_44a14d16127103fb968497cef18e2651.html │ │ ├── dir_44a14d16127103fb968497cef18e2651.js │ │ ├── dir_472f54fb1d9b74971d8e15d62f212bd3.html │ │ ├── dir_472f54fb1d9b74971d8e15d62f212bd3.js │ │ ├── dir_472f54fb1d9b74971d8e15d62f212bd3_dep.map │ │ ├── dir_472f54fb1d9b74971d8e15d62f212bd3_dep.md5 │ │ ├── dir_472f54fb1d9b74971d8e15d62f212bd3_dep.png │ │ ├── dir_4b43661efaa18af91f213d2681ebd37e.html │ │ ├── dir_4b43661efaa18af91f213d2681ebd37e.js │ │ ├── dir_4b43661efaa18af91f213d2681ebd37e_dep.map │ │ ├── dir_4b43661efaa18af91f213d2681ebd37e_dep.md5 │ │ ├── dir_4b43661efaa18af91f213d2681ebd37e_dep.png │ │ ├── dir_53835f0dfcb7abf9d97bc46682fab859.html │ │ ├── dir_53835f0dfcb7abf9d97bc46682fab859.js │ │ ├── dir_53835f0dfcb7abf9d97bc46682fab859_dep.map │ │ ├── dir_53835f0dfcb7abf9d97bc46682fab859_dep.md5 │ │ ├── dir_53835f0dfcb7abf9d97bc46682fab859_dep.png │ │ ├── dir_56b2cc69259505f347a71fbc57576a27.html │ │ ├── dir_56b2cc69259505f347a71fbc57576a27.js │ │ ├── dir_575635cc091aa47ec7be91b5cee17183.html │ │ ├── dir_575635cc091aa47ec7be91b5cee17183.js │ │ ├── dir_58f5ecea2e2241e947c6d0b6b0a6574c.html │ │ ├── dir_58f5ecea2e2241e947c6d0b6b0a6574c.js │ │ ├── dir_58f5ecea2e2241e947c6d0b6b0a6574c_dep.map │ │ ├── dir_58f5ecea2e2241e947c6d0b6b0a6574c_dep.md5 │ │ ├── dir_58f5ecea2e2241e947c6d0b6b0a6574c_dep.png │ │ ├── dir_5e6e68a9c696254bbe284f64da34b89b.html │ │ ├── dir_5e6e68a9c696254bbe284f64da34b89b.js │ │ ├── dir_64c3f06c647884d4700075d99ac5b054.html │ │ ├── dir_64c3f06c647884d4700075d99ac5b054.js │ │ ├── dir_67a124841349777013960f48b4ca08cd.html │ │ ├── dir_67a124841349777013960f48b4ca08cd.js │ │ ├── dir_6cfe794d384e1e9411c8ed4782275733.html │ │ ├── dir_6cfe794d384e1e9411c8ed4782275733.js │ │ ├── dir_72ff46b74e37ff2b17afdc4e77374e7e.html │ │ ├── dir_72ff46b74e37ff2b17afdc4e77374e7e.js │ │ ├── dir_745a997035d9a4e2cc7e167d495d0fea.html │ │ ├── dir_745a997035d9a4e2cc7e167d495d0fea.js │ │ ├── dir_774ce03e0cf0196adaf36811ea67e4fe.html │ │ ├── dir_774ce03e0cf0196adaf36811ea67e4fe.js │ │ ├── dir_78dd7a2fe86fb9861d4d5f2b99877d05.html │ │ ├── dir_78dd7a2fe86fb9861d4d5f2b99877d05.js │ │ ├── dir_7962cac16a99e8bbaaea18abede03fcb.html │ │ ├── dir_7962cac16a99e8bbaaea18abede03fcb.js │ │ ├── dir_7962cac16a99e8bbaaea18abede03fcb_dep.map │ │ ├── dir_7962cac16a99e8bbaaea18abede03fcb_dep.md5 │ │ ├── dir_7962cac16a99e8bbaaea18abede03fcb_dep.png │ │ ├── dir_79c8dee8d7e42a0e610f37121a84c3a9.html │ │ ├── dir_79c8dee8d7e42a0e610f37121a84c3a9.js │ │ ├── dir_88a597dd2562898b9ec6ba971ad7a8dd.html │ │ ├── dir_88a597dd2562898b9ec6ba971ad7a8dd.js │ │ ├── dir_88b085927d35ec3e069c44673959ea9f.html │ │ ├── dir_88b085927d35ec3e069c44673959ea9f.js │ │ ├── dir_8dcbebf38b229bfa7bb34d68bf824093.html │ │ ├── dir_8dcbebf38b229bfa7bb34d68bf824093.js │ │ ├── dir_8dcbebf38b229bfa7bb34d68bf824093_dep.map │ │ ├── dir_8dcbebf38b229bfa7bb34d68bf824093_dep.md5 │ │ ├── dir_8dcbebf38b229bfa7bb34d68bf824093_dep.png │ │ ├── dir_948fd774738d2193a0c62cde43f2828a.html │ │ ├── dir_948fd774738d2193a0c62cde43f2828a.js │ │ ├── dir_94f957df570c2c6f9ce99687820a8979.html │ │ ├── dir_94f957df570c2c6f9ce99687820a8979.js │ │ ├── dir_9bbf8342b0f9a157b7af08fe1412fc17.html │ │ ├── dir_9bbf8342b0f9a157b7af08fe1412fc17.js │ │ ├── dir_9bbf8342b0f9a157b7af08fe1412fc17_dep.map │ │ ├── dir_9bbf8342b0f9a157b7af08fe1412fc17_dep.md5 │ │ ├── dir_9bbf8342b0f9a157b7af08fe1412fc17_dep.png │ │ ├── dir_9d128665765fcd7de990374f9fac59bd.html │ │ ├── dir_9d128665765fcd7de990374f9fac59bd.js │ │ ├── dir_9eb8f3e2c1e15f49f92fa8db657a0769.html │ │ ├── dir_9eb8f3e2c1e15f49f92fa8db657a0769.js │ │ ├── dir_a121929b9544fab6b74c5c8052ef2940.html │ │ ├── dir_a121929b9544fab6b74c5c8052ef2940.js │ │ ├── dir_a1532c81ac7ffe94cd7af0c8adbf41fd.html │ │ ├── dir_a1532c81ac7ffe94cd7af0c8adbf41fd.js │ │ ├── dir_a239a53bd1465befb8d39895b56e9769.html │ │ ├── dir_a239a53bd1465befb8d39895b56e9769.js │ │ ├── dir_a48692e2802a027399b146b680655303.html │ │ ├── dir_a48692e2802a027399b146b680655303.js │ │ ├── dir_a48692e2802a027399b146b680655303_dep.map │ │ ├── dir_a48692e2802a027399b146b680655303_dep.md5 │ │ ├── dir_a48692e2802a027399b146b680655303_dep.png │ │ ├── dir_a6952c8402f497b804d4dc074e4d0d34.html │ │ ├── dir_a6952c8402f497b804d4dc074e4d0d34.js │ │ ├── dir_a6c6ee996e64a0a9573e0623ecba0f92.html │ │ ├── dir_a6c6ee996e64a0a9573e0623ecba0f92.js │ │ ├── dir_a844282e018cbc370849ee176c1e0170.html │ │ ├── dir_a844282e018cbc370849ee176c1e0170.js │ │ ├── dir_a923273c60bfbb58e031a3ae0355ae2a.html │ │ ├── dir_a923273c60bfbb58e031a3ae0355ae2a.js │ │ ├── dir_b3d36b9fee6f94e0e9351d3ce179e46a.html │ │ ├── dir_b3d36b9fee6f94e0e9351d3ce179e46a.js │ │ ├── dir_baeae3733d35da11d00f3bdec2bcf189.html │ │ ├── dir_baeae3733d35da11d00f3bdec2bcf189.js │ │ ├── dir_c918e8bf3fc71f849978cdb0d900e61c.html │ │ ├── dir_c918e8bf3fc71f849978cdb0d900e61c.js │ │ ├── dir_c918e8bf3fc71f849978cdb0d900e61c_dep.map │ │ ├── dir_c918e8bf3fc71f849978cdb0d900e61c_dep.md5 │ │ ├── dir_c918e8bf3fc71f849978cdb0d900e61c_dep.png │ │ ├── dir_ca98f8e97468ceedc413f5dac34c5fa4.html │ │ ├── dir_ca98f8e97468ceedc413f5dac34c5fa4.js │ │ ├── dir_ce36ac18ad3deaf5eae0bd2e09775a7d.html │ │ ├── dir_ce36ac18ad3deaf5eae0bd2e09775a7d.js │ │ ├── dir_ce36ac18ad3deaf5eae0bd2e09775a7d_dep.map │ │ ├── dir_ce36ac18ad3deaf5eae0bd2e09775a7d_dep.md5 │ │ ├── dir_ce36ac18ad3deaf5eae0bd2e09775a7d_dep.png │ │ ├── dir_d28a4824dc47e487b107a5db32ef43c4.html │ │ ├── dir_d28a4824dc47e487b107a5db32ef43c4.js │ │ ├── dir_d28a4824dc47e487b107a5db32ef43c4_dep.map │ │ ├── dir_d28a4824dc47e487b107a5db32ef43c4_dep.md5 │ │ ├── dir_d28a4824dc47e487b107a5db32ef43c4_dep.png │ │ ├── dir_d3260f5c9df29a04ffb2fb4dcbe826a0.html │ │ ├── dir_d3260f5c9df29a04ffb2fb4dcbe826a0.js │ │ ├── dir_d3f8111a063a965b5243b82006fc3654.html │ │ ├── dir_d3f8111a063a965b5243b82006fc3654.js │ │ ├── dir_d4ccf8ea657e68a549605ed7009e9385.html │ │ ├── dir_d4ccf8ea657e68a549605ed7009e9385.js │ │ ├── dir_da2f6b5bc4c7a05969000ccffa56cdba.html │ │ ├── dir_da2f6b5bc4c7a05969000ccffa56cdba.js │ │ ├── dir_ddeed1b19b98904c6aa1b48c4ffa871b.html │ │ ├── dir_ddeed1b19b98904c6aa1b48c4ffa871b.js │ │ ├── dir_decd89faf7b7ac7dc2c3b4f68098211d.html │ │ ├── dir_decd89faf7b7ac7dc2c3b4f68098211d.js │ │ ├── dir_e41b6c247808b0e8972a01b8d58acefc.html │ │ ├── dir_e41b6c247808b0e8972a01b8d58acefc.js │ │ ├── dir_e79857bc4faa7405ea054e9dea791d5c.html │ │ ├── dir_e79857bc4faa7405ea054e9dea791d5c.js │ │ ├── dir_f3d39c87bc262720c50d5e3885667b8a.html │ │ ├── dir_f3d39c87bc262720c50d5e3885667b8a.js │ │ ├── dir_f3d39c87bc262720c50d5e3885667b8a_dep.map │ │ ├── dir_f3d39c87bc262720c50d5e3885667b8a_dep.md5 │ │ ├── dir_f3d39c87bc262720c50d5e3885667b8a_dep.png │ │ ├── dir_f5fbbb3bb8d47423eec30b73de0af948.html │ │ ├── dir_f5fbbb3bb8d47423eec30b73de0af948.js │ │ ├── dir_f76977d9ffe8ddf3ad01f3d689aa5df4.html │ │ ├── dir_f76977d9ffe8ddf3ad01f3d689aa5df4.js │ │ ├── dir_f76977d9ffe8ddf3ad01f3d689aa5df4_dep.map │ │ ├── dir_f76977d9ffe8ddf3ad01f3d689aa5df4_dep.md5 │ │ ├── dir_f76977d9ffe8ddf3ad01f3d689aa5df4_dep.png │ │ ├── dir_fb9e35f5ea815af588c3e61147b6fddc.html │ │ ├── dir_fb9e35f5ea815af588c3e61147b6fddc.js │ │ ├── dir_fcb17c1a6a78f3a510af094d9b07469a.html │ │ ├── dir_fcb17c1a6a78f3a510af094d9b07469a.js │ │ ├── doc_2html_2dynsections_8js_source.html │ │ ├── doc_2html_2jquery_8js_source.html │ │ ├── doc_2html_2search_2search_8js_source.html │ │ ├── doxygen.css │ │ ├── doxygen.png │ │ ├── doxygen_8h.html │ │ ├── doxygen_8h_source.html │ │ ├── dynsections.js │ │ ├── dynsections_8js_source.html │ │ ├── examples.html │ │ ├── examples.js │ │ ├── files.html │ │ ├── files.js │ │ ├── files__0_8js_source.html │ │ ├── files__1_8js_source.html │ │ ├── ftv2blank.png │ │ ├── ftv2doc.png │ │ ├── ftv2folderclosed.png │ │ ├── ftv2folderopen.png │ │ ├── ftv2lastnode.png │ │ ├── ftv2link.png │ │ ├── ftv2mlastnode.png │ │ ├── ftv2mnode.png │ │ ├── ftv2node.png │ │ ├── ftv2plastnode.png │ │ ├── ftv2pnode.png │ │ ├── ftv2splitbar.png │ │ ├── ftv2vertline.png │ │ ├── functions.html │ │ ├── functions__0_8js_source.html │ │ ├── functions__1_8js_source.html │ │ ├── functions__2_8js_source.html │ │ ├── functions__3_8js_source.html │ │ ├── functions__4_8js_source.html │ │ ├── functions__5_8js_source.html │ │ ├── functions__6_8js_source.html │ │ ├── functions__7_8js_source.html │ │ ├── functions__8_8js_source.html │ │ ├── functions__9_8js_source.html │ │ ├── functions_d.html │ │ ├── functions_dup.js │ │ ├── functions_e.html │ │ ├── functions_func.html │ │ ├── functions_func.js │ │ ├── functions_func_d.html │ │ ├── functions_func_e.html │ │ ├── functions_func_g.html │ │ ├── functions_func_n.html │ │ ├── functions_func_p.html │ │ ├── functions_func_r.html │ │ ├── functions_func_s.html │ │ ├── functions_func_w.html │ │ ├── functions_func_~.html │ │ ├── functions_g.html │ │ ├── functions_n.html │ │ ├── functions_p.html │ │ ├── functions_r.html │ │ ├── functions_s.html │ │ ├── functions_w.html │ │ ├── functions_~.html │ │ ├── globals.html │ │ ├── globals_defs.html │ │ ├── globals_func.html │ │ ├── globals_type.html │ │ ├── graph_legend.html │ │ ├── graph_legend.md5 │ │ ├── graph_legend.png │ │ ├── group___component.html │ │ ├── group___component.js │ │ ├── group___configuration.html │ │ ├── group___configuration.js │ │ ├── group___core_a_p_i.html │ │ ├── group___core_a_p_i.js │ │ ├── group___core_a_p_i.map │ │ ├── group___core_a_p_i.md5 │ │ ├── group___core_a_p_i.png │ │ ├── group___get_started.html │ │ ├── group___touch_event.html │ │ ├── group___touch_event.js │ │ ├── group___touch_event.map │ │ ├── group___touch_event.md5 │ │ ├── group___touch_event.png │ │ ├── groups__0_8js_source.html │ │ ├── groups__1_8js_source.html │ │ ├── groups__2_8js_source.html │ │ ├── groups__3_8js_source.html │ │ ├── hierarchy.html │ │ ├── hierarchy.js │ │ ├── html │ │ │ ├── bc_s.png │ │ │ ├── bdwn.png │ │ │ ├── closed.png │ │ │ ├── doxygen.css │ │ │ ├── doxygen.png │ │ │ ├── dynsections.js │ │ │ ├── ftv2blank.png │ │ │ ├── ftv2doc.png │ │ │ ├── ftv2folderclosed.png │ │ │ ├── ftv2folderopen.png │ │ │ ├── ftv2lastnode.png │ │ │ ├── ftv2link.png │ │ │ ├── ftv2mlastnode.png │ │ │ ├── ftv2mnode.png │ │ │ ├── ftv2node.png │ │ │ ├── ftv2plastnode.png │ │ │ ├── ftv2pnode.png │ │ │ ├── ftv2splitbar.png │ │ │ ├── ftv2vertline.png │ │ │ ├── index.html │ │ │ ├── jquery.js │ │ │ ├── nav_f.png │ │ │ ├── nav_g.png │ │ │ ├── nav_h.png │ │ │ ├── open.png │ │ │ ├── search │ │ │ │ ├── close.png │ │ │ │ ├── mag_sel.png │ │ │ │ ├── nomatches.html │ │ │ │ ├── search.css │ │ │ │ ├── search.js │ │ │ │ ├── search_l.png │ │ │ │ ├── search_m.png │ │ │ │ └── search_r.png │ │ │ ├── sync_off.png │ │ │ ├── sync_on.png │ │ │ ├── tab_a.png │ │ │ ├── tab_b.png │ │ │ ├── tab_h.png │ │ │ ├── tab_s.png │ │ │ └── tabs.css │ │ ├── html_2dynsections_8js_source.html │ │ ├── html_2jquery_8js_source.html │ │ ├── html_2search_2search_8js_source.html │ │ ├── index.html │ │ ├── inherit_graph_0.map │ │ ├── inherit_graph_0.md5 │ │ ├── inherit_graph_0.png │ │ ├── inherit_graph_1.map │ │ ├── inherit_graph_1.md5 │ │ ├── inherit_graph_1.png │ │ ├── inherits.html │ │ ├── jquery.js │ │ ├── jquery_8js_source.html │ │ ├── latex │ │ │ ├── Makefile │ │ │ ├── doxygen.sty │ │ │ ├── make.bat │ │ │ └── refman.tex │ │ ├── license_8md_source.html │ │ ├── md_license.html │ │ ├── md_readme.html │ │ ├── md_release_notes.html │ │ ├── modules.html │ │ ├── modules.js │ │ ├── nav_f.png │ │ ├── nav_g.png │ │ ├── nav_h.png │ │ ├── navtree.css │ │ ├── navtree.js │ │ ├── navtreeindex0.js │ │ ├── navtreeindex1.js │ │ ├── open.png │ │ ├── pages.html │ │ ├── pages__0_8js_source.html │ │ ├── pages__1_8js_source.html │ │ ├── readme_8md_source.html │ │ ├── release__notes_8md_source.html │ │ ├── resize.js │ │ ├── search_8js_source.html │ │ ├── sync_off.png │ │ ├── sync_on.png │ │ ├── tab_a.png │ │ ├── tab_b.png │ │ ├── tab_h.png │ │ ├── tab_s.png │ │ ├── tabs.css │ │ └── typedefs__0_8js_source.html │ ├── Logo.png │ ├── doxygen_sqlite3.db │ ├── html │ │ ├── bc_s.png │ │ ├── bdwn.png │ │ ├── closed.png │ │ ├── doxygen.css │ │ ├── doxygen.png │ │ ├── dynsections.js │ │ ├── ftv2blank.png │ │ ├── ftv2doc.png │ │ ├── ftv2folderclosed.png │ │ ├── ftv2folderopen.png │ │ ├── ftv2lastnode.png │ │ ├── ftv2link.png │ │ ├── ftv2mlastnode.png │ │ ├── ftv2mnode.png │ │ ├── ftv2node.png │ │ ├── ftv2plastnode.png │ │ ├── ftv2pnode.png │ │ ├── ftv2splitbar.png │ │ ├── ftv2vertline.png │ │ ├── index.html │ │ ├── jquery.js │ │ ├── nav_f.png │ │ ├── nav_g.png │ │ ├── nav_h.png │ │ ├── open.png │ │ ├── search │ │ │ ├── close.png │ │ │ ├── mag_sel.png │ │ │ ├── nomatches.html │ │ │ ├── search.css │ │ │ ├── search.js │ │ │ ├── search_l.png │ │ │ ├── search_m.png │ │ │ └── search_r.png │ │ ├── sync_off.png │ │ ├── sync_on.png │ │ ├── tab_a.png │ │ ├── tab_b.png │ │ ├── tab_h.png │ │ ├── tab_s.png │ │ └── tabs.css │ └── latex │ │ ├── Makefile │ │ ├── doxygen.sty │ │ ├── make.bat │ │ └── refman.tex │ ├── doxygen.doxy │ ├── doxygen.h │ ├── examples │ ├── CompButton │ │ ├── CompButton.tft │ │ ├── CompButton_v0_32.HMI │ │ └── CompButton_v0_32.ino │ ├── CompCrop │ │ ├── CompCrop.tft │ │ ├── CompCrop_v0_32.HMI │ │ └── CompCrop_v0_32.ino │ ├── CompDualStateButton │ │ ├── CompDualStateButton.tft │ │ ├── CompDualStateButton_v0_32.HMI │ │ └── CompDualStateButton_v0_32.ino │ ├── CompGauge │ │ ├── CompGauge.tft │ │ ├── CompGauge_v0_32.HMI │ │ └── CompGauge_v0_32.ino │ ├── CompGpio │ │ ├── CompGpio.HMI │ │ ├── CompGpio.ino │ │ └── font.zi │ ├── CompHotspot │ │ ├── CompHotspot.tft │ │ ├── CompHotspot_v0_32.HMI │ │ └── CompHotspot_v0_32.ino │ ├── CompNumber │ │ ├── CompNumber.tft │ │ ├── CompNumber_v0_32.HMI │ │ └── CompNumber_v0_32.ino │ ├── CompPage │ │ ├── CompPage.tft │ │ ├── CompPage_v0_32.HMI │ │ └── CompPage_v0_32.ino │ ├── CompPicture │ │ ├── CompPicture.tft │ │ ├── CompPicture_v0_32.HMI │ │ └── CompPicture_v0_32.ino │ ├── CompProgressBar │ │ ├── CompProgressBar.tft │ │ ├── CompProgressBar_v0_32.HMI │ │ └── CompProgressBar_v0_32.ino │ ├── CompRtc │ │ ├── CompRtc.HMI │ │ ├── CompRtc.ino │ │ └── font.zi │ ├── CompSlider │ │ ├── CompSlider.tft │ │ ├── CompSlider_v0_32.HMI │ │ └── CompSlider_v0_32.ino │ ├── CompText │ │ ├── CompText.tft │ │ ├── CompText_v0_32.HMI │ │ └── CompText_v0_32.ino │ ├── CompTimer │ │ ├── CompTimer.tft │ │ ├── CompTimer_v0_32.HMI │ │ └── CompTimer_v0_32.ino │ ├── CompWaveform │ │ ├── CompWaveform.tft │ │ ├── CompWaveform_v0_32.HMI │ │ └── CompWaveform_v0_32.ino │ └── Upload │ │ └── Upload.ino │ ├── html │ ├── _nex_button_8cpp.html │ ├── _nex_button_8h.html │ ├── _nex_button_8h_source.html │ ├── _nex_checkbox_8cpp.html │ ├── _nex_checkbox_8h.html │ ├── _nex_checkbox_8h_source.html │ ├── _nex_config_8h.html │ ├── _nex_config_8h_source.html │ ├── _nex_crop_8cpp.html │ ├── _nex_crop_8h.html │ ├── _nex_crop_8h_source.html │ ├── _nex_dual_state_button_8cpp.html │ ├── _nex_dual_state_button_8h.html │ ├── _nex_dual_state_button_8h_source.html │ ├── _nex_gauge_8cpp.html │ ├── _nex_gauge_8h.html │ ├── _nex_gauge_8h_source.html │ ├── _nex_gpio_8cpp.html │ ├── _nex_gpio_8h_source.html │ ├── _nex_hardware_8cpp.html │ ├── _nex_hardware_8h.html │ ├── _nex_hardware_8h_source.html │ ├── _nex_hotspot_8cpp.html │ ├── _nex_hotspot_8h.html │ ├── _nex_hotspot_8h_source.html │ ├── _nex_number_8cpp.html │ ├── _nex_number_8h.html │ ├── _nex_number_8h_source.html │ ├── _nex_object_8cpp.html │ ├── _nex_object_8h.html │ ├── _nex_object_8h_source.html │ ├── _nex_page_8cpp.html │ ├── _nex_page_8h.html │ ├── _nex_page_8h_source.html │ ├── _nex_picture_8cpp.html │ ├── _nex_picture_8h.html │ ├── _nex_picture_8h_source.html │ ├── _nex_progress_bar_8cpp.html │ ├── _nex_progress_bar_8h.html │ ├── _nex_progress_bar_8h_source.html │ ├── _nex_radio_8cpp.html │ ├── _nex_radio_8h.html │ ├── _nex_radio_8h_source.html │ ├── _nex_rtc_8cpp.html │ ├── _nex_rtc_8h_source.html │ ├── _nex_scrolltext_8cpp.html │ ├── _nex_scrolltext_8h.html │ ├── _nex_scrolltext_8h_source.html │ ├── _nex_slider_8cpp.html │ ├── _nex_slider_8h.html │ ├── _nex_slider_8h_source.html │ ├── _nex_text_8cpp.html │ ├── _nex_text_8h.html │ ├── _nex_text_8h_source.html │ ├── _nex_timer_8cpp.html │ ├── _nex_timer_8h.html │ ├── _nex_timer_8h_source.html │ ├── _nex_touch_8cpp.html │ ├── _nex_touch_8h.html │ ├── _nex_touch_8h_source.html │ ├── _nex_upload_8cpp.html │ ├── _nex_upload_8h.html │ ├── _nex_upload_8h_source.html │ ├── _nex_variable_8cpp.html │ ├── _nex_variable_8h_source.html │ ├── _nex_waveform_8cpp.html │ ├── _nex_waveform_8h.html │ ├── _nex_waveform_8h_source.html │ ├── _nextion_8h.html │ ├── _nextion_8h_source.html │ ├── annotated.html │ ├── bc_s.png │ ├── bdwn.png │ ├── class_nex_button-members.html │ ├── class_nex_button.html │ ├── class_nex_button.png │ ├── class_nex_checkbox-members.html │ ├── class_nex_checkbox.html │ ├── class_nex_checkbox.png │ ├── class_nex_crop-members.html │ ├── class_nex_crop.html │ ├── class_nex_crop.png │ ├── class_nex_d_s_button-members.html │ ├── class_nex_d_s_button.html │ ├── class_nex_d_s_button.png │ ├── class_nex_gauge-members.html │ ├── class_nex_gauge.html │ ├── class_nex_gauge.png │ ├── class_nex_gpio-members.html │ ├── class_nex_gpio.html │ ├── class_nex_hotspot-members.html │ ├── class_nex_hotspot.html │ ├── class_nex_hotspot.png │ ├── class_nex_number-members.html │ ├── class_nex_number.html │ ├── class_nex_number.png │ ├── class_nex_object-members.html │ ├── class_nex_object.html │ ├── class_nex_object.png │ ├── class_nex_page-members.html │ ├── class_nex_page.html │ ├── class_nex_page.png │ ├── class_nex_picture-members.html │ ├── class_nex_picture.html │ ├── class_nex_picture.png │ ├── class_nex_progress_bar-members.html │ ├── class_nex_progress_bar.html │ ├── class_nex_progress_bar.png │ ├── class_nex_radio-members.html │ ├── class_nex_radio.html │ ├── class_nex_radio.png │ ├── class_nex_rtc-members.html │ ├── class_nex_rtc.html │ ├── class_nex_scrolltext-members.html │ ├── class_nex_scrolltext.html │ ├── class_nex_scrolltext.png │ ├── class_nex_slider-members.html │ ├── class_nex_slider.html │ ├── class_nex_slider.png │ ├── class_nex_text-members.html │ ├── class_nex_text.html │ ├── class_nex_text.png │ ├── class_nex_timer-members.html │ ├── class_nex_timer.html │ ├── class_nex_timer.png │ ├── class_nex_touch-members.html │ ├── class_nex_touch.html │ ├── class_nex_touch.png │ ├── class_nex_upload-members.html │ ├── class_nex_upload.html │ ├── class_nex_variable-members.html │ ├── class_nex_variable.html │ ├── class_nex_variable.png │ ├── class_nex_waveform-members.html │ ├── class_nex_waveform.html │ ├── class_nex_waveform.png │ ├── classes.html │ ├── closed.png │ ├── doxygen.css │ ├── doxygen.png │ ├── doxygen_8h.html │ ├── doxygen_8h_source.html │ ├── dynsections.js │ ├── files.html │ ├── ftv2blank.png │ ├── ftv2doc.png │ ├── ftv2folderclosed.png │ ├── ftv2folderopen.png │ ├── ftv2lastnode.png │ ├── ftv2link.png │ ├── ftv2mlastnode.png │ ├── ftv2mnode.png │ ├── ftv2node.png │ ├── ftv2plastnode.png │ ├── ftv2pnode.png │ ├── ftv2splitbar.png │ ├── ftv2vertline.png │ ├── functions.html │ ├── functions_d.html │ ├── functions_e.html │ ├── functions_func.html │ ├── functions_func_d.html │ ├── functions_func_e.html │ ├── functions_func_g.html │ ├── functions_func_n.html │ ├── functions_func_p.html │ ├── functions_func_r.html │ ├── functions_func_s.html │ ├── functions_func_w.html │ ├── functions_func_~.html │ ├── functions_g.html │ ├── functions_n.html │ ├── functions_p.html │ ├── functions_r.html │ ├── functions_s.html │ ├── functions_w.html │ ├── functions_~.html │ ├── globals.html │ ├── globals_defs.html │ ├── globals_func.html │ ├── globals_type.html │ ├── group___component.html │ ├── group___configuration.html │ ├── group___core_a_p_i.html │ ├── group___get_started.html │ ├── group___touch_event.html │ ├── hierarchy.html │ ├── index.html │ ├── jquery.js │ ├── md_readme.html │ ├── md_release_notes.html │ ├── modules.html │ ├── nav_f.png │ ├── nav_g.png │ ├── nav_h.png │ ├── open.png │ ├── pages.html │ ├── search │ │ ├── all_0.html │ │ ├── all_0.js │ │ ├── all_1.html │ │ ├── all_1.js │ │ ├── all_2.html │ │ ├── all_2.js │ │ ├── all_3.html │ │ ├── all_3.js │ │ ├── all_4.html │ │ ├── all_4.js │ │ ├── all_5.html │ │ ├── all_5.js │ │ ├── all_6.html │ │ ├── all_6.js │ │ ├── all_7.html │ │ ├── all_7.js │ │ ├── all_8.html │ │ ├── all_8.js │ │ ├── all_9.html │ │ ├── all_9.js │ │ ├── all_a.html │ │ ├── all_a.js │ │ ├── all_b.html │ │ ├── all_b.js │ │ ├── all_c.html │ │ ├── all_c.js │ │ ├── classes_0.html │ │ ├── classes_0.js │ │ ├── close.png │ │ ├── files_0.html │ │ ├── files_0.js │ │ ├── files_1.html │ │ ├── files_1.js │ │ ├── functions_0.html │ │ ├── functions_0.js │ │ ├── functions_1.html │ │ ├── functions_1.js │ │ ├── functions_2.html │ │ ├── functions_2.js │ │ ├── functions_3.html │ │ ├── functions_3.js │ │ ├── functions_4.html │ │ ├── functions_4.js │ │ ├── functions_5.html │ │ ├── functions_5.js │ │ ├── functions_6.html │ │ ├── functions_6.js │ │ ├── functions_7.html │ │ ├── functions_7.js │ │ ├── functions_8.html │ │ ├── functions_8.js │ │ ├── functions_9.html │ │ ├── functions_9.js │ │ ├── groups_0.html │ │ ├── groups_0.js │ │ ├── groups_1.html │ │ ├── groups_1.js │ │ ├── groups_2.html │ │ ├── groups_2.js │ │ ├── groups_3.html │ │ ├── groups_3.js │ │ ├── mag_sel.png │ │ ├── nomatches.html │ │ ├── pages_0.html │ │ ├── pages_0.js │ │ ├── pages_1.html │ │ ├── pages_1.js │ │ ├── search.css │ │ ├── search.js │ │ ├── search_l.png │ │ ├── search_m.png │ │ ├── search_r.png │ │ ├── typedefs_0.html │ │ └── typedefs_0.js │ ├── sync_off.png │ ├── sync_on.png │ ├── tab_a.png │ ├── tab_b.png │ ├── tab_h.png │ ├── tab_s.png │ └── tabs.css │ ├── latex │ ├── Makefile │ ├── _nex_button_8cpp.tex │ ├── _nex_button_8h.tex │ ├── _nex_checkbox_8cpp.tex │ ├── _nex_checkbox_8h.tex │ ├── _nex_config_8h.tex │ ├── _nex_crop_8cpp.tex │ ├── _nex_crop_8h.tex │ ├── _nex_dual_state_button_8cpp.tex │ ├── _nex_dual_state_button_8h.tex │ ├── _nex_gauge_8cpp.tex │ ├── _nex_gauge_8h.tex │ ├── _nex_gpio_8cpp.tex │ ├── _nex_hardware_8cpp.tex │ ├── _nex_hardware_8h.tex │ ├── _nex_hotspot_8cpp.tex │ ├── _nex_hotspot_8h.tex │ ├── _nex_number_8cpp.tex │ ├── _nex_number_8h.tex │ ├── _nex_object_8cpp.tex │ ├── _nex_object_8h.tex │ ├── _nex_page_8cpp.tex │ ├── _nex_page_8h.tex │ ├── _nex_picture_8cpp.tex │ ├── _nex_picture_8h.tex │ ├── _nex_progress_bar_8cpp.tex │ ├── _nex_progress_bar_8h.tex │ ├── _nex_radio_8cpp.tex │ ├── _nex_radio_8h.tex │ ├── _nex_rtc_8cpp.tex │ ├── _nex_scrolltext_8cpp.tex │ ├── _nex_scrolltext_8h.tex │ ├── _nex_slider_8cpp.tex │ ├── _nex_slider_8h.tex │ ├── _nex_text_8cpp.tex │ ├── _nex_text_8h.tex │ ├── _nex_timer_8cpp.tex │ ├── _nex_timer_8h.tex │ ├── _nex_touch_8cpp.tex │ ├── _nex_touch_8h.tex │ ├── _nex_upload_8cpp.tex │ ├── _nex_upload_8h.tex │ ├── _nex_variable_8cpp.tex │ ├── _nex_waveform_8cpp.tex │ ├── _nex_waveform_8h.tex │ ├── _nextion_8h.tex │ ├── annotated.tex │ ├── class_nex_button.eps │ ├── class_nex_button.tex │ ├── class_nex_checkbox.eps │ ├── class_nex_checkbox.tex │ ├── class_nex_crop.eps │ ├── class_nex_crop.tex │ ├── class_nex_d_s_button.eps │ ├── class_nex_d_s_button.tex │ ├── class_nex_gauge.eps │ ├── class_nex_gauge.tex │ ├── class_nex_gpio.tex │ ├── class_nex_hotspot.eps │ ├── class_nex_hotspot.tex │ ├── class_nex_number.eps │ ├── class_nex_number.tex │ ├── class_nex_object.eps │ ├── class_nex_object.tex │ ├── class_nex_page.eps │ ├── class_nex_page.tex │ ├── class_nex_picture.eps │ ├── class_nex_picture.tex │ ├── class_nex_progress_bar.eps │ ├── class_nex_progress_bar.tex │ ├── class_nex_radio.eps │ ├── class_nex_radio.tex │ ├── class_nex_rtc.tex │ ├── class_nex_scrolltext.eps │ ├── class_nex_scrolltext.tex │ ├── class_nex_slider.eps │ ├── class_nex_slider.tex │ ├── class_nex_text.eps │ ├── class_nex_text.tex │ ├── class_nex_timer.eps │ ├── class_nex_timer.tex │ ├── class_nex_touch.eps │ ├── class_nex_touch.tex │ ├── class_nex_upload.tex │ ├── class_nex_variable.eps │ ├── class_nex_variable.tex │ ├── class_nex_waveform.eps │ ├── class_nex_waveform.tex │ ├── doxygen.sty │ ├── doxygen_8h.tex │ ├── files.tex │ ├── group___component.tex │ ├── group___configuration.tex │ ├── group___core_a_p_i.tex │ ├── group___get_started.tex │ ├── group___touch_event.tex │ ├── hierarchy.tex │ ├── index.tex │ ├── make.bat │ ├── md_readme.tex │ ├── md_release_notes.tex │ ├── modules.tex │ └── refman.tex │ ├── license.md │ ├── readme.md │ ├── release_notes.md │ └── version.txt └── Teensy_UDP_Rotator_Controller └── Rotor-Controller-UDP-Server ├── Rotor-Controller-UDP-Server-Enet.ino ├── Rotor-Controller-UDP-Server-RotorHandler.ino ├── Rotor-Controller-UDP-Server.h └── Rotor-Controller-UDP-Server.ino /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K7MDL2/RF-Power-Meter-V1/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/arduino.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K7MDL2/RF-Power-Meter-V1/HEAD/.vscode/arduino.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K7MDL2/RF-Power-Meter-V1/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /Desktop_App/pyRFPowerMeter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K7MDL2/RF-Power-Meter-V1/HEAD/Desktop_App/pyRFPowerMeter.py -------------------------------------------------------------------------------- /Desktop_App/simple_server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K7MDL2/RF-Power-Meter-V1/HEAD/Desktop_App/simple_server.py -------------------------------------------------------------------------------- /Desktop_App/udp_rx_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K7MDL2/RF-Power-Meter-V1/HEAD/Desktop_App/udp_rx_test.py -------------------------------------------------------------------------------- /Desktop_App/wsjtx_packets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K7MDL2/RF-Power-Meter-V1/HEAD/Desktop_App/wsjtx_packets.py -------------------------------------------------------------------------------- /Desktop_App_190/pyRFPowerMeter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K7MDL2/RF-Power-Meter-V1/HEAD/Desktop_App_190/pyRFPowerMeter.py -------------------------------------------------------------------------------- /Desktop_App_190/simple_server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K7MDL2/RF-Power-Meter-V1/HEAD/Desktop_App_190/simple_server.py -------------------------------------------------------------------------------- /Desktop_App_190/udp_rx_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K7MDL2/RF-Power-Meter-V1/HEAD/Desktop_App_190/udp_rx_test.py -------------------------------------------------------------------------------- /Desktop_App_190/wsjtx_packets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K7MDL2/RF-Power-Meter-V1/HEAD/Desktop_App_190/wsjtx_packets.py -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K7MDL2/RF-Power-Meter-V1/HEAD/LICENSE -------------------------------------------------------------------------------- /Nextion Files/RF Wattmeter-2.4-Horizontal common variable interface.HMI: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K7MDL2/RF-Power-Meter-V1/HEAD/Nextion Files/RF Wattmeter-2.4-Horizontal common variable interface.HMI -------------------------------------------------------------------------------- /Nextion Files/RF Wattmeter-3.5-Horizontal common variable interface-Paul_1296_Amplifier.HMI: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K7MDL2/RF-Power-Meter-V1/HEAD/Nextion Files/RF Wattmeter-3.5-Horizontal common variable interface-Paul_1296_Amplifier.HMI -------------------------------------------------------------------------------- /Nextion Files/RF Wattmeter-3.5-Horizontal common variable interface.HMI: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K7MDL2/RF-Power-Meter-V1/HEAD/Nextion Files/RF Wattmeter-3.5-Horizontal common variable interface.HMI -------------------------------------------------------------------------------- /Pictures/1296MHz Amplifier Front Panel with OLED RF Wattmeter Mounted.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K7MDL2/RF-Power-Meter-V1/HEAD/Pictures/1296MHz Amplifier Front Panel with OLED RF Wattmeter Mounted.jpg -------------------------------------------------------------------------------- /Pictures/3.5in RF Wattmeter with Band Decoder.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K7MDL2/RF-Power-Meter-V1/HEAD/Pictures/3.5in RF Wattmeter with Band Decoder.jpg -------------------------------------------------------------------------------- /Pictures/BandDecoderWattmeter_PCB_V1_Bottom.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K7MDL2/RF-Power-Meter-V1/HEAD/Pictures/BandDecoderWattmeter_PCB_V1_Bottom.jpg -------------------------------------------------------------------------------- /Pictures/BandDecoderWattmeter_PCB_V1_Top.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K7MDL2/RF-Power-Meter-V1/HEAD/Pictures/BandDecoderWattmeter_PCB_V1_Top.jpg -------------------------------------------------------------------------------- /Pictures/Bi-Directional Coupler assortment.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K7MDL2/RF-Power-Meter-V1/HEAD/Pictures/Bi-Directional Coupler assortment.jpg -------------------------------------------------------------------------------- /Pictures/Desktop App Snapshot - No Titlebar.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K7MDL2/RF-Power-Meter-V1/HEAD/Pictures/Desktop App Snapshot - No Titlebar.JPG -------------------------------------------------------------------------------- /Pictures/Desktop App Snapshot.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K7MDL2/RF-Power-Meter-V1/HEAD/Pictures/Desktop App Snapshot.JPG -------------------------------------------------------------------------------- /Pictures/Desktop Configuration Page Screen Shot.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K7MDL2/RF-Power-Meter-V1/HEAD/Pictures/Desktop Configuration Page Screen Shot.JPG -------------------------------------------------------------------------------- /Pictures/Edit Meter Table Screen Shot.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K7MDL2/RF-Power-Meter-V1/HEAD/Pictures/Edit Meter Table Screen Shot.JPG -------------------------------------------------------------------------------- /Pictures/Finished Rotor Controller Back.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K7MDL2/RF-Power-Meter-V1/HEAD/Pictures/Finished Rotor Controller Back.jpg -------------------------------------------------------------------------------- /Pictures/Finished Rotor Controller Side.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K7MDL2/RF-Power-Meter-V1/HEAD/Pictures/Finished Rotor Controller Side.jpg -------------------------------------------------------------------------------- /Pictures/K7MDL 2.4 inch PSoC LCD Main Page.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K7MDL2/RF-Power-Meter-V1/HEAD/Pictures/K7MDL 2.4 inch PSoC LCD Main Page.jpg -------------------------------------------------------------------------------- /Pictures/K7MDL 2.4inch PSoC RF Meter.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K7MDL2/RF-Power-Meter-V1/HEAD/Pictures/K7MDL 2.4inch PSoC RF Meter.jpg -------------------------------------------------------------------------------- /Pictures/K7MDL Desktop App with UDP Rotator Control Enabled.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K7MDL2/RF-Power-Meter-V1/HEAD/Pictures/K7MDL Desktop App with UDP Rotator Control Enabled.jpg -------------------------------------------------------------------------------- /Pictures/K7MDL RF Power Detector Cal Screen.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K7MDL2/RF-Power-Meter-V1/HEAD/Pictures/K7MDL RF Power Detector Cal Screen.jpg -------------------------------------------------------------------------------- /Pictures/K7MDL RF Power Detector.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K7MDL2/RF-Power-Meter-V1/HEAD/Pictures/K7MDL RF Power Detector.jpg -------------------------------------------------------------------------------- /Pictures/New May 2024 Edit Meter Config Screen Shot.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K7MDL2/RF-Power-Meter-V1/HEAD/Pictures/New May 2024 Edit Meter Config Screen Shot.JPG -------------------------------------------------------------------------------- /Pictures/OLED Power and Band Decoder Combo screen.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K7MDL2/RF-Power-Meter-V1/HEAD/Pictures/OLED Power and Band Decoder Combo screen.jpg -------------------------------------------------------------------------------- /Pictures/PCB V.01 built 4-11-2022.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K7MDL2/RF-Power-Meter-V1/HEAD/Pictures/PCB V.01 built 4-11-2022.jpg -------------------------------------------------------------------------------- /Pictures/RF Wattmeter Hardware Block Diagram.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K7MDL2/RF-Power-Meter-V1/HEAD/Pictures/RF Wattmeter Hardware Block Diagram.JPG -------------------------------------------------------------------------------- /Pictures/Remote Band Decoder Front Panel.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K7MDL2/RF-Power-Meter-V1/HEAD/Pictures/Remote Band Decoder Front Panel.jpg -------------------------------------------------------------------------------- /Pictures/Remote Band Decoder Rear Panel.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K7MDL2/RF-Power-Meter-V1/HEAD/Pictures/Remote Band Decoder Rear Panel.jpg -------------------------------------------------------------------------------- /Pictures/Teensy 4.1 Band Decoder-Wattmeter CPU board connectorization.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K7MDL2/RF-Power-Meter-V1/HEAD/Pictures/Teensy 4.1 Band Decoder-Wattmeter CPU board connectorization.jpg -------------------------------------------------------------------------------- /Pictures/Teensy 4.1 Wattmeter and Band Decoder Combo Build PinOut Chart.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K7MDL2/RF-Power-Meter-V1/HEAD/Pictures/Teensy 4.1 Wattmeter and Band Decoder Combo Build PinOut Chart.jpg -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K7MDL2/RF-Power-Meter-V1/HEAD/README.md -------------------------------------------------------------------------------- /RF_Meter_PSoC5LP/Amp and Antenna Selection Page.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K7MDL2/RF-Power-Meter-V1/HEAD/RF_Meter_PSoC5LP/Amp and Antenna Selection Page.JPG -------------------------------------------------------------------------------- /RF_Meter_PSoC5LP/Band Decoder Page.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K7MDL2/RF-Power-Meter-V1/HEAD/RF_Meter_PSoC5LP/Band Decoder Page.JPG -------------------------------------------------------------------------------- /RF_Meter_PSoC5LP/Main Drawing.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K7MDL2/RF-Power-Meter-V1/HEAD/RF_Meter_PSoC5LP/Main Drawing.JPG -------------------------------------------------------------------------------- /RF_Meter_PSoC5LP/RF_Wattmeter_PSoC5LP and BCD Band Decoder-000.cywrk.Archive27.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K7MDL2/RF-Power-Meter-V1/HEAD/RF_Meter_PSoC5LP/RF_Wattmeter_PSoC5LP and BCD Band Decoder-000.cywrk.Archive27.zip -------------------------------------------------------------------------------- /RF_Meter_PSoC5LP/SWR Voltage Output for Amps.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K7MDL2/RF-Power-Meter-V1/HEAD/RF_Meter_PSoC5LP/SWR Voltage Output for Amps.JPG -------------------------------------------------------------------------------- /RF_Nano_Headless/.vscode/arduino.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K7MDL2/RF-Power-Meter-V1/HEAD/RF_Nano_Headless/.vscode/arduino.json -------------------------------------------------------------------------------- /RF_Nano_Headless/.vscode/c_cpp_properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K7MDL2/RF-Power-Meter-V1/HEAD/RF_Nano_Headless/.vscode/c_cpp_properties.json -------------------------------------------------------------------------------- /RF_Nano_Headless/RF_Nano_Headless.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K7MDL2/RF-Power-Meter-V1/HEAD/RF_Nano_Headless/RF_Nano_Headless.ino -------------------------------------------------------------------------------- /RF_Power_Meter/.vscode/arduino.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K7MDL2/RF-Power-Meter-V1/HEAD/RF_Power_Meter/.vscode/arduino.json -------------------------------------------------------------------------------- /RF_Power_Meter/.vscode/c_cpp_properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K7MDL2/RF-Power-Meter-V1/HEAD/RF_Power_Meter/.vscode/c_cpp_properties.json -------------------------------------------------------------------------------- /RF_Power_Meter/ADS1100.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K7MDL2/RF-Power-Meter-V1/HEAD/RF_Power_Meter/ADS1100.cpp -------------------------------------------------------------------------------- /RF_Power_Meter/ADS1100.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K7MDL2/RF-Power-Meter-V1/HEAD/RF_Power_Meter/ADS1100.h -------------------------------------------------------------------------------- /RF_Power_Meter/RF_Power_Meter.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K7MDL2/RF-Power-Meter-V1/HEAD/RF_Power_Meter/RF_Power_Meter.ino -------------------------------------------------------------------------------- /RF_Power_Meter/V102.code-workspace: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K7MDL2/RF-Power-Meter-V1/HEAD/RF_Power_Meter/V102.code-workspace -------------------------------------------------------------------------------- /RF_Power_Meter_V1.code-workspace: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K7MDL2/RF-Power-Meter-V1/HEAD/RF_Power_Meter_V1.code-workspace -------------------------------------------------------------------------------- /RF_Wattmeter_Teensy41/.vscode/arduino.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K7MDL2/RF-Power-Meter-V1/HEAD/RF_Wattmeter_Teensy41/.vscode/arduino.json -------------------------------------------------------------------------------- /RF_Wattmeter_Teensy41/.vscode/c_cpp_properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K7MDL2/RF-Power-Meter-V1/HEAD/RF_Wattmeter_Teensy41/.vscode/c_cpp_properties.json -------------------------------------------------------------------------------- /RF_Wattmeter_Teensy41/Ethernet_Test_Programs/UDP-CPU-1/UDP-CPU-1.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K7MDL2/RF-Power-Meter-V1/HEAD/RF_Wattmeter_Teensy41/Ethernet_Test_Programs/UDP-CPU-1/UDP-CPU-1.ino -------------------------------------------------------------------------------- /RF_Wattmeter_Teensy41/Ethernet_Test_Programs/UDP-CPU-2/UDP-CPU-2.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K7MDL2/RF-Power-Meter-V1/HEAD/RF_Wattmeter_Teensy41/Ethernet_Test_Programs/UDP-CPU-2/UDP-CPU-2.ino -------------------------------------------------------------------------------- /RF_Wattmeter_Teensy41/Ethernet_Test_Programs/UDP-Radio-Test/UDP-Radio-Test.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K7MDL2/RF-Power-Meter-V1/HEAD/RF_Wattmeter_Teensy41/Ethernet_Test_Programs/UDP-Radio-Test/UDP-Radio-Test.ino -------------------------------------------------------------------------------- /RF_Wattmeter_Teensy41/NativeEthernetPatch/NativeEthernet.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K7MDL2/RF-Power-Meter-V1/HEAD/RF_Wattmeter_Teensy41/NativeEthernetPatch/NativeEthernet.cpp -------------------------------------------------------------------------------- /RF_Wattmeter_Teensy41/RF_Wattmeter_Arduino.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K7MDL2/RF-Power-Meter-V1/HEAD/RF_Wattmeter_Teensy41/RF_Wattmeter_Arduino.h -------------------------------------------------------------------------------- /RF_Wattmeter_Teensy41/RF_Wattmeter_Teensy41.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K7MDL2/RF-Power-Meter-V1/HEAD/RF_Wattmeter_Teensy41/RF_Wattmeter_Teensy41.ino -------------------------------------------------------------------------------- /RF_Wattmeter_Teensy41/nextion_patched/ITEADLIB_Arduino_Nextion_patched/NexButton.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K7MDL2/RF-Power-Meter-V1/HEAD/RF_Wattmeter_Teensy41/nextion_patched/ITEADLIB_Arduino_Nextion_patched/NexButton.cpp -------------------------------------------------------------------------------- /RF_Wattmeter_Teensy41/nextion_patched/ITEADLIB_Arduino_Nextion_patched/NexButton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K7MDL2/RF-Power-Meter-V1/HEAD/RF_Wattmeter_Teensy41/nextion_patched/ITEADLIB_Arduino_Nextion_patched/NexButton.h -------------------------------------------------------------------------------- /RF_Wattmeter_Teensy41/nextion_patched/ITEADLIB_Arduino_Nextion_patched/NexCheckbox.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K7MDL2/RF-Power-Meter-V1/HEAD/RF_Wattmeter_Teensy41/nextion_patched/ITEADLIB_Arduino_Nextion_patched/NexCheckbox.cpp -------------------------------------------------------------------------------- /RF_Wattmeter_Teensy41/nextion_patched/ITEADLIB_Arduino_Nextion_patched/NexCheckbox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K7MDL2/RF-Power-Meter-V1/HEAD/RF_Wattmeter_Teensy41/nextion_patched/ITEADLIB_Arduino_Nextion_patched/NexCheckbox.h -------------------------------------------------------------------------------- /RF_Wattmeter_Teensy41/nextion_patched/ITEADLIB_Arduino_Nextion_patched/NexConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K7MDL2/RF-Power-Meter-V1/HEAD/RF_Wattmeter_Teensy41/nextion_patched/ITEADLIB_Arduino_Nextion_patched/NexConfig.h -------------------------------------------------------------------------------- /RF_Wattmeter_Teensy41/nextion_patched/ITEADLIB_Arduino_Nextion_patched/NexCrop.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K7MDL2/RF-Power-Meter-V1/HEAD/RF_Wattmeter_Teensy41/nextion_patched/ITEADLIB_Arduino_Nextion_patched/NexCrop.cpp -------------------------------------------------------------------------------- /RF_Wattmeter_Teensy41/nextion_patched/ITEADLIB_Arduino_Nextion_patched/NexCrop.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K7MDL2/RF-Power-Meter-V1/HEAD/RF_Wattmeter_Teensy41/nextion_patched/ITEADLIB_Arduino_Nextion_patched/NexCrop.h -------------------------------------------------------------------------------- /RF_Wattmeter_Teensy41/nextion_patched/ITEADLIB_Arduino_Nextion_patched/NexDualStateButton.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K7MDL2/RF-Power-Meter-V1/HEAD/RF_Wattmeter_Teensy41/nextion_patched/ITEADLIB_Arduino_Nextion_patched/NexDualStateButton.cpp -------------------------------------------------------------------------------- /RF_Wattmeter_Teensy41/nextion_patched/ITEADLIB_Arduino_Nextion_patched/NexDualStateButton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K7MDL2/RF-Power-Meter-V1/HEAD/RF_Wattmeter_Teensy41/nextion_patched/ITEADLIB_Arduino_Nextion_patched/NexDualStateButton.h -------------------------------------------------------------------------------- /RF_Wattmeter_Teensy41/nextion_patched/ITEADLIB_Arduino_Nextion_patched/NexGauge.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K7MDL2/RF-Power-Meter-V1/HEAD/RF_Wattmeter_Teensy41/nextion_patched/ITEADLIB_Arduino_Nextion_patched/NexGauge.cpp -------------------------------------------------------------------------------- /RF_Wattmeter_Teensy41/nextion_patched/ITEADLIB_Arduino_Nextion_patched/NexGauge.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K7MDL2/RF-Power-Meter-V1/HEAD/RF_Wattmeter_Teensy41/nextion_patched/ITEADLIB_Arduino_Nextion_patched/NexGauge.h -------------------------------------------------------------------------------- /RF_Wattmeter_Teensy41/nextion_patched/ITEADLIB_Arduino_Nextion_patched/NexGpio.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K7MDL2/RF-Power-Meter-V1/HEAD/RF_Wattmeter_Teensy41/nextion_patched/ITEADLIB_Arduino_Nextion_patched/NexGpio.cpp -------------------------------------------------------------------------------- /RF_Wattmeter_Teensy41/nextion_patched/ITEADLIB_Arduino_Nextion_patched/NexGpio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K7MDL2/RF-Power-Meter-V1/HEAD/RF_Wattmeter_Teensy41/nextion_patched/ITEADLIB_Arduino_Nextion_patched/NexGpio.h -------------------------------------------------------------------------------- /RF_Wattmeter_Teensy41/nextion_patched/ITEADLIB_Arduino_Nextion_patched/NexHardware.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K7MDL2/RF-Power-Meter-V1/HEAD/RF_Wattmeter_Teensy41/nextion_patched/ITEADLIB_Arduino_Nextion_patched/NexHardware.cpp -------------------------------------------------------------------------------- /RF_Wattmeter_Teensy41/nextion_patched/ITEADLIB_Arduino_Nextion_patched/NexHardware.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K7MDL2/RF-Power-Meter-V1/HEAD/RF_Wattmeter_Teensy41/nextion_patched/ITEADLIB_Arduino_Nextion_patched/NexHardware.h -------------------------------------------------------------------------------- /RF_Wattmeter_Teensy41/nextion_patched/ITEADLIB_Arduino_Nextion_patched/NexHotspot.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K7MDL2/RF-Power-Meter-V1/HEAD/RF_Wattmeter_Teensy41/nextion_patched/ITEADLIB_Arduino_Nextion_patched/NexHotspot.cpp -------------------------------------------------------------------------------- /RF_Wattmeter_Teensy41/nextion_patched/ITEADLIB_Arduino_Nextion_patched/NexHotspot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K7MDL2/RF-Power-Meter-V1/HEAD/RF_Wattmeter_Teensy41/nextion_patched/ITEADLIB_Arduino_Nextion_patched/NexHotspot.h -------------------------------------------------------------------------------- /RF_Wattmeter_Teensy41/nextion_patched/ITEADLIB_Arduino_Nextion_patched/NexNumber.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K7MDL2/RF-Power-Meter-V1/HEAD/RF_Wattmeter_Teensy41/nextion_patched/ITEADLIB_Arduino_Nextion_patched/NexNumber.cpp -------------------------------------------------------------------------------- /RF_Wattmeter_Teensy41/nextion_patched/ITEADLIB_Arduino_Nextion_patched/NexNumber.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K7MDL2/RF-Power-Meter-V1/HEAD/RF_Wattmeter_Teensy41/nextion_patched/ITEADLIB_Arduino_Nextion_patched/NexNumber.h -------------------------------------------------------------------------------- /RF_Wattmeter_Teensy41/nextion_patched/ITEADLIB_Arduino_Nextion_patched/NexObject.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K7MDL2/RF-Power-Meter-V1/HEAD/RF_Wattmeter_Teensy41/nextion_patched/ITEADLIB_Arduino_Nextion_patched/NexObject.cpp -------------------------------------------------------------------------------- /RF_Wattmeter_Teensy41/nextion_patched/ITEADLIB_Arduino_Nextion_patched/NexObject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K7MDL2/RF-Power-Meter-V1/HEAD/RF_Wattmeter_Teensy41/nextion_patched/ITEADLIB_Arduino_Nextion_patched/NexObject.h -------------------------------------------------------------------------------- /RF_Wattmeter_Teensy41/nextion_patched/ITEADLIB_Arduino_Nextion_patched/NexPage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K7MDL2/RF-Power-Meter-V1/HEAD/RF_Wattmeter_Teensy41/nextion_patched/ITEADLIB_Arduino_Nextion_patched/NexPage.cpp -------------------------------------------------------------------------------- /RF_Wattmeter_Teensy41/nextion_patched/ITEADLIB_Arduino_Nextion_patched/NexPage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K7MDL2/RF-Power-Meter-V1/HEAD/RF_Wattmeter_Teensy41/nextion_patched/ITEADLIB_Arduino_Nextion_patched/NexPage.h -------------------------------------------------------------------------------- /RF_Wattmeter_Teensy41/nextion_patched/ITEADLIB_Arduino_Nextion_patched/NexPicture.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K7MDL2/RF-Power-Meter-V1/HEAD/RF_Wattmeter_Teensy41/nextion_patched/ITEADLIB_Arduino_Nextion_patched/NexPicture.cpp -------------------------------------------------------------------------------- /RF_Wattmeter_Teensy41/nextion_patched/ITEADLIB_Arduino_Nextion_patched/NexPicture.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K7MDL2/RF-Power-Meter-V1/HEAD/RF_Wattmeter_Teensy41/nextion_patched/ITEADLIB_Arduino_Nextion_patched/NexPicture.h -------------------------------------------------------------------------------- /RF_Wattmeter_Teensy41/nextion_patched/ITEADLIB_Arduino_Nextion_patched/NexProgressBar.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K7MDL2/RF-Power-Meter-V1/HEAD/RF_Wattmeter_Teensy41/nextion_patched/ITEADLIB_Arduino_Nextion_patched/NexProgressBar.cpp -------------------------------------------------------------------------------- /RF_Wattmeter_Teensy41/nextion_patched/ITEADLIB_Arduino_Nextion_patched/NexProgressBar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K7MDL2/RF-Power-Meter-V1/HEAD/RF_Wattmeter_Teensy41/nextion_patched/ITEADLIB_Arduino_Nextion_patched/NexProgressBar.h -------------------------------------------------------------------------------- /RF_Wattmeter_Teensy41/nextion_patched/ITEADLIB_Arduino_Nextion_patched/NexRadio.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K7MDL2/RF-Power-Meter-V1/HEAD/RF_Wattmeter_Teensy41/nextion_patched/ITEADLIB_Arduino_Nextion_patched/NexRadio.cpp -------------------------------------------------------------------------------- /RF_Wattmeter_Teensy41/nextion_patched/ITEADLIB_Arduino_Nextion_patched/NexRadio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K7MDL2/RF-Power-Meter-V1/HEAD/RF_Wattmeter_Teensy41/nextion_patched/ITEADLIB_Arduino_Nextion_patched/NexRadio.h -------------------------------------------------------------------------------- /RF_Wattmeter_Teensy41/nextion_patched/ITEADLIB_Arduino_Nextion_patched/NexRtc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K7MDL2/RF-Power-Meter-V1/HEAD/RF_Wattmeter_Teensy41/nextion_patched/ITEADLIB_Arduino_Nextion_patched/NexRtc.cpp -------------------------------------------------------------------------------- /RF_Wattmeter_Teensy41/nextion_patched/ITEADLIB_Arduino_Nextion_patched/NexRtc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K7MDL2/RF-Power-Meter-V1/HEAD/RF_Wattmeter_Teensy41/nextion_patched/ITEADLIB_Arduino_Nextion_patched/NexRtc.h -------------------------------------------------------------------------------- /RF_Wattmeter_Teensy41/nextion_patched/ITEADLIB_Arduino_Nextion_patched/NexScrolltext.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K7MDL2/RF-Power-Meter-V1/HEAD/RF_Wattmeter_Teensy41/nextion_patched/ITEADLIB_Arduino_Nextion_patched/NexScrolltext.cpp -------------------------------------------------------------------------------- /RF_Wattmeter_Teensy41/nextion_patched/ITEADLIB_Arduino_Nextion_patched/NexScrolltext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K7MDL2/RF-Power-Meter-V1/HEAD/RF_Wattmeter_Teensy41/nextion_patched/ITEADLIB_Arduino_Nextion_patched/NexScrolltext.h -------------------------------------------------------------------------------- /RF_Wattmeter_Teensy41/nextion_patched/ITEADLIB_Arduino_Nextion_patched/NexSlider.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K7MDL2/RF-Power-Meter-V1/HEAD/RF_Wattmeter_Teensy41/nextion_patched/ITEADLIB_Arduino_Nextion_patched/NexSlider.cpp -------------------------------------------------------------------------------- /RF_Wattmeter_Teensy41/nextion_patched/ITEADLIB_Arduino_Nextion_patched/NexSlider.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K7MDL2/RF-Power-Meter-V1/HEAD/RF_Wattmeter_Teensy41/nextion_patched/ITEADLIB_Arduino_Nextion_patched/NexSlider.h -------------------------------------------------------------------------------- /RF_Wattmeter_Teensy41/nextion_patched/ITEADLIB_Arduino_Nextion_patched/NexText.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K7MDL2/RF-Power-Meter-V1/HEAD/RF_Wattmeter_Teensy41/nextion_patched/ITEADLIB_Arduino_Nextion_patched/NexText.cpp -------------------------------------------------------------------------------- /RF_Wattmeter_Teensy41/nextion_patched/ITEADLIB_Arduino_Nextion_patched/NexText.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K7MDL2/RF-Power-Meter-V1/HEAD/RF_Wattmeter_Teensy41/nextion_patched/ITEADLIB_Arduino_Nextion_patched/NexText.h -------------------------------------------------------------------------------- /RF_Wattmeter_Teensy41/nextion_patched/ITEADLIB_Arduino_Nextion_patched/NexTimer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K7MDL2/RF-Power-Meter-V1/HEAD/RF_Wattmeter_Teensy41/nextion_patched/ITEADLIB_Arduino_Nextion_patched/NexTimer.cpp -------------------------------------------------------------------------------- /RF_Wattmeter_Teensy41/nextion_patched/ITEADLIB_Arduino_Nextion_patched/NexTimer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K7MDL2/RF-Power-Meter-V1/HEAD/RF_Wattmeter_Teensy41/nextion_patched/ITEADLIB_Arduino_Nextion_patched/NexTimer.h -------------------------------------------------------------------------------- /RF_Wattmeter_Teensy41/nextion_patched/ITEADLIB_Arduino_Nextion_patched/NexTouch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K7MDL2/RF-Power-Meter-V1/HEAD/RF_Wattmeter_Teensy41/nextion_patched/ITEADLIB_Arduino_Nextion_patched/NexTouch.cpp -------------------------------------------------------------------------------- /RF_Wattmeter_Teensy41/nextion_patched/ITEADLIB_Arduino_Nextion_patched/NexTouch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K7MDL2/RF-Power-Meter-V1/HEAD/RF_Wattmeter_Teensy41/nextion_patched/ITEADLIB_Arduino_Nextion_patched/NexTouch.h -------------------------------------------------------------------------------- /RF_Wattmeter_Teensy41/nextion_patched/ITEADLIB_Arduino_Nextion_patched/NexUpload.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K7MDL2/RF-Power-Meter-V1/HEAD/RF_Wattmeter_Teensy41/nextion_patched/ITEADLIB_Arduino_Nextion_patched/NexUpload.cpp -------------------------------------------------------------------------------- /RF_Wattmeter_Teensy41/nextion_patched/ITEADLIB_Arduino_Nextion_patched/NexUpload.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K7MDL2/RF-Power-Meter-V1/HEAD/RF_Wattmeter_Teensy41/nextion_patched/ITEADLIB_Arduino_Nextion_patched/NexUpload.h -------------------------------------------------------------------------------- /RF_Wattmeter_Teensy41/nextion_patched/ITEADLIB_Arduino_Nextion_patched/NexVariable.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K7MDL2/RF-Power-Meter-V1/HEAD/RF_Wattmeter_Teensy41/nextion_patched/ITEADLIB_Arduino_Nextion_patched/NexVariable.cpp -------------------------------------------------------------------------------- /RF_Wattmeter_Teensy41/nextion_patched/ITEADLIB_Arduino_Nextion_patched/NexVariable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K7MDL2/RF-Power-Meter-V1/HEAD/RF_Wattmeter_Teensy41/nextion_patched/ITEADLIB_Arduino_Nextion_patched/NexVariable.h -------------------------------------------------------------------------------- /RF_Wattmeter_Teensy41/nextion_patched/ITEADLIB_Arduino_Nextion_patched/NexWaveform.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K7MDL2/RF-Power-Meter-V1/HEAD/RF_Wattmeter_Teensy41/nextion_patched/ITEADLIB_Arduino_Nextion_patched/NexWaveform.cpp -------------------------------------------------------------------------------- /RF_Wattmeter_Teensy41/nextion_patched/ITEADLIB_Arduino_Nextion_patched/NexWaveform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K7MDL2/RF-Power-Meter-V1/HEAD/RF_Wattmeter_Teensy41/nextion_patched/ITEADLIB_Arduino_Nextion_patched/NexWaveform.h -------------------------------------------------------------------------------- /RF_Wattmeter_Teensy41/nextion_patched/ITEADLIB_Arduino_Nextion_patched/Nextion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K7MDL2/RF-Power-Meter-V1/HEAD/RF_Wattmeter_Teensy41/nextion_patched/ITEADLIB_Arduino_Nextion_patched/Nextion.h -------------------------------------------------------------------------------- /RF_Wattmeter_Teensy41/nextion_patched/ITEADLIB_Arduino_Nextion_patched/RF_Wattmeter_Nextion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K7MDL2/RF-Power-Meter-V1/HEAD/RF_Wattmeter_Teensy41/nextion_patched/ITEADLIB_Arduino_Nextion_patched/RF_Wattmeter_Nextion.h -------------------------------------------------------------------------------- /RF_Wattmeter_Teensy41/nextion_patched/ITEADLIB_Arduino_Nextion_patched/doc/Documentation/_nex_button_8cpp__incl.md5: -------------------------------------------------------------------------------- 1 | 68fbe2ac8c00174debc341792ccb83f9 -------------------------------------------------------------------------------- /RF_Wattmeter_Teensy41/nextion_patched/ITEADLIB_Arduino_Nextion_patched/doc/Documentation/_nex_button_8h__dep__incl.md5: -------------------------------------------------------------------------------- 1 | 4a85df539a1d19ddaa422cdade94ae56 -------------------------------------------------------------------------------- /RF_Wattmeter_Teensy41/nextion_patched/ITEADLIB_Arduino_Nextion_patched/doc/Documentation/_nex_button_8h__incl.md5: -------------------------------------------------------------------------------- 1 | e92c368e36d3eb3ad2a812a0a2e753ec -------------------------------------------------------------------------------- /RF_Wattmeter_Teensy41/nextion_patched/ITEADLIB_Arduino_Nextion_patched/doc/Documentation/_nex_checkbox_8cpp__incl.md5: -------------------------------------------------------------------------------- 1 | ddb4e8097a6c6bb3c64d1cfaf1060ae8 -------------------------------------------------------------------------------- /RF_Wattmeter_Teensy41/nextion_patched/ITEADLIB_Arduino_Nextion_patched/doc/Documentation/_nex_checkbox_8h__dep__incl.md5: -------------------------------------------------------------------------------- 1 | 0fac01178c8aa0891c549d5523037075 -------------------------------------------------------------------------------- /RF_Wattmeter_Teensy41/nextion_patched/ITEADLIB_Arduino_Nextion_patched/doc/Documentation/_nex_checkbox_8h__incl.md5: -------------------------------------------------------------------------------- 1 | 59130d9f175fc8bd281df18986305a35 -------------------------------------------------------------------------------- /RF_Wattmeter_Teensy41/nextion_patched/ITEADLIB_Arduino_Nextion_patched/doc/Documentation/_nex_config_8h__dep__incl.md5: -------------------------------------------------------------------------------- 1 | dfc262752b573ac6b6dfbf0eb2fe3397 -------------------------------------------------------------------------------- /RF_Wattmeter_Teensy41/nextion_patched/ITEADLIB_Arduino_Nextion_patched/doc/Documentation/_nex_crop_8cpp__incl.md5: -------------------------------------------------------------------------------- 1 | 92dc338994e30e7c59a38fcee00de82f -------------------------------------------------------------------------------- /RF_Wattmeter_Teensy41/nextion_patched/ITEADLIB_Arduino_Nextion_patched/doc/Documentation/_nex_crop_8h__dep__incl.md5: -------------------------------------------------------------------------------- 1 | 010097edaecf5398a940aec276640f0e -------------------------------------------------------------------------------- /RF_Wattmeter_Teensy41/nextion_patched/ITEADLIB_Arduino_Nextion_patched/doc/Documentation/_nex_crop_8h__incl.md5: -------------------------------------------------------------------------------- 1 | 474f0f546e1d6f1f869f75096df6a1c1 -------------------------------------------------------------------------------- /RF_Wattmeter_Teensy41/nextion_patched/ITEADLIB_Arduino_Nextion_patched/doc/Documentation/_nex_dual_state_button_8cpp__incl.md5: -------------------------------------------------------------------------------- 1 | cbdfc08ceb9e7457c448b63d9f7bc40f -------------------------------------------------------------------------------- /RF_Wattmeter_Teensy41/nextion_patched/ITEADLIB_Arduino_Nextion_patched/doc/Documentation/_nex_dual_state_button_8h__dep__incl.md5: -------------------------------------------------------------------------------- 1 | a61354633ab957f7a9c0f2755df92c2a -------------------------------------------------------------------------------- /RF_Wattmeter_Teensy41/nextion_patched/ITEADLIB_Arduino_Nextion_patched/doc/Documentation/_nex_dual_state_button_8h__incl.md5: -------------------------------------------------------------------------------- 1 | aa2e138fae81b8608b8eb71708a658a5 -------------------------------------------------------------------------------- /RF_Wattmeter_Teensy41/nextion_patched/ITEADLIB_Arduino_Nextion_patched/doc/Documentation/_nex_gauge_8cpp__incl.md5: -------------------------------------------------------------------------------- 1 | cf65eb9046657613583090b80b117113 -------------------------------------------------------------------------------- /RF_Wattmeter_Teensy41/nextion_patched/ITEADLIB_Arduino_Nextion_patched/doc/Documentation/_nex_gauge_8h__dep__incl.md5: -------------------------------------------------------------------------------- 1 | 6c30d86ca638f92b052cdf1dfb9c4799 -------------------------------------------------------------------------------- /RF_Wattmeter_Teensy41/nextion_patched/ITEADLIB_Arduino_Nextion_patched/doc/Documentation/_nex_gauge_8h__incl.md5: -------------------------------------------------------------------------------- 1 | 6906a078275f266f4e7afd51b40ae120 -------------------------------------------------------------------------------- /RF_Wattmeter_Teensy41/nextion_patched/ITEADLIB_Arduino_Nextion_patched/doc/Documentation/_nex_hardware_8cpp__incl.md5: -------------------------------------------------------------------------------- 1 | c8f0437e4aba0d7c9c9ae6bfc7481f47 -------------------------------------------------------------------------------- /RF_Wattmeter_Teensy41/nextion_patched/ITEADLIB_Arduino_Nextion_patched/doc/Documentation/_nex_hardware_8h__dep__incl.md5: -------------------------------------------------------------------------------- 1 | 08c96aab97e8bd7a213b6bb68da8eab7 -------------------------------------------------------------------------------- /RF_Wattmeter_Teensy41/nextion_patched/ITEADLIB_Arduino_Nextion_patched/doc/Documentation/_nex_hardware_8h__incl.md5: -------------------------------------------------------------------------------- 1 | e1c95b022acaca85b9fe7c4c625d0bb8 -------------------------------------------------------------------------------- /RF_Wattmeter_Teensy41/nextion_patched/ITEADLIB_Arduino_Nextion_patched/doc/Documentation/_nex_hotspot_8cpp__incl.md5: -------------------------------------------------------------------------------- 1 | 66f185422163e48b0fd01dacf99b0a3d -------------------------------------------------------------------------------- /RF_Wattmeter_Teensy41/nextion_patched/ITEADLIB_Arduino_Nextion_patched/doc/Documentation/_nex_hotspot_8h__dep__incl.md5: -------------------------------------------------------------------------------- 1 | e9ec1e23b18c04360591631f6331df7e -------------------------------------------------------------------------------- /RF_Wattmeter_Teensy41/nextion_patched/ITEADLIB_Arduino_Nextion_patched/doc/Documentation/_nex_hotspot_8h__incl.md5: -------------------------------------------------------------------------------- 1 | 047f7c3231ffe2cea4a8ea50a2831925 -------------------------------------------------------------------------------- /RF_Wattmeter_Teensy41/nextion_patched/ITEADLIB_Arduino_Nextion_patched/doc/Documentation/_nex_number_8cpp__incl.md5: -------------------------------------------------------------------------------- 1 | 71e92ebbc2c0a3a0307da94a18bdaec2 -------------------------------------------------------------------------------- /RF_Wattmeter_Teensy41/nextion_patched/ITEADLIB_Arduino_Nextion_patched/doc/Documentation/_nex_number_8h__dep__incl.md5: -------------------------------------------------------------------------------- 1 | f97587a294f58f6e088825c86110223c -------------------------------------------------------------------------------- /RF_Wattmeter_Teensy41/nextion_patched/ITEADLIB_Arduino_Nextion_patched/doc/Documentation/_nex_number_8h__incl.md5: -------------------------------------------------------------------------------- 1 | d79b0abab9facd0c2fbed630d5bfed57 -------------------------------------------------------------------------------- /RF_Wattmeter_Teensy41/nextion_patched/ITEADLIB_Arduino_Nextion_patched/doc/Documentation/_nex_object_8cpp__incl.md5: -------------------------------------------------------------------------------- 1 | 166582a9d9fec4437e7bbeef431de3fa -------------------------------------------------------------------------------- /RF_Wattmeter_Teensy41/nextion_patched/ITEADLIB_Arduino_Nextion_patched/doc/Documentation/_nex_object_8h__dep__incl.md5: -------------------------------------------------------------------------------- 1 | 29db853f4b4d858600dae4a2d1405e13 -------------------------------------------------------------------------------- /RF_Wattmeter_Teensy41/nextion_patched/ITEADLIB_Arduino_Nextion_patched/doc/Documentation/_nex_object_8h__incl.md5: -------------------------------------------------------------------------------- 1 | d52c20a140672d5c1745bfc19910b453 -------------------------------------------------------------------------------- /RF_Wattmeter_Teensy41/nextion_patched/ITEADLIB_Arduino_Nextion_patched/doc/Documentation/_nex_page_8cpp__incl.md5: -------------------------------------------------------------------------------- 1 | df0a1bc1497e377b919cc21cb0fab83a -------------------------------------------------------------------------------- /RF_Wattmeter_Teensy41/nextion_patched/ITEADLIB_Arduino_Nextion_patched/doc/Documentation/_nex_page_8h__dep__incl.md5: -------------------------------------------------------------------------------- 1 | c201db3286260547756a8ae56277738f -------------------------------------------------------------------------------- /RF_Wattmeter_Teensy41/nextion_patched/ITEADLIB_Arduino_Nextion_patched/doc/Documentation/_nex_page_8h__incl.md5: -------------------------------------------------------------------------------- 1 | bc133fe7b6908b44980f3ee9bb223727 -------------------------------------------------------------------------------- /RF_Wattmeter_Teensy41/nextion_patched/ITEADLIB_Arduino_Nextion_patched/doc/Documentation/_nex_picture_8cpp__incl.md5: -------------------------------------------------------------------------------- 1 | 8445d57ce56a98a45dea05c88e34021e -------------------------------------------------------------------------------- /RF_Wattmeter_Teensy41/nextion_patched/ITEADLIB_Arduino_Nextion_patched/doc/Documentation/_nex_picture_8h__dep__incl.md5: -------------------------------------------------------------------------------- 1 | a01b6aadda027bacbbc49ed3122d51b4 -------------------------------------------------------------------------------- /RF_Wattmeter_Teensy41/nextion_patched/ITEADLIB_Arduino_Nextion_patched/doc/Documentation/_nex_picture_8h__incl.md5: -------------------------------------------------------------------------------- 1 | ffa0571dc44d58095fc80558f182ecd7 -------------------------------------------------------------------------------- /RF_Wattmeter_Teensy41/nextion_patched/ITEADLIB_Arduino_Nextion_patched/doc/Documentation/_nex_progress_bar_8cpp__incl.md5: -------------------------------------------------------------------------------- 1 | e3d93bc4d9ae375c219a88ebd7f3cf4d -------------------------------------------------------------------------------- /RF_Wattmeter_Teensy41/nextion_patched/ITEADLIB_Arduino_Nextion_patched/doc/Documentation/_nex_progress_bar_8h__dep__incl.md5: -------------------------------------------------------------------------------- 1 | 7694e05cc1f25e76d7b8825051f0eca6 -------------------------------------------------------------------------------- /RF_Wattmeter_Teensy41/nextion_patched/ITEADLIB_Arduino_Nextion_patched/doc/Documentation/_nex_progress_bar_8h__incl.md5: -------------------------------------------------------------------------------- 1 | b05e73eba5805ad399a22e5acf4c191e -------------------------------------------------------------------------------- /RF_Wattmeter_Teensy41/nextion_patched/ITEADLIB_Arduino_Nextion_patched/doc/Documentation/_nex_radio_8cpp__incl.md5: -------------------------------------------------------------------------------- 1 | 6b8b52184a8ca557645d830ef11e8ec4 -------------------------------------------------------------------------------- /RF_Wattmeter_Teensy41/nextion_patched/ITEADLIB_Arduino_Nextion_patched/doc/Documentation/_nex_radio_8h__dep__incl.md5: -------------------------------------------------------------------------------- 1 | bd891573c77107c081324dfeb792ea0d -------------------------------------------------------------------------------- /RF_Wattmeter_Teensy41/nextion_patched/ITEADLIB_Arduino_Nextion_patched/doc/Documentation/_nex_radio_8h__incl.md5: -------------------------------------------------------------------------------- 1 | 34e1a7eb65ac4d4f76e4c77d8002ace3 -------------------------------------------------------------------------------- /RF_Wattmeter_Teensy41/nextion_patched/ITEADLIB_Arduino_Nextion_patched/doc/Documentation/_nex_scrolltext_8cpp__incl.md5: -------------------------------------------------------------------------------- 1 | 7cc5d55ebd7df686be73bffb36289be3 -------------------------------------------------------------------------------- /RF_Wattmeter_Teensy41/nextion_patched/ITEADLIB_Arduino_Nextion_patched/doc/Documentation/_nex_scrolltext_8h__dep__incl.md5: -------------------------------------------------------------------------------- 1 | 3e4ab62ebf80a9d8877ea22683a2f70c -------------------------------------------------------------------------------- /RF_Wattmeter_Teensy41/nextion_patched/ITEADLIB_Arduino_Nextion_patched/doc/Documentation/_nex_scrolltext_8h__incl.md5: -------------------------------------------------------------------------------- 1 | 51efc230a6b1be5970190292a9629cfe -------------------------------------------------------------------------------- /RF_Wattmeter_Teensy41/nextion_patched/ITEADLIB_Arduino_Nextion_patched/doc/Documentation/_nex_slider_8cpp__incl.md5: -------------------------------------------------------------------------------- 1 | f1650662fdbf619c701be1dc784d818c -------------------------------------------------------------------------------- /RF_Wattmeter_Teensy41/nextion_patched/ITEADLIB_Arduino_Nextion_patched/doc/Documentation/_nex_slider_8h__dep__incl.md5: -------------------------------------------------------------------------------- 1 | b5811332f221cac68a0193d6ff5a05b6 -------------------------------------------------------------------------------- /RF_Wattmeter_Teensy41/nextion_patched/ITEADLIB_Arduino_Nextion_patched/doc/Documentation/_nex_slider_8h__incl.md5: -------------------------------------------------------------------------------- 1 | 710caa42431bd341a60b5f1e9d51b748 -------------------------------------------------------------------------------- /RF_Wattmeter_Teensy41/nextion_patched/ITEADLIB_Arduino_Nextion_patched/doc/Documentation/_nex_text_8cpp__incl.md5: -------------------------------------------------------------------------------- 1 | 73add292e60b1c38c9fbc26abe67bb79 -------------------------------------------------------------------------------- /RF_Wattmeter_Teensy41/nextion_patched/ITEADLIB_Arduino_Nextion_patched/doc/Documentation/_nex_text_8h__dep__incl.md5: -------------------------------------------------------------------------------- 1 | b40637a58d5cad02533d6317ca1e420c -------------------------------------------------------------------------------- /RF_Wattmeter_Teensy41/nextion_patched/ITEADLIB_Arduino_Nextion_patched/doc/Documentation/_nex_text_8h__incl.md5: -------------------------------------------------------------------------------- 1 | ba407b10ea1c5699771c718ff381abdd -------------------------------------------------------------------------------- /RF_Wattmeter_Teensy41/nextion_patched/ITEADLIB_Arduino_Nextion_patched/doc/Documentation/_nex_timer_8cpp__incl.md5: -------------------------------------------------------------------------------- 1 | 919b506a53432dd3362a91697d1c3056 -------------------------------------------------------------------------------- /RF_Wattmeter_Teensy41/nextion_patched/ITEADLIB_Arduino_Nextion_patched/doc/Documentation/_nex_timer_8h__dep__incl.md5: -------------------------------------------------------------------------------- 1 | 5beadece124fd040a335f0f36ede2a36 -------------------------------------------------------------------------------- /RF_Wattmeter_Teensy41/nextion_patched/ITEADLIB_Arduino_Nextion_patched/doc/Documentation/_nex_timer_8h__incl.md5: -------------------------------------------------------------------------------- 1 | 604fd9fa67d47487c6372d69c5ef37ea -------------------------------------------------------------------------------- /RF_Wattmeter_Teensy41/nextion_patched/ITEADLIB_Arduino_Nextion_patched/doc/Documentation/_nex_touch_8cpp__incl.md5: -------------------------------------------------------------------------------- 1 | 16eff07b89617315119c753273cb105b -------------------------------------------------------------------------------- /RF_Wattmeter_Teensy41/nextion_patched/ITEADLIB_Arduino_Nextion_patched/doc/Documentation/_nex_touch_8h__dep__incl.md5: -------------------------------------------------------------------------------- 1 | 5a677211c7861c67c051c428d2f388ec -------------------------------------------------------------------------------- /RF_Wattmeter_Teensy41/nextion_patched/ITEADLIB_Arduino_Nextion_patched/doc/Documentation/_nex_touch_8h__incl.md5: -------------------------------------------------------------------------------- 1 | 6d333bf12f1fd3bc79c9bdeb5dfcb65a -------------------------------------------------------------------------------- /RF_Wattmeter_Teensy41/nextion_patched/ITEADLIB_Arduino_Nextion_patched/doc/Documentation/_nex_upload_8cpp__incl.md5: -------------------------------------------------------------------------------- 1 | 3b0dc15aef0bb64cc30ad8da3263fd84 -------------------------------------------------------------------------------- /RF_Wattmeter_Teensy41/nextion_patched/ITEADLIB_Arduino_Nextion_patched/doc/Documentation/_nex_upload_8h__dep__incl.md5: -------------------------------------------------------------------------------- 1 | db83a19f69fed1d6cbc6d48dad451007 -------------------------------------------------------------------------------- /RF_Wattmeter_Teensy41/nextion_patched/ITEADLIB_Arduino_Nextion_patched/doc/Documentation/_nex_upload_8h__incl.md5: -------------------------------------------------------------------------------- 1 | a3d99ec49977f4b7ff538e89a157b988 -------------------------------------------------------------------------------- /RF_Wattmeter_Teensy41/nextion_patched/ITEADLIB_Arduino_Nextion_patched/doc/Documentation/_nex_variable_8cpp__incl.md5: -------------------------------------------------------------------------------- 1 | e5f9422a975e7783f165cb320706834a -------------------------------------------------------------------------------- /RF_Wattmeter_Teensy41/nextion_patched/ITEADLIB_Arduino_Nextion_patched/doc/Documentation/_nex_waveform_8cpp__incl.md5: -------------------------------------------------------------------------------- 1 | 9df1728b53a4a39a830f42587be96d55 -------------------------------------------------------------------------------- /RF_Wattmeter_Teensy41/nextion_patched/ITEADLIB_Arduino_Nextion_patched/doc/Documentation/_nex_waveform_8h__dep__incl.md5: -------------------------------------------------------------------------------- 1 | fa97c630cd3cfd9d898973c575c507b3 -------------------------------------------------------------------------------- /RF_Wattmeter_Teensy41/nextion_patched/ITEADLIB_Arduino_Nextion_patched/doc/Documentation/_nex_waveform_8h__incl.md5: -------------------------------------------------------------------------------- 1 | afc74ec3941f099a5cece08f63c00428 -------------------------------------------------------------------------------- /RF_Wattmeter_Teensy41/nextion_patched/ITEADLIB_Arduino_Nextion_patched/doc/Documentation/_nextion_8h__dep__incl.md5: -------------------------------------------------------------------------------- 1 | 579d88d74557b2e0b8bb4be1d7593eda -------------------------------------------------------------------------------- /RF_Wattmeter_Teensy41/nextion_patched/ITEADLIB_Arduino_Nextion_patched/doc/Documentation/_nextion_8h__incl.md5: -------------------------------------------------------------------------------- 1 | 0937c696607a866e3475eb52f292c09c -------------------------------------------------------------------------------- /RF_Wattmeter_Teensy41/nextion_patched/ITEADLIB_Arduino_Nextion_patched/doc/Documentation/class_nex_button__coll__graph.md5: -------------------------------------------------------------------------------- 1 | 343a6a50f6e02abd56981060a9350f06 -------------------------------------------------------------------------------- /RF_Wattmeter_Teensy41/nextion_patched/ITEADLIB_Arduino_Nextion_patched/doc/Documentation/class_nex_button__inherit__graph.md5: -------------------------------------------------------------------------------- 1 | 343a6a50f6e02abd56981060a9350f06 -------------------------------------------------------------------------------- /RF_Wattmeter_Teensy41/nextion_patched/ITEADLIB_Arduino_Nextion_patched/doc/Documentation/class_nex_checkbox__coll__graph.md5: -------------------------------------------------------------------------------- 1 | 68902295d204a93f0e708ae72fd9ec88 -------------------------------------------------------------------------------- /RF_Wattmeter_Teensy41/nextion_patched/ITEADLIB_Arduino_Nextion_patched/doc/Documentation/class_nex_checkbox__inherit__graph.md5: -------------------------------------------------------------------------------- 1 | 68902295d204a93f0e708ae72fd9ec88 -------------------------------------------------------------------------------- /RF_Wattmeter_Teensy41/nextion_patched/ITEADLIB_Arduino_Nextion_patched/doc/Documentation/class_nex_crop__coll__graph.md5: -------------------------------------------------------------------------------- 1 | 75b35d89389c80d289269936009f040a -------------------------------------------------------------------------------- /RF_Wattmeter_Teensy41/nextion_patched/ITEADLIB_Arduino_Nextion_patched/doc/Documentation/class_nex_crop__inherit__graph.md5: -------------------------------------------------------------------------------- 1 | 75b35d89389c80d289269936009f040a -------------------------------------------------------------------------------- /RF_Wattmeter_Teensy41/nextion_patched/ITEADLIB_Arduino_Nextion_patched/doc/Documentation/class_nex_d_s_button__coll__graph.md5: -------------------------------------------------------------------------------- 1 | fa0caf14172f4df14e1321e0802eee78 -------------------------------------------------------------------------------- /RF_Wattmeter_Teensy41/nextion_patched/ITEADLIB_Arduino_Nextion_patched/doc/Documentation/class_nex_d_s_button__inherit__graph.md5: -------------------------------------------------------------------------------- 1 | fa0caf14172f4df14e1321e0802eee78 -------------------------------------------------------------------------------- /RF_Wattmeter_Teensy41/nextion_patched/ITEADLIB_Arduino_Nextion_patched/doc/Documentation/class_nex_gauge__coll__graph.md5: -------------------------------------------------------------------------------- 1 | 898df2c6442d1259c612a0df253ec77e -------------------------------------------------------------------------------- /RF_Wattmeter_Teensy41/nextion_patched/ITEADLIB_Arduino_Nextion_patched/doc/Documentation/class_nex_gauge__inherit__graph.md5: -------------------------------------------------------------------------------- 1 | 898df2c6442d1259c612a0df253ec77e -------------------------------------------------------------------------------- /RF_Wattmeter_Teensy41/nextion_patched/ITEADLIB_Arduino_Nextion_patched/doc/Documentation/class_nex_hotspot__coll__graph.md5: -------------------------------------------------------------------------------- 1 | b57e5e4a579b8cf9f972090ce8b8ffa5 -------------------------------------------------------------------------------- /RF_Wattmeter_Teensy41/nextion_patched/ITEADLIB_Arduino_Nextion_patched/doc/Documentation/class_nex_hotspot__inherit__graph.md5: -------------------------------------------------------------------------------- 1 | b57e5e4a579b8cf9f972090ce8b8ffa5 -------------------------------------------------------------------------------- /RF_Wattmeter_Teensy41/nextion_patched/ITEADLIB_Arduino_Nextion_patched/doc/Documentation/class_nex_number__coll__graph.md5: -------------------------------------------------------------------------------- 1 | 977adf943b6bd0060483bf0ce0dbe0f7 -------------------------------------------------------------------------------- /RF_Wattmeter_Teensy41/nextion_patched/ITEADLIB_Arduino_Nextion_patched/doc/Documentation/class_nex_number__inherit__graph.md5: -------------------------------------------------------------------------------- 1 | 977adf943b6bd0060483bf0ce0dbe0f7 -------------------------------------------------------------------------------- /RF_Wattmeter_Teensy41/nextion_patched/ITEADLIB_Arduino_Nextion_patched/doc/Documentation/class_nex_object__inherit__graph.md5: -------------------------------------------------------------------------------- 1 | 69a644fbcf218c346a08ff3bb1ea9886 -------------------------------------------------------------------------------- /RF_Wattmeter_Teensy41/nextion_patched/ITEADLIB_Arduino_Nextion_patched/doc/Documentation/class_nex_page__coll__graph.md5: -------------------------------------------------------------------------------- 1 | 22387999f35bb8c23ad58edb4f30d255 -------------------------------------------------------------------------------- /RF_Wattmeter_Teensy41/nextion_patched/ITEADLIB_Arduino_Nextion_patched/doc/Documentation/class_nex_page__inherit__graph.md5: -------------------------------------------------------------------------------- 1 | 22387999f35bb8c23ad58edb4f30d255 -------------------------------------------------------------------------------- /RF_Wattmeter_Teensy41/nextion_patched/ITEADLIB_Arduino_Nextion_patched/doc/Documentation/class_nex_picture__coll__graph.md5: -------------------------------------------------------------------------------- 1 | 191838f04e925dc9fc2038b013d121df -------------------------------------------------------------------------------- /RF_Wattmeter_Teensy41/nextion_patched/ITEADLIB_Arduino_Nextion_patched/doc/Documentation/class_nex_picture__inherit__graph.md5: -------------------------------------------------------------------------------- 1 | 191838f04e925dc9fc2038b013d121df -------------------------------------------------------------------------------- /RF_Wattmeter_Teensy41/nextion_patched/ITEADLIB_Arduino_Nextion_patched/doc/Documentation/class_nex_progress_bar__coll__graph.md5: -------------------------------------------------------------------------------- 1 | 261d6038cc88df091e7f437d61a1f924 -------------------------------------------------------------------------------- /RF_Wattmeter_Teensy41/nextion_patched/ITEADLIB_Arduino_Nextion_patched/doc/Documentation/class_nex_progress_bar__inherit__graph.md5: -------------------------------------------------------------------------------- 1 | 261d6038cc88df091e7f437d61a1f924 -------------------------------------------------------------------------------- /RF_Wattmeter_Teensy41/nextion_patched/ITEADLIB_Arduino_Nextion_patched/doc/Documentation/class_nex_radio__coll__graph.md5: -------------------------------------------------------------------------------- 1 | df6741df1bb42b40355b76bd8b132059 -------------------------------------------------------------------------------- /RF_Wattmeter_Teensy41/nextion_patched/ITEADLIB_Arduino_Nextion_patched/doc/Documentation/class_nex_radio__inherit__graph.md5: -------------------------------------------------------------------------------- 1 | df6741df1bb42b40355b76bd8b132059 -------------------------------------------------------------------------------- /RF_Wattmeter_Teensy41/nextion_patched/ITEADLIB_Arduino_Nextion_patched/doc/Documentation/class_nex_scrolltext__coll__graph.md5: -------------------------------------------------------------------------------- 1 | 18fd83ad16a1a73e7d6d3984a049953e -------------------------------------------------------------------------------- /RF_Wattmeter_Teensy41/nextion_patched/ITEADLIB_Arduino_Nextion_patched/doc/Documentation/class_nex_scrolltext__inherit__graph.md5: -------------------------------------------------------------------------------- 1 | 18fd83ad16a1a73e7d6d3984a049953e -------------------------------------------------------------------------------- /RF_Wattmeter_Teensy41/nextion_patched/ITEADLIB_Arduino_Nextion_patched/doc/Documentation/class_nex_slider__coll__graph.md5: -------------------------------------------------------------------------------- 1 | 482c65d5715d70793ea86330ed7ec6e3 -------------------------------------------------------------------------------- /RF_Wattmeter_Teensy41/nextion_patched/ITEADLIB_Arduino_Nextion_patched/doc/Documentation/class_nex_slider__inherit__graph.md5: -------------------------------------------------------------------------------- 1 | 482c65d5715d70793ea86330ed7ec6e3 -------------------------------------------------------------------------------- /RF_Wattmeter_Teensy41/nextion_patched/ITEADLIB_Arduino_Nextion_patched/doc/Documentation/class_nex_text__coll__graph.md5: -------------------------------------------------------------------------------- 1 | 1a7bf2ce07c4fd2bc05b18ebf25bef33 -------------------------------------------------------------------------------- /RF_Wattmeter_Teensy41/nextion_patched/ITEADLIB_Arduino_Nextion_patched/doc/Documentation/class_nex_text__inherit__graph.md5: -------------------------------------------------------------------------------- 1 | 1a7bf2ce07c4fd2bc05b18ebf25bef33 -------------------------------------------------------------------------------- /RF_Wattmeter_Teensy41/nextion_patched/ITEADLIB_Arduino_Nextion_patched/doc/Documentation/class_nex_timer__coll__graph.md5: -------------------------------------------------------------------------------- 1 | f5decd2d2e5d0650e37762d594710986 -------------------------------------------------------------------------------- /RF_Wattmeter_Teensy41/nextion_patched/ITEADLIB_Arduino_Nextion_patched/doc/Documentation/class_nex_timer__inherit__graph.md5: -------------------------------------------------------------------------------- 1 | f5decd2d2e5d0650e37762d594710986 -------------------------------------------------------------------------------- /RF_Wattmeter_Teensy41/nextion_patched/ITEADLIB_Arduino_Nextion_patched/doc/Documentation/class_nex_timer_a365d08df4623ce8a146e73ff9204d5cb_cgraph.md5: -------------------------------------------------------------------------------- 1 | 616b816885456089c8c8acb5917781e7 -------------------------------------------------------------------------------- /RF_Wattmeter_Teensy41/nextion_patched/ITEADLIB_Arduino_Nextion_patched/doc/Documentation/class_nex_timer_ae6f1ae95ef40b8bc6f482185b1ec5175_cgraph.md5: -------------------------------------------------------------------------------- 1 | a658574ca4186b2d38d4f4177359d125 -------------------------------------------------------------------------------- /RF_Wattmeter_Teensy41/nextion_patched/ITEADLIB_Arduino_Nextion_patched/doc/Documentation/class_nex_touch__coll__graph.md5: -------------------------------------------------------------------------------- 1 | 118686a6eda64ec5546cca63610f97ca -------------------------------------------------------------------------------- /RF_Wattmeter_Teensy41/nextion_patched/ITEADLIB_Arduino_Nextion_patched/doc/Documentation/class_nex_touch__inherit__graph.md5: -------------------------------------------------------------------------------- 1 | e8d28fccdc0bbd6a691b35e0cf1c3272 -------------------------------------------------------------------------------- /RF_Wattmeter_Teensy41/nextion_patched/ITEADLIB_Arduino_Nextion_patched/doc/Documentation/class_nex_touch_a4da1c4fcdfadb7eabfb9ccaba9ecad11_icgraph.md5: -------------------------------------------------------------------------------- 1 | 575d8a86006ad0de17bed6d11e3ad852 -------------------------------------------------------------------------------- /RF_Wattmeter_Teensy41/nextion_patched/ITEADLIB_Arduino_Nextion_patched/doc/Documentation/class_nex_touch_af656640c1078a553287a68bf792dd291_icgraph.md5: -------------------------------------------------------------------------------- 1 | ea53a04244a40273a9273f0080709bff -------------------------------------------------------------------------------- /RF_Wattmeter_Teensy41/nextion_patched/ITEADLIB_Arduino_Nextion_patched/doc/Documentation/class_nex_upload_a017c25b02bc9a674ab5beb447a3511a0_icgraph.md5: -------------------------------------------------------------------------------- 1 | f774ac084cee0a6c218ac83315bd71a9 -------------------------------------------------------------------------------- /RF_Wattmeter_Teensy41/nextion_patched/ITEADLIB_Arduino_Nextion_patched/doc/Documentation/class_nex_upload_a97d6aeee29cfdeb1ec4dcec8d5a58396_cgraph.md5: -------------------------------------------------------------------------------- 1 | 6be4177c5a4adbe6e6fcc59f6cf73e1b -------------------------------------------------------------------------------- /RF_Wattmeter_Teensy41/nextion_patched/ITEADLIB_Arduino_Nextion_patched/doc/Documentation/class_nex_variable__coll__graph.md5: -------------------------------------------------------------------------------- 1 | ea02495ec2583ef381378c90d8dd0bd7 -------------------------------------------------------------------------------- /RF_Wattmeter_Teensy41/nextion_patched/ITEADLIB_Arduino_Nextion_patched/doc/Documentation/class_nex_variable__inherit__graph.md5: -------------------------------------------------------------------------------- 1 | ea02495ec2583ef381378c90d8dd0bd7 -------------------------------------------------------------------------------- /RF_Wattmeter_Teensy41/nextion_patched/ITEADLIB_Arduino_Nextion_patched/doc/Documentation/class_nex_waveform__coll__graph.md5: -------------------------------------------------------------------------------- 1 | beb698d8a0d4473b640d288a70bedd35 -------------------------------------------------------------------------------- /RF_Wattmeter_Teensy41/nextion_patched/ITEADLIB_Arduino_Nextion_patched/doc/Documentation/class_nex_waveform__inherit__graph.md5: -------------------------------------------------------------------------------- 1 | beb698d8a0d4473b640d288a70bedd35 -------------------------------------------------------------------------------- /RF_Wattmeter_Teensy41/nextion_patched/ITEADLIB_Arduino_Nextion_patched/doc/Documentation/dir_2af451c22587252d0014dbc596e2e19a_dep.md5: -------------------------------------------------------------------------------- 1 | 7aca4578f254131e436a3696254eb9e3 -------------------------------------------------------------------------------- /RF_Wattmeter_Teensy41/nextion_patched/ITEADLIB_Arduino_Nextion_patched/doc/Documentation/dir_3a828b7214103d705cc83e20f29bdad9_dep.md5: -------------------------------------------------------------------------------- 1 | 22f53f03c64240f229aa10af935a7fbd -------------------------------------------------------------------------------- /RF_Wattmeter_Teensy41/nextion_patched/ITEADLIB_Arduino_Nextion_patched/doc/Documentation/dir_472f54fb1d9b74971d8e15d62f212bd3_dep.md5: -------------------------------------------------------------------------------- 1 | 6b00f5c64b4f73750ff0dc3970d5c129 -------------------------------------------------------------------------------- /RF_Wattmeter_Teensy41/nextion_patched/ITEADLIB_Arduino_Nextion_patched/doc/Documentation/dir_4b43661efaa18af91f213d2681ebd37e_dep.md5: -------------------------------------------------------------------------------- 1 | 750bde18179402f11246063a0f292b74 -------------------------------------------------------------------------------- /RF_Wattmeter_Teensy41/nextion_patched/ITEADLIB_Arduino_Nextion_patched/doc/Documentation/dir_53835f0dfcb7abf9d97bc46682fab859_dep.md5: -------------------------------------------------------------------------------- 1 | 0a21b14c433ad93c92088e93e23e6374 -------------------------------------------------------------------------------- /RF_Wattmeter_Teensy41/nextion_patched/ITEADLIB_Arduino_Nextion_patched/doc/Documentation/dir_58f5ecea2e2241e947c6d0b6b0a6574c_dep.md5: -------------------------------------------------------------------------------- 1 | 3976a4d66d19f5605d3d7b198b950641 -------------------------------------------------------------------------------- /RF_Wattmeter_Teensy41/nextion_patched/ITEADLIB_Arduino_Nextion_patched/doc/Documentation/dir_7962cac16a99e8bbaaea18abede03fcb_dep.md5: -------------------------------------------------------------------------------- 1 | 5ed8a291d1430d676574d1e29d43a8b6 -------------------------------------------------------------------------------- /RF_Wattmeter_Teensy41/nextion_patched/ITEADLIB_Arduino_Nextion_patched/doc/Documentation/dir_8dcbebf38b229bfa7bb34d68bf824093_dep.md5: -------------------------------------------------------------------------------- 1 | ca015543db1dd0ce10f24c5e32e4838d -------------------------------------------------------------------------------- /RF_Wattmeter_Teensy41/nextion_patched/ITEADLIB_Arduino_Nextion_patched/doc/Documentation/dir_9bbf8342b0f9a157b7af08fe1412fc17_dep.md5: -------------------------------------------------------------------------------- 1 | df6dbd522ce7792d448df28246851bb1 -------------------------------------------------------------------------------- /RF_Wattmeter_Teensy41/nextion_patched/ITEADLIB_Arduino_Nextion_patched/doc/Documentation/dir_a48692e2802a027399b146b680655303_dep.md5: -------------------------------------------------------------------------------- 1 | c781e206f4b6f42a683e814b20edcea6 -------------------------------------------------------------------------------- /RF_Wattmeter_Teensy41/nextion_patched/ITEADLIB_Arduino_Nextion_patched/doc/Documentation/dir_c918e8bf3fc71f849978cdb0d900e61c_dep.md5: -------------------------------------------------------------------------------- 1 | a203389939f4517c3b53f9a65bf5957b -------------------------------------------------------------------------------- /RF_Wattmeter_Teensy41/nextion_patched/ITEADLIB_Arduino_Nextion_patched/doc/Documentation/dir_ce36ac18ad3deaf5eae0bd2e09775a7d_dep.md5: -------------------------------------------------------------------------------- 1 | bfb11051cc7ff9d1548f9d0843e96599 -------------------------------------------------------------------------------- /RF_Wattmeter_Teensy41/nextion_patched/ITEADLIB_Arduino_Nextion_patched/doc/Documentation/dir_d28a4824dc47e487b107a5db32ef43c4_dep.md5: -------------------------------------------------------------------------------- 1 | 3e43fb767812403d1c2a9b652b05e1b1 -------------------------------------------------------------------------------- /RF_Wattmeter_Teensy41/nextion_patched/ITEADLIB_Arduino_Nextion_patched/doc/Documentation/dir_f3d39c87bc262720c50d5e3885667b8a_dep.md5: -------------------------------------------------------------------------------- 1 | ae8887d1ed67122595bc3fc25c655d0c -------------------------------------------------------------------------------- /RF_Wattmeter_Teensy41/nextion_patched/ITEADLIB_Arduino_Nextion_patched/doc/Documentation/dir_f76977d9ffe8ddf3ad01f3d689aa5df4_dep.md5: -------------------------------------------------------------------------------- 1 | 00fdd8a9da24bbbe0c00a6281295e32f -------------------------------------------------------------------------------- /RF_Wattmeter_Teensy41/nextion_patched/ITEADLIB_Arduino_Nextion_patched/doc/Documentation/graph_legend.md5: -------------------------------------------------------------------------------- 1 | 387ff8eb65306fa251338d3c9bd7bfff -------------------------------------------------------------------------------- /RF_Wattmeter_Teensy41/nextion_patched/ITEADLIB_Arduino_Nextion_patched/doc/Documentation/group___core_a_p_i.md5: -------------------------------------------------------------------------------- 1 | 0aefea84544792a562ddf02ced431136 -------------------------------------------------------------------------------- /RF_Wattmeter_Teensy41/nextion_patched/ITEADLIB_Arduino_Nextion_patched/doc/Documentation/group___touch_event.md5: -------------------------------------------------------------------------------- 1 | 79f4fccf2da054a5fd27939591449f02 -------------------------------------------------------------------------------- /RF_Wattmeter_Teensy41/nextion_patched/ITEADLIB_Arduino_Nextion_patched/doc/Documentation/inherit_graph_0.md5: -------------------------------------------------------------------------------- 1 | 2df858fe7debbd4a142310a410151e30 -------------------------------------------------------------------------------- /RF_Wattmeter_Teensy41/nextion_patched/ITEADLIB_Arduino_Nextion_patched/doc/Documentation/inherit_graph_1.md5: -------------------------------------------------------------------------------- 1 | 9df572e33cdc728e7b04838f75b3f452 -------------------------------------------------------------------------------- /RF_Wattmeter_Teensy41/nextion_patched/ITEADLIB_Arduino_Nextion_patched/doc/Logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K7MDL2/RF-Power-Meter-V1/HEAD/RF_Wattmeter_Teensy41/nextion_patched/ITEADLIB_Arduino_Nextion_patched/doc/Logo.png -------------------------------------------------------------------------------- /RF_Wattmeter_Teensy41/nextion_patched/ITEADLIB_Arduino_Nextion_patched/doc/doxygen_sqlite3.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K7MDL2/RF-Power-Meter-V1/HEAD/RF_Wattmeter_Teensy41/nextion_patched/ITEADLIB_Arduino_Nextion_patched/doc/doxygen_sqlite3.db -------------------------------------------------------------------------------- /RF_Wattmeter_Teensy41/nextion_patched/ITEADLIB_Arduino_Nextion_patched/doc/html/bc_s.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K7MDL2/RF-Power-Meter-V1/HEAD/RF_Wattmeter_Teensy41/nextion_patched/ITEADLIB_Arduino_Nextion_patched/doc/html/bc_s.png -------------------------------------------------------------------------------- /RF_Wattmeter_Teensy41/nextion_patched/ITEADLIB_Arduino_Nextion_patched/doc/html/bdwn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K7MDL2/RF-Power-Meter-V1/HEAD/RF_Wattmeter_Teensy41/nextion_patched/ITEADLIB_Arduino_Nextion_patched/doc/html/bdwn.png -------------------------------------------------------------------------------- /RF_Wattmeter_Teensy41/nextion_patched/ITEADLIB_Arduino_Nextion_patched/doc/html/closed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K7MDL2/RF-Power-Meter-V1/HEAD/RF_Wattmeter_Teensy41/nextion_patched/ITEADLIB_Arduino_Nextion_patched/doc/html/closed.png -------------------------------------------------------------------------------- /RF_Wattmeter_Teensy41/nextion_patched/ITEADLIB_Arduino_Nextion_patched/doc/html/doxygen.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K7MDL2/RF-Power-Meter-V1/HEAD/RF_Wattmeter_Teensy41/nextion_patched/ITEADLIB_Arduino_Nextion_patched/doc/html/doxygen.css -------------------------------------------------------------------------------- /RF_Wattmeter_Teensy41/nextion_patched/ITEADLIB_Arduino_Nextion_patched/doc/html/doxygen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K7MDL2/RF-Power-Meter-V1/HEAD/RF_Wattmeter_Teensy41/nextion_patched/ITEADLIB_Arduino_Nextion_patched/doc/html/doxygen.png -------------------------------------------------------------------------------- /RF_Wattmeter_Teensy41/nextion_patched/ITEADLIB_Arduino_Nextion_patched/doc/html/dynsections.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K7MDL2/RF-Power-Meter-V1/HEAD/RF_Wattmeter_Teensy41/nextion_patched/ITEADLIB_Arduino_Nextion_patched/doc/html/dynsections.js -------------------------------------------------------------------------------- /RF_Wattmeter_Teensy41/nextion_patched/ITEADLIB_Arduino_Nextion_patched/doc/html/ftv2blank.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K7MDL2/RF-Power-Meter-V1/HEAD/RF_Wattmeter_Teensy41/nextion_patched/ITEADLIB_Arduino_Nextion_patched/doc/html/ftv2blank.png -------------------------------------------------------------------------------- /RF_Wattmeter_Teensy41/nextion_patched/ITEADLIB_Arduino_Nextion_patched/doc/html/ftv2doc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K7MDL2/RF-Power-Meter-V1/HEAD/RF_Wattmeter_Teensy41/nextion_patched/ITEADLIB_Arduino_Nextion_patched/doc/html/ftv2doc.png -------------------------------------------------------------------------------- /RF_Wattmeter_Teensy41/nextion_patched/ITEADLIB_Arduino_Nextion_patched/doc/html/ftv2lastnode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K7MDL2/RF-Power-Meter-V1/HEAD/RF_Wattmeter_Teensy41/nextion_patched/ITEADLIB_Arduino_Nextion_patched/doc/html/ftv2lastnode.png -------------------------------------------------------------------------------- /RF_Wattmeter_Teensy41/nextion_patched/ITEADLIB_Arduino_Nextion_patched/doc/html/ftv2link.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K7MDL2/RF-Power-Meter-V1/HEAD/RF_Wattmeter_Teensy41/nextion_patched/ITEADLIB_Arduino_Nextion_patched/doc/html/ftv2link.png -------------------------------------------------------------------------------- /RF_Wattmeter_Teensy41/nextion_patched/ITEADLIB_Arduino_Nextion_patched/doc/html/ftv2mnode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K7MDL2/RF-Power-Meter-V1/HEAD/RF_Wattmeter_Teensy41/nextion_patched/ITEADLIB_Arduino_Nextion_patched/doc/html/ftv2mnode.png -------------------------------------------------------------------------------- /RF_Wattmeter_Teensy41/nextion_patched/ITEADLIB_Arduino_Nextion_patched/doc/html/ftv2node.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K7MDL2/RF-Power-Meter-V1/HEAD/RF_Wattmeter_Teensy41/nextion_patched/ITEADLIB_Arduino_Nextion_patched/doc/html/ftv2node.png -------------------------------------------------------------------------------- /RF_Wattmeter_Teensy41/nextion_patched/ITEADLIB_Arduino_Nextion_patched/doc/html/ftv2pnode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K7MDL2/RF-Power-Meter-V1/HEAD/RF_Wattmeter_Teensy41/nextion_patched/ITEADLIB_Arduino_Nextion_patched/doc/html/ftv2pnode.png -------------------------------------------------------------------------------- /RF_Wattmeter_Teensy41/nextion_patched/ITEADLIB_Arduino_Nextion_patched/doc/html/ftv2splitbar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K7MDL2/RF-Power-Meter-V1/HEAD/RF_Wattmeter_Teensy41/nextion_patched/ITEADLIB_Arduino_Nextion_patched/doc/html/ftv2splitbar.png -------------------------------------------------------------------------------- /RF_Wattmeter_Teensy41/nextion_patched/ITEADLIB_Arduino_Nextion_patched/doc/html/ftv2vertline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K7MDL2/RF-Power-Meter-V1/HEAD/RF_Wattmeter_Teensy41/nextion_patched/ITEADLIB_Arduino_Nextion_patched/doc/html/ftv2vertline.png -------------------------------------------------------------------------------- /RF_Wattmeter_Teensy41/nextion_patched/ITEADLIB_Arduino_Nextion_patched/doc/html/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K7MDL2/RF-Power-Meter-V1/HEAD/RF_Wattmeter_Teensy41/nextion_patched/ITEADLIB_Arduino_Nextion_patched/doc/html/index.html -------------------------------------------------------------------------------- /RF_Wattmeter_Teensy41/nextion_patched/ITEADLIB_Arduino_Nextion_patched/doc/html/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K7MDL2/RF-Power-Meter-V1/HEAD/RF_Wattmeter_Teensy41/nextion_patched/ITEADLIB_Arduino_Nextion_patched/doc/html/jquery.js -------------------------------------------------------------------------------- /RF_Wattmeter_Teensy41/nextion_patched/ITEADLIB_Arduino_Nextion_patched/doc/html/nav_f.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K7MDL2/RF-Power-Meter-V1/HEAD/RF_Wattmeter_Teensy41/nextion_patched/ITEADLIB_Arduino_Nextion_patched/doc/html/nav_f.png -------------------------------------------------------------------------------- /RF_Wattmeter_Teensy41/nextion_patched/ITEADLIB_Arduino_Nextion_patched/doc/html/nav_g.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K7MDL2/RF-Power-Meter-V1/HEAD/RF_Wattmeter_Teensy41/nextion_patched/ITEADLIB_Arduino_Nextion_patched/doc/html/nav_g.png -------------------------------------------------------------------------------- /RF_Wattmeter_Teensy41/nextion_patched/ITEADLIB_Arduino_Nextion_patched/doc/html/nav_h.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K7MDL2/RF-Power-Meter-V1/HEAD/RF_Wattmeter_Teensy41/nextion_patched/ITEADLIB_Arduino_Nextion_patched/doc/html/nav_h.png -------------------------------------------------------------------------------- /RF_Wattmeter_Teensy41/nextion_patched/ITEADLIB_Arduino_Nextion_patched/doc/html/open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K7MDL2/RF-Power-Meter-V1/HEAD/RF_Wattmeter_Teensy41/nextion_patched/ITEADLIB_Arduino_Nextion_patched/doc/html/open.png -------------------------------------------------------------------------------- /RF_Wattmeter_Teensy41/nextion_patched/ITEADLIB_Arduino_Nextion_patched/doc/html/search/close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K7MDL2/RF-Power-Meter-V1/HEAD/RF_Wattmeter_Teensy41/nextion_patched/ITEADLIB_Arduino_Nextion_patched/doc/html/search/close.png -------------------------------------------------------------------------------- /RF_Wattmeter_Teensy41/nextion_patched/ITEADLIB_Arduino_Nextion_patched/doc/html/search/search.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K7MDL2/RF-Power-Meter-V1/HEAD/RF_Wattmeter_Teensy41/nextion_patched/ITEADLIB_Arduino_Nextion_patched/doc/html/search/search.js -------------------------------------------------------------------------------- /RF_Wattmeter_Teensy41/nextion_patched/ITEADLIB_Arduino_Nextion_patched/doc/html/sync_off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K7MDL2/RF-Power-Meter-V1/HEAD/RF_Wattmeter_Teensy41/nextion_patched/ITEADLIB_Arduino_Nextion_patched/doc/html/sync_off.png -------------------------------------------------------------------------------- /RF_Wattmeter_Teensy41/nextion_patched/ITEADLIB_Arduino_Nextion_patched/doc/html/sync_on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K7MDL2/RF-Power-Meter-V1/HEAD/RF_Wattmeter_Teensy41/nextion_patched/ITEADLIB_Arduino_Nextion_patched/doc/html/sync_on.png -------------------------------------------------------------------------------- /RF_Wattmeter_Teensy41/nextion_patched/ITEADLIB_Arduino_Nextion_patched/doc/html/tab_a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K7MDL2/RF-Power-Meter-V1/HEAD/RF_Wattmeter_Teensy41/nextion_patched/ITEADLIB_Arduino_Nextion_patched/doc/html/tab_a.png -------------------------------------------------------------------------------- /RF_Wattmeter_Teensy41/nextion_patched/ITEADLIB_Arduino_Nextion_patched/doc/html/tab_b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K7MDL2/RF-Power-Meter-V1/HEAD/RF_Wattmeter_Teensy41/nextion_patched/ITEADLIB_Arduino_Nextion_patched/doc/html/tab_b.png -------------------------------------------------------------------------------- /RF_Wattmeter_Teensy41/nextion_patched/ITEADLIB_Arduino_Nextion_patched/doc/html/tab_h.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K7MDL2/RF-Power-Meter-V1/HEAD/RF_Wattmeter_Teensy41/nextion_patched/ITEADLIB_Arduino_Nextion_patched/doc/html/tab_h.png -------------------------------------------------------------------------------- /RF_Wattmeter_Teensy41/nextion_patched/ITEADLIB_Arduino_Nextion_patched/doc/html/tab_s.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K7MDL2/RF-Power-Meter-V1/HEAD/RF_Wattmeter_Teensy41/nextion_patched/ITEADLIB_Arduino_Nextion_patched/doc/html/tab_s.png -------------------------------------------------------------------------------- /RF_Wattmeter_Teensy41/nextion_patched/ITEADLIB_Arduino_Nextion_patched/doc/html/tabs.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K7MDL2/RF-Power-Meter-V1/HEAD/RF_Wattmeter_Teensy41/nextion_patched/ITEADLIB_Arduino_Nextion_patched/doc/html/tabs.css -------------------------------------------------------------------------------- /RF_Wattmeter_Teensy41/nextion_patched/ITEADLIB_Arduino_Nextion_patched/doc/latex/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K7MDL2/RF-Power-Meter-V1/HEAD/RF_Wattmeter_Teensy41/nextion_patched/ITEADLIB_Arduino_Nextion_patched/doc/latex/Makefile -------------------------------------------------------------------------------- /RF_Wattmeter_Teensy41/nextion_patched/ITEADLIB_Arduino_Nextion_patched/doc/latex/doxygen.sty: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K7MDL2/RF-Power-Meter-V1/HEAD/RF_Wattmeter_Teensy41/nextion_patched/ITEADLIB_Arduino_Nextion_patched/doc/latex/doxygen.sty -------------------------------------------------------------------------------- /RF_Wattmeter_Teensy41/nextion_patched/ITEADLIB_Arduino_Nextion_patched/doc/latex/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K7MDL2/RF-Power-Meter-V1/HEAD/RF_Wattmeter_Teensy41/nextion_patched/ITEADLIB_Arduino_Nextion_patched/doc/latex/make.bat -------------------------------------------------------------------------------- /RF_Wattmeter_Teensy41/nextion_patched/ITEADLIB_Arduino_Nextion_patched/doc/latex/refman.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K7MDL2/RF-Power-Meter-V1/HEAD/RF_Wattmeter_Teensy41/nextion_patched/ITEADLIB_Arduino_Nextion_patched/doc/latex/refman.tex -------------------------------------------------------------------------------- /RF_Wattmeter_Teensy41/nextion_patched/ITEADLIB_Arduino_Nextion_patched/doxygen.doxy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K7MDL2/RF-Power-Meter-V1/HEAD/RF_Wattmeter_Teensy41/nextion_patched/ITEADLIB_Arduino_Nextion_patched/doxygen.doxy -------------------------------------------------------------------------------- /RF_Wattmeter_Teensy41/nextion_patched/ITEADLIB_Arduino_Nextion_patched/doxygen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K7MDL2/RF-Power-Meter-V1/HEAD/RF_Wattmeter_Teensy41/nextion_patched/ITEADLIB_Arduino_Nextion_patched/doxygen.h -------------------------------------------------------------------------------- /RF_Wattmeter_Teensy41/nextion_patched/ITEADLIB_Arduino_Nextion_patched/examples/CompGpio/font.zi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K7MDL2/RF-Power-Meter-V1/HEAD/RF_Wattmeter_Teensy41/nextion_patched/ITEADLIB_Arduino_Nextion_patched/examples/CompGpio/font.zi -------------------------------------------------------------------------------- /RF_Wattmeter_Teensy41/nextion_patched/ITEADLIB_Arduino_Nextion_patched/examples/CompRtc/font.zi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K7MDL2/RF-Power-Meter-V1/HEAD/RF_Wattmeter_Teensy41/nextion_patched/ITEADLIB_Arduino_Nextion_patched/examples/CompRtc/font.zi -------------------------------------------------------------------------------- /RF_Wattmeter_Teensy41/nextion_patched/ITEADLIB_Arduino_Nextion_patched/html/_nex_button_8h.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K7MDL2/RF-Power-Meter-V1/HEAD/RF_Wattmeter_Teensy41/nextion_patched/ITEADLIB_Arduino_Nextion_patched/html/_nex_button_8h.html -------------------------------------------------------------------------------- /RF_Wattmeter_Teensy41/nextion_patched/ITEADLIB_Arduino_Nextion_patched/html/_nex_config_8h.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K7MDL2/RF-Power-Meter-V1/HEAD/RF_Wattmeter_Teensy41/nextion_patched/ITEADLIB_Arduino_Nextion_patched/html/_nex_config_8h.html -------------------------------------------------------------------------------- /RF_Wattmeter_Teensy41/nextion_patched/ITEADLIB_Arduino_Nextion_patched/html/_nex_crop_8cpp.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K7MDL2/RF-Power-Meter-V1/HEAD/RF_Wattmeter_Teensy41/nextion_patched/ITEADLIB_Arduino_Nextion_patched/html/_nex_crop_8cpp.html -------------------------------------------------------------------------------- /RF_Wattmeter_Teensy41/nextion_patched/ITEADLIB_Arduino_Nextion_patched/html/_nex_crop_8h.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K7MDL2/RF-Power-Meter-V1/HEAD/RF_Wattmeter_Teensy41/nextion_patched/ITEADLIB_Arduino_Nextion_patched/html/_nex_crop_8h.html -------------------------------------------------------------------------------- /RF_Wattmeter_Teensy41/nextion_patched/ITEADLIB_Arduino_Nextion_patched/html/_nex_gauge_8cpp.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K7MDL2/RF-Power-Meter-V1/HEAD/RF_Wattmeter_Teensy41/nextion_patched/ITEADLIB_Arduino_Nextion_patched/html/_nex_gauge_8cpp.html -------------------------------------------------------------------------------- /RF_Wattmeter_Teensy41/nextion_patched/ITEADLIB_Arduino_Nextion_patched/html/_nex_gauge_8h.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K7MDL2/RF-Power-Meter-V1/HEAD/RF_Wattmeter_Teensy41/nextion_patched/ITEADLIB_Arduino_Nextion_patched/html/_nex_gauge_8h.html -------------------------------------------------------------------------------- /RF_Wattmeter_Teensy41/nextion_patched/ITEADLIB_Arduino_Nextion_patched/html/_nex_gpio_8cpp.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K7MDL2/RF-Power-Meter-V1/HEAD/RF_Wattmeter_Teensy41/nextion_patched/ITEADLIB_Arduino_Nextion_patched/html/_nex_gpio_8cpp.html -------------------------------------------------------------------------------- /RF_Wattmeter_Teensy41/nextion_patched/ITEADLIB_Arduino_Nextion_patched/html/_nex_hotspot_8h.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K7MDL2/RF-Power-Meter-V1/HEAD/RF_Wattmeter_Teensy41/nextion_patched/ITEADLIB_Arduino_Nextion_patched/html/_nex_hotspot_8h.html -------------------------------------------------------------------------------- /RF_Wattmeter_Teensy41/nextion_patched/ITEADLIB_Arduino_Nextion_patched/html/_nex_number_8h.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K7MDL2/RF-Power-Meter-V1/HEAD/RF_Wattmeter_Teensy41/nextion_patched/ITEADLIB_Arduino_Nextion_patched/html/_nex_number_8h.html -------------------------------------------------------------------------------- /RF_Wattmeter_Teensy41/nextion_patched/ITEADLIB_Arduino_Nextion_patched/html/_nex_object_8h.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K7MDL2/RF-Power-Meter-V1/HEAD/RF_Wattmeter_Teensy41/nextion_patched/ITEADLIB_Arduino_Nextion_patched/html/_nex_object_8h.html -------------------------------------------------------------------------------- /RF_Wattmeter_Teensy41/nextion_patched/ITEADLIB_Arduino_Nextion_patched/html/_nex_page_8cpp.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K7MDL2/RF-Power-Meter-V1/HEAD/RF_Wattmeter_Teensy41/nextion_patched/ITEADLIB_Arduino_Nextion_patched/html/_nex_page_8cpp.html -------------------------------------------------------------------------------- /RF_Wattmeter_Teensy41/nextion_patched/ITEADLIB_Arduino_Nextion_patched/html/_nex_page_8h.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K7MDL2/RF-Power-Meter-V1/HEAD/RF_Wattmeter_Teensy41/nextion_patched/ITEADLIB_Arduino_Nextion_patched/html/_nex_page_8h.html -------------------------------------------------------------------------------- /RF_Wattmeter_Teensy41/nextion_patched/ITEADLIB_Arduino_Nextion_patched/html/_nex_picture_8h.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K7MDL2/RF-Power-Meter-V1/HEAD/RF_Wattmeter_Teensy41/nextion_patched/ITEADLIB_Arduino_Nextion_patched/html/_nex_picture_8h.html -------------------------------------------------------------------------------- /RF_Wattmeter_Teensy41/nextion_patched/ITEADLIB_Arduino_Nextion_patched/html/_nex_radio_8cpp.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K7MDL2/RF-Power-Meter-V1/HEAD/RF_Wattmeter_Teensy41/nextion_patched/ITEADLIB_Arduino_Nextion_patched/html/_nex_radio_8cpp.html -------------------------------------------------------------------------------- /RF_Wattmeter_Teensy41/nextion_patched/ITEADLIB_Arduino_Nextion_patched/html/_nex_radio_8h.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K7MDL2/RF-Power-Meter-V1/HEAD/RF_Wattmeter_Teensy41/nextion_patched/ITEADLIB_Arduino_Nextion_patched/html/_nex_radio_8h.html -------------------------------------------------------------------------------- /RF_Wattmeter_Teensy41/nextion_patched/ITEADLIB_Arduino_Nextion_patched/html/_nex_rtc_8cpp.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K7MDL2/RF-Power-Meter-V1/HEAD/RF_Wattmeter_Teensy41/nextion_patched/ITEADLIB_Arduino_Nextion_patched/html/_nex_rtc_8cpp.html -------------------------------------------------------------------------------- /RF_Wattmeter_Teensy41/nextion_patched/ITEADLIB_Arduino_Nextion_patched/html/_nex_slider_8h.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K7MDL2/RF-Power-Meter-V1/HEAD/RF_Wattmeter_Teensy41/nextion_patched/ITEADLIB_Arduino_Nextion_patched/html/_nex_slider_8h.html -------------------------------------------------------------------------------- /RF_Wattmeter_Teensy41/nextion_patched/ITEADLIB_Arduino_Nextion_patched/html/_nex_text_8cpp.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K7MDL2/RF-Power-Meter-V1/HEAD/RF_Wattmeter_Teensy41/nextion_patched/ITEADLIB_Arduino_Nextion_patched/html/_nex_text_8cpp.html -------------------------------------------------------------------------------- /RF_Wattmeter_Teensy41/nextion_patched/ITEADLIB_Arduino_Nextion_patched/html/_nex_text_8h.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K7MDL2/RF-Power-Meter-V1/HEAD/RF_Wattmeter_Teensy41/nextion_patched/ITEADLIB_Arduino_Nextion_patched/html/_nex_text_8h.html -------------------------------------------------------------------------------- /RF_Wattmeter_Teensy41/nextion_patched/ITEADLIB_Arduino_Nextion_patched/html/_nex_timer_8cpp.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K7MDL2/RF-Power-Meter-V1/HEAD/RF_Wattmeter_Teensy41/nextion_patched/ITEADLIB_Arduino_Nextion_patched/html/_nex_timer_8cpp.html -------------------------------------------------------------------------------- /RF_Wattmeter_Teensy41/nextion_patched/ITEADLIB_Arduino_Nextion_patched/html/_nex_timer_8h.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K7MDL2/RF-Power-Meter-V1/HEAD/RF_Wattmeter_Teensy41/nextion_patched/ITEADLIB_Arduino_Nextion_patched/html/_nex_timer_8h.html -------------------------------------------------------------------------------- /RF_Wattmeter_Teensy41/nextion_patched/ITEADLIB_Arduino_Nextion_patched/html/_nex_touch_8cpp.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K7MDL2/RF-Power-Meter-V1/HEAD/RF_Wattmeter_Teensy41/nextion_patched/ITEADLIB_Arduino_Nextion_patched/html/_nex_touch_8cpp.html -------------------------------------------------------------------------------- /RF_Wattmeter_Teensy41/nextion_patched/ITEADLIB_Arduino_Nextion_patched/html/_nex_touch_8h.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K7MDL2/RF-Power-Meter-V1/HEAD/RF_Wattmeter_Teensy41/nextion_patched/ITEADLIB_Arduino_Nextion_patched/html/_nex_touch_8h.html -------------------------------------------------------------------------------- /RF_Wattmeter_Teensy41/nextion_patched/ITEADLIB_Arduino_Nextion_patched/html/_nex_upload_8h.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K7MDL2/RF-Power-Meter-V1/HEAD/RF_Wattmeter_Teensy41/nextion_patched/ITEADLIB_Arduino_Nextion_patched/html/_nex_upload_8h.html -------------------------------------------------------------------------------- /RF_Wattmeter_Teensy41/nextion_patched/ITEADLIB_Arduino_Nextion_patched/html/_nextion_8h.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K7MDL2/RF-Power-Meter-V1/HEAD/RF_Wattmeter_Teensy41/nextion_patched/ITEADLIB_Arduino_Nextion_patched/html/_nextion_8h.html -------------------------------------------------------------------------------- /RF_Wattmeter_Teensy41/nextion_patched/ITEADLIB_Arduino_Nextion_patched/html/annotated.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K7MDL2/RF-Power-Meter-V1/HEAD/RF_Wattmeter_Teensy41/nextion_patched/ITEADLIB_Arduino_Nextion_patched/html/annotated.html -------------------------------------------------------------------------------- /RF_Wattmeter_Teensy41/nextion_patched/ITEADLIB_Arduino_Nextion_patched/html/bc_s.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K7MDL2/RF-Power-Meter-V1/HEAD/RF_Wattmeter_Teensy41/nextion_patched/ITEADLIB_Arduino_Nextion_patched/html/bc_s.png -------------------------------------------------------------------------------- /RF_Wattmeter_Teensy41/nextion_patched/ITEADLIB_Arduino_Nextion_patched/html/bdwn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K7MDL2/RF-Power-Meter-V1/HEAD/RF_Wattmeter_Teensy41/nextion_patched/ITEADLIB_Arduino_Nextion_patched/html/bdwn.png -------------------------------------------------------------------------------- /RF_Wattmeter_Teensy41/nextion_patched/ITEADLIB_Arduino_Nextion_patched/html/class_nex_button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K7MDL2/RF-Power-Meter-V1/HEAD/RF_Wattmeter_Teensy41/nextion_patched/ITEADLIB_Arduino_Nextion_patched/html/class_nex_button.png -------------------------------------------------------------------------------- /RF_Wattmeter_Teensy41/nextion_patched/ITEADLIB_Arduino_Nextion_patched/html/class_nex_crop.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K7MDL2/RF-Power-Meter-V1/HEAD/RF_Wattmeter_Teensy41/nextion_patched/ITEADLIB_Arduino_Nextion_patched/html/class_nex_crop.html -------------------------------------------------------------------------------- /RF_Wattmeter_Teensy41/nextion_patched/ITEADLIB_Arduino_Nextion_patched/html/class_nex_crop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K7MDL2/RF-Power-Meter-V1/HEAD/RF_Wattmeter_Teensy41/nextion_patched/ITEADLIB_Arduino_Nextion_patched/html/class_nex_crop.png -------------------------------------------------------------------------------- /RF_Wattmeter_Teensy41/nextion_patched/ITEADLIB_Arduino_Nextion_patched/html/class_nex_gauge.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K7MDL2/RF-Power-Meter-V1/HEAD/RF_Wattmeter_Teensy41/nextion_patched/ITEADLIB_Arduino_Nextion_patched/html/class_nex_gauge.html -------------------------------------------------------------------------------- /RF_Wattmeter_Teensy41/nextion_patched/ITEADLIB_Arduino_Nextion_patched/html/class_nex_gauge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K7MDL2/RF-Power-Meter-V1/HEAD/RF_Wattmeter_Teensy41/nextion_patched/ITEADLIB_Arduino_Nextion_patched/html/class_nex_gauge.png -------------------------------------------------------------------------------- /RF_Wattmeter_Teensy41/nextion_patched/ITEADLIB_Arduino_Nextion_patched/html/class_nex_gpio.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K7MDL2/RF-Power-Meter-V1/HEAD/RF_Wattmeter_Teensy41/nextion_patched/ITEADLIB_Arduino_Nextion_patched/html/class_nex_gpio.html -------------------------------------------------------------------------------- /RF_Wattmeter_Teensy41/nextion_patched/ITEADLIB_Arduino_Nextion_patched/html/class_nex_number.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K7MDL2/RF-Power-Meter-V1/HEAD/RF_Wattmeter_Teensy41/nextion_patched/ITEADLIB_Arduino_Nextion_patched/html/class_nex_number.png -------------------------------------------------------------------------------- /RF_Wattmeter_Teensy41/nextion_patched/ITEADLIB_Arduino_Nextion_patched/html/class_nex_object.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K7MDL2/RF-Power-Meter-V1/HEAD/RF_Wattmeter_Teensy41/nextion_patched/ITEADLIB_Arduino_Nextion_patched/html/class_nex_object.png -------------------------------------------------------------------------------- /RF_Wattmeter_Teensy41/nextion_patched/ITEADLIB_Arduino_Nextion_patched/html/class_nex_page.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K7MDL2/RF-Power-Meter-V1/HEAD/RF_Wattmeter_Teensy41/nextion_patched/ITEADLIB_Arduino_Nextion_patched/html/class_nex_page.html -------------------------------------------------------------------------------- /RF_Wattmeter_Teensy41/nextion_patched/ITEADLIB_Arduino_Nextion_patched/html/class_nex_page.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K7MDL2/RF-Power-Meter-V1/HEAD/RF_Wattmeter_Teensy41/nextion_patched/ITEADLIB_Arduino_Nextion_patched/html/class_nex_page.png -------------------------------------------------------------------------------- /RF_Wattmeter_Teensy41/nextion_patched/ITEADLIB_Arduino_Nextion_patched/html/class_nex_radio.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K7MDL2/RF-Power-Meter-V1/HEAD/RF_Wattmeter_Teensy41/nextion_patched/ITEADLIB_Arduino_Nextion_patched/html/class_nex_radio.html -------------------------------------------------------------------------------- /RF_Wattmeter_Teensy41/nextion_patched/ITEADLIB_Arduino_Nextion_patched/html/class_nex_radio.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K7MDL2/RF-Power-Meter-V1/HEAD/RF_Wattmeter_Teensy41/nextion_patched/ITEADLIB_Arduino_Nextion_patched/html/class_nex_radio.png -------------------------------------------------------------------------------- /RF_Wattmeter_Teensy41/nextion_patched/ITEADLIB_Arduino_Nextion_patched/html/class_nex_rtc.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K7MDL2/RF-Power-Meter-V1/HEAD/RF_Wattmeter_Teensy41/nextion_patched/ITEADLIB_Arduino_Nextion_patched/html/class_nex_rtc.html -------------------------------------------------------------------------------- /RF_Wattmeter_Teensy41/nextion_patched/ITEADLIB_Arduino_Nextion_patched/html/class_nex_slider.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K7MDL2/RF-Power-Meter-V1/HEAD/RF_Wattmeter_Teensy41/nextion_patched/ITEADLIB_Arduino_Nextion_patched/html/class_nex_slider.png -------------------------------------------------------------------------------- /RF_Wattmeter_Teensy41/nextion_patched/ITEADLIB_Arduino_Nextion_patched/html/class_nex_text.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K7MDL2/RF-Power-Meter-V1/HEAD/RF_Wattmeter_Teensy41/nextion_patched/ITEADLIB_Arduino_Nextion_patched/html/class_nex_text.html -------------------------------------------------------------------------------- /RF_Wattmeter_Teensy41/nextion_patched/ITEADLIB_Arduino_Nextion_patched/html/class_nex_text.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K7MDL2/RF-Power-Meter-V1/HEAD/RF_Wattmeter_Teensy41/nextion_patched/ITEADLIB_Arduino_Nextion_patched/html/class_nex_text.png -------------------------------------------------------------------------------- /RF_Wattmeter_Teensy41/nextion_patched/ITEADLIB_Arduino_Nextion_patched/html/class_nex_timer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K7MDL2/RF-Power-Meter-V1/HEAD/RF_Wattmeter_Teensy41/nextion_patched/ITEADLIB_Arduino_Nextion_patched/html/class_nex_timer.html -------------------------------------------------------------------------------- /RF_Wattmeter_Teensy41/nextion_patched/ITEADLIB_Arduino_Nextion_patched/html/class_nex_timer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K7MDL2/RF-Power-Meter-V1/HEAD/RF_Wattmeter_Teensy41/nextion_patched/ITEADLIB_Arduino_Nextion_patched/html/class_nex_timer.png -------------------------------------------------------------------------------- /RF_Wattmeter_Teensy41/nextion_patched/ITEADLIB_Arduino_Nextion_patched/html/class_nex_touch.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K7MDL2/RF-Power-Meter-V1/HEAD/RF_Wattmeter_Teensy41/nextion_patched/ITEADLIB_Arduino_Nextion_patched/html/class_nex_touch.html -------------------------------------------------------------------------------- /RF_Wattmeter_Teensy41/nextion_patched/ITEADLIB_Arduino_Nextion_patched/html/class_nex_touch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K7MDL2/RF-Power-Meter-V1/HEAD/RF_Wattmeter_Teensy41/nextion_patched/ITEADLIB_Arduino_Nextion_patched/html/class_nex_touch.png -------------------------------------------------------------------------------- /RF_Wattmeter_Teensy41/nextion_patched/ITEADLIB_Arduino_Nextion_patched/html/classes.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K7MDL2/RF-Power-Meter-V1/HEAD/RF_Wattmeter_Teensy41/nextion_patched/ITEADLIB_Arduino_Nextion_patched/html/classes.html -------------------------------------------------------------------------------- /RF_Wattmeter_Teensy41/nextion_patched/ITEADLIB_Arduino_Nextion_patched/html/closed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K7MDL2/RF-Power-Meter-V1/HEAD/RF_Wattmeter_Teensy41/nextion_patched/ITEADLIB_Arduino_Nextion_patched/html/closed.png -------------------------------------------------------------------------------- /RF_Wattmeter_Teensy41/nextion_patched/ITEADLIB_Arduino_Nextion_patched/html/doxygen.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K7MDL2/RF-Power-Meter-V1/HEAD/RF_Wattmeter_Teensy41/nextion_patched/ITEADLIB_Arduino_Nextion_patched/html/doxygen.css -------------------------------------------------------------------------------- /RF_Wattmeter_Teensy41/nextion_patched/ITEADLIB_Arduino_Nextion_patched/html/doxygen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K7MDL2/RF-Power-Meter-V1/HEAD/RF_Wattmeter_Teensy41/nextion_patched/ITEADLIB_Arduino_Nextion_patched/html/doxygen.png -------------------------------------------------------------------------------- /RF_Wattmeter_Teensy41/nextion_patched/ITEADLIB_Arduino_Nextion_patched/html/doxygen_8h.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K7MDL2/RF-Power-Meter-V1/HEAD/RF_Wattmeter_Teensy41/nextion_patched/ITEADLIB_Arduino_Nextion_patched/html/doxygen_8h.html -------------------------------------------------------------------------------- /RF_Wattmeter_Teensy41/nextion_patched/ITEADLIB_Arduino_Nextion_patched/html/dynsections.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K7MDL2/RF-Power-Meter-V1/HEAD/RF_Wattmeter_Teensy41/nextion_patched/ITEADLIB_Arduino_Nextion_patched/html/dynsections.js -------------------------------------------------------------------------------- /RF_Wattmeter_Teensy41/nextion_patched/ITEADLIB_Arduino_Nextion_patched/html/files.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K7MDL2/RF-Power-Meter-V1/HEAD/RF_Wattmeter_Teensy41/nextion_patched/ITEADLIB_Arduino_Nextion_patched/html/files.html -------------------------------------------------------------------------------- /RF_Wattmeter_Teensy41/nextion_patched/ITEADLIB_Arduino_Nextion_patched/html/ftv2blank.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K7MDL2/RF-Power-Meter-V1/HEAD/RF_Wattmeter_Teensy41/nextion_patched/ITEADLIB_Arduino_Nextion_patched/html/ftv2blank.png -------------------------------------------------------------------------------- /RF_Wattmeter_Teensy41/nextion_patched/ITEADLIB_Arduino_Nextion_patched/html/ftv2doc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K7MDL2/RF-Power-Meter-V1/HEAD/RF_Wattmeter_Teensy41/nextion_patched/ITEADLIB_Arduino_Nextion_patched/html/ftv2doc.png -------------------------------------------------------------------------------- /RF_Wattmeter_Teensy41/nextion_patched/ITEADLIB_Arduino_Nextion_patched/html/ftv2folderclosed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K7MDL2/RF-Power-Meter-V1/HEAD/RF_Wattmeter_Teensy41/nextion_patched/ITEADLIB_Arduino_Nextion_patched/html/ftv2folderclosed.png -------------------------------------------------------------------------------- /RF_Wattmeter_Teensy41/nextion_patched/ITEADLIB_Arduino_Nextion_patched/html/ftv2folderopen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K7MDL2/RF-Power-Meter-V1/HEAD/RF_Wattmeter_Teensy41/nextion_patched/ITEADLIB_Arduino_Nextion_patched/html/ftv2folderopen.png -------------------------------------------------------------------------------- /RF_Wattmeter_Teensy41/nextion_patched/ITEADLIB_Arduino_Nextion_patched/html/ftv2lastnode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K7MDL2/RF-Power-Meter-V1/HEAD/RF_Wattmeter_Teensy41/nextion_patched/ITEADLIB_Arduino_Nextion_patched/html/ftv2lastnode.png -------------------------------------------------------------------------------- /RF_Wattmeter_Teensy41/nextion_patched/ITEADLIB_Arduino_Nextion_patched/html/ftv2link.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K7MDL2/RF-Power-Meter-V1/HEAD/RF_Wattmeter_Teensy41/nextion_patched/ITEADLIB_Arduino_Nextion_patched/html/ftv2link.png -------------------------------------------------------------------------------- /RF_Wattmeter_Teensy41/nextion_patched/ITEADLIB_Arduino_Nextion_patched/html/ftv2mlastnode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K7MDL2/RF-Power-Meter-V1/HEAD/RF_Wattmeter_Teensy41/nextion_patched/ITEADLIB_Arduino_Nextion_patched/html/ftv2mlastnode.png -------------------------------------------------------------------------------- /RF_Wattmeter_Teensy41/nextion_patched/ITEADLIB_Arduino_Nextion_patched/html/ftv2mnode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K7MDL2/RF-Power-Meter-V1/HEAD/RF_Wattmeter_Teensy41/nextion_patched/ITEADLIB_Arduino_Nextion_patched/html/ftv2mnode.png -------------------------------------------------------------------------------- /RF_Wattmeter_Teensy41/nextion_patched/ITEADLIB_Arduino_Nextion_patched/html/ftv2node.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K7MDL2/RF-Power-Meter-V1/HEAD/RF_Wattmeter_Teensy41/nextion_patched/ITEADLIB_Arduino_Nextion_patched/html/ftv2node.png -------------------------------------------------------------------------------- /RF_Wattmeter_Teensy41/nextion_patched/ITEADLIB_Arduino_Nextion_patched/html/ftv2plastnode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K7MDL2/RF-Power-Meter-V1/HEAD/RF_Wattmeter_Teensy41/nextion_patched/ITEADLIB_Arduino_Nextion_patched/html/ftv2plastnode.png -------------------------------------------------------------------------------- /RF_Wattmeter_Teensy41/nextion_patched/ITEADLIB_Arduino_Nextion_patched/html/ftv2pnode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K7MDL2/RF-Power-Meter-V1/HEAD/RF_Wattmeter_Teensy41/nextion_patched/ITEADLIB_Arduino_Nextion_patched/html/ftv2pnode.png -------------------------------------------------------------------------------- /RF_Wattmeter_Teensy41/nextion_patched/ITEADLIB_Arduino_Nextion_patched/html/ftv2splitbar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K7MDL2/RF-Power-Meter-V1/HEAD/RF_Wattmeter_Teensy41/nextion_patched/ITEADLIB_Arduino_Nextion_patched/html/ftv2splitbar.png -------------------------------------------------------------------------------- /RF_Wattmeter_Teensy41/nextion_patched/ITEADLIB_Arduino_Nextion_patched/html/ftv2vertline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K7MDL2/RF-Power-Meter-V1/HEAD/RF_Wattmeter_Teensy41/nextion_patched/ITEADLIB_Arduino_Nextion_patched/html/ftv2vertline.png -------------------------------------------------------------------------------- /RF_Wattmeter_Teensy41/nextion_patched/ITEADLIB_Arduino_Nextion_patched/html/functions.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K7MDL2/RF-Power-Meter-V1/HEAD/RF_Wattmeter_Teensy41/nextion_patched/ITEADLIB_Arduino_Nextion_patched/html/functions.html -------------------------------------------------------------------------------- /RF_Wattmeter_Teensy41/nextion_patched/ITEADLIB_Arduino_Nextion_patched/html/functions_d.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K7MDL2/RF-Power-Meter-V1/HEAD/RF_Wattmeter_Teensy41/nextion_patched/ITEADLIB_Arduino_Nextion_patched/html/functions_d.html -------------------------------------------------------------------------------- /RF_Wattmeter_Teensy41/nextion_patched/ITEADLIB_Arduino_Nextion_patched/html/functions_e.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K7MDL2/RF-Power-Meter-V1/HEAD/RF_Wattmeter_Teensy41/nextion_patched/ITEADLIB_Arduino_Nextion_patched/html/functions_e.html -------------------------------------------------------------------------------- /RF_Wattmeter_Teensy41/nextion_patched/ITEADLIB_Arduino_Nextion_patched/html/functions_func.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K7MDL2/RF-Power-Meter-V1/HEAD/RF_Wattmeter_Teensy41/nextion_patched/ITEADLIB_Arduino_Nextion_patched/html/functions_func.html -------------------------------------------------------------------------------- /RF_Wattmeter_Teensy41/nextion_patched/ITEADLIB_Arduino_Nextion_patched/html/functions_g.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K7MDL2/RF-Power-Meter-V1/HEAD/RF_Wattmeter_Teensy41/nextion_patched/ITEADLIB_Arduino_Nextion_patched/html/functions_g.html -------------------------------------------------------------------------------- /RF_Wattmeter_Teensy41/nextion_patched/ITEADLIB_Arduino_Nextion_patched/html/functions_n.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K7MDL2/RF-Power-Meter-V1/HEAD/RF_Wattmeter_Teensy41/nextion_patched/ITEADLIB_Arduino_Nextion_patched/html/functions_n.html -------------------------------------------------------------------------------- /RF_Wattmeter_Teensy41/nextion_patched/ITEADLIB_Arduino_Nextion_patched/html/functions_p.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K7MDL2/RF-Power-Meter-V1/HEAD/RF_Wattmeter_Teensy41/nextion_patched/ITEADLIB_Arduino_Nextion_patched/html/functions_p.html -------------------------------------------------------------------------------- /RF_Wattmeter_Teensy41/nextion_patched/ITEADLIB_Arduino_Nextion_patched/html/functions_r.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K7MDL2/RF-Power-Meter-V1/HEAD/RF_Wattmeter_Teensy41/nextion_patched/ITEADLIB_Arduino_Nextion_patched/html/functions_r.html -------------------------------------------------------------------------------- /RF_Wattmeter_Teensy41/nextion_patched/ITEADLIB_Arduino_Nextion_patched/html/functions_s.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K7MDL2/RF-Power-Meter-V1/HEAD/RF_Wattmeter_Teensy41/nextion_patched/ITEADLIB_Arduino_Nextion_patched/html/functions_s.html -------------------------------------------------------------------------------- /RF_Wattmeter_Teensy41/nextion_patched/ITEADLIB_Arduino_Nextion_patched/html/functions_w.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K7MDL2/RF-Power-Meter-V1/HEAD/RF_Wattmeter_Teensy41/nextion_patched/ITEADLIB_Arduino_Nextion_patched/html/functions_w.html -------------------------------------------------------------------------------- /RF_Wattmeter_Teensy41/nextion_patched/ITEADLIB_Arduino_Nextion_patched/html/functions_~.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K7MDL2/RF-Power-Meter-V1/HEAD/RF_Wattmeter_Teensy41/nextion_patched/ITEADLIB_Arduino_Nextion_patched/html/functions_~.html -------------------------------------------------------------------------------- /RF_Wattmeter_Teensy41/nextion_patched/ITEADLIB_Arduino_Nextion_patched/html/globals.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K7MDL2/RF-Power-Meter-V1/HEAD/RF_Wattmeter_Teensy41/nextion_patched/ITEADLIB_Arduino_Nextion_patched/html/globals.html -------------------------------------------------------------------------------- /RF_Wattmeter_Teensy41/nextion_patched/ITEADLIB_Arduino_Nextion_patched/html/globals_defs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K7MDL2/RF-Power-Meter-V1/HEAD/RF_Wattmeter_Teensy41/nextion_patched/ITEADLIB_Arduino_Nextion_patched/html/globals_defs.html -------------------------------------------------------------------------------- /RF_Wattmeter_Teensy41/nextion_patched/ITEADLIB_Arduino_Nextion_patched/html/globals_func.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K7MDL2/RF-Power-Meter-V1/HEAD/RF_Wattmeter_Teensy41/nextion_patched/ITEADLIB_Arduino_Nextion_patched/html/globals_func.html -------------------------------------------------------------------------------- /RF_Wattmeter_Teensy41/nextion_patched/ITEADLIB_Arduino_Nextion_patched/html/globals_type.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K7MDL2/RF-Power-Meter-V1/HEAD/RF_Wattmeter_Teensy41/nextion_patched/ITEADLIB_Arduino_Nextion_patched/html/globals_type.html -------------------------------------------------------------------------------- /RF_Wattmeter_Teensy41/nextion_patched/ITEADLIB_Arduino_Nextion_patched/html/hierarchy.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K7MDL2/RF-Power-Meter-V1/HEAD/RF_Wattmeter_Teensy41/nextion_patched/ITEADLIB_Arduino_Nextion_patched/html/hierarchy.html -------------------------------------------------------------------------------- /RF_Wattmeter_Teensy41/nextion_patched/ITEADLIB_Arduino_Nextion_patched/html/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K7MDL2/RF-Power-Meter-V1/HEAD/RF_Wattmeter_Teensy41/nextion_patched/ITEADLIB_Arduino_Nextion_patched/html/index.html -------------------------------------------------------------------------------- /RF_Wattmeter_Teensy41/nextion_patched/ITEADLIB_Arduino_Nextion_patched/html/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K7MDL2/RF-Power-Meter-V1/HEAD/RF_Wattmeter_Teensy41/nextion_patched/ITEADLIB_Arduino_Nextion_patched/html/jquery.js -------------------------------------------------------------------------------- /RF_Wattmeter_Teensy41/nextion_patched/ITEADLIB_Arduino_Nextion_patched/html/md_readme.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K7MDL2/RF-Power-Meter-V1/HEAD/RF_Wattmeter_Teensy41/nextion_patched/ITEADLIB_Arduino_Nextion_patched/html/md_readme.html -------------------------------------------------------------------------------- /RF_Wattmeter_Teensy41/nextion_patched/ITEADLIB_Arduino_Nextion_patched/html/modules.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K7MDL2/RF-Power-Meter-V1/HEAD/RF_Wattmeter_Teensy41/nextion_patched/ITEADLIB_Arduino_Nextion_patched/html/modules.html -------------------------------------------------------------------------------- /RF_Wattmeter_Teensy41/nextion_patched/ITEADLIB_Arduino_Nextion_patched/html/nav_f.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K7MDL2/RF-Power-Meter-V1/HEAD/RF_Wattmeter_Teensy41/nextion_patched/ITEADLIB_Arduino_Nextion_patched/html/nav_f.png -------------------------------------------------------------------------------- /RF_Wattmeter_Teensy41/nextion_patched/ITEADLIB_Arduino_Nextion_patched/html/nav_g.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K7MDL2/RF-Power-Meter-V1/HEAD/RF_Wattmeter_Teensy41/nextion_patched/ITEADLIB_Arduino_Nextion_patched/html/nav_g.png -------------------------------------------------------------------------------- /RF_Wattmeter_Teensy41/nextion_patched/ITEADLIB_Arduino_Nextion_patched/html/nav_h.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K7MDL2/RF-Power-Meter-V1/HEAD/RF_Wattmeter_Teensy41/nextion_patched/ITEADLIB_Arduino_Nextion_patched/html/nav_h.png -------------------------------------------------------------------------------- /RF_Wattmeter_Teensy41/nextion_patched/ITEADLIB_Arduino_Nextion_patched/html/open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K7MDL2/RF-Power-Meter-V1/HEAD/RF_Wattmeter_Teensy41/nextion_patched/ITEADLIB_Arduino_Nextion_patched/html/open.png -------------------------------------------------------------------------------- /RF_Wattmeter_Teensy41/nextion_patched/ITEADLIB_Arduino_Nextion_patched/html/pages.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K7MDL2/RF-Power-Meter-V1/HEAD/RF_Wattmeter_Teensy41/nextion_patched/ITEADLIB_Arduino_Nextion_patched/html/pages.html -------------------------------------------------------------------------------- /RF_Wattmeter_Teensy41/nextion_patched/ITEADLIB_Arduino_Nextion_patched/html/search/all_0.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K7MDL2/RF-Power-Meter-V1/HEAD/RF_Wattmeter_Teensy41/nextion_patched/ITEADLIB_Arduino_Nextion_patched/html/search/all_0.html -------------------------------------------------------------------------------- /RF_Wattmeter_Teensy41/nextion_patched/ITEADLIB_Arduino_Nextion_patched/html/search/all_0.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K7MDL2/RF-Power-Meter-V1/HEAD/RF_Wattmeter_Teensy41/nextion_patched/ITEADLIB_Arduino_Nextion_patched/html/search/all_0.js -------------------------------------------------------------------------------- /RF_Wattmeter_Teensy41/nextion_patched/ITEADLIB_Arduino_Nextion_patched/html/search/all_1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K7MDL2/RF-Power-Meter-V1/HEAD/RF_Wattmeter_Teensy41/nextion_patched/ITEADLIB_Arduino_Nextion_patched/html/search/all_1.html -------------------------------------------------------------------------------- /RF_Wattmeter_Teensy41/nextion_patched/ITEADLIB_Arduino_Nextion_patched/html/search/all_1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K7MDL2/RF-Power-Meter-V1/HEAD/RF_Wattmeter_Teensy41/nextion_patched/ITEADLIB_Arduino_Nextion_patched/html/search/all_1.js -------------------------------------------------------------------------------- /RF_Wattmeter_Teensy41/nextion_patched/ITEADLIB_Arduino_Nextion_patched/html/search/all_2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K7MDL2/RF-Power-Meter-V1/HEAD/RF_Wattmeter_Teensy41/nextion_patched/ITEADLIB_Arduino_Nextion_patched/html/search/all_2.html -------------------------------------------------------------------------------- /RF_Wattmeter_Teensy41/nextion_patched/ITEADLIB_Arduino_Nextion_patched/html/search/all_2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K7MDL2/RF-Power-Meter-V1/HEAD/RF_Wattmeter_Teensy41/nextion_patched/ITEADLIB_Arduino_Nextion_patched/html/search/all_2.js -------------------------------------------------------------------------------- /RF_Wattmeter_Teensy41/nextion_patched/ITEADLIB_Arduino_Nextion_patched/html/search/all_3.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K7MDL2/RF-Power-Meter-V1/HEAD/RF_Wattmeter_Teensy41/nextion_patched/ITEADLIB_Arduino_Nextion_patched/html/search/all_3.html -------------------------------------------------------------------------------- /RF_Wattmeter_Teensy41/nextion_patched/ITEADLIB_Arduino_Nextion_patched/html/search/all_3.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K7MDL2/RF-Power-Meter-V1/HEAD/RF_Wattmeter_Teensy41/nextion_patched/ITEADLIB_Arduino_Nextion_patched/html/search/all_3.js -------------------------------------------------------------------------------- /RF_Wattmeter_Teensy41/nextion_patched/ITEADLIB_Arduino_Nextion_patched/html/search/all_4.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K7MDL2/RF-Power-Meter-V1/HEAD/RF_Wattmeter_Teensy41/nextion_patched/ITEADLIB_Arduino_Nextion_patched/html/search/all_4.html -------------------------------------------------------------------------------- /RF_Wattmeter_Teensy41/nextion_patched/ITEADLIB_Arduino_Nextion_patched/html/search/all_4.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K7MDL2/RF-Power-Meter-V1/HEAD/RF_Wattmeter_Teensy41/nextion_patched/ITEADLIB_Arduino_Nextion_patched/html/search/all_4.js -------------------------------------------------------------------------------- /RF_Wattmeter_Teensy41/nextion_patched/ITEADLIB_Arduino_Nextion_patched/html/search/all_5.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K7MDL2/RF-Power-Meter-V1/HEAD/RF_Wattmeter_Teensy41/nextion_patched/ITEADLIB_Arduino_Nextion_patched/html/search/all_5.html -------------------------------------------------------------------------------- /RF_Wattmeter_Teensy41/nextion_patched/ITEADLIB_Arduino_Nextion_patched/html/search/all_5.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K7MDL2/RF-Power-Meter-V1/HEAD/RF_Wattmeter_Teensy41/nextion_patched/ITEADLIB_Arduino_Nextion_patched/html/search/all_5.js -------------------------------------------------------------------------------- /RF_Wattmeter_Teensy41/nextion_patched/ITEADLIB_Arduino_Nextion_patched/html/search/all_6.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K7MDL2/RF-Power-Meter-V1/HEAD/RF_Wattmeter_Teensy41/nextion_patched/ITEADLIB_Arduino_Nextion_patched/html/search/all_6.html -------------------------------------------------------------------------------- /RF_Wattmeter_Teensy41/nextion_patched/ITEADLIB_Arduino_Nextion_patched/html/search/all_6.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K7MDL2/RF-Power-Meter-V1/HEAD/RF_Wattmeter_Teensy41/nextion_patched/ITEADLIB_Arduino_Nextion_patched/html/search/all_6.js -------------------------------------------------------------------------------- /RF_Wattmeter_Teensy41/nextion_patched/ITEADLIB_Arduino_Nextion_patched/html/search/all_7.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K7MDL2/RF-Power-Meter-V1/HEAD/RF_Wattmeter_Teensy41/nextion_patched/ITEADLIB_Arduino_Nextion_patched/html/search/all_7.html -------------------------------------------------------------------------------- /RF_Wattmeter_Teensy41/nextion_patched/ITEADLIB_Arduino_Nextion_patched/html/search/all_7.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K7MDL2/RF-Power-Meter-V1/HEAD/RF_Wattmeter_Teensy41/nextion_patched/ITEADLIB_Arduino_Nextion_patched/html/search/all_7.js -------------------------------------------------------------------------------- /RF_Wattmeter_Teensy41/nextion_patched/ITEADLIB_Arduino_Nextion_patched/html/search/all_8.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K7MDL2/RF-Power-Meter-V1/HEAD/RF_Wattmeter_Teensy41/nextion_patched/ITEADLIB_Arduino_Nextion_patched/html/search/all_8.html -------------------------------------------------------------------------------- /RF_Wattmeter_Teensy41/nextion_patched/ITEADLIB_Arduino_Nextion_patched/html/search/all_8.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K7MDL2/RF-Power-Meter-V1/HEAD/RF_Wattmeter_Teensy41/nextion_patched/ITEADLIB_Arduino_Nextion_patched/html/search/all_8.js -------------------------------------------------------------------------------- /RF_Wattmeter_Teensy41/nextion_patched/ITEADLIB_Arduino_Nextion_patched/html/search/all_9.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K7MDL2/RF-Power-Meter-V1/HEAD/RF_Wattmeter_Teensy41/nextion_patched/ITEADLIB_Arduino_Nextion_patched/html/search/all_9.html -------------------------------------------------------------------------------- /RF_Wattmeter_Teensy41/nextion_patched/ITEADLIB_Arduino_Nextion_patched/html/search/all_9.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K7MDL2/RF-Power-Meter-V1/HEAD/RF_Wattmeter_Teensy41/nextion_patched/ITEADLIB_Arduino_Nextion_patched/html/search/all_9.js -------------------------------------------------------------------------------- /RF_Wattmeter_Teensy41/nextion_patched/ITEADLIB_Arduino_Nextion_patched/html/search/all_a.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K7MDL2/RF-Power-Meter-V1/HEAD/RF_Wattmeter_Teensy41/nextion_patched/ITEADLIB_Arduino_Nextion_patched/html/search/all_a.html -------------------------------------------------------------------------------- /RF_Wattmeter_Teensy41/nextion_patched/ITEADLIB_Arduino_Nextion_patched/html/search/all_a.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K7MDL2/RF-Power-Meter-V1/HEAD/RF_Wattmeter_Teensy41/nextion_patched/ITEADLIB_Arduino_Nextion_patched/html/search/all_a.js -------------------------------------------------------------------------------- /RF_Wattmeter_Teensy41/nextion_patched/ITEADLIB_Arduino_Nextion_patched/html/search/all_b.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K7MDL2/RF-Power-Meter-V1/HEAD/RF_Wattmeter_Teensy41/nextion_patched/ITEADLIB_Arduino_Nextion_patched/html/search/all_b.html -------------------------------------------------------------------------------- /RF_Wattmeter_Teensy41/nextion_patched/ITEADLIB_Arduino_Nextion_patched/html/search/all_b.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K7MDL2/RF-Power-Meter-V1/HEAD/RF_Wattmeter_Teensy41/nextion_patched/ITEADLIB_Arduino_Nextion_patched/html/search/all_b.js -------------------------------------------------------------------------------- /RF_Wattmeter_Teensy41/nextion_patched/ITEADLIB_Arduino_Nextion_patched/html/search/all_c.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K7MDL2/RF-Power-Meter-V1/HEAD/RF_Wattmeter_Teensy41/nextion_patched/ITEADLIB_Arduino_Nextion_patched/html/search/all_c.html -------------------------------------------------------------------------------- /RF_Wattmeter_Teensy41/nextion_patched/ITEADLIB_Arduino_Nextion_patched/html/search/all_c.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K7MDL2/RF-Power-Meter-V1/HEAD/RF_Wattmeter_Teensy41/nextion_patched/ITEADLIB_Arduino_Nextion_patched/html/search/all_c.js -------------------------------------------------------------------------------- /RF_Wattmeter_Teensy41/nextion_patched/ITEADLIB_Arduino_Nextion_patched/html/search/classes_0.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K7MDL2/RF-Power-Meter-V1/HEAD/RF_Wattmeter_Teensy41/nextion_patched/ITEADLIB_Arduino_Nextion_patched/html/search/classes_0.js -------------------------------------------------------------------------------- /RF_Wattmeter_Teensy41/nextion_patched/ITEADLIB_Arduino_Nextion_patched/html/search/close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K7MDL2/RF-Power-Meter-V1/HEAD/RF_Wattmeter_Teensy41/nextion_patched/ITEADLIB_Arduino_Nextion_patched/html/search/close.png -------------------------------------------------------------------------------- /RF_Wattmeter_Teensy41/nextion_patched/ITEADLIB_Arduino_Nextion_patched/html/search/files_0.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K7MDL2/RF-Power-Meter-V1/HEAD/RF_Wattmeter_Teensy41/nextion_patched/ITEADLIB_Arduino_Nextion_patched/html/search/files_0.html -------------------------------------------------------------------------------- /RF_Wattmeter_Teensy41/nextion_patched/ITEADLIB_Arduino_Nextion_patched/html/search/files_0.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K7MDL2/RF-Power-Meter-V1/HEAD/RF_Wattmeter_Teensy41/nextion_patched/ITEADLIB_Arduino_Nextion_patched/html/search/files_0.js -------------------------------------------------------------------------------- /RF_Wattmeter_Teensy41/nextion_patched/ITEADLIB_Arduino_Nextion_patched/html/search/files_1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K7MDL2/RF-Power-Meter-V1/HEAD/RF_Wattmeter_Teensy41/nextion_patched/ITEADLIB_Arduino_Nextion_patched/html/search/files_1.js -------------------------------------------------------------------------------- /RF_Wattmeter_Teensy41/nextion_patched/ITEADLIB_Arduino_Nextion_patched/html/search/groups_0.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K7MDL2/RF-Power-Meter-V1/HEAD/RF_Wattmeter_Teensy41/nextion_patched/ITEADLIB_Arduino_Nextion_patched/html/search/groups_0.js -------------------------------------------------------------------------------- /RF_Wattmeter_Teensy41/nextion_patched/ITEADLIB_Arduino_Nextion_patched/html/search/groups_1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K7MDL2/RF-Power-Meter-V1/HEAD/RF_Wattmeter_Teensy41/nextion_patched/ITEADLIB_Arduino_Nextion_patched/html/search/groups_1.js -------------------------------------------------------------------------------- /RF_Wattmeter_Teensy41/nextion_patched/ITEADLIB_Arduino_Nextion_patched/html/search/groups_2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K7MDL2/RF-Power-Meter-V1/HEAD/RF_Wattmeter_Teensy41/nextion_patched/ITEADLIB_Arduino_Nextion_patched/html/search/groups_2.js -------------------------------------------------------------------------------- /RF_Wattmeter_Teensy41/nextion_patched/ITEADLIB_Arduino_Nextion_patched/html/search/groups_3.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K7MDL2/RF-Power-Meter-V1/HEAD/RF_Wattmeter_Teensy41/nextion_patched/ITEADLIB_Arduino_Nextion_patched/html/search/groups_3.js -------------------------------------------------------------------------------- /RF_Wattmeter_Teensy41/nextion_patched/ITEADLIB_Arduino_Nextion_patched/html/search/mag_sel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K7MDL2/RF-Power-Meter-V1/HEAD/RF_Wattmeter_Teensy41/nextion_patched/ITEADLIB_Arduino_Nextion_patched/html/search/mag_sel.png -------------------------------------------------------------------------------- /RF_Wattmeter_Teensy41/nextion_patched/ITEADLIB_Arduino_Nextion_patched/html/search/pages_0.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K7MDL2/RF-Power-Meter-V1/HEAD/RF_Wattmeter_Teensy41/nextion_patched/ITEADLIB_Arduino_Nextion_patched/html/search/pages_0.js -------------------------------------------------------------------------------- /RF_Wattmeter_Teensy41/nextion_patched/ITEADLIB_Arduino_Nextion_patched/html/search/pages_1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K7MDL2/RF-Power-Meter-V1/HEAD/RF_Wattmeter_Teensy41/nextion_patched/ITEADLIB_Arduino_Nextion_patched/html/search/pages_1.js -------------------------------------------------------------------------------- /RF_Wattmeter_Teensy41/nextion_patched/ITEADLIB_Arduino_Nextion_patched/html/search/search.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K7MDL2/RF-Power-Meter-V1/HEAD/RF_Wattmeter_Teensy41/nextion_patched/ITEADLIB_Arduino_Nextion_patched/html/search/search.css -------------------------------------------------------------------------------- /RF_Wattmeter_Teensy41/nextion_patched/ITEADLIB_Arduino_Nextion_patched/html/search/search.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K7MDL2/RF-Power-Meter-V1/HEAD/RF_Wattmeter_Teensy41/nextion_patched/ITEADLIB_Arduino_Nextion_patched/html/search/search.js -------------------------------------------------------------------------------- /RF_Wattmeter_Teensy41/nextion_patched/ITEADLIB_Arduino_Nextion_patched/html/sync_off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K7MDL2/RF-Power-Meter-V1/HEAD/RF_Wattmeter_Teensy41/nextion_patched/ITEADLIB_Arduino_Nextion_patched/html/sync_off.png -------------------------------------------------------------------------------- /RF_Wattmeter_Teensy41/nextion_patched/ITEADLIB_Arduino_Nextion_patched/html/sync_on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K7MDL2/RF-Power-Meter-V1/HEAD/RF_Wattmeter_Teensy41/nextion_patched/ITEADLIB_Arduino_Nextion_patched/html/sync_on.png -------------------------------------------------------------------------------- /RF_Wattmeter_Teensy41/nextion_patched/ITEADLIB_Arduino_Nextion_patched/html/tab_a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K7MDL2/RF-Power-Meter-V1/HEAD/RF_Wattmeter_Teensy41/nextion_patched/ITEADLIB_Arduino_Nextion_patched/html/tab_a.png -------------------------------------------------------------------------------- /RF_Wattmeter_Teensy41/nextion_patched/ITEADLIB_Arduino_Nextion_patched/html/tab_b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K7MDL2/RF-Power-Meter-V1/HEAD/RF_Wattmeter_Teensy41/nextion_patched/ITEADLIB_Arduino_Nextion_patched/html/tab_b.png -------------------------------------------------------------------------------- /RF_Wattmeter_Teensy41/nextion_patched/ITEADLIB_Arduino_Nextion_patched/html/tab_h.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K7MDL2/RF-Power-Meter-V1/HEAD/RF_Wattmeter_Teensy41/nextion_patched/ITEADLIB_Arduino_Nextion_patched/html/tab_h.png -------------------------------------------------------------------------------- /RF_Wattmeter_Teensy41/nextion_patched/ITEADLIB_Arduino_Nextion_patched/html/tab_s.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K7MDL2/RF-Power-Meter-V1/HEAD/RF_Wattmeter_Teensy41/nextion_patched/ITEADLIB_Arduino_Nextion_patched/html/tab_s.png -------------------------------------------------------------------------------- /RF_Wattmeter_Teensy41/nextion_patched/ITEADLIB_Arduino_Nextion_patched/html/tabs.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K7MDL2/RF-Power-Meter-V1/HEAD/RF_Wattmeter_Teensy41/nextion_patched/ITEADLIB_Arduino_Nextion_patched/html/tabs.css -------------------------------------------------------------------------------- /RF_Wattmeter_Teensy41/nextion_patched/ITEADLIB_Arduino_Nextion_patched/latex/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K7MDL2/RF-Power-Meter-V1/HEAD/RF_Wattmeter_Teensy41/nextion_patched/ITEADLIB_Arduino_Nextion_patched/latex/Makefile -------------------------------------------------------------------------------- /RF_Wattmeter_Teensy41/nextion_patched/ITEADLIB_Arduino_Nextion_patched/latex/_nex_crop_8h.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K7MDL2/RF-Power-Meter-V1/HEAD/RF_Wattmeter_Teensy41/nextion_patched/ITEADLIB_Arduino_Nextion_patched/latex/_nex_crop_8h.tex -------------------------------------------------------------------------------- /RF_Wattmeter_Teensy41/nextion_patched/ITEADLIB_Arduino_Nextion_patched/latex/_nex_gauge_8h.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K7MDL2/RF-Power-Meter-V1/HEAD/RF_Wattmeter_Teensy41/nextion_patched/ITEADLIB_Arduino_Nextion_patched/latex/_nex_gauge_8h.tex -------------------------------------------------------------------------------- /RF_Wattmeter_Teensy41/nextion_patched/ITEADLIB_Arduino_Nextion_patched/latex/_nex_page_8h.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K7MDL2/RF-Power-Meter-V1/HEAD/RF_Wattmeter_Teensy41/nextion_patched/ITEADLIB_Arduino_Nextion_patched/latex/_nex_page_8h.tex -------------------------------------------------------------------------------- /RF_Wattmeter_Teensy41/nextion_patched/ITEADLIB_Arduino_Nextion_patched/latex/_nex_radio_8h.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K7MDL2/RF-Power-Meter-V1/HEAD/RF_Wattmeter_Teensy41/nextion_patched/ITEADLIB_Arduino_Nextion_patched/latex/_nex_radio_8h.tex -------------------------------------------------------------------------------- /RF_Wattmeter_Teensy41/nextion_patched/ITEADLIB_Arduino_Nextion_patched/latex/_nex_rtc_8cpp.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K7MDL2/RF-Power-Meter-V1/HEAD/RF_Wattmeter_Teensy41/nextion_patched/ITEADLIB_Arduino_Nextion_patched/latex/_nex_rtc_8cpp.tex -------------------------------------------------------------------------------- /RF_Wattmeter_Teensy41/nextion_patched/ITEADLIB_Arduino_Nextion_patched/latex/_nex_text_8h.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K7MDL2/RF-Power-Meter-V1/HEAD/RF_Wattmeter_Teensy41/nextion_patched/ITEADLIB_Arduino_Nextion_patched/latex/_nex_text_8h.tex -------------------------------------------------------------------------------- /RF_Wattmeter_Teensy41/nextion_patched/ITEADLIB_Arduino_Nextion_patched/latex/_nex_timer_8h.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K7MDL2/RF-Power-Meter-V1/HEAD/RF_Wattmeter_Teensy41/nextion_patched/ITEADLIB_Arduino_Nextion_patched/latex/_nex_timer_8h.tex -------------------------------------------------------------------------------- /RF_Wattmeter_Teensy41/nextion_patched/ITEADLIB_Arduino_Nextion_patched/latex/_nex_touch_8h.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K7MDL2/RF-Power-Meter-V1/HEAD/RF_Wattmeter_Teensy41/nextion_patched/ITEADLIB_Arduino_Nextion_patched/latex/_nex_touch_8h.tex -------------------------------------------------------------------------------- /RF_Wattmeter_Teensy41/nextion_patched/ITEADLIB_Arduino_Nextion_patched/latex/_nextion_8h.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K7MDL2/RF-Power-Meter-V1/HEAD/RF_Wattmeter_Teensy41/nextion_patched/ITEADLIB_Arduino_Nextion_patched/latex/_nextion_8h.tex -------------------------------------------------------------------------------- /RF_Wattmeter_Teensy41/nextion_patched/ITEADLIB_Arduino_Nextion_patched/latex/annotated.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K7MDL2/RF-Power-Meter-V1/HEAD/RF_Wattmeter_Teensy41/nextion_patched/ITEADLIB_Arduino_Nextion_patched/latex/annotated.tex -------------------------------------------------------------------------------- /RF_Wattmeter_Teensy41/nextion_patched/ITEADLIB_Arduino_Nextion_patched/latex/class_nex_rtc.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K7MDL2/RF-Power-Meter-V1/HEAD/RF_Wattmeter_Teensy41/nextion_patched/ITEADLIB_Arduino_Nextion_patched/latex/class_nex_rtc.tex -------------------------------------------------------------------------------- /RF_Wattmeter_Teensy41/nextion_patched/ITEADLIB_Arduino_Nextion_patched/latex/doxygen.sty: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K7MDL2/RF-Power-Meter-V1/HEAD/RF_Wattmeter_Teensy41/nextion_patched/ITEADLIB_Arduino_Nextion_patched/latex/doxygen.sty -------------------------------------------------------------------------------- /RF_Wattmeter_Teensy41/nextion_patched/ITEADLIB_Arduino_Nextion_patched/latex/doxygen_8h.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K7MDL2/RF-Power-Meter-V1/HEAD/RF_Wattmeter_Teensy41/nextion_patched/ITEADLIB_Arduino_Nextion_patched/latex/doxygen_8h.tex -------------------------------------------------------------------------------- /RF_Wattmeter_Teensy41/nextion_patched/ITEADLIB_Arduino_Nextion_patched/latex/files.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K7MDL2/RF-Power-Meter-V1/HEAD/RF_Wattmeter_Teensy41/nextion_patched/ITEADLIB_Arduino_Nextion_patched/latex/files.tex -------------------------------------------------------------------------------- /RF_Wattmeter_Teensy41/nextion_patched/ITEADLIB_Arduino_Nextion_patched/latex/hierarchy.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K7MDL2/RF-Power-Meter-V1/HEAD/RF_Wattmeter_Teensy41/nextion_patched/ITEADLIB_Arduino_Nextion_patched/latex/hierarchy.tex -------------------------------------------------------------------------------- /RF_Wattmeter_Teensy41/nextion_patched/ITEADLIB_Arduino_Nextion_patched/latex/index.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K7MDL2/RF-Power-Meter-V1/HEAD/RF_Wattmeter_Teensy41/nextion_patched/ITEADLIB_Arduino_Nextion_patched/latex/index.tex -------------------------------------------------------------------------------- /RF_Wattmeter_Teensy41/nextion_patched/ITEADLIB_Arduino_Nextion_patched/latex/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K7MDL2/RF-Power-Meter-V1/HEAD/RF_Wattmeter_Teensy41/nextion_patched/ITEADLIB_Arduino_Nextion_patched/latex/make.bat -------------------------------------------------------------------------------- /RF_Wattmeter_Teensy41/nextion_patched/ITEADLIB_Arduino_Nextion_patched/latex/md_readme.tex: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /RF_Wattmeter_Teensy41/nextion_patched/ITEADLIB_Arduino_Nextion_patched/latex/modules.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K7MDL2/RF-Power-Meter-V1/HEAD/RF_Wattmeter_Teensy41/nextion_patched/ITEADLIB_Arduino_Nextion_patched/latex/modules.tex -------------------------------------------------------------------------------- /RF_Wattmeter_Teensy41/nextion_patched/ITEADLIB_Arduino_Nextion_patched/latex/refman.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K7MDL2/RF-Power-Meter-V1/HEAD/RF_Wattmeter_Teensy41/nextion_patched/ITEADLIB_Arduino_Nextion_patched/latex/refman.tex -------------------------------------------------------------------------------- /RF_Wattmeter_Teensy41/nextion_patched/ITEADLIB_Arduino_Nextion_patched/license.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K7MDL2/RF-Power-Meter-V1/HEAD/RF_Wattmeter_Teensy41/nextion_patched/ITEADLIB_Arduino_Nextion_patched/license.md -------------------------------------------------------------------------------- /RF_Wattmeter_Teensy41/nextion_patched/ITEADLIB_Arduino_Nextion_patched/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K7MDL2/RF-Power-Meter-V1/HEAD/RF_Wattmeter_Teensy41/nextion_patched/ITEADLIB_Arduino_Nextion_patched/readme.md -------------------------------------------------------------------------------- /RF_Wattmeter_Teensy41/nextion_patched/ITEADLIB_Arduino_Nextion_patched/release_notes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K7MDL2/RF-Power-Meter-V1/HEAD/RF_Wattmeter_Teensy41/nextion_patched/ITEADLIB_Arduino_Nextion_patched/release_notes.md -------------------------------------------------------------------------------- /RF_Wattmeter_Teensy41/nextion_patched/ITEADLIB_Arduino_Nextion_patched/version.txt: -------------------------------------------------------------------------------- 1 | 0.9.0 2 | -------------------------------------------------------------------------------- /RF_Wattmeter_Teensy41_PCB_V1/.vscode/arduino.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K7MDL2/RF-Power-Meter-V1/HEAD/RF_Wattmeter_Teensy41_PCB_V1/.vscode/arduino.json -------------------------------------------------------------------------------- /RF_Wattmeter_Teensy41_PCB_V1/.vscode/c_cpp_properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K7MDL2/RF-Power-Meter-V1/HEAD/RF_Wattmeter_Teensy41_PCB_V1/.vscode/c_cpp_properties.json -------------------------------------------------------------------------------- /RF_Wattmeter_Teensy41_PCB_V1/Docs/Remote Wattmeter with Band Decoder.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K7MDL2/RF-Power-Meter-V1/HEAD/RF_Wattmeter_Teensy41_PCB_V1/Docs/Remote Wattmeter with Band Decoder.docx -------------------------------------------------------------------------------- /RF_Wattmeter_Teensy41_PCB_V1/Docs/Teensy 4.1 RF Wattmeter and Band Decoder Project.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K7MDL2/RF-Power-Meter-V1/HEAD/RF_Wattmeter_Teensy41_PCB_V1/Docs/Teensy 4.1 RF Wattmeter and Band Decoder Project.pptx -------------------------------------------------------------------------------- /RF_Wattmeter_Teensy41_PCB_V1/Ethernet_Test_Programs/UDP-CPU-1/UDP-CPU-1.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K7MDL2/RF-Power-Meter-V1/HEAD/RF_Wattmeter_Teensy41_PCB_V1/Ethernet_Test_Programs/UDP-CPU-1/UDP-CPU-1.ino -------------------------------------------------------------------------------- /RF_Wattmeter_Teensy41_PCB_V1/Ethernet_Test_Programs/UDP-CPU-2/UDP-CPU-2.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K7MDL2/RF-Power-Meter-V1/HEAD/RF_Wattmeter_Teensy41_PCB_V1/Ethernet_Test_Programs/UDP-CPU-2/UDP-CPU-2.ino -------------------------------------------------------------------------------- /RF_Wattmeter_Teensy41_PCB_V1/Ethernet_Test_Programs/UDP-Radio-Test/UDP-Radio-Test.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K7MDL2/RF-Power-Meter-V1/HEAD/RF_Wattmeter_Teensy41_PCB_V1/Ethernet_Test_Programs/UDP-Radio-Test/UDP-Radio-Test.ino -------------------------------------------------------------------------------- /RF_Wattmeter_Teensy41_PCB_V1/NativeEthernetPatch/NativeEthernet.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K7MDL2/RF-Power-Meter-V1/HEAD/RF_Wattmeter_Teensy41_PCB_V1/NativeEthernetPatch/NativeEthernet.cpp -------------------------------------------------------------------------------- /RF_Wattmeter_Teensy41_PCB_V1/PCB_Files/PowerMeter_BandDecoder_V1.sch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K7MDL2/RF-Power-Meter-V1/HEAD/RF_Wattmeter_Teensy41_PCB_V1/PCB_Files/PowerMeter_BandDecoder_V1.sch -------------------------------------------------------------------------------- /RF_Wattmeter_Teensy41_PCB_V1/PCB_Files/PowerMeter_BandDecoder_V1_Schematic_CPU.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K7MDL2/RF-Power-Meter-V1/HEAD/RF_Wattmeter_Teensy41_PCB_V1/PCB_Files/PowerMeter_BandDecoder_V1_Schematic_CPU.bmp -------------------------------------------------------------------------------- /RF_Wattmeter_Teensy41_PCB_V1/PCB_Files/PowerMeter_BandDecoder_V1_Schematic_IO.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K7MDL2/RF-Power-Meter-V1/HEAD/RF_Wattmeter_Teensy41_PCB_V1/PCB_Files/PowerMeter_BandDecoder_V1_Schematic_IO.bmp -------------------------------------------------------------------------------- /RF_Wattmeter_Teensy41_PCB_V1/PCB_Files/PowerMeter_PCBv.02.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K7MDL2/RF-Power-Meter-V1/HEAD/RF_Wattmeter_Teensy41_PCB_V1/PCB_Files/PowerMeter_PCBv.02.bmp -------------------------------------------------------------------------------- /RF_Wattmeter_Teensy41_PCB_V1/PCB_Files/PowerMeter_PCBv.02.pcb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K7MDL2/RF-Power-Meter-V1/HEAD/RF_Wattmeter_Teensy41_PCB_V1/PCB_Files/PowerMeter_PCBv.02.pcb -------------------------------------------------------------------------------- /RF_Wattmeter_Teensy41_PCB_V1/PCB_Files/PowerMeter_PCBv.02_Top_and_Bottom_Layers.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K7MDL2/RF-Power-Meter-V1/HEAD/RF_Wattmeter_Teensy41_PCB_V1/PCB_Files/PowerMeter_PCBv.02_Top_and_Bottom_Layers.pdf -------------------------------------------------------------------------------- /RF_Wattmeter_Teensy41_PCB_V1/PCB_Files/PowerMeter_PCBv.02_mechanical.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K7MDL2/RF-Power-Meter-V1/HEAD/RF_Wattmeter_Teensy41_PCB_V1/PCB_Files/PowerMeter_PCBv.02_mechanical.bmp -------------------------------------------------------------------------------- /RF_Wattmeter_Teensy41_PCB_V1/PCB_Files/PowerMeter_PCBv.03.pcb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K7MDL2/RF-Power-Meter-V1/HEAD/RF_Wattmeter_Teensy41_PCB_V1/PCB_Files/PowerMeter_PCBv.03.pcb -------------------------------------------------------------------------------- /RF_Wattmeter_Teensy41_PCB_V1/PCB_Files/PowerMeter_PCBv.04.pcb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K7MDL2/RF-Power-Meter-V1/HEAD/RF_Wattmeter_Teensy41_PCB_V1/PCB_Files/PowerMeter_PCBv.04.pcb -------------------------------------------------------------------------------- /RF_Wattmeter_Teensy41_PCB_V1/PCB_Files/PowerMeter_PCBv.04_Top_and_Bottom_Layers.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K7MDL2/RF-Power-Meter-V1/HEAD/RF_Wattmeter_Teensy41_PCB_V1/PCB_Files/PowerMeter_PCBv.04_Top_and_Bottom_Layers.pdf -------------------------------------------------------------------------------- /RF_Wattmeter_Teensy41_PCB_V1/RF_Wattmeter_Nextion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K7MDL2/RF-Power-Meter-V1/HEAD/RF_Wattmeter_Teensy41_PCB_V1/RF_Wattmeter_Nextion.h -------------------------------------------------------------------------------- /RF_Wattmeter_Teensy41_PCB_V1/RF_Wattmeter_Teensy41_PCB_V1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K7MDL2/RF-Power-Meter-V1/HEAD/RF_Wattmeter_Teensy41_PCB_V1/RF_Wattmeter_Teensy41_PCB_V1.h -------------------------------------------------------------------------------- /RF_Wattmeter_Teensy41_PCB_V1/RF_Wattmeter_Teensy41_PCB_V1.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K7MDL2/RF-Power-Meter-V1/HEAD/RF_Wattmeter_Teensy41_PCB_V1/RF_Wattmeter_Teensy41_PCB_V1.ino -------------------------------------------------------------------------------- /RF_Wattmeter_Teensy41_PCB_V1/nextion_patched/ITEADLIB_Arduino_Nextion_patched/NexButton.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K7MDL2/RF-Power-Meter-V1/HEAD/RF_Wattmeter_Teensy41_PCB_V1/nextion_patched/ITEADLIB_Arduino_Nextion_patched/NexButton.cpp -------------------------------------------------------------------------------- /RF_Wattmeter_Teensy41_PCB_V1/nextion_patched/ITEADLIB_Arduino_Nextion_patched/NexButton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K7MDL2/RF-Power-Meter-V1/HEAD/RF_Wattmeter_Teensy41_PCB_V1/nextion_patched/ITEADLIB_Arduino_Nextion_patched/NexButton.h -------------------------------------------------------------------------------- /RF_Wattmeter_Teensy41_PCB_V1/nextion_patched/ITEADLIB_Arduino_Nextion_patched/NexCheckbox.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K7MDL2/RF-Power-Meter-V1/HEAD/RF_Wattmeter_Teensy41_PCB_V1/nextion_patched/ITEADLIB_Arduino_Nextion_patched/NexCheckbox.cpp -------------------------------------------------------------------------------- /RF_Wattmeter_Teensy41_PCB_V1/nextion_patched/ITEADLIB_Arduino_Nextion_patched/NexCheckbox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K7MDL2/RF-Power-Meter-V1/HEAD/RF_Wattmeter_Teensy41_PCB_V1/nextion_patched/ITEADLIB_Arduino_Nextion_patched/NexCheckbox.h -------------------------------------------------------------------------------- /RF_Wattmeter_Teensy41_PCB_V1/nextion_patched/ITEADLIB_Arduino_Nextion_patched/NexConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K7MDL2/RF-Power-Meter-V1/HEAD/RF_Wattmeter_Teensy41_PCB_V1/nextion_patched/ITEADLIB_Arduino_Nextion_patched/NexConfig.h -------------------------------------------------------------------------------- /RF_Wattmeter_Teensy41_PCB_V1/nextion_patched/ITEADLIB_Arduino_Nextion_patched/NexCrop.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K7MDL2/RF-Power-Meter-V1/HEAD/RF_Wattmeter_Teensy41_PCB_V1/nextion_patched/ITEADLIB_Arduino_Nextion_patched/NexCrop.cpp -------------------------------------------------------------------------------- /RF_Wattmeter_Teensy41_PCB_V1/nextion_patched/ITEADLIB_Arduino_Nextion_patched/NexCrop.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K7MDL2/RF-Power-Meter-V1/HEAD/RF_Wattmeter_Teensy41_PCB_V1/nextion_patched/ITEADLIB_Arduino_Nextion_patched/NexCrop.h -------------------------------------------------------------------------------- /RF_Wattmeter_Teensy41_PCB_V1/nextion_patched/ITEADLIB_Arduino_Nextion_patched/NexGauge.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K7MDL2/RF-Power-Meter-V1/HEAD/RF_Wattmeter_Teensy41_PCB_V1/nextion_patched/ITEADLIB_Arduino_Nextion_patched/NexGauge.cpp -------------------------------------------------------------------------------- /RF_Wattmeter_Teensy41_PCB_V1/nextion_patched/ITEADLIB_Arduino_Nextion_patched/NexGauge.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K7MDL2/RF-Power-Meter-V1/HEAD/RF_Wattmeter_Teensy41_PCB_V1/nextion_patched/ITEADLIB_Arduino_Nextion_patched/NexGauge.h -------------------------------------------------------------------------------- /RF_Wattmeter_Teensy41_PCB_V1/nextion_patched/ITEADLIB_Arduino_Nextion_patched/NexGpio.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K7MDL2/RF-Power-Meter-V1/HEAD/RF_Wattmeter_Teensy41_PCB_V1/nextion_patched/ITEADLIB_Arduino_Nextion_patched/NexGpio.cpp -------------------------------------------------------------------------------- /RF_Wattmeter_Teensy41_PCB_V1/nextion_patched/ITEADLIB_Arduino_Nextion_patched/NexGpio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K7MDL2/RF-Power-Meter-V1/HEAD/RF_Wattmeter_Teensy41_PCB_V1/nextion_patched/ITEADLIB_Arduino_Nextion_patched/NexGpio.h -------------------------------------------------------------------------------- /RF_Wattmeter_Teensy41_PCB_V1/nextion_patched/ITEADLIB_Arduino_Nextion_patched/NexHardware.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K7MDL2/RF-Power-Meter-V1/HEAD/RF_Wattmeter_Teensy41_PCB_V1/nextion_patched/ITEADLIB_Arduino_Nextion_patched/NexHardware.cpp -------------------------------------------------------------------------------- /RF_Wattmeter_Teensy41_PCB_V1/nextion_patched/ITEADLIB_Arduino_Nextion_patched/NexHardware.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K7MDL2/RF-Power-Meter-V1/HEAD/RF_Wattmeter_Teensy41_PCB_V1/nextion_patched/ITEADLIB_Arduino_Nextion_patched/NexHardware.h -------------------------------------------------------------------------------- /RF_Wattmeter_Teensy41_PCB_V1/nextion_patched/ITEADLIB_Arduino_Nextion_patched/NexHotspot.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K7MDL2/RF-Power-Meter-V1/HEAD/RF_Wattmeter_Teensy41_PCB_V1/nextion_patched/ITEADLIB_Arduino_Nextion_patched/NexHotspot.cpp -------------------------------------------------------------------------------- /RF_Wattmeter_Teensy41_PCB_V1/nextion_patched/ITEADLIB_Arduino_Nextion_patched/NexHotspot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K7MDL2/RF-Power-Meter-V1/HEAD/RF_Wattmeter_Teensy41_PCB_V1/nextion_patched/ITEADLIB_Arduino_Nextion_patched/NexHotspot.h -------------------------------------------------------------------------------- /RF_Wattmeter_Teensy41_PCB_V1/nextion_patched/ITEADLIB_Arduino_Nextion_patched/NexNumber.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K7MDL2/RF-Power-Meter-V1/HEAD/RF_Wattmeter_Teensy41_PCB_V1/nextion_patched/ITEADLIB_Arduino_Nextion_patched/NexNumber.cpp -------------------------------------------------------------------------------- /RF_Wattmeter_Teensy41_PCB_V1/nextion_patched/ITEADLIB_Arduino_Nextion_patched/NexNumber.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K7MDL2/RF-Power-Meter-V1/HEAD/RF_Wattmeter_Teensy41_PCB_V1/nextion_patched/ITEADLIB_Arduino_Nextion_patched/NexNumber.h -------------------------------------------------------------------------------- /RF_Wattmeter_Teensy41_PCB_V1/nextion_patched/ITEADLIB_Arduino_Nextion_patched/NexObject.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K7MDL2/RF-Power-Meter-V1/HEAD/RF_Wattmeter_Teensy41_PCB_V1/nextion_patched/ITEADLIB_Arduino_Nextion_patched/NexObject.cpp -------------------------------------------------------------------------------- /RF_Wattmeter_Teensy41_PCB_V1/nextion_patched/ITEADLIB_Arduino_Nextion_patched/NexObject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K7MDL2/RF-Power-Meter-V1/HEAD/RF_Wattmeter_Teensy41_PCB_V1/nextion_patched/ITEADLIB_Arduino_Nextion_patched/NexObject.h -------------------------------------------------------------------------------- /RF_Wattmeter_Teensy41_PCB_V1/nextion_patched/ITEADLIB_Arduino_Nextion_patched/NexPage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K7MDL2/RF-Power-Meter-V1/HEAD/RF_Wattmeter_Teensy41_PCB_V1/nextion_patched/ITEADLIB_Arduino_Nextion_patched/NexPage.cpp -------------------------------------------------------------------------------- /RF_Wattmeter_Teensy41_PCB_V1/nextion_patched/ITEADLIB_Arduino_Nextion_patched/NexPage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K7MDL2/RF-Power-Meter-V1/HEAD/RF_Wattmeter_Teensy41_PCB_V1/nextion_patched/ITEADLIB_Arduino_Nextion_patched/NexPage.h -------------------------------------------------------------------------------- /RF_Wattmeter_Teensy41_PCB_V1/nextion_patched/ITEADLIB_Arduino_Nextion_patched/NexPicture.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K7MDL2/RF-Power-Meter-V1/HEAD/RF_Wattmeter_Teensy41_PCB_V1/nextion_patched/ITEADLIB_Arduino_Nextion_patched/NexPicture.cpp -------------------------------------------------------------------------------- /RF_Wattmeter_Teensy41_PCB_V1/nextion_patched/ITEADLIB_Arduino_Nextion_patched/NexPicture.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K7MDL2/RF-Power-Meter-V1/HEAD/RF_Wattmeter_Teensy41_PCB_V1/nextion_patched/ITEADLIB_Arduino_Nextion_patched/NexPicture.h -------------------------------------------------------------------------------- /RF_Wattmeter_Teensy41_PCB_V1/nextion_patched/ITEADLIB_Arduino_Nextion_patched/NexProgressBar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K7MDL2/RF-Power-Meter-V1/HEAD/RF_Wattmeter_Teensy41_PCB_V1/nextion_patched/ITEADLIB_Arduino_Nextion_patched/NexProgressBar.h -------------------------------------------------------------------------------- /RF_Wattmeter_Teensy41_PCB_V1/nextion_patched/ITEADLIB_Arduino_Nextion_patched/NexRadio.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K7MDL2/RF-Power-Meter-V1/HEAD/RF_Wattmeter_Teensy41_PCB_V1/nextion_patched/ITEADLIB_Arduino_Nextion_patched/NexRadio.cpp -------------------------------------------------------------------------------- /RF_Wattmeter_Teensy41_PCB_V1/nextion_patched/ITEADLIB_Arduino_Nextion_patched/NexRadio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K7MDL2/RF-Power-Meter-V1/HEAD/RF_Wattmeter_Teensy41_PCB_V1/nextion_patched/ITEADLIB_Arduino_Nextion_patched/NexRadio.h -------------------------------------------------------------------------------- /RF_Wattmeter_Teensy41_PCB_V1/nextion_patched/ITEADLIB_Arduino_Nextion_patched/NexRtc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K7MDL2/RF-Power-Meter-V1/HEAD/RF_Wattmeter_Teensy41_PCB_V1/nextion_patched/ITEADLIB_Arduino_Nextion_patched/NexRtc.cpp -------------------------------------------------------------------------------- /RF_Wattmeter_Teensy41_PCB_V1/nextion_patched/ITEADLIB_Arduino_Nextion_patched/NexRtc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K7MDL2/RF-Power-Meter-V1/HEAD/RF_Wattmeter_Teensy41_PCB_V1/nextion_patched/ITEADLIB_Arduino_Nextion_patched/NexRtc.h -------------------------------------------------------------------------------- /RF_Wattmeter_Teensy41_PCB_V1/nextion_patched/ITEADLIB_Arduino_Nextion_patched/NexScrolltext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K7MDL2/RF-Power-Meter-V1/HEAD/RF_Wattmeter_Teensy41_PCB_V1/nextion_patched/ITEADLIB_Arduino_Nextion_patched/NexScrolltext.h -------------------------------------------------------------------------------- /RF_Wattmeter_Teensy41_PCB_V1/nextion_patched/ITEADLIB_Arduino_Nextion_patched/NexSlider.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K7MDL2/RF-Power-Meter-V1/HEAD/RF_Wattmeter_Teensy41_PCB_V1/nextion_patched/ITEADLIB_Arduino_Nextion_patched/NexSlider.cpp -------------------------------------------------------------------------------- /RF_Wattmeter_Teensy41_PCB_V1/nextion_patched/ITEADLIB_Arduino_Nextion_patched/NexSlider.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K7MDL2/RF-Power-Meter-V1/HEAD/RF_Wattmeter_Teensy41_PCB_V1/nextion_patched/ITEADLIB_Arduino_Nextion_patched/NexSlider.h -------------------------------------------------------------------------------- /RF_Wattmeter_Teensy41_PCB_V1/nextion_patched/ITEADLIB_Arduino_Nextion_patched/NexText.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K7MDL2/RF-Power-Meter-V1/HEAD/RF_Wattmeter_Teensy41_PCB_V1/nextion_patched/ITEADLIB_Arduino_Nextion_patched/NexText.cpp -------------------------------------------------------------------------------- /RF_Wattmeter_Teensy41_PCB_V1/nextion_patched/ITEADLIB_Arduino_Nextion_patched/NexText.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K7MDL2/RF-Power-Meter-V1/HEAD/RF_Wattmeter_Teensy41_PCB_V1/nextion_patched/ITEADLIB_Arduino_Nextion_patched/NexText.h -------------------------------------------------------------------------------- /RF_Wattmeter_Teensy41_PCB_V1/nextion_patched/ITEADLIB_Arduino_Nextion_patched/NexTimer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K7MDL2/RF-Power-Meter-V1/HEAD/RF_Wattmeter_Teensy41_PCB_V1/nextion_patched/ITEADLIB_Arduino_Nextion_patched/NexTimer.cpp -------------------------------------------------------------------------------- /RF_Wattmeter_Teensy41_PCB_V1/nextion_patched/ITEADLIB_Arduino_Nextion_patched/NexTimer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K7MDL2/RF-Power-Meter-V1/HEAD/RF_Wattmeter_Teensy41_PCB_V1/nextion_patched/ITEADLIB_Arduino_Nextion_patched/NexTimer.h -------------------------------------------------------------------------------- /RF_Wattmeter_Teensy41_PCB_V1/nextion_patched/ITEADLIB_Arduino_Nextion_patched/NexTouch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K7MDL2/RF-Power-Meter-V1/HEAD/RF_Wattmeter_Teensy41_PCB_V1/nextion_patched/ITEADLIB_Arduino_Nextion_patched/NexTouch.cpp -------------------------------------------------------------------------------- /RF_Wattmeter_Teensy41_PCB_V1/nextion_patched/ITEADLIB_Arduino_Nextion_patched/NexTouch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K7MDL2/RF-Power-Meter-V1/HEAD/RF_Wattmeter_Teensy41_PCB_V1/nextion_patched/ITEADLIB_Arduino_Nextion_patched/NexTouch.h -------------------------------------------------------------------------------- /RF_Wattmeter_Teensy41_PCB_V1/nextion_patched/ITEADLIB_Arduino_Nextion_patched/NexUpload.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K7MDL2/RF-Power-Meter-V1/HEAD/RF_Wattmeter_Teensy41_PCB_V1/nextion_patched/ITEADLIB_Arduino_Nextion_patched/NexUpload.cpp -------------------------------------------------------------------------------- /RF_Wattmeter_Teensy41_PCB_V1/nextion_patched/ITEADLIB_Arduino_Nextion_patched/NexUpload.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K7MDL2/RF-Power-Meter-V1/HEAD/RF_Wattmeter_Teensy41_PCB_V1/nextion_patched/ITEADLIB_Arduino_Nextion_patched/NexUpload.h -------------------------------------------------------------------------------- /RF_Wattmeter_Teensy41_PCB_V1/nextion_patched/ITEADLIB_Arduino_Nextion_patched/NexVariable.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K7MDL2/RF-Power-Meter-V1/HEAD/RF_Wattmeter_Teensy41_PCB_V1/nextion_patched/ITEADLIB_Arduino_Nextion_patched/NexVariable.cpp -------------------------------------------------------------------------------- /RF_Wattmeter_Teensy41_PCB_V1/nextion_patched/ITEADLIB_Arduino_Nextion_patched/NexVariable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K7MDL2/RF-Power-Meter-V1/HEAD/RF_Wattmeter_Teensy41_PCB_V1/nextion_patched/ITEADLIB_Arduino_Nextion_patched/NexVariable.h -------------------------------------------------------------------------------- /RF_Wattmeter_Teensy41_PCB_V1/nextion_patched/ITEADLIB_Arduino_Nextion_patched/NexWaveform.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K7MDL2/RF-Power-Meter-V1/HEAD/RF_Wattmeter_Teensy41_PCB_V1/nextion_patched/ITEADLIB_Arduino_Nextion_patched/NexWaveform.cpp -------------------------------------------------------------------------------- /RF_Wattmeter_Teensy41_PCB_V1/nextion_patched/ITEADLIB_Arduino_Nextion_patched/NexWaveform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K7MDL2/RF-Power-Meter-V1/HEAD/RF_Wattmeter_Teensy41_PCB_V1/nextion_patched/ITEADLIB_Arduino_Nextion_patched/NexWaveform.h -------------------------------------------------------------------------------- /RF_Wattmeter_Teensy41_PCB_V1/nextion_patched/ITEADLIB_Arduino_Nextion_patched/Nextion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K7MDL2/RF-Power-Meter-V1/HEAD/RF_Wattmeter_Teensy41_PCB_V1/nextion_patched/ITEADLIB_Arduino_Nextion_patched/Nextion.h -------------------------------------------------------------------------------- /RF_Wattmeter_Teensy41_PCB_V1/nextion_patched/ITEADLIB_Arduino_Nextion_patched/doc/Documentation/_nex_button_8cpp__incl.md5: -------------------------------------------------------------------------------- 1 | 68fbe2ac8c00174debc341792ccb83f9 -------------------------------------------------------------------------------- /RF_Wattmeter_Teensy41_PCB_V1/nextion_patched/ITEADLIB_Arduino_Nextion_patched/doc/Documentation/_nex_button_8h__dep__incl.md5: -------------------------------------------------------------------------------- 1 | 4a85df539a1d19ddaa422cdade94ae56 -------------------------------------------------------------------------------- /RF_Wattmeter_Teensy41_PCB_V1/nextion_patched/ITEADLIB_Arduino_Nextion_patched/doc/Documentation/_nex_button_8h__incl.md5: -------------------------------------------------------------------------------- 1 | e92c368e36d3eb3ad2a812a0a2e753ec -------------------------------------------------------------------------------- /RF_Wattmeter_Teensy41_PCB_V1/nextion_patched/ITEADLIB_Arduino_Nextion_patched/doc/Documentation/_nex_checkbox_8cpp__incl.md5: -------------------------------------------------------------------------------- 1 | ddb4e8097a6c6bb3c64d1cfaf1060ae8 -------------------------------------------------------------------------------- /RF_Wattmeter_Teensy41_PCB_V1/nextion_patched/ITEADLIB_Arduino_Nextion_patched/doc/Documentation/_nex_checkbox_8h__dep__incl.md5: -------------------------------------------------------------------------------- 1 | 0fac01178c8aa0891c549d5523037075 -------------------------------------------------------------------------------- /RF_Wattmeter_Teensy41_PCB_V1/nextion_patched/ITEADLIB_Arduino_Nextion_patched/doc/Documentation/_nex_checkbox_8h__incl.md5: -------------------------------------------------------------------------------- 1 | 59130d9f175fc8bd281df18986305a35 -------------------------------------------------------------------------------- /RF_Wattmeter_Teensy41_PCB_V1/nextion_patched/ITEADLIB_Arduino_Nextion_patched/doc/Documentation/_nex_config_8h__dep__incl.md5: -------------------------------------------------------------------------------- 1 | dfc262752b573ac6b6dfbf0eb2fe3397 -------------------------------------------------------------------------------- /RF_Wattmeter_Teensy41_PCB_V1/nextion_patched/ITEADLIB_Arduino_Nextion_patched/doc/Documentation/_nex_crop_8cpp__incl.md5: -------------------------------------------------------------------------------- 1 | 92dc338994e30e7c59a38fcee00de82f -------------------------------------------------------------------------------- /RF_Wattmeter_Teensy41_PCB_V1/nextion_patched/ITEADLIB_Arduino_Nextion_patched/doc/Documentation/_nex_crop_8h__dep__incl.md5: -------------------------------------------------------------------------------- 1 | 010097edaecf5398a940aec276640f0e -------------------------------------------------------------------------------- /RF_Wattmeter_Teensy41_PCB_V1/nextion_patched/ITEADLIB_Arduino_Nextion_patched/doc/Documentation/_nex_crop_8h__incl.md5: -------------------------------------------------------------------------------- 1 | 474f0f546e1d6f1f869f75096df6a1c1 -------------------------------------------------------------------------------- /RF_Wattmeter_Teensy41_PCB_V1/nextion_patched/ITEADLIB_Arduino_Nextion_patched/doc/Documentation/_nex_dual_state_button_8cpp__incl.md5: -------------------------------------------------------------------------------- 1 | cbdfc08ceb9e7457c448b63d9f7bc40f -------------------------------------------------------------------------------- /RF_Wattmeter_Teensy41_PCB_V1/nextion_patched/ITEADLIB_Arduino_Nextion_patched/doc/Documentation/_nex_dual_state_button_8h__dep__incl.md5: -------------------------------------------------------------------------------- 1 | a61354633ab957f7a9c0f2755df92c2a -------------------------------------------------------------------------------- /RF_Wattmeter_Teensy41_PCB_V1/nextion_patched/ITEADLIB_Arduino_Nextion_patched/doc/Documentation/_nex_dual_state_button_8h__incl.md5: -------------------------------------------------------------------------------- 1 | aa2e138fae81b8608b8eb71708a658a5 -------------------------------------------------------------------------------- /RF_Wattmeter_Teensy41_PCB_V1/nextion_patched/ITEADLIB_Arduino_Nextion_patched/doc/Documentation/_nex_gauge_8cpp__incl.md5: -------------------------------------------------------------------------------- 1 | cf65eb9046657613583090b80b117113 -------------------------------------------------------------------------------- /RF_Wattmeter_Teensy41_PCB_V1/nextion_patched/ITEADLIB_Arduino_Nextion_patched/doc/Documentation/_nex_gauge_8h__dep__incl.md5: -------------------------------------------------------------------------------- 1 | 6c30d86ca638f92b052cdf1dfb9c4799 -------------------------------------------------------------------------------- /RF_Wattmeter_Teensy41_PCB_V1/nextion_patched/ITEADLIB_Arduino_Nextion_patched/doc/Documentation/_nex_gauge_8h__incl.md5: -------------------------------------------------------------------------------- 1 | 6906a078275f266f4e7afd51b40ae120 -------------------------------------------------------------------------------- /RF_Wattmeter_Teensy41_PCB_V1/nextion_patched/ITEADLIB_Arduino_Nextion_patched/doc/Documentation/_nex_hardware_8cpp__incl.md5: -------------------------------------------------------------------------------- 1 | c8f0437e4aba0d7c9c9ae6bfc7481f47 -------------------------------------------------------------------------------- /RF_Wattmeter_Teensy41_PCB_V1/nextion_patched/ITEADLIB_Arduino_Nextion_patched/doc/Documentation/_nex_hardware_8h__dep__incl.md5: -------------------------------------------------------------------------------- 1 | 08c96aab97e8bd7a213b6bb68da8eab7 -------------------------------------------------------------------------------- /RF_Wattmeter_Teensy41_PCB_V1/nextion_patched/ITEADLIB_Arduino_Nextion_patched/doc/Documentation/_nex_hardware_8h__incl.md5: -------------------------------------------------------------------------------- 1 | e1c95b022acaca85b9fe7c4c625d0bb8 -------------------------------------------------------------------------------- /RF_Wattmeter_Teensy41_PCB_V1/nextion_patched/ITEADLIB_Arduino_Nextion_patched/doc/Documentation/_nex_hotspot_8cpp__incl.md5: -------------------------------------------------------------------------------- 1 | 66f185422163e48b0fd01dacf99b0a3d -------------------------------------------------------------------------------- /RF_Wattmeter_Teensy41_PCB_V1/nextion_patched/ITEADLIB_Arduino_Nextion_patched/doc/Documentation/_nex_hotspot_8h__dep__incl.md5: -------------------------------------------------------------------------------- 1 | e9ec1e23b18c04360591631f6331df7e -------------------------------------------------------------------------------- /RF_Wattmeter_Teensy41_PCB_V1/nextion_patched/ITEADLIB_Arduino_Nextion_patched/doc/Documentation/_nex_hotspot_8h__incl.md5: -------------------------------------------------------------------------------- 1 | 047f7c3231ffe2cea4a8ea50a2831925 -------------------------------------------------------------------------------- /RF_Wattmeter_Teensy41_PCB_V1/nextion_patched/ITEADLIB_Arduino_Nextion_patched/doc/Documentation/_nex_number_8cpp__incl.md5: -------------------------------------------------------------------------------- 1 | 71e92ebbc2c0a3a0307da94a18bdaec2 -------------------------------------------------------------------------------- /RF_Wattmeter_Teensy41_PCB_V1/nextion_patched/ITEADLIB_Arduino_Nextion_patched/doc/Documentation/_nex_number_8h__dep__incl.md5: -------------------------------------------------------------------------------- 1 | f97587a294f58f6e088825c86110223c -------------------------------------------------------------------------------- /RF_Wattmeter_Teensy41_PCB_V1/nextion_patched/ITEADLIB_Arduino_Nextion_patched/doc/Documentation/_nex_number_8h__incl.md5: -------------------------------------------------------------------------------- 1 | d79b0abab9facd0c2fbed630d5bfed57 -------------------------------------------------------------------------------- /RF_Wattmeter_Teensy41_PCB_V1/nextion_patched/ITEADLIB_Arduino_Nextion_patched/doc/Documentation/_nex_object_8cpp__incl.md5: -------------------------------------------------------------------------------- 1 | 166582a9d9fec4437e7bbeef431de3fa -------------------------------------------------------------------------------- /RF_Wattmeter_Teensy41_PCB_V1/nextion_patched/ITEADLIB_Arduino_Nextion_patched/doc/Documentation/_nex_object_8h__dep__incl.md5: -------------------------------------------------------------------------------- 1 | 29db853f4b4d858600dae4a2d1405e13 -------------------------------------------------------------------------------- /RF_Wattmeter_Teensy41_PCB_V1/nextion_patched/ITEADLIB_Arduino_Nextion_patched/doc/Documentation/_nex_object_8h__incl.md5: -------------------------------------------------------------------------------- 1 | d52c20a140672d5c1745bfc19910b453 -------------------------------------------------------------------------------- /RF_Wattmeter_Teensy41_PCB_V1/nextion_patched/ITEADLIB_Arduino_Nextion_patched/doc/Documentation/_nex_page_8cpp__incl.md5: -------------------------------------------------------------------------------- 1 | df0a1bc1497e377b919cc21cb0fab83a -------------------------------------------------------------------------------- /RF_Wattmeter_Teensy41_PCB_V1/nextion_patched/ITEADLIB_Arduino_Nextion_patched/doc/Documentation/_nex_page_8h__dep__incl.md5: -------------------------------------------------------------------------------- 1 | c201db3286260547756a8ae56277738f -------------------------------------------------------------------------------- /RF_Wattmeter_Teensy41_PCB_V1/nextion_patched/ITEADLIB_Arduino_Nextion_patched/doc/Documentation/_nex_page_8h__incl.md5: -------------------------------------------------------------------------------- 1 | bc133fe7b6908b44980f3ee9bb223727 -------------------------------------------------------------------------------- /RF_Wattmeter_Teensy41_PCB_V1/nextion_patched/ITEADLIB_Arduino_Nextion_patched/doc/Documentation/_nex_picture_8cpp__incl.md5: -------------------------------------------------------------------------------- 1 | 8445d57ce56a98a45dea05c88e34021e -------------------------------------------------------------------------------- /RF_Wattmeter_Teensy41_PCB_V1/nextion_patched/ITEADLIB_Arduino_Nextion_patched/doc/Documentation/_nex_picture_8h__dep__incl.md5: -------------------------------------------------------------------------------- 1 | a01b6aadda027bacbbc49ed3122d51b4 -------------------------------------------------------------------------------- /RF_Wattmeter_Teensy41_PCB_V1/nextion_patched/ITEADLIB_Arduino_Nextion_patched/doc/Documentation/_nex_picture_8h__incl.md5: -------------------------------------------------------------------------------- 1 | ffa0571dc44d58095fc80558f182ecd7 -------------------------------------------------------------------------------- /RF_Wattmeter_Teensy41_PCB_V1/nextion_patched/ITEADLIB_Arduino_Nextion_patched/doc/Documentation/_nex_progress_bar_8cpp__incl.md5: -------------------------------------------------------------------------------- 1 | e3d93bc4d9ae375c219a88ebd7f3cf4d -------------------------------------------------------------------------------- /RF_Wattmeter_Teensy41_PCB_V1/nextion_patched/ITEADLIB_Arduino_Nextion_patched/doc/Documentation/_nex_progress_bar_8h__dep__incl.md5: -------------------------------------------------------------------------------- 1 | 7694e05cc1f25e76d7b8825051f0eca6 -------------------------------------------------------------------------------- /RF_Wattmeter_Teensy41_PCB_V1/nextion_patched/ITEADLIB_Arduino_Nextion_patched/doc/Documentation/_nex_progress_bar_8h__incl.md5: -------------------------------------------------------------------------------- 1 | b05e73eba5805ad399a22e5acf4c191e -------------------------------------------------------------------------------- /RF_Wattmeter_Teensy41_PCB_V1/nextion_patched/ITEADLIB_Arduino_Nextion_patched/doc/Documentation/_nex_radio_8cpp__incl.md5: -------------------------------------------------------------------------------- 1 | 6b8b52184a8ca557645d830ef11e8ec4 -------------------------------------------------------------------------------- /RF_Wattmeter_Teensy41_PCB_V1/nextion_patched/ITEADLIB_Arduino_Nextion_patched/doc/Documentation/_nex_radio_8h__dep__incl.md5: -------------------------------------------------------------------------------- 1 | bd891573c77107c081324dfeb792ea0d -------------------------------------------------------------------------------- /RF_Wattmeter_Teensy41_PCB_V1/nextion_patched/ITEADLIB_Arduino_Nextion_patched/doc/Documentation/_nex_radio_8h__incl.md5: -------------------------------------------------------------------------------- 1 | 34e1a7eb65ac4d4f76e4c77d8002ace3 -------------------------------------------------------------------------------- /RF_Wattmeter_Teensy41_PCB_V1/nextion_patched/ITEADLIB_Arduino_Nextion_patched/doc/Documentation/_nex_scrolltext_8cpp__incl.md5: -------------------------------------------------------------------------------- 1 | 7cc5d55ebd7df686be73bffb36289be3 -------------------------------------------------------------------------------- /RF_Wattmeter_Teensy41_PCB_V1/nextion_patched/ITEADLIB_Arduino_Nextion_patched/doc/Documentation/_nex_scrolltext_8h__dep__incl.md5: -------------------------------------------------------------------------------- 1 | 3e4ab62ebf80a9d8877ea22683a2f70c -------------------------------------------------------------------------------- /RF_Wattmeter_Teensy41_PCB_V1/nextion_patched/ITEADLIB_Arduino_Nextion_patched/doc/Documentation/_nex_scrolltext_8h__incl.md5: -------------------------------------------------------------------------------- 1 | 51efc230a6b1be5970190292a9629cfe -------------------------------------------------------------------------------- /RF_Wattmeter_Teensy41_PCB_V1/nextion_patched/ITEADLIB_Arduino_Nextion_patched/doc/Documentation/_nex_slider_8cpp__incl.md5: -------------------------------------------------------------------------------- 1 | f1650662fdbf619c701be1dc784d818c -------------------------------------------------------------------------------- /RF_Wattmeter_Teensy41_PCB_V1/nextion_patched/ITEADLIB_Arduino_Nextion_patched/doc/Documentation/_nex_slider_8h__dep__incl.md5: -------------------------------------------------------------------------------- 1 | b5811332f221cac68a0193d6ff5a05b6 -------------------------------------------------------------------------------- /RF_Wattmeter_Teensy41_PCB_V1/nextion_patched/ITEADLIB_Arduino_Nextion_patched/doc/Documentation/_nex_slider_8h__incl.md5: -------------------------------------------------------------------------------- 1 | 710caa42431bd341a60b5f1e9d51b748 -------------------------------------------------------------------------------- /RF_Wattmeter_Teensy41_PCB_V1/nextion_patched/ITEADLIB_Arduino_Nextion_patched/doc/Documentation/_nex_text_8cpp__incl.md5: -------------------------------------------------------------------------------- 1 | 73add292e60b1c38c9fbc26abe67bb79 -------------------------------------------------------------------------------- /RF_Wattmeter_Teensy41_PCB_V1/nextion_patched/ITEADLIB_Arduino_Nextion_patched/doc/Documentation/_nex_text_8h__dep__incl.md5: -------------------------------------------------------------------------------- 1 | b40637a58d5cad02533d6317ca1e420c -------------------------------------------------------------------------------- /RF_Wattmeter_Teensy41_PCB_V1/nextion_patched/ITEADLIB_Arduino_Nextion_patched/doc/Documentation/_nex_text_8h__incl.md5: -------------------------------------------------------------------------------- 1 | ba407b10ea1c5699771c718ff381abdd -------------------------------------------------------------------------------- /RF_Wattmeter_Teensy41_PCB_V1/nextion_patched/ITEADLIB_Arduino_Nextion_patched/doc/Documentation/_nex_timer_8cpp__incl.md5: -------------------------------------------------------------------------------- 1 | 919b506a53432dd3362a91697d1c3056 -------------------------------------------------------------------------------- /RF_Wattmeter_Teensy41_PCB_V1/nextion_patched/ITEADLIB_Arduino_Nextion_patched/doc/Documentation/_nex_timer_8h__dep__incl.md5: -------------------------------------------------------------------------------- 1 | 5beadece124fd040a335f0f36ede2a36 -------------------------------------------------------------------------------- /RF_Wattmeter_Teensy41_PCB_V1/nextion_patched/ITEADLIB_Arduino_Nextion_patched/doc/Documentation/_nex_timer_8h__incl.md5: -------------------------------------------------------------------------------- 1 | 604fd9fa67d47487c6372d69c5ef37ea -------------------------------------------------------------------------------- /RF_Wattmeter_Teensy41_PCB_V1/nextion_patched/ITEADLIB_Arduino_Nextion_patched/doc/Documentation/_nex_touch_8cpp__incl.md5: -------------------------------------------------------------------------------- 1 | 16eff07b89617315119c753273cb105b -------------------------------------------------------------------------------- /RF_Wattmeter_Teensy41_PCB_V1/nextion_patched/ITEADLIB_Arduino_Nextion_patched/doc/Documentation/_nex_touch_8h__dep__incl.md5: -------------------------------------------------------------------------------- 1 | 5a677211c7861c67c051c428d2f388ec -------------------------------------------------------------------------------- /RF_Wattmeter_Teensy41_PCB_V1/nextion_patched/ITEADLIB_Arduino_Nextion_patched/doc/Documentation/_nex_touch_8h__incl.md5: -------------------------------------------------------------------------------- 1 | 6d333bf12f1fd3bc79c9bdeb5dfcb65a -------------------------------------------------------------------------------- /RF_Wattmeter_Teensy41_PCB_V1/nextion_patched/ITEADLIB_Arduino_Nextion_patched/doc/Documentation/_nex_upload_8cpp__incl.md5: -------------------------------------------------------------------------------- 1 | 3b0dc15aef0bb64cc30ad8da3263fd84 -------------------------------------------------------------------------------- /RF_Wattmeter_Teensy41_PCB_V1/nextion_patched/ITEADLIB_Arduino_Nextion_patched/doc/Documentation/_nex_upload_8h__dep__incl.md5: -------------------------------------------------------------------------------- 1 | db83a19f69fed1d6cbc6d48dad451007 -------------------------------------------------------------------------------- /RF_Wattmeter_Teensy41_PCB_V1/nextion_patched/ITEADLIB_Arduino_Nextion_patched/doc/Documentation/_nex_upload_8h__incl.md5: -------------------------------------------------------------------------------- 1 | a3d99ec49977f4b7ff538e89a157b988 -------------------------------------------------------------------------------- /RF_Wattmeter_Teensy41_PCB_V1/nextion_patched/ITEADLIB_Arduino_Nextion_patched/doc/Documentation/_nex_variable_8cpp__incl.md5: -------------------------------------------------------------------------------- 1 | e5f9422a975e7783f165cb320706834a -------------------------------------------------------------------------------- /RF_Wattmeter_Teensy41_PCB_V1/nextion_patched/ITEADLIB_Arduino_Nextion_patched/doc/Documentation/_nex_waveform_8cpp__incl.md5: -------------------------------------------------------------------------------- 1 | 9df1728b53a4a39a830f42587be96d55 -------------------------------------------------------------------------------- /RF_Wattmeter_Teensy41_PCB_V1/nextion_patched/ITEADLIB_Arduino_Nextion_patched/doc/Documentation/_nex_waveform_8h__dep__incl.md5: -------------------------------------------------------------------------------- 1 | fa97c630cd3cfd9d898973c575c507b3 -------------------------------------------------------------------------------- /RF_Wattmeter_Teensy41_PCB_V1/nextion_patched/ITEADLIB_Arduino_Nextion_patched/doc/Documentation/_nex_waveform_8h__incl.md5: -------------------------------------------------------------------------------- 1 | afc74ec3941f099a5cece08f63c00428 -------------------------------------------------------------------------------- /RF_Wattmeter_Teensy41_PCB_V1/nextion_patched/ITEADLIB_Arduino_Nextion_patched/doc/Documentation/_nextion_8h__dep__incl.md5: -------------------------------------------------------------------------------- 1 | 579d88d74557b2e0b8bb4be1d7593eda -------------------------------------------------------------------------------- /RF_Wattmeter_Teensy41_PCB_V1/nextion_patched/ITEADLIB_Arduino_Nextion_patched/doc/Documentation/_nextion_8h__incl.md5: -------------------------------------------------------------------------------- 1 | 0937c696607a866e3475eb52f292c09c -------------------------------------------------------------------------------- /RF_Wattmeter_Teensy41_PCB_V1/nextion_patched/ITEADLIB_Arduino_Nextion_patched/doc/Documentation/class_nex_button__coll__graph.md5: -------------------------------------------------------------------------------- 1 | 343a6a50f6e02abd56981060a9350f06 -------------------------------------------------------------------------------- /RF_Wattmeter_Teensy41_PCB_V1/nextion_patched/ITEADLIB_Arduino_Nextion_patched/doc/Documentation/class_nex_button__inherit__graph.md5: -------------------------------------------------------------------------------- 1 | 343a6a50f6e02abd56981060a9350f06 -------------------------------------------------------------------------------- /RF_Wattmeter_Teensy41_PCB_V1/nextion_patched/ITEADLIB_Arduino_Nextion_patched/doc/Documentation/class_nex_checkbox__coll__graph.md5: -------------------------------------------------------------------------------- 1 | 68902295d204a93f0e708ae72fd9ec88 -------------------------------------------------------------------------------- /RF_Wattmeter_Teensy41_PCB_V1/nextion_patched/ITEADLIB_Arduino_Nextion_patched/doc/Documentation/class_nex_checkbox__inherit__graph.md5: -------------------------------------------------------------------------------- 1 | 68902295d204a93f0e708ae72fd9ec88 -------------------------------------------------------------------------------- /RF_Wattmeter_Teensy41_PCB_V1/nextion_patched/ITEADLIB_Arduino_Nextion_patched/doc/Documentation/class_nex_crop__coll__graph.md5: -------------------------------------------------------------------------------- 1 | 75b35d89389c80d289269936009f040a -------------------------------------------------------------------------------- /RF_Wattmeter_Teensy41_PCB_V1/nextion_patched/ITEADLIB_Arduino_Nextion_patched/doc/Documentation/class_nex_crop__inherit__graph.md5: -------------------------------------------------------------------------------- 1 | 75b35d89389c80d289269936009f040a -------------------------------------------------------------------------------- /RF_Wattmeter_Teensy41_PCB_V1/nextion_patched/ITEADLIB_Arduino_Nextion_patched/doc/Documentation/class_nex_d_s_button__coll__graph.md5: -------------------------------------------------------------------------------- 1 | fa0caf14172f4df14e1321e0802eee78 -------------------------------------------------------------------------------- /RF_Wattmeter_Teensy41_PCB_V1/nextion_patched/ITEADLIB_Arduino_Nextion_patched/doc/Documentation/class_nex_d_s_button__inherit__graph.md5: -------------------------------------------------------------------------------- 1 | fa0caf14172f4df14e1321e0802eee78 -------------------------------------------------------------------------------- /RF_Wattmeter_Teensy41_PCB_V1/nextion_patched/ITEADLIB_Arduino_Nextion_patched/doc/Documentation/class_nex_gauge__coll__graph.md5: -------------------------------------------------------------------------------- 1 | 898df2c6442d1259c612a0df253ec77e -------------------------------------------------------------------------------- /RF_Wattmeter_Teensy41_PCB_V1/nextion_patched/ITEADLIB_Arduino_Nextion_patched/doc/Documentation/class_nex_gauge__inherit__graph.md5: -------------------------------------------------------------------------------- 1 | 898df2c6442d1259c612a0df253ec77e -------------------------------------------------------------------------------- /RF_Wattmeter_Teensy41_PCB_V1/nextion_patched/ITEADLIB_Arduino_Nextion_patched/doc/Documentation/class_nex_hotspot__coll__graph.md5: -------------------------------------------------------------------------------- 1 | b57e5e4a579b8cf9f972090ce8b8ffa5 -------------------------------------------------------------------------------- /RF_Wattmeter_Teensy41_PCB_V1/nextion_patched/ITEADLIB_Arduino_Nextion_patched/doc/Documentation/class_nex_hotspot__inherit__graph.md5: -------------------------------------------------------------------------------- 1 | b57e5e4a579b8cf9f972090ce8b8ffa5 -------------------------------------------------------------------------------- /RF_Wattmeter_Teensy41_PCB_V1/nextion_patched/ITEADLIB_Arduino_Nextion_patched/doc/Documentation/class_nex_number__coll__graph.md5: -------------------------------------------------------------------------------- 1 | 977adf943b6bd0060483bf0ce0dbe0f7 -------------------------------------------------------------------------------- /RF_Wattmeter_Teensy41_PCB_V1/nextion_patched/ITEADLIB_Arduino_Nextion_patched/doc/Documentation/class_nex_number__inherit__graph.md5: -------------------------------------------------------------------------------- 1 | 977adf943b6bd0060483bf0ce0dbe0f7 -------------------------------------------------------------------------------- /RF_Wattmeter_Teensy41_PCB_V1/nextion_patched/ITEADLIB_Arduino_Nextion_patched/doc/Documentation/class_nex_object__inherit__graph.md5: -------------------------------------------------------------------------------- 1 | 69a644fbcf218c346a08ff3bb1ea9886 -------------------------------------------------------------------------------- /RF_Wattmeter_Teensy41_PCB_V1/nextion_patched/ITEADLIB_Arduino_Nextion_patched/doc/Documentation/class_nex_page__coll__graph.md5: -------------------------------------------------------------------------------- 1 | 22387999f35bb8c23ad58edb4f30d255 -------------------------------------------------------------------------------- /RF_Wattmeter_Teensy41_PCB_V1/nextion_patched/ITEADLIB_Arduino_Nextion_patched/doc/Documentation/class_nex_page__inherit__graph.md5: -------------------------------------------------------------------------------- 1 | 22387999f35bb8c23ad58edb4f30d255 -------------------------------------------------------------------------------- /RF_Wattmeter_Teensy41_PCB_V1/nextion_patched/ITEADLIB_Arduino_Nextion_patched/doc/Documentation/class_nex_picture__coll__graph.md5: -------------------------------------------------------------------------------- 1 | 191838f04e925dc9fc2038b013d121df -------------------------------------------------------------------------------- /RF_Wattmeter_Teensy41_PCB_V1/nextion_patched/ITEADLIB_Arduino_Nextion_patched/doc/Documentation/class_nex_picture__inherit__graph.md5: -------------------------------------------------------------------------------- 1 | 191838f04e925dc9fc2038b013d121df -------------------------------------------------------------------------------- /RF_Wattmeter_Teensy41_PCB_V1/nextion_patched/ITEADLIB_Arduino_Nextion_patched/doc/Documentation/class_nex_progress_bar__coll__graph.md5: -------------------------------------------------------------------------------- 1 | 261d6038cc88df091e7f437d61a1f924 -------------------------------------------------------------------------------- /RF_Wattmeter_Teensy41_PCB_V1/nextion_patched/ITEADLIB_Arduino_Nextion_patched/doc/Documentation/class_nex_progress_bar__inherit__graph.md5: -------------------------------------------------------------------------------- 1 | 261d6038cc88df091e7f437d61a1f924 -------------------------------------------------------------------------------- /RF_Wattmeter_Teensy41_PCB_V1/nextion_patched/ITEADLIB_Arduino_Nextion_patched/doc/Documentation/class_nex_radio__coll__graph.md5: -------------------------------------------------------------------------------- 1 | df6741df1bb42b40355b76bd8b132059 -------------------------------------------------------------------------------- /RF_Wattmeter_Teensy41_PCB_V1/nextion_patched/ITEADLIB_Arduino_Nextion_patched/doc/Documentation/class_nex_radio__inherit__graph.md5: -------------------------------------------------------------------------------- 1 | df6741df1bb42b40355b76bd8b132059 -------------------------------------------------------------------------------- /RF_Wattmeter_Teensy41_PCB_V1/nextion_patched/ITEADLIB_Arduino_Nextion_patched/doc/Documentation/class_nex_scrolltext__coll__graph.md5: -------------------------------------------------------------------------------- 1 | 18fd83ad16a1a73e7d6d3984a049953e -------------------------------------------------------------------------------- /RF_Wattmeter_Teensy41_PCB_V1/nextion_patched/ITEADLIB_Arduino_Nextion_patched/doc/Documentation/class_nex_scrolltext__inherit__graph.md5: -------------------------------------------------------------------------------- 1 | 18fd83ad16a1a73e7d6d3984a049953e -------------------------------------------------------------------------------- /RF_Wattmeter_Teensy41_PCB_V1/nextion_patched/ITEADLIB_Arduino_Nextion_patched/doc/Documentation/class_nex_slider__coll__graph.md5: -------------------------------------------------------------------------------- 1 | 482c65d5715d70793ea86330ed7ec6e3 -------------------------------------------------------------------------------- /RF_Wattmeter_Teensy41_PCB_V1/nextion_patched/ITEADLIB_Arduino_Nextion_patched/doc/Documentation/class_nex_slider__inherit__graph.md5: -------------------------------------------------------------------------------- 1 | 482c65d5715d70793ea86330ed7ec6e3 -------------------------------------------------------------------------------- /RF_Wattmeter_Teensy41_PCB_V1/nextion_patched/ITEADLIB_Arduino_Nextion_patched/doc/Documentation/class_nex_text__coll__graph.md5: -------------------------------------------------------------------------------- 1 | 1a7bf2ce07c4fd2bc05b18ebf25bef33 -------------------------------------------------------------------------------- /RF_Wattmeter_Teensy41_PCB_V1/nextion_patched/ITEADLIB_Arduino_Nextion_patched/doc/Documentation/class_nex_text__inherit__graph.md5: -------------------------------------------------------------------------------- 1 | 1a7bf2ce07c4fd2bc05b18ebf25bef33 -------------------------------------------------------------------------------- /RF_Wattmeter_Teensy41_PCB_V1/nextion_patched/ITEADLIB_Arduino_Nextion_patched/doc/Documentation/class_nex_timer__coll__graph.md5: -------------------------------------------------------------------------------- 1 | f5decd2d2e5d0650e37762d594710986 -------------------------------------------------------------------------------- /RF_Wattmeter_Teensy41_PCB_V1/nextion_patched/ITEADLIB_Arduino_Nextion_patched/doc/Documentation/class_nex_timer__inherit__graph.md5: -------------------------------------------------------------------------------- 1 | f5decd2d2e5d0650e37762d594710986 -------------------------------------------------------------------------------- /RF_Wattmeter_Teensy41_PCB_V1/nextion_patched/ITEADLIB_Arduino_Nextion_patched/doc/Documentation/class_nex_timer_a365d08df4623ce8a146e73ff9204d5cb_cgraph.md5: -------------------------------------------------------------------------------- 1 | 616b816885456089c8c8acb5917781e7 -------------------------------------------------------------------------------- /RF_Wattmeter_Teensy41_PCB_V1/nextion_patched/ITEADLIB_Arduino_Nextion_patched/doc/Documentation/class_nex_timer_ae6f1ae95ef40b8bc6f482185b1ec5175_cgraph.md5: -------------------------------------------------------------------------------- 1 | a658574ca4186b2d38d4f4177359d125 -------------------------------------------------------------------------------- /RF_Wattmeter_Teensy41_PCB_V1/nextion_patched/ITEADLIB_Arduino_Nextion_patched/doc/Documentation/class_nex_touch__coll__graph.md5: -------------------------------------------------------------------------------- 1 | 118686a6eda64ec5546cca63610f97ca -------------------------------------------------------------------------------- /RF_Wattmeter_Teensy41_PCB_V1/nextion_patched/ITEADLIB_Arduino_Nextion_patched/doc/Documentation/class_nex_touch__inherit__graph.md5: -------------------------------------------------------------------------------- 1 | e8d28fccdc0bbd6a691b35e0cf1c3272 -------------------------------------------------------------------------------- /RF_Wattmeter_Teensy41_PCB_V1/nextion_patched/ITEADLIB_Arduino_Nextion_patched/doc/Documentation/class_nex_touch_a4da1c4fcdfadb7eabfb9ccaba9ecad11_icgraph.md5: -------------------------------------------------------------------------------- 1 | 575d8a86006ad0de17bed6d11e3ad852 -------------------------------------------------------------------------------- /RF_Wattmeter_Teensy41_PCB_V1/nextion_patched/ITEADLIB_Arduino_Nextion_patched/doc/Documentation/class_nex_touch_af656640c1078a553287a68bf792dd291_icgraph.md5: -------------------------------------------------------------------------------- 1 | ea53a04244a40273a9273f0080709bff -------------------------------------------------------------------------------- /RF_Wattmeter_Teensy41_PCB_V1/nextion_patched/ITEADLIB_Arduino_Nextion_patched/doc/Documentation/class_nex_upload_a017c25b02bc9a674ab5beb447a3511a0_icgraph.md5: -------------------------------------------------------------------------------- 1 | f774ac084cee0a6c218ac83315bd71a9 -------------------------------------------------------------------------------- /RF_Wattmeter_Teensy41_PCB_V1/nextion_patched/ITEADLIB_Arduino_Nextion_patched/doc/Documentation/class_nex_upload_a97d6aeee29cfdeb1ec4dcec8d5a58396_cgraph.md5: -------------------------------------------------------------------------------- 1 | 6be4177c5a4adbe6e6fcc59f6cf73e1b -------------------------------------------------------------------------------- /RF_Wattmeter_Teensy41_PCB_V1/nextion_patched/ITEADLIB_Arduino_Nextion_patched/doc/Documentation/class_nex_variable__coll__graph.md5: -------------------------------------------------------------------------------- 1 | ea02495ec2583ef381378c90d8dd0bd7 -------------------------------------------------------------------------------- /RF_Wattmeter_Teensy41_PCB_V1/nextion_patched/ITEADLIB_Arduino_Nextion_patched/doc/Documentation/class_nex_variable__inherit__graph.md5: -------------------------------------------------------------------------------- 1 | ea02495ec2583ef381378c90d8dd0bd7 -------------------------------------------------------------------------------- /RF_Wattmeter_Teensy41_PCB_V1/nextion_patched/ITEADLIB_Arduino_Nextion_patched/doc/Documentation/class_nex_waveform__coll__graph.md5: -------------------------------------------------------------------------------- 1 | beb698d8a0d4473b640d288a70bedd35 -------------------------------------------------------------------------------- /RF_Wattmeter_Teensy41_PCB_V1/nextion_patched/ITEADLIB_Arduino_Nextion_patched/doc/Documentation/class_nex_waveform__inherit__graph.md5: -------------------------------------------------------------------------------- 1 | beb698d8a0d4473b640d288a70bedd35 -------------------------------------------------------------------------------- /RF_Wattmeter_Teensy41_PCB_V1/nextion_patched/ITEADLIB_Arduino_Nextion_patched/doc/Documentation/dir_2af451c22587252d0014dbc596e2e19a_dep.md5: -------------------------------------------------------------------------------- 1 | 7aca4578f254131e436a3696254eb9e3 -------------------------------------------------------------------------------- /RF_Wattmeter_Teensy41_PCB_V1/nextion_patched/ITEADLIB_Arduino_Nextion_patched/doc/Documentation/dir_3a828b7214103d705cc83e20f29bdad9_dep.md5: -------------------------------------------------------------------------------- 1 | 22f53f03c64240f229aa10af935a7fbd -------------------------------------------------------------------------------- /RF_Wattmeter_Teensy41_PCB_V1/nextion_patched/ITEADLIB_Arduino_Nextion_patched/doc/Documentation/dir_472f54fb1d9b74971d8e15d62f212bd3_dep.md5: -------------------------------------------------------------------------------- 1 | 6b00f5c64b4f73750ff0dc3970d5c129 -------------------------------------------------------------------------------- /RF_Wattmeter_Teensy41_PCB_V1/nextion_patched/ITEADLIB_Arduino_Nextion_patched/doc/Documentation/dir_4b43661efaa18af91f213d2681ebd37e_dep.md5: -------------------------------------------------------------------------------- 1 | 750bde18179402f11246063a0f292b74 -------------------------------------------------------------------------------- /RF_Wattmeter_Teensy41_PCB_V1/nextion_patched/ITEADLIB_Arduino_Nextion_patched/doc/Documentation/dir_53835f0dfcb7abf9d97bc46682fab859_dep.md5: -------------------------------------------------------------------------------- 1 | 0a21b14c433ad93c92088e93e23e6374 -------------------------------------------------------------------------------- /RF_Wattmeter_Teensy41_PCB_V1/nextion_patched/ITEADLIB_Arduino_Nextion_patched/doc/Documentation/dir_58f5ecea2e2241e947c6d0b6b0a6574c_dep.md5: -------------------------------------------------------------------------------- 1 | 3976a4d66d19f5605d3d7b198b950641 -------------------------------------------------------------------------------- /RF_Wattmeter_Teensy41_PCB_V1/nextion_patched/ITEADLIB_Arduino_Nextion_patched/doc/Documentation/dir_7962cac16a99e8bbaaea18abede03fcb_dep.md5: -------------------------------------------------------------------------------- 1 | 5ed8a291d1430d676574d1e29d43a8b6 -------------------------------------------------------------------------------- /RF_Wattmeter_Teensy41_PCB_V1/nextion_patched/ITEADLIB_Arduino_Nextion_patched/doc/Documentation/dir_8dcbebf38b229bfa7bb34d68bf824093_dep.md5: -------------------------------------------------------------------------------- 1 | ca015543db1dd0ce10f24c5e32e4838d -------------------------------------------------------------------------------- /RF_Wattmeter_Teensy41_PCB_V1/nextion_patched/ITEADLIB_Arduino_Nextion_patched/doc/Documentation/dir_9bbf8342b0f9a157b7af08fe1412fc17_dep.md5: -------------------------------------------------------------------------------- 1 | df6dbd522ce7792d448df28246851bb1 -------------------------------------------------------------------------------- /RF_Wattmeter_Teensy41_PCB_V1/nextion_patched/ITEADLIB_Arduino_Nextion_patched/doc/Documentation/dir_a48692e2802a027399b146b680655303_dep.md5: -------------------------------------------------------------------------------- 1 | c781e206f4b6f42a683e814b20edcea6 -------------------------------------------------------------------------------- /RF_Wattmeter_Teensy41_PCB_V1/nextion_patched/ITEADLIB_Arduino_Nextion_patched/doc/Documentation/dir_c918e8bf3fc71f849978cdb0d900e61c_dep.md5: -------------------------------------------------------------------------------- 1 | a203389939f4517c3b53f9a65bf5957b -------------------------------------------------------------------------------- /RF_Wattmeter_Teensy41_PCB_V1/nextion_patched/ITEADLIB_Arduino_Nextion_patched/doc/Documentation/dir_ce36ac18ad3deaf5eae0bd2e09775a7d_dep.md5: -------------------------------------------------------------------------------- 1 | bfb11051cc7ff9d1548f9d0843e96599 -------------------------------------------------------------------------------- /RF_Wattmeter_Teensy41_PCB_V1/nextion_patched/ITEADLIB_Arduino_Nextion_patched/doc/Documentation/dir_d28a4824dc47e487b107a5db32ef43c4_dep.md5: -------------------------------------------------------------------------------- 1 | 3e43fb767812403d1c2a9b652b05e1b1 -------------------------------------------------------------------------------- /RF_Wattmeter_Teensy41_PCB_V1/nextion_patched/ITEADLIB_Arduino_Nextion_patched/doc/Documentation/dir_f3d39c87bc262720c50d5e3885667b8a_dep.md5: -------------------------------------------------------------------------------- 1 | ae8887d1ed67122595bc3fc25c655d0c -------------------------------------------------------------------------------- /RF_Wattmeter_Teensy41_PCB_V1/nextion_patched/ITEADLIB_Arduino_Nextion_patched/doc/Documentation/dir_f76977d9ffe8ddf3ad01f3d689aa5df4_dep.md5: -------------------------------------------------------------------------------- 1 | 00fdd8a9da24bbbe0c00a6281295e32f -------------------------------------------------------------------------------- /RF_Wattmeter_Teensy41_PCB_V1/nextion_patched/ITEADLIB_Arduino_Nextion_patched/doc/Documentation/graph_legend.md5: -------------------------------------------------------------------------------- 1 | 387ff8eb65306fa251338d3c9bd7bfff -------------------------------------------------------------------------------- /RF_Wattmeter_Teensy41_PCB_V1/nextion_patched/ITEADLIB_Arduino_Nextion_patched/doc/Documentation/group___core_a_p_i.md5: -------------------------------------------------------------------------------- 1 | 0aefea84544792a562ddf02ced431136 -------------------------------------------------------------------------------- /RF_Wattmeter_Teensy41_PCB_V1/nextion_patched/ITEADLIB_Arduino_Nextion_patched/doc/Documentation/group___touch_event.md5: -------------------------------------------------------------------------------- 1 | 79f4fccf2da054a5fd27939591449f02 -------------------------------------------------------------------------------- /RF_Wattmeter_Teensy41_PCB_V1/nextion_patched/ITEADLIB_Arduino_Nextion_patched/doc/Documentation/inherit_graph_0.md5: -------------------------------------------------------------------------------- 1 | 2df858fe7debbd4a142310a410151e30 -------------------------------------------------------------------------------- /RF_Wattmeter_Teensy41_PCB_V1/nextion_patched/ITEADLIB_Arduino_Nextion_patched/doc/Documentation/inherit_graph_1.md5: -------------------------------------------------------------------------------- 1 | 9df572e33cdc728e7b04838f75b3f452 -------------------------------------------------------------------------------- /RF_Wattmeter_Teensy41_PCB_V1/nextion_patched/ITEADLIB_Arduino_Nextion_patched/doc/Logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K7MDL2/RF-Power-Meter-V1/HEAD/RF_Wattmeter_Teensy41_PCB_V1/nextion_patched/ITEADLIB_Arduino_Nextion_patched/doc/Logo.png -------------------------------------------------------------------------------- /RF_Wattmeter_Teensy41_PCB_V1/nextion_patched/ITEADLIB_Arduino_Nextion_patched/doxygen.doxy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K7MDL2/RF-Power-Meter-V1/HEAD/RF_Wattmeter_Teensy41_PCB_V1/nextion_patched/ITEADLIB_Arduino_Nextion_patched/doxygen.doxy -------------------------------------------------------------------------------- /RF_Wattmeter_Teensy41_PCB_V1/nextion_patched/ITEADLIB_Arduino_Nextion_patched/doxygen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K7MDL2/RF-Power-Meter-V1/HEAD/RF_Wattmeter_Teensy41_PCB_V1/nextion_patched/ITEADLIB_Arduino_Nextion_patched/doxygen.h -------------------------------------------------------------------------------- /RF_Wattmeter_Teensy41_PCB_V1/nextion_patched/ITEADLIB_Arduino_Nextion_patched/html/bc_s.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K7MDL2/RF-Power-Meter-V1/HEAD/RF_Wattmeter_Teensy41_PCB_V1/nextion_patched/ITEADLIB_Arduino_Nextion_patched/html/bc_s.png -------------------------------------------------------------------------------- /RF_Wattmeter_Teensy41_PCB_V1/nextion_patched/ITEADLIB_Arduino_Nextion_patched/html/bdwn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K7MDL2/RF-Power-Meter-V1/HEAD/RF_Wattmeter_Teensy41_PCB_V1/nextion_patched/ITEADLIB_Arduino_Nextion_patched/html/bdwn.png -------------------------------------------------------------------------------- /RF_Wattmeter_Teensy41_PCB_V1/nextion_patched/ITEADLIB_Arduino_Nextion_patched/html/closed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K7MDL2/RF-Power-Meter-V1/HEAD/RF_Wattmeter_Teensy41_PCB_V1/nextion_patched/ITEADLIB_Arduino_Nextion_patched/html/closed.png -------------------------------------------------------------------------------- /RF_Wattmeter_Teensy41_PCB_V1/nextion_patched/ITEADLIB_Arduino_Nextion_patched/html/doxygen.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K7MDL2/RF-Power-Meter-V1/HEAD/RF_Wattmeter_Teensy41_PCB_V1/nextion_patched/ITEADLIB_Arduino_Nextion_patched/html/doxygen.css -------------------------------------------------------------------------------- /RF_Wattmeter_Teensy41_PCB_V1/nextion_patched/ITEADLIB_Arduino_Nextion_patched/html/doxygen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K7MDL2/RF-Power-Meter-V1/HEAD/RF_Wattmeter_Teensy41_PCB_V1/nextion_patched/ITEADLIB_Arduino_Nextion_patched/html/doxygen.png -------------------------------------------------------------------------------- /RF_Wattmeter_Teensy41_PCB_V1/nextion_patched/ITEADLIB_Arduino_Nextion_patched/html/files.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K7MDL2/RF-Power-Meter-V1/HEAD/RF_Wattmeter_Teensy41_PCB_V1/nextion_patched/ITEADLIB_Arduino_Nextion_patched/html/files.html -------------------------------------------------------------------------------- /RF_Wattmeter_Teensy41_PCB_V1/nextion_patched/ITEADLIB_Arduino_Nextion_patched/html/ftv2doc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K7MDL2/RF-Power-Meter-V1/HEAD/RF_Wattmeter_Teensy41_PCB_V1/nextion_patched/ITEADLIB_Arduino_Nextion_patched/html/ftv2doc.png -------------------------------------------------------------------------------- /RF_Wattmeter_Teensy41_PCB_V1/nextion_patched/ITEADLIB_Arduino_Nextion_patched/html/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K7MDL2/RF-Power-Meter-V1/HEAD/RF_Wattmeter_Teensy41_PCB_V1/nextion_patched/ITEADLIB_Arduino_Nextion_patched/html/index.html -------------------------------------------------------------------------------- /RF_Wattmeter_Teensy41_PCB_V1/nextion_patched/ITEADLIB_Arduino_Nextion_patched/html/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K7MDL2/RF-Power-Meter-V1/HEAD/RF_Wattmeter_Teensy41_PCB_V1/nextion_patched/ITEADLIB_Arduino_Nextion_patched/html/jquery.js -------------------------------------------------------------------------------- /RF_Wattmeter_Teensy41_PCB_V1/nextion_patched/ITEADLIB_Arduino_Nextion_patched/html/nav_f.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K7MDL2/RF-Power-Meter-V1/HEAD/RF_Wattmeter_Teensy41_PCB_V1/nextion_patched/ITEADLIB_Arduino_Nextion_patched/html/nav_f.png -------------------------------------------------------------------------------- /RF_Wattmeter_Teensy41_PCB_V1/nextion_patched/ITEADLIB_Arduino_Nextion_patched/html/nav_g.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K7MDL2/RF-Power-Meter-V1/HEAD/RF_Wattmeter_Teensy41_PCB_V1/nextion_patched/ITEADLIB_Arduino_Nextion_patched/html/nav_g.png -------------------------------------------------------------------------------- /RF_Wattmeter_Teensy41_PCB_V1/nextion_patched/ITEADLIB_Arduino_Nextion_patched/html/nav_h.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K7MDL2/RF-Power-Meter-V1/HEAD/RF_Wattmeter_Teensy41_PCB_V1/nextion_patched/ITEADLIB_Arduino_Nextion_patched/html/nav_h.png -------------------------------------------------------------------------------- /RF_Wattmeter_Teensy41_PCB_V1/nextion_patched/ITEADLIB_Arduino_Nextion_patched/html/open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K7MDL2/RF-Power-Meter-V1/HEAD/RF_Wattmeter_Teensy41_PCB_V1/nextion_patched/ITEADLIB_Arduino_Nextion_patched/html/open.png -------------------------------------------------------------------------------- /RF_Wattmeter_Teensy41_PCB_V1/nextion_patched/ITEADLIB_Arduino_Nextion_patched/html/pages.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K7MDL2/RF-Power-Meter-V1/HEAD/RF_Wattmeter_Teensy41_PCB_V1/nextion_patched/ITEADLIB_Arduino_Nextion_patched/html/pages.html -------------------------------------------------------------------------------- /RF_Wattmeter_Teensy41_PCB_V1/nextion_patched/ITEADLIB_Arduino_Nextion_patched/html/sync_on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K7MDL2/RF-Power-Meter-V1/HEAD/RF_Wattmeter_Teensy41_PCB_V1/nextion_patched/ITEADLIB_Arduino_Nextion_patched/html/sync_on.png -------------------------------------------------------------------------------- /RF_Wattmeter_Teensy41_PCB_V1/nextion_patched/ITEADLIB_Arduino_Nextion_patched/html/tab_a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K7MDL2/RF-Power-Meter-V1/HEAD/RF_Wattmeter_Teensy41_PCB_V1/nextion_patched/ITEADLIB_Arduino_Nextion_patched/html/tab_a.png -------------------------------------------------------------------------------- /RF_Wattmeter_Teensy41_PCB_V1/nextion_patched/ITEADLIB_Arduino_Nextion_patched/html/tab_b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K7MDL2/RF-Power-Meter-V1/HEAD/RF_Wattmeter_Teensy41_PCB_V1/nextion_patched/ITEADLIB_Arduino_Nextion_patched/html/tab_b.png -------------------------------------------------------------------------------- /RF_Wattmeter_Teensy41_PCB_V1/nextion_patched/ITEADLIB_Arduino_Nextion_patched/html/tab_h.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K7MDL2/RF-Power-Meter-V1/HEAD/RF_Wattmeter_Teensy41_PCB_V1/nextion_patched/ITEADLIB_Arduino_Nextion_patched/html/tab_h.png -------------------------------------------------------------------------------- /RF_Wattmeter_Teensy41_PCB_V1/nextion_patched/ITEADLIB_Arduino_Nextion_patched/html/tab_s.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K7MDL2/RF-Power-Meter-V1/HEAD/RF_Wattmeter_Teensy41_PCB_V1/nextion_patched/ITEADLIB_Arduino_Nextion_patched/html/tab_s.png -------------------------------------------------------------------------------- /RF_Wattmeter_Teensy41_PCB_V1/nextion_patched/ITEADLIB_Arduino_Nextion_patched/html/tabs.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K7MDL2/RF-Power-Meter-V1/HEAD/RF_Wattmeter_Teensy41_PCB_V1/nextion_patched/ITEADLIB_Arduino_Nextion_patched/html/tabs.css -------------------------------------------------------------------------------- /RF_Wattmeter_Teensy41_PCB_V1/nextion_patched/ITEADLIB_Arduino_Nextion_patched/latex/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K7MDL2/RF-Power-Meter-V1/HEAD/RF_Wattmeter_Teensy41_PCB_V1/nextion_patched/ITEADLIB_Arduino_Nextion_patched/latex/Makefile -------------------------------------------------------------------------------- /RF_Wattmeter_Teensy41_PCB_V1/nextion_patched/ITEADLIB_Arduino_Nextion_patched/latex/files.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K7MDL2/RF-Power-Meter-V1/HEAD/RF_Wattmeter_Teensy41_PCB_V1/nextion_patched/ITEADLIB_Arduino_Nextion_patched/latex/files.tex -------------------------------------------------------------------------------- /RF_Wattmeter_Teensy41_PCB_V1/nextion_patched/ITEADLIB_Arduino_Nextion_patched/latex/index.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K7MDL2/RF-Power-Meter-V1/HEAD/RF_Wattmeter_Teensy41_PCB_V1/nextion_patched/ITEADLIB_Arduino_Nextion_patched/latex/index.tex -------------------------------------------------------------------------------- /RF_Wattmeter_Teensy41_PCB_V1/nextion_patched/ITEADLIB_Arduino_Nextion_patched/latex/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K7MDL2/RF-Power-Meter-V1/HEAD/RF_Wattmeter_Teensy41_PCB_V1/nextion_patched/ITEADLIB_Arduino_Nextion_patched/latex/make.bat -------------------------------------------------------------------------------- /RF_Wattmeter_Teensy41_PCB_V1/nextion_patched/ITEADLIB_Arduino_Nextion_patched/latex/md_readme.tex: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /RF_Wattmeter_Teensy41_PCB_V1/nextion_patched/ITEADLIB_Arduino_Nextion_patched/latex/refman.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K7MDL2/RF-Power-Meter-V1/HEAD/RF_Wattmeter_Teensy41_PCB_V1/nextion_patched/ITEADLIB_Arduino_Nextion_patched/latex/refman.tex -------------------------------------------------------------------------------- /RF_Wattmeter_Teensy41_PCB_V1/nextion_patched/ITEADLIB_Arduino_Nextion_patched/license.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K7MDL2/RF-Power-Meter-V1/HEAD/RF_Wattmeter_Teensy41_PCB_V1/nextion_patched/ITEADLIB_Arduino_Nextion_patched/license.md -------------------------------------------------------------------------------- /RF_Wattmeter_Teensy41_PCB_V1/nextion_patched/ITEADLIB_Arduino_Nextion_patched/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K7MDL2/RF-Power-Meter-V1/HEAD/RF_Wattmeter_Teensy41_PCB_V1/nextion_patched/ITEADLIB_Arduino_Nextion_patched/readme.md -------------------------------------------------------------------------------- /RF_Wattmeter_Teensy41_PCB_V1/nextion_patched/ITEADLIB_Arduino_Nextion_patched/release_notes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K7MDL2/RF-Power-Meter-V1/HEAD/RF_Wattmeter_Teensy41_PCB_V1/nextion_patched/ITEADLIB_Arduino_Nextion_patched/release_notes.md -------------------------------------------------------------------------------- /RF_Wattmeter_Teensy41_PCB_V1/nextion_patched/ITEADLIB_Arduino_Nextion_patched/version.txt: -------------------------------------------------------------------------------- 1 | 0.9.0 2 | -------------------------------------------------------------------------------- /Teensy_UDP_Rotator_Controller/Rotor-Controller-UDP-Server/Rotor-Controller-UDP-Server-Enet.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K7MDL2/RF-Power-Meter-V1/HEAD/Teensy_UDP_Rotator_Controller/Rotor-Controller-UDP-Server/Rotor-Controller-UDP-Server-Enet.ino -------------------------------------------------------------------------------- /Teensy_UDP_Rotator_Controller/Rotor-Controller-UDP-Server/Rotor-Controller-UDP-Server.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K7MDL2/RF-Power-Meter-V1/HEAD/Teensy_UDP_Rotator_Controller/Rotor-Controller-UDP-Server/Rotor-Controller-UDP-Server.h -------------------------------------------------------------------------------- /Teensy_UDP_Rotator_Controller/Rotor-Controller-UDP-Server/Rotor-Controller-UDP-Server.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K7MDL2/RF-Power-Meter-V1/HEAD/Teensy_UDP_Rotator_Controller/Rotor-Controller-UDP-Server/Rotor-Controller-UDP-Server.ino --------------------------------------------------------------------------------