├── .clang-format ├── .gitignore ├── CHANGELOG.md ├── KFCWebBuilder.json ├── README.md ├── Resources ├── css │ ├── alarm.css │ ├── clock-led-matrix.css │ ├── form-help-block.css │ ├── hexagon-panel.css │ ├── http2serial.css │ ├── input-text-range.css │ ├── nav-alerts.css │ ├── ping-console.css │ ├── rangeslider.css │ ├── styles.css │ └── webui-component.css ├── html │ ├── .foot.html │ ├── .head.html │ ├── .javascript.html │ ├── .message.html │ ├── .nav.html │ ├── .timezone_list_js.html │ ├── __prototypes.html │ ├── __prototypes_webui.html │ ├── about.html │ ├── alarm.html │ ├── applying.html │ ├── blinds.html │ ├── curated-art.html │ ├── description.xml │ ├── device.html │ ├── dimmer-ci.html │ ├── dimmer.html │ ├── display-screen.html │ ├── factory.html │ ├── file-manager.html │ ├── hass-actions.html │ ├── hass-edit.html │ ├── hass.html │ ├── index.html │ ├── led-matrix.html │ ├── login.html │ ├── mdns-discovery.html │ ├── mqtt.html │ ├── network-scan.html │ ├── network.html │ ├── ntp.html │ ├── password.html │ ├── ping-monitor.html │ ├── ping.html │ ├── reboot.html │ ├── rebooting.html │ ├── remote.html │ ├── remotectrl.html │ ├── savecrash.html │ ├── sensor.html │ ├── serial-console.html │ ├── serial2tcp.html │ ├── speed-test.html │ ├── status.html │ ├── switch.html │ ├── syslog.html │ ├── update-fw.html │ ├── weather.html │ ├── webui.html │ ├── wifi.html │ └── world-clock.html ├── images │ └── light.svg └── js │ ├── charts │ ├── Chart.bundle.js │ ├── Chart.bundle.min.js │ ├── Chart.css │ ├── Chart.js │ ├── Chart.min.css │ ├── Chart.min.js │ ├── LICENSE.md │ └── chartjs-plugin-dragdata.min.js │ ├── common.js │ ├── debug.js │ ├── dimmer-ci.js │ ├── file-manager.js │ ├── forms.js │ ├── forms │ ├── alarm.js │ ├── alive-check.js │ ├── device.js │ ├── dimmer.js │ ├── led-matrix.js │ ├── network.js │ ├── ntp.js │ ├── remote.js │ ├── sensor.js │ ├── syslog.js │ ├── update-fw.js │ ├── webui.js │ ├── wifi.js │ └── world-clock.js │ ├── http2serial.js │ ├── jQuery.base64.js │ ├── led-matrix.js │ ├── ping-console.js │ ├── sync-time.js │ ├── webui-led-matrix.js │ ├── webui.js │ └── ws-console.js ├── compile_time.md ├── conf ├── common.ini ├── common_esp32.ini ├── common_esp8266.ini ├── debug_esp32.ini ├── debug_esp8266.ini ├── env.ini ├── envs │ ├── 7segment_clock.ini │ ├── blinds_controller.ini │ ├── door_opener.ini │ ├── environmental_sensor.ini │ ├── hexagon_panel.ini │ ├── led_matrix.ini │ ├── led_strip.ini │ ├── multichannel_relayboard.ini │ ├── remote_control.ini │ ├── sonoff_basic.ini │ ├── testing.ini │ ├── trailing_edge_dimmer.ini │ ├── weather_station.ini │ └── wled_board.ini ├── ld │ ├── eagle.flash.1m400.ld │ ├── eagle.flash.4m1m.ld │ ├── eagle.flash.4m2m.ld │ ├── partitions_1M_app_4M_flash.csv │ ├── partitions_2M_app_4M_flash.csv │ ├── partitions_2M_app_no_spiffs_4M_flash.csv │ ├── partitions_3M_app_4M_flash.csv │ └── partitions_3M_app_no_spiffs_4M_flash.csv └── release.ini ├── data └── webui │ └── placeholder.txt ├── docs ├── AtModeHelp.md ├── ESP8266_GPIO_during_boot.md ├── LILYGO TTGO Backlight_04-600x600w.jpg └── T4_v1.3.pdf ├── firmware.code-workspace ├── include ├── Adafruit_NeoPixelEx.h ├── AtModeArgs.hpp ├── NeoPixelEx.h ├── PluginComponent.h ├── TemplateDataProvider.h ├── WebUIComponent.h ├── WebUISocket.h ├── async_web_handler.h ├── async_web_response.h ├── at_mode.h ├── bitmap_header.h ├── blink_led_timer.h ├── boost_1_80_0 │ ├── README.md │ └── boost │ │ └── preprocessor │ │ ├── arithmetic.hpp │ │ ├── arithmetic │ │ ├── add.hpp │ │ ├── dec.hpp │ │ ├── detail │ │ │ ├── div_base.hpp │ │ │ ├── is_1_number.hpp │ │ │ ├── is_maximum_number.hpp │ │ │ ├── is_minimum_number.hpp │ │ │ └── maximum_number.hpp │ │ ├── div.hpp │ │ ├── inc.hpp │ │ ├── limits │ │ │ ├── dec_1024.hpp │ │ │ ├── dec_256.hpp │ │ │ ├── dec_512.hpp │ │ │ ├── inc_1024.hpp │ │ │ ├── inc_256.hpp │ │ │ └── inc_512.hpp │ │ ├── mod.hpp │ │ ├── mul.hpp │ │ └── sub.hpp │ │ ├── array.hpp │ │ ├── array │ │ ├── data.hpp │ │ ├── detail │ │ │ └── get_data.hpp │ │ ├── elem.hpp │ │ ├── enum.hpp │ │ ├── insert.hpp │ │ ├── pop_back.hpp │ │ ├── pop_front.hpp │ │ ├── push_back.hpp │ │ ├── push_front.hpp │ │ ├── remove.hpp │ │ ├── replace.hpp │ │ ├── reverse.hpp │ │ ├── size.hpp │ │ ├── to_list.hpp │ │ ├── to_seq.hpp │ │ └── to_tuple.hpp │ │ ├── assert_msg.hpp │ │ ├── cat.hpp │ │ ├── comma.hpp │ │ ├── comma_if.hpp │ │ ├── comparison.hpp │ │ ├── comparison │ │ ├── equal.hpp │ │ ├── greater.hpp │ │ ├── greater_equal.hpp │ │ ├── less.hpp │ │ ├── less_equal.hpp │ │ ├── limits │ │ │ ├── not_equal_1024.hpp │ │ │ ├── not_equal_256.hpp │ │ │ └── not_equal_512.hpp │ │ └── not_equal.hpp │ │ ├── config │ │ ├── config.hpp │ │ └── limits.hpp │ │ ├── control.hpp │ │ ├── control │ │ ├── deduce_d.hpp │ │ ├── detail │ │ │ ├── dmc │ │ │ │ └── while.hpp │ │ │ ├── edg │ │ │ │ ├── limits │ │ │ │ │ ├── while_1024.hpp │ │ │ │ │ ├── while_256.hpp │ │ │ │ │ └── while_512.hpp │ │ │ │ └── while.hpp │ │ │ ├── limits │ │ │ │ ├── while_1024.hpp │ │ │ │ ├── while_256.hpp │ │ │ │ └── while_512.hpp │ │ │ ├── msvc │ │ │ │ └── while.hpp │ │ │ └── while.hpp │ │ ├── expr_if.hpp │ │ ├── expr_iif.hpp │ │ ├── if.hpp │ │ ├── iif.hpp │ │ ├── limits │ │ │ ├── while_1024.hpp │ │ │ ├── while_256.hpp │ │ │ └── while_512.hpp │ │ └── while.hpp │ │ ├── debug.hpp │ │ ├── debug │ │ ├── assert.hpp │ │ ├── error.hpp │ │ └── line.hpp │ │ ├── dec.hpp │ │ ├── detail │ │ ├── auto_rec.hpp │ │ ├── check.hpp │ │ ├── dmc │ │ │ └── auto_rec.hpp │ │ ├── is_binary.hpp │ │ ├── is_nullary.hpp │ │ ├── is_unary.hpp │ │ ├── limits │ │ │ ├── auto_rec_1024.hpp │ │ │ ├── auto_rec_256.hpp │ │ │ └── auto_rec_512.hpp │ │ ├── null.hpp │ │ └── split.hpp │ │ ├── empty.hpp │ │ ├── enum.hpp │ │ ├── enum_params.hpp │ │ ├── enum_params_with_a_default.hpp │ │ ├── enum_params_with_defaults.hpp │ │ ├── enum_shifted.hpp │ │ ├── enum_shifted_params.hpp │ │ ├── expand.hpp │ │ ├── expr_if.hpp │ │ ├── facilities.hpp │ │ ├── facilities │ │ ├── apply.hpp │ │ ├── check_empty.hpp │ │ ├── detail │ │ │ └── is_empty.hpp │ │ ├── empty.hpp │ │ ├── expand.hpp │ │ ├── identity.hpp │ │ ├── intercept.hpp │ │ ├── is_1.hpp │ │ ├── is_empty.hpp │ │ ├── is_empty_or_1.hpp │ │ ├── is_empty_variadic.hpp │ │ ├── limits │ │ │ ├── intercept_1024.hpp │ │ │ ├── intercept_256.hpp │ │ │ └── intercept_512.hpp │ │ ├── overload.hpp │ │ └── va_opt.hpp │ │ ├── for.hpp │ │ ├── identity.hpp │ │ ├── if.hpp │ │ ├── inc.hpp │ │ ├── iterate.hpp │ │ ├── iteration.hpp │ │ ├── iteration │ │ ├── detail │ │ │ ├── bounds │ │ │ │ ├── lower1.hpp │ │ │ │ ├── lower2.hpp │ │ │ │ ├── lower3.hpp │ │ │ │ ├── lower4.hpp │ │ │ │ ├── lower5.hpp │ │ │ │ ├── upper1.hpp │ │ │ │ ├── upper2.hpp │ │ │ │ ├── upper3.hpp │ │ │ │ ├── upper4.hpp │ │ │ │ └── upper5.hpp │ │ │ ├── finish.hpp │ │ │ ├── iter │ │ │ │ ├── forward1.hpp │ │ │ │ ├── forward2.hpp │ │ │ │ ├── forward3.hpp │ │ │ │ ├── forward4.hpp │ │ │ │ ├── forward5.hpp │ │ │ │ ├── limits │ │ │ │ │ ├── forward1_1024.hpp │ │ │ │ │ ├── forward1_256.hpp │ │ │ │ │ ├── forward1_512.hpp │ │ │ │ │ ├── forward2_1024.hpp │ │ │ │ │ ├── forward2_256.hpp │ │ │ │ │ ├── forward2_512.hpp │ │ │ │ │ ├── forward3_1024.hpp │ │ │ │ │ ├── forward3_256.hpp │ │ │ │ │ ├── forward3_512.hpp │ │ │ │ │ ├── forward4_1024.hpp │ │ │ │ │ ├── forward4_256.hpp │ │ │ │ │ ├── forward4_512.hpp │ │ │ │ │ ├── forward5_1024.hpp │ │ │ │ │ ├── forward5_256.hpp │ │ │ │ │ ├── forward5_512.hpp │ │ │ │ │ ├── reverse1_1024.hpp │ │ │ │ │ ├── reverse1_256.hpp │ │ │ │ │ ├── reverse1_512.hpp │ │ │ │ │ ├── reverse2_1024.hpp │ │ │ │ │ ├── reverse2_256.hpp │ │ │ │ │ ├── reverse2_512.hpp │ │ │ │ │ ├── reverse3_1024.hpp │ │ │ │ │ ├── reverse3_256.hpp │ │ │ │ │ ├── reverse3_512.hpp │ │ │ │ │ ├── reverse4_1024.hpp │ │ │ │ │ ├── reverse4_256.hpp │ │ │ │ │ ├── reverse4_512.hpp │ │ │ │ │ ├── reverse5_1024.hpp │ │ │ │ │ ├── reverse5_256.hpp │ │ │ │ │ └── reverse5_512.hpp │ │ │ │ ├── reverse1.hpp │ │ │ │ ├── reverse2.hpp │ │ │ │ ├── reverse3.hpp │ │ │ │ ├── reverse4.hpp │ │ │ │ └── reverse5.hpp │ │ │ ├── limits │ │ │ │ ├── local_1024.hpp │ │ │ │ ├── local_256.hpp │ │ │ │ ├── local_512.hpp │ │ │ │ ├── rlocal_1024.hpp │ │ │ │ ├── rlocal_256.hpp │ │ │ │ └── rlocal_512.hpp │ │ │ ├── local.hpp │ │ │ ├── rlocal.hpp │ │ │ ├── self.hpp │ │ │ └── start.hpp │ │ ├── iterate.hpp │ │ ├── local.hpp │ │ └── self.hpp │ │ ├── library.hpp │ │ ├── limits.hpp │ │ ├── list.hpp │ │ ├── list │ │ ├── adt.hpp │ │ ├── append.hpp │ │ ├── at.hpp │ │ ├── cat.hpp │ │ ├── detail │ │ │ ├── dmc │ │ │ │ └── fold_left.hpp │ │ │ ├── edg │ │ │ │ ├── fold_left.hpp │ │ │ │ ├── fold_right.hpp │ │ │ │ └── limits │ │ │ │ │ ├── fold_left_1024.hpp │ │ │ │ │ ├── fold_left_256.hpp │ │ │ │ │ ├── fold_left_512.hpp │ │ │ │ │ ├── fold_right_1024.hpp │ │ │ │ │ ├── fold_right_256.hpp │ │ │ │ │ └── fold_right_512.hpp │ │ │ ├── fold_left.hpp │ │ │ ├── fold_right.hpp │ │ │ └── limits │ │ │ │ ├── fold_left_1024.hpp │ │ │ │ ├── fold_left_256.hpp │ │ │ │ ├── fold_left_512.hpp │ │ │ │ ├── fold_right_1024.hpp │ │ │ │ ├── fold_right_256.hpp │ │ │ │ └── fold_right_512.hpp │ │ ├── enum.hpp │ │ ├── filter.hpp │ │ ├── first_n.hpp │ │ ├── fold_left.hpp │ │ ├── fold_right.hpp │ │ ├── for_each.hpp │ │ ├── for_each_i.hpp │ │ ├── for_each_product.hpp │ │ ├── limits │ │ │ ├── fold_left_1024.hpp │ │ │ ├── fold_left_256.hpp │ │ │ └── fold_left_512.hpp │ │ ├── rest_n.hpp │ │ ├── reverse.hpp │ │ ├── size.hpp │ │ ├── to_array.hpp │ │ ├── to_seq.hpp │ │ ├── to_tuple.hpp │ │ └── transform.hpp │ │ ├── logical.hpp │ │ ├── logical │ │ ├── and.hpp │ │ ├── bitand.hpp │ │ ├── bitnor.hpp │ │ ├── bitor.hpp │ │ ├── bitxor.hpp │ │ ├── bool.hpp │ │ ├── compl.hpp │ │ ├── limits │ │ │ ├── bool_1024.hpp │ │ │ ├── bool_256.hpp │ │ │ └── bool_512.hpp │ │ ├── nor.hpp │ │ ├── not.hpp │ │ ├── or.hpp │ │ └── xor.hpp │ │ ├── max.hpp │ │ ├── min.hpp │ │ ├── punctuation.hpp │ │ ├── punctuation │ │ ├── comma.hpp │ │ ├── comma_if.hpp │ │ ├── detail │ │ │ └── is_begin_parens.hpp │ │ ├── is_begin_parens.hpp │ │ ├── paren.hpp │ │ ├── paren_if.hpp │ │ └── remove_parens.hpp │ │ ├── repeat.hpp │ │ ├── repeat_2nd.hpp │ │ ├── repeat_3rd.hpp │ │ ├── repeat_from_to.hpp │ │ ├── repeat_from_to_2nd.hpp │ │ ├── repeat_from_to_3rd.hpp │ │ ├── repetition.hpp │ │ ├── repetition │ │ ├── deduce_r.hpp │ │ ├── deduce_z.hpp │ │ ├── detail │ │ │ ├── dmc │ │ │ │ └── for.hpp │ │ │ ├── edg │ │ │ │ ├── for.hpp │ │ │ │ └── limits │ │ │ │ │ ├── for_1024.hpp │ │ │ │ │ ├── for_256.hpp │ │ │ │ │ └── for_512.hpp │ │ │ ├── for.hpp │ │ │ ├── limits │ │ │ │ ├── for_1024.hpp │ │ │ │ ├── for_256.hpp │ │ │ │ └── for_512.hpp │ │ │ └── msvc │ │ │ │ └── for.hpp │ │ ├── enum.hpp │ │ ├── enum_binary_params.hpp │ │ ├── enum_params.hpp │ │ ├── enum_params_with_a_default.hpp │ │ ├── enum_params_with_defaults.hpp │ │ ├── enum_shifted.hpp │ │ ├── enum_shifted_binary_params.hpp │ │ ├── enum_shifted_params.hpp │ │ ├── enum_trailing.hpp │ │ ├── enum_trailing_binary_params.hpp │ │ ├── enum_trailing_params.hpp │ │ ├── for.hpp │ │ ├── limits │ │ │ ├── for_1024.hpp │ │ │ ├── for_256.hpp │ │ │ ├── for_512.hpp │ │ │ ├── repeat_1024.hpp │ │ │ ├── repeat_256.hpp │ │ │ └── repeat_512.hpp │ │ ├── repeat.hpp │ │ └── repeat_from_to.hpp │ │ ├── selection.hpp │ │ ├── selection │ │ ├── max.hpp │ │ └── min.hpp │ │ ├── seq.hpp │ │ ├── seq │ │ ├── cat.hpp │ │ ├── detail │ │ │ ├── binary_transform.hpp │ │ │ ├── is_empty.hpp │ │ │ ├── limits │ │ │ │ ├── split_1024.hpp │ │ │ │ ├── split_256.hpp │ │ │ │ └── split_512.hpp │ │ │ ├── split.hpp │ │ │ └── to_list_msvc.hpp │ │ ├── elem.hpp │ │ ├── enum.hpp │ │ ├── filter.hpp │ │ ├── first_n.hpp │ │ ├── fold_left.hpp │ │ ├── fold_right.hpp │ │ ├── for_each.hpp │ │ ├── for_each_i.hpp │ │ ├── for_each_product.hpp │ │ ├── insert.hpp │ │ ├── limits │ │ │ ├── elem_1024.hpp │ │ │ ├── elem_256.hpp │ │ │ ├── elem_512.hpp │ │ │ ├── enum_1024.hpp │ │ │ ├── enum_256.hpp │ │ │ ├── enum_512.hpp │ │ │ ├── fold_left_1024.hpp │ │ │ ├── fold_left_256.hpp │ │ │ ├── fold_left_512.hpp │ │ │ ├── fold_right_1024.hpp │ │ │ ├── fold_right_256.hpp │ │ │ ├── fold_right_512.hpp │ │ │ ├── size_1024.hpp │ │ │ ├── size_256.hpp │ │ │ └── size_512.hpp │ │ ├── pop_back.hpp │ │ ├── pop_front.hpp │ │ ├── push_back.hpp │ │ ├── push_front.hpp │ │ ├── remove.hpp │ │ ├── replace.hpp │ │ ├── rest_n.hpp │ │ ├── reverse.hpp │ │ ├── seq.hpp │ │ ├── size.hpp │ │ ├── subseq.hpp │ │ ├── to_array.hpp │ │ ├── to_list.hpp │ │ ├── to_tuple.hpp │ │ ├── transform.hpp │ │ └── variadic_seq_to_seq.hpp │ │ ├── slot.hpp │ │ ├── slot │ │ ├── counter.hpp │ │ ├── detail │ │ │ ├── counter.hpp │ │ │ ├── def.hpp │ │ │ ├── shared.hpp │ │ │ ├── slot1.hpp │ │ │ ├── slot2.hpp │ │ │ ├── slot3.hpp │ │ │ ├── slot4.hpp │ │ │ └── slot5.hpp │ │ └── slot.hpp │ │ ├── stringize.hpp │ │ ├── tuple.hpp │ │ ├── tuple │ │ ├── detail │ │ │ └── is_single_return.hpp │ │ ├── eat.hpp │ │ ├── elem.hpp │ │ ├── enum.hpp │ │ ├── insert.hpp │ │ ├── limits │ │ │ ├── reverse_128.hpp │ │ │ ├── reverse_256.hpp │ │ │ ├── reverse_64.hpp │ │ │ ├── to_list_128.hpp │ │ │ ├── to_list_256.hpp │ │ │ ├── to_list_64.hpp │ │ │ ├── to_seq_128.hpp │ │ │ ├── to_seq_256.hpp │ │ │ └── to_seq_64.hpp │ │ ├── pop_back.hpp │ │ ├── pop_front.hpp │ │ ├── push_back.hpp │ │ ├── push_front.hpp │ │ ├── rem.hpp │ │ ├── remove.hpp │ │ ├── replace.hpp │ │ ├── reverse.hpp │ │ ├── size.hpp │ │ ├── to_array.hpp │ │ ├── to_list.hpp │ │ └── to_seq.hpp │ │ ├── variadic.hpp │ │ ├── variadic │ │ ├── detail │ │ │ ├── has_opt.hpp │ │ │ └── is_single_return.hpp │ │ ├── elem.hpp │ │ ├── has_opt.hpp │ │ ├── limits │ │ │ ├── elem_128.hpp │ │ │ ├── elem_256.hpp │ │ │ ├── elem_64.hpp │ │ │ ├── size_128.hpp │ │ │ ├── size_256.hpp │ │ │ └── size_64.hpp │ │ ├── size.hpp │ │ ├── to_array.hpp │ │ ├── to_list.hpp │ │ ├── to_seq.hpp │ │ └── to_tuple.hpp │ │ ├── while.hpp │ │ └── wstringize.hpp ├── build.h ├── build.h.current ├── deep_sleep.h ├── deep_sleep.hpp ├── failure_counter.h ├── global.h ├── kfc_fw_config.h ├── kfc_fw_config │ ├── base.h │ ├── network.h │ ├── plugins.h │ ├── plugins │ │ ├── alarm.h │ │ ├── blinds_ctrl.h │ │ ├── clock.h │ │ ├── dimmer.h │ │ ├── display.h │ │ ├── iot_switch.h │ │ ├── mdns.h │ │ ├── mqtt_client.h │ │ ├── ntp_client.h │ │ ├── ping.h │ │ ├── remote.h │ │ ├── sensor.h │ │ ├── serial2tcp.h │ │ ├── syslog.h │ │ └── weather_station.h │ └── system.h ├── kfc_fw_config_classes.h ├── kfc_fw_config_plugin.h ├── kfc_fw_config_types.h ├── logger.h ├── logger_stream.h ├── plugins.h ├── plugins_menu.h ├── rest_api.h ├── serial2udp.h ├── serial_handler.h ├── spgm_auto_def.h ├── spgm_auto_strings.h ├── status.h ├── templates.h ├── web_server.h ├── web_server_action.h └── web_socket.h ├── lib-mock ├── KFCBaseLibrary │ ├── cores │ │ └── esp8266 │ │ │ └── WString │ │ │ └── WStringEx.cpp │ ├── include │ │ ├── Arduino.h │ │ ├── EEPROM.h │ │ ├── ESP.h │ │ ├── ESP8266HttpClient.h │ │ ├── ESPAsyncTCP.h │ │ ├── FS.h │ │ ├── FSImpl.h │ │ ├── Print.h │ │ ├── SPI.h │ │ ├── Serial.h │ │ ├── Stream.h │ │ ├── StreamString.h │ │ ├── WString.h │ │ ├── WiFi.h │ │ ├── WiFiUDP.h │ │ ├── Wire.h │ │ ├── avr │ │ │ ├── delay.h │ │ │ ├── interrupt.h │ │ │ ├── io.h │ │ │ └── pgmspace.h │ │ ├── c_types.h │ │ ├── eagle_soc.h │ │ ├── global.h │ │ ├── pgmspace.h │ │ ├── pins_arduino.h │ │ ├── spi_flash.h │ │ ├── stdlib_noniso.h │ │ ├── sys │ │ │ └── pgmspace.h │ │ ├── util │ │ │ ├── delay.h │ │ │ └── stdlib_noniso.h │ │ ├── wProgram.h │ │ └── wiring_private.h │ ├── msc_framework-arduinoespressif_win32 │ │ ├── ConfigV2Test │ │ │ ├── ConfigV2Test.cpp │ │ │ ├── ConfigV2Test.vcxproj │ │ │ ├── ConfigV2Test.vcxproj.filters │ │ │ └── ConfigV2Test.vcxproj.user │ │ ├── ConsoleApplication1 │ │ │ ├── ConsoleApplication1.cpp │ │ │ ├── ConsoleApplication1.vcxproj │ │ │ ├── ConsoleApplication1.vcxproj.filters │ │ │ └── ConsoleApplication1.vcxproj.user │ │ ├── WeatherStation │ │ │ ├── Resource.h │ │ │ ├── WeatherStation.aps │ │ │ ├── WeatherStation.cpp │ │ │ ├── WeatherStation.h │ │ │ ├── WeatherStation.ico │ │ │ ├── WeatherStation.rc │ │ │ ├── WeatherStation.vcxproj │ │ │ ├── WeatherStation.vcxproj.filters │ │ │ ├── WeatherStation.vcxproj.user │ │ │ ├── framework.h │ │ │ ├── main.cpp │ │ │ ├── small.ico │ │ │ └── targetver.h │ │ ├── core │ │ │ ├── main.cpp │ │ │ ├── msc_framework-arduinoespressif_win32.filters │ │ │ ├── msc_framework-arduinoespressif_win32.user │ │ │ ├── msc_framework-arduinoespressif_win32.vcxproj │ │ │ ├── msc_framework-arduinoespressif_win32.vcxproj.filters │ │ │ └── msc_framework-arduinoespressif_win32.vcxproj.user │ │ ├── msc_framework-arduinoespressif_win32.sln │ │ └── static_lib │ │ │ ├── Scheduler.hpp │ │ │ ├── framework.h │ │ │ ├── static_lib.vcxproj │ │ │ ├── static_lib.vcxproj.filters │ │ │ └── static_lib.vcxproj.user │ └── src │ │ ├── Compat.cpp │ │ ├── EEPROM.cpp │ │ ├── ESP8266HttpClient.cpp │ │ ├── FS.cpp │ │ ├── Flash │ │ ├── EspFlash.cpp │ │ └── eagle.flash.4m2m.ld.cpp │ │ ├── Print.cpp │ │ ├── SPI.cpp │ │ ├── Serial.cpp │ │ ├── Stream.cpp │ │ ├── StreamString.cpp │ │ ├── WStringMock.cpp │ │ ├── WiFi.cpp │ │ ├── WiFiUDP.cpp │ │ ├── Wire.cpp │ │ └── stdlib_noniso.cpp ├── README.md └── ets_impl │ ├── ets_main.cpp │ ├── ets_sys_win32.cpp │ ├── ets_sys_win32.h │ ├── ets_timer_win32.cpp │ ├── ets_timer_win32.h │ └── ets_win_includes.h ├── lib └── placeholder.txt ├── logs └── placeholder.txt ├── package.json ├── platformio.ini ├── scripts ├── build_number.py ├── buildall.bat ├── debug_assets │ ├── create_scripts.py │ └── http.server.py ├── extra_script.py ├── kfcfw_tool │ ├── common │ │ ├── MainApp.py │ │ ├── Plot.py │ │ ├── Touchpad.py │ │ ├── tk_ez_grid.py │ │ └── tk_form_var.py │ ├── kfcfw_tool.code-workspace │ ├── kfcfw_tool.py │ ├── libs │ │ └── __init__.py │ ├── pages │ │ ├── __init__.py │ │ ├── adc.py │ │ ├── base.py │ │ ├── energy_monitor.py │ │ ├── start.py │ │ └── touchpad.py │ └── requirements.txt ├── libs │ ├── README.md │ └── kfcfw │ │ ├── __init__.py │ │ ├── configuration.py │ │ ├── connection │ │ ├── __init__.py │ │ ├── base.py │ │ ├── controller.py │ │ └── websocket.py │ │ ├── inline.py │ │ ├── ota.py │ │ └── session.py ├── mqtt │ ├── cron.dump_persistant_storage │ ├── mqtt_show │ └── mqtt_wipe ├── post_script.py ├── pre_script.py ├── tools │ ├── MemAnalyzer.exe │ ├── create_7segment_display.py │ ├── create_mqtt_strings.py │ ├── dump_section.php │ ├── dump_sections.py │ ├── fonts │ │ ├── __init__.py │ │ ├── canvas.py │ │ ├── font_data.py │ │ ├── font_digital_7.py │ │ ├── font_objects.py │ │ ├── headers │ │ │ ├── Picopixel.h │ │ │ ├── Tiny3x3a2pt7b.h │ │ │ └── digital_7_mono_8pt7b.h │ │ └── matrix_display.py │ ├── gen_note_to_freq.py │ ├── i2s_microphone_band_gen.py │ ├── kfcfw_discovery.py │ ├── kfcfw_ota.py │ ├── ldtool.py │ ├── led_matrix_shapes │ │ ├── 7seg.html │ │ ├── hexagon.html │ │ └── pix.html │ ├── partitions_tool.py │ ├── spectrum_analyser.py │ ├── temp_comp.py │ ├── udp_recv_packet.py │ ├── udp_recv_packet_gfx.py │ └── udp_send_packet.py └── udp2ws_proxy │ ├── index.js │ ├── package.json │ └── udp2ws_proxy.service └── src ├── AtModeArgs.cpp ├── PluginComponent.cpp ├── WebUIComponent.cpp ├── WebUISocket.cpp ├── async_web_handler.cpp ├── async_web_response.cpp ├── at_mode.cpp ├── blink_led_timer.cpp ├── deep_sleep.cpp ├── esp32_perfmon.hpp ├── failure_counter.cpp ├── i2c_scanner.h ├── kfc_firmware.cpp ├── kfc_fw_config.cpp ├── kfc_fw_config_classes.cpp ├── kfc_fw_config_classes.hpp ├── kfc_fw_config_forms.cpp ├── logger.cpp ├── plugin_dependencies.cpp ├── plugins.cpp ├── plugins ├── alarm │ ├── alarm.cpp │ ├── alarm.h │ └── alarm_config.cpp ├── blinds_ctrl │ ├── BlindsControl.cpp │ ├── BlindsControl.h │ ├── blinds_audio.hpp │ ├── blinds_channelaction.hpp │ ├── blinds_channelqueue.hpp │ ├── blinds_channelstate.hpp │ ├── blinds_channeltoaction.hpp │ ├── blinds_config.cpp │ ├── blinds_control.hpp │ ├── blinds_defines.h │ ├── blinds_form.cpp │ ├── blinds_motor.hpp │ ├── blinds_plugin.cpp │ └── blinds_plugin.h ├── clock │ ├── IoT-Audio-Visualization-Center │ │ ├── README.md │ │ ├── bin │ │ │ ├── Analyzer.application │ │ │ ├── Analyzer.exe │ │ │ ├── Analyzer.exe.config │ │ │ ├── Analyzer.exe.manifest │ │ │ ├── ControlzEx.dll │ │ │ ├── MahApps.Metro.IconPacks.BoxIcons.dll │ │ │ ├── MahApps.Metro.IconPacks.Core.dll │ │ │ ├── MahApps.Metro.IconPacks.Entypo.dll │ │ │ ├── MahApps.Metro.IconPacks.EvaIcons.dll │ │ │ ├── MahApps.Metro.IconPacks.FeatherIcons.dll │ │ │ ├── MahApps.Metro.IconPacks.FontAwesome.dll │ │ │ ├── MahApps.Metro.IconPacks.Ionicons.dll │ │ │ ├── MahApps.Metro.IconPacks.JamIcons.dll │ │ │ ├── MahApps.Metro.IconPacks.Material.dll │ │ │ ├── MahApps.Metro.IconPacks.MaterialDesign.dll │ │ │ ├── MahApps.Metro.IconPacks.MaterialLight.dll │ │ │ ├── MahApps.Metro.IconPacks.Microns.dll │ │ │ ├── MahApps.Metro.IconPacks.Modern.dll │ │ │ ├── MahApps.Metro.IconPacks.Octicons.dll │ │ │ ├── MahApps.Metro.IconPacks.PicolIcons.dll │ │ │ ├── MahApps.Metro.IconPacks.RPGAwesome.dll │ │ │ ├── MahApps.Metro.IconPacks.SimpleIcons.dll │ │ │ ├── MahApps.Metro.IconPacks.Typicons.dll │ │ │ ├── MahApps.Metro.IconPacks.Unicons.dll │ │ │ ├── MahApps.Metro.IconPacks.WeatherIcons.dll │ │ │ ├── MahApps.Metro.IconPacks.Zondicons.dll │ │ │ ├── MahApps.Metro.IconPacks.dll │ │ │ ├── MahApps.Metro.dll │ │ │ ├── ManagedBass.Wasapi.dll │ │ │ ├── ManagedBass.dll │ │ │ ├── Microsoft.Expression.Interactions.dll │ │ │ ├── Newtonsoft.Json.dll │ │ │ ├── System.Windows.Interactivity.dll │ │ │ ├── bass.dll │ │ │ └── basswasapi.dll │ │ └── copy_release.bat │ ├── animation.cpp │ ├── animation.h │ ├── animation_fading.h │ ├── animation_fire.h │ ├── animation_flashing.h │ ├── animation_gradient.h │ ├── animation_interleaved.h │ ├── animation_plasma.cpp │ ├── animation_plasma.h │ ├── animation_rainbow.h │ ├── animation_rainbow_FastLED.h │ ├── animation_solid.h │ ├── animation_visualizer.cpp │ ├── animation_visualizer.h │ ├── animation_xmas.h │ ├── clock.cpp │ ├── clock.h │ ├── clock_base.h │ ├── clock_button.cpp │ ├── clock_button.h │ ├── clock_config.cpp │ ├── clock_def.h │ ├── clock_form.cpp │ ├── clock_ir_receiver.cpp │ ├── clock_mqtt.cpp │ ├── clock_webui.cpp │ ├── color.cpp │ ├── color.h │ ├── display_clock.h │ ├── display_clockv2.h │ ├── graphics │ │ ├── wlan.bmp │ │ ├── wlan.h │ │ └── wlan.png │ ├── i2s_microphone.cpp │ ├── i2s_microphone.h │ ├── i2s_microphone_bands.h │ ├── lm_atmode.cpp │ ├── pixel_display.h │ ├── seven_segment_display.cpp │ ├── seven_segment_display.h │ └── ssd1306.cpp ├── dimmer │ ├── dimmer.cpp │ ├── dimmer.h │ └── dimmer_def.h ├── dimmer_module │ ├── README.md │ ├── dimmer_atmode.cpp │ ├── dimmer_base.cpp │ ├── dimmer_base.h │ ├── dimmer_button.cpp │ ├── dimmer_button.h │ ├── dimmer_buttons.cpp │ ├── dimmer_buttons.h │ ├── dimmer_channel.cpp │ ├── dimmer_channel.h │ ├── dimmer_colortemp.cpp │ ├── dimmer_colortemp.h │ ├── dimmer_config.cpp │ ├── dimmer_form.cpp │ ├── dimmer_module.cpp │ ├── dimmer_module.h │ ├── dimmer_plugin.cpp │ ├── dimmer_plugin.h │ ├── dimmer_plugin_def.h │ ├── dimmer_twowire.cpp │ ├── dimmer_twowire.h │ ├── firmware │ │ ├── dimmer_commands.cpp │ │ ├── dimmer_commands.h │ │ └── hex │ │ │ ├── 1ch-dimmer-firmware-2.2.3-328p.hex │ │ │ ├── 1ch-dimmer-firmware-2.2.3-328pb.hex │ │ │ ├── atomicsun-firmware-2.2.3-328p.hex │ │ │ ├── atomicsun-firmware-2.2.3-328pb.hex │ │ │ └── bootloader_atmega_328p_and_pb_8mhz.hex │ └── firmware_protocol.h ├── display │ ├── display.cpp │ ├── display.h │ └── display_config.cpp ├── dooropener │ ├── dooropener_config.cpp │ └── dooropener_def.h ├── file_manager │ ├── file_manager.cpp │ └── file_manager.h ├── http2serial │ ├── http2serial.cpp │ ├── http2serial.h │ ├── ws_console_client.cpp │ └── ws_console_client.h ├── mdns │ ├── mdns_atmode.cpp │ ├── mdns_plugin.cpp │ ├── mdns_plugin.h │ ├── mdns_resolver.cpp │ ├── mdns_resolver.h │ ├── mdns_sd.cpp │ └── mdns_sd.h ├── mqtt │ ├── auto_discovery.cpp │ ├── auto_discovery.h │ ├── auto_discovery_list.cpp │ ├── auto_discovery_list.h │ ├── auto_discovery_queue.cpp │ ├── auto_discovery_queue.h │ ├── client.cpp │ ├── client_misc.cpp │ ├── client_queue.cpp │ ├── component.cpp │ ├── component.h │ ├── component_proxy.cpp │ ├── component_proxy.h │ ├── mqtt_base.h │ ├── mqtt_client.h │ ├── mqtt_config.cpp │ ├── mqtt_def.h │ ├── mqtt_form.cpp │ ├── mqtt_json.cpp │ ├── mqtt_json.h │ ├── mqtt_json_writer.hpp │ ├── mqtt_plugin.cpp │ ├── mqtt_plugin.h │ ├── mqtt_strings.cpp │ └── mqtt_strings.h ├── ntp │ ├── ntp_atmode.cpp │ ├── ntp_config.cpp │ ├── ntp_form.cpp │ ├── ntp_plugin.cpp │ ├── ntp_plugin.h │ └── ntp_plugin_class.h ├── phone_ctrl │ ├── phone_ctrl.cpp │ └── phone_ctrl.h ├── ping_monitor │ ├── ping_config.cpp │ ├── ping_monitor.cpp │ ├── ping_monitor.h │ ├── ping_monitor.hpp │ ├── ping_task.cpp │ └── ping_wsclient.cpp ├── plugins.h ├── remote │ ├── payload.h │ ├── remote.cpp │ ├── remote.h │ ├── remote_action.cpp │ ├── remote_action.h │ ├── remote_base.cpp │ ├── remote_base.h │ ├── remote_button.cpp │ ├── remote_button.h │ ├── remote_button.hpp │ ├── remote_config.cpp │ ├── remote_def.h │ ├── remote_event_queue.cpp │ ├── remote_event_queue.h │ ├── remote_form.cpp │ ├── remote_form.h │ ├── remote_mqtt.cpp │ ├── remote_mqtt.h │ └── remote_system_menu.cpp ├── rf24_master │ └── rf24_master.h ├── sensor │ ├── EnvComp.cpp │ ├── EnvComp.h │ ├── MQTTSensor.cpp │ ├── MQTTSensor.h │ ├── Sensor_AmbientLight.cpp │ ├── Sensor_AmbientLight.h │ ├── Sensor_BME280.cpp │ ├── Sensor_BME280.h │ ├── Sensor_BME680.cpp │ ├── Sensor_BME680.h │ ├── Sensor_Battery.cpp │ ├── Sensor_Battery.h │ ├── Sensor_CCS811.cpp │ ├── Sensor_CCS811.h │ ├── Sensor_DHTxx.cpp │ ├── Sensor_DHTxx.h │ ├── Sensor_DS3231.cpp │ ├── Sensor_DS3231.h │ ├── Sensor_DimmerMetrics.cpp │ ├── Sensor_DimmerMetrics.h │ ├── Sensor_HLW8012.cpp │ ├── Sensor_HLW8012.h │ ├── Sensor_HLW8012.hpp │ ├── Sensor_HLW8032.cpp │ ├── Sensor_HLW8032.h │ ├── Sensor_HLW80xx.cpp │ ├── Sensor_HLW80xx.h │ ├── Sensor_INA219.cpp │ ├── Sensor_INA219.h │ ├── Sensor_LM75A.cpp │ ├── Sensor_LM75A.h │ ├── Sensor_Motion.cpp │ ├── Sensor_Motion.h │ ├── Sensor_SystemMetrics.cpp │ ├── Sensor_SystemMetrics.h │ ├── sensor.cpp │ ├── sensor.h │ └── sensor_config.cpp ├── serial2tcp │ ├── README.md │ ├── Serial2TcpBase.cpp │ ├── Serial2TcpBase.h │ ├── Serial2TcpClient.cpp │ ├── Serial2TcpClient.h │ ├── Serial2TcpConnection.cpp │ ├── Serial2TcpConnection.h │ ├── Serial2TcpServer.cpp │ ├── Serial2TcpServer.h │ ├── s2t_config.cpp │ ├── s2t_nvt.h │ ├── serial2tcp.cpp │ └── serial2tcp.h ├── ssd1306_plugin │ ├── fonts │ │ └── 7digit │ ├── ssd1306_plugin.cpp │ └── ssd1306_plugin.h ├── ssdp │ ├── ssdp.cpp │ └── ssdp.h ├── stk500v1 │ ├── STK500v1Programmer.cpp │ ├── STK500v1Programmer.h │ ├── atmega.csv │ ├── stk500v1.cpp │ └── stk500v1.h ├── switch │ ├── switch.cpp │ ├── switch.h │ ├── switch_config.cpp │ └── switch_def.h ├── syslog │ ├── syslog_config.cpp │ ├── syslog_form.cpp │ ├── syslog_plugin.cpp │ └── syslog_plugin.h └── weather_station │ ├── CuratedArt │ ├── 1.jpg │ ├── 2.jpg │ ├── 3.jpg │ ├── 4.jpg │ ├── 5.jpg │ ├── 6.jpg │ ├── 7.jpg │ └── 8.jpg │ ├── Mpr121Touchpad.cpp │ ├── Mpr121Touchpad.h │ ├── RestAPI.h │ ├── WSDraw.cpp │ ├── WSDraw.h │ ├── WeatherStationBase.cpp │ ├── WeatherStationBase.h │ ├── fonts │ ├── DejaVuSans-Bold.ttf │ ├── DejaVuSans.ttf │ ├── Dialog Bold.ttf │ ├── Dialog.ttf │ ├── README.md │ ├── fontconvert │ │ ├── Makefile │ │ ├── fontconvert.c │ │ ├── fontconvert_win.md │ │ └── makefonts.sh │ ├── fonts.h │ ├── fonts_headers.tgz │ ├── fonts_includes.h │ ├── gfxfont.h │ ├── makefonts │ └── simple_small_pixels.ttf │ ├── format_time.h │ ├── moon │ ├── README.MD │ ├── julian.cpp │ ├── julian.h │ ├── moon_font.h │ ├── moontool.cpp │ └── moontool.h │ ├── moon_phase.cpp │ ├── moon_phase.h │ ├── themes │ ├── colors.h │ ├── theme1_160x240.h │ ├── theme1_colors.h │ └── theme2_240x320.h │ ├── weather_icons.h │ ├── weather_station.cpp │ ├── weather_station.h │ ├── ws_at_mode.cpp │ ├── ws_config.cpp │ └── ws_form.cpp ├── serial_handler.cpp ├── spgm_auto_strings.cpp ├── status.cpp ├── templates.cpp ├── web_server.cpp ├── web_server_action.cpp ├── web_server_arduino_ota.cpp ├── web_server_config.cpp ├── web_server_form.cpp ├── web_server_rest_handler.cpp ├── web_server_upload.cpp └── web_socket.cpp /.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/.clang-format -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /KFCWebBuilder.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/KFCWebBuilder.json -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/README.md -------------------------------------------------------------------------------- /Resources/css/alarm.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/Resources/css/alarm.css -------------------------------------------------------------------------------- /Resources/css/clock-led-matrix.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/Resources/css/clock-led-matrix.css -------------------------------------------------------------------------------- /Resources/css/form-help-block.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/Resources/css/form-help-block.css -------------------------------------------------------------------------------- /Resources/css/hexagon-panel.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/Resources/css/hexagon-panel.css -------------------------------------------------------------------------------- /Resources/css/http2serial.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/Resources/css/http2serial.css -------------------------------------------------------------------------------- /Resources/css/input-text-range.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/Resources/css/input-text-range.css -------------------------------------------------------------------------------- /Resources/css/nav-alerts.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/Resources/css/nav-alerts.css -------------------------------------------------------------------------------- /Resources/css/ping-console.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/Resources/css/ping-console.css -------------------------------------------------------------------------------- /Resources/css/rangeslider.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/Resources/css/rangeslider.css -------------------------------------------------------------------------------- /Resources/css/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/Resources/css/styles.css -------------------------------------------------------------------------------- /Resources/css/webui-component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/Resources/css/webui-component.css -------------------------------------------------------------------------------- /Resources/html/.foot.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/Resources/html/.foot.html -------------------------------------------------------------------------------- /Resources/html/.head.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/Resources/html/.head.html -------------------------------------------------------------------------------- /Resources/html/.javascript.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/Resources/html/.javascript.html -------------------------------------------------------------------------------- /Resources/html/.message.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/Resources/html/.message.html -------------------------------------------------------------------------------- /Resources/html/.nav.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/Resources/html/.nav.html -------------------------------------------------------------------------------- /Resources/html/.timezone_list_js.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/Resources/html/.timezone_list_js.html -------------------------------------------------------------------------------- /Resources/html/__prototypes.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/Resources/html/__prototypes.html -------------------------------------------------------------------------------- /Resources/html/__prototypes_webui.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/Resources/html/__prototypes_webui.html -------------------------------------------------------------------------------- /Resources/html/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/Resources/html/about.html -------------------------------------------------------------------------------- /Resources/html/alarm.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/Resources/html/alarm.html -------------------------------------------------------------------------------- /Resources/html/applying.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/Resources/html/applying.html -------------------------------------------------------------------------------- /Resources/html/blinds.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/Resources/html/blinds.html -------------------------------------------------------------------------------- /Resources/html/curated-art.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/Resources/html/curated-art.html -------------------------------------------------------------------------------- /Resources/html/description.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/Resources/html/description.xml -------------------------------------------------------------------------------- /Resources/html/device.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/Resources/html/device.html -------------------------------------------------------------------------------- /Resources/html/dimmer-ci.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/Resources/html/dimmer-ci.html -------------------------------------------------------------------------------- /Resources/html/dimmer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/Resources/html/dimmer.html -------------------------------------------------------------------------------- /Resources/html/display-screen.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/Resources/html/display-screen.html -------------------------------------------------------------------------------- /Resources/html/factory.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/Resources/html/factory.html -------------------------------------------------------------------------------- /Resources/html/file-manager.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/Resources/html/file-manager.html -------------------------------------------------------------------------------- /Resources/html/hass-actions.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/Resources/html/hass-actions.html -------------------------------------------------------------------------------- /Resources/html/hass-edit.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/Resources/html/hass-edit.html -------------------------------------------------------------------------------- /Resources/html/hass.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/Resources/html/hass.html -------------------------------------------------------------------------------- /Resources/html/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/Resources/html/index.html -------------------------------------------------------------------------------- /Resources/html/led-matrix.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/Resources/html/led-matrix.html -------------------------------------------------------------------------------- /Resources/html/login.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/Resources/html/login.html -------------------------------------------------------------------------------- /Resources/html/mdns-discovery.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/Resources/html/mdns-discovery.html -------------------------------------------------------------------------------- /Resources/html/mqtt.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/Resources/html/mqtt.html -------------------------------------------------------------------------------- /Resources/html/network-scan.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/Resources/html/network-scan.html -------------------------------------------------------------------------------- /Resources/html/network.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/Resources/html/network.html -------------------------------------------------------------------------------- /Resources/html/ntp.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/Resources/html/ntp.html -------------------------------------------------------------------------------- /Resources/html/password.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/Resources/html/password.html -------------------------------------------------------------------------------- /Resources/html/ping-monitor.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/Resources/html/ping-monitor.html -------------------------------------------------------------------------------- /Resources/html/ping.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/Resources/html/ping.html -------------------------------------------------------------------------------- /Resources/html/reboot.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/Resources/html/reboot.html -------------------------------------------------------------------------------- /Resources/html/rebooting.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/Resources/html/rebooting.html -------------------------------------------------------------------------------- /Resources/html/remote.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/Resources/html/remote.html -------------------------------------------------------------------------------- /Resources/html/remotectrl.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/Resources/html/remotectrl.html -------------------------------------------------------------------------------- /Resources/html/savecrash.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/Resources/html/savecrash.html -------------------------------------------------------------------------------- /Resources/html/sensor.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/Resources/html/sensor.html -------------------------------------------------------------------------------- /Resources/html/serial-console.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/Resources/html/serial-console.html -------------------------------------------------------------------------------- /Resources/html/serial2tcp.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/Resources/html/serial2tcp.html -------------------------------------------------------------------------------- /Resources/html/speed-test.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/Resources/html/speed-test.html -------------------------------------------------------------------------------- /Resources/html/status.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/Resources/html/status.html -------------------------------------------------------------------------------- /Resources/html/switch.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/Resources/html/switch.html -------------------------------------------------------------------------------- /Resources/html/syslog.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/Resources/html/syslog.html -------------------------------------------------------------------------------- /Resources/html/update-fw.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/Resources/html/update-fw.html -------------------------------------------------------------------------------- /Resources/html/weather.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/Resources/html/weather.html -------------------------------------------------------------------------------- /Resources/html/webui.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/Resources/html/webui.html -------------------------------------------------------------------------------- /Resources/html/wifi.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/Resources/html/wifi.html -------------------------------------------------------------------------------- /Resources/html/world-clock.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/Resources/html/world-clock.html -------------------------------------------------------------------------------- /Resources/images/light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/Resources/images/light.svg -------------------------------------------------------------------------------- /Resources/js/charts/Chart.bundle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/Resources/js/charts/Chart.bundle.js -------------------------------------------------------------------------------- /Resources/js/charts/Chart.bundle.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/Resources/js/charts/Chart.bundle.min.js -------------------------------------------------------------------------------- /Resources/js/charts/Chart.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/Resources/js/charts/Chart.css -------------------------------------------------------------------------------- /Resources/js/charts/Chart.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/Resources/js/charts/Chart.js -------------------------------------------------------------------------------- /Resources/js/charts/Chart.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/Resources/js/charts/Chart.min.css -------------------------------------------------------------------------------- /Resources/js/charts/Chart.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/Resources/js/charts/Chart.min.js -------------------------------------------------------------------------------- /Resources/js/charts/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/Resources/js/charts/LICENSE.md -------------------------------------------------------------------------------- /Resources/js/charts/chartjs-plugin-dragdata.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/Resources/js/charts/chartjs-plugin-dragdata.min.js -------------------------------------------------------------------------------- /Resources/js/common.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/Resources/js/common.js -------------------------------------------------------------------------------- /Resources/js/debug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/Resources/js/debug.js -------------------------------------------------------------------------------- /Resources/js/dimmer-ci.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/Resources/js/dimmer-ci.js -------------------------------------------------------------------------------- /Resources/js/file-manager.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/Resources/js/file-manager.js -------------------------------------------------------------------------------- /Resources/js/forms.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/Resources/js/forms.js -------------------------------------------------------------------------------- /Resources/js/forms/alarm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/Resources/js/forms/alarm.js -------------------------------------------------------------------------------- /Resources/js/forms/alive-check.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/Resources/js/forms/alive-check.js -------------------------------------------------------------------------------- /Resources/js/forms/device.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/Resources/js/forms/device.js -------------------------------------------------------------------------------- /Resources/js/forms/dimmer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/Resources/js/forms/dimmer.js -------------------------------------------------------------------------------- /Resources/js/forms/led-matrix.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/Resources/js/forms/led-matrix.js -------------------------------------------------------------------------------- /Resources/js/forms/network.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/Resources/js/forms/network.js -------------------------------------------------------------------------------- /Resources/js/forms/ntp.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/Resources/js/forms/ntp.js -------------------------------------------------------------------------------- /Resources/js/forms/remote.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/Resources/js/forms/remote.js -------------------------------------------------------------------------------- /Resources/js/forms/sensor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/Resources/js/forms/sensor.js -------------------------------------------------------------------------------- /Resources/js/forms/syslog.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/Resources/js/forms/syslog.js -------------------------------------------------------------------------------- /Resources/js/forms/update-fw.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/Resources/js/forms/update-fw.js -------------------------------------------------------------------------------- /Resources/js/forms/webui.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/Resources/js/forms/webui.js -------------------------------------------------------------------------------- /Resources/js/forms/wifi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/Resources/js/forms/wifi.js -------------------------------------------------------------------------------- /Resources/js/forms/world-clock.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/Resources/js/forms/world-clock.js -------------------------------------------------------------------------------- /Resources/js/http2serial.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/Resources/js/http2serial.js -------------------------------------------------------------------------------- /Resources/js/jQuery.base64.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/Resources/js/jQuery.base64.js -------------------------------------------------------------------------------- /Resources/js/led-matrix.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/Resources/js/led-matrix.js -------------------------------------------------------------------------------- /Resources/js/ping-console.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/Resources/js/ping-console.js -------------------------------------------------------------------------------- /Resources/js/sync-time.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/Resources/js/sync-time.js -------------------------------------------------------------------------------- /Resources/js/webui-led-matrix.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/Resources/js/webui-led-matrix.js -------------------------------------------------------------------------------- /Resources/js/webui.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/Resources/js/webui.js -------------------------------------------------------------------------------- /Resources/js/ws-console.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/Resources/js/ws-console.js -------------------------------------------------------------------------------- /compile_time.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/compile_time.md -------------------------------------------------------------------------------- /conf/common.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/conf/common.ini -------------------------------------------------------------------------------- /conf/common_esp32.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/conf/common_esp32.ini -------------------------------------------------------------------------------- /conf/common_esp8266.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/conf/common_esp8266.ini -------------------------------------------------------------------------------- /conf/debug_esp32.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/conf/debug_esp32.ini -------------------------------------------------------------------------------- /conf/debug_esp8266.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/conf/debug_esp8266.ini -------------------------------------------------------------------------------- /conf/env.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/conf/env.ini -------------------------------------------------------------------------------- /conf/envs/7segment_clock.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/conf/envs/7segment_clock.ini -------------------------------------------------------------------------------- /conf/envs/blinds_controller.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/conf/envs/blinds_controller.ini -------------------------------------------------------------------------------- /conf/envs/door_opener.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/conf/envs/door_opener.ini -------------------------------------------------------------------------------- /conf/envs/environmental_sensor.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/conf/envs/environmental_sensor.ini -------------------------------------------------------------------------------- /conf/envs/hexagon_panel.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/conf/envs/hexagon_panel.ini -------------------------------------------------------------------------------- /conf/envs/led_matrix.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/conf/envs/led_matrix.ini -------------------------------------------------------------------------------- /conf/envs/led_strip.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/conf/envs/led_strip.ini -------------------------------------------------------------------------------- /conf/envs/multichannel_relayboard.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/conf/envs/multichannel_relayboard.ini -------------------------------------------------------------------------------- /conf/envs/remote_control.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/conf/envs/remote_control.ini -------------------------------------------------------------------------------- /conf/envs/sonoff_basic.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/conf/envs/sonoff_basic.ini -------------------------------------------------------------------------------- /conf/envs/testing.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/conf/envs/testing.ini -------------------------------------------------------------------------------- /conf/envs/trailing_edge_dimmer.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/conf/envs/trailing_edge_dimmer.ini -------------------------------------------------------------------------------- /conf/envs/weather_station.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/conf/envs/weather_station.ini -------------------------------------------------------------------------------- /conf/envs/wled_board.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/conf/envs/wled_board.ini -------------------------------------------------------------------------------- /conf/ld/eagle.flash.1m400.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/conf/ld/eagle.flash.1m400.ld -------------------------------------------------------------------------------- /conf/ld/eagle.flash.4m1m.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/conf/ld/eagle.flash.4m1m.ld -------------------------------------------------------------------------------- /conf/ld/eagle.flash.4m2m.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/conf/ld/eagle.flash.4m2m.ld -------------------------------------------------------------------------------- /conf/ld/partitions_1M_app_4M_flash.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/conf/ld/partitions_1M_app_4M_flash.csv -------------------------------------------------------------------------------- /conf/ld/partitions_2M_app_4M_flash.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/conf/ld/partitions_2M_app_4M_flash.csv -------------------------------------------------------------------------------- /conf/ld/partitions_2M_app_no_spiffs_4M_flash.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/conf/ld/partitions_2M_app_no_spiffs_4M_flash.csv -------------------------------------------------------------------------------- /conf/ld/partitions_3M_app_4M_flash.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/conf/ld/partitions_3M_app_4M_flash.csv -------------------------------------------------------------------------------- /conf/ld/partitions_3M_app_no_spiffs_4M_flash.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/conf/ld/partitions_3M_app_no_spiffs_4M_flash.csv -------------------------------------------------------------------------------- /conf/release.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/conf/release.ini -------------------------------------------------------------------------------- /data/webui/placeholder.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/AtModeHelp.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/docs/AtModeHelp.md -------------------------------------------------------------------------------- /docs/ESP8266_GPIO_during_boot.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/docs/ESP8266_GPIO_during_boot.md -------------------------------------------------------------------------------- /docs/LILYGO TTGO Backlight_04-600x600w.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/docs/LILYGO TTGO Backlight_04-600x600w.jpg -------------------------------------------------------------------------------- /docs/T4_v1.3.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/docs/T4_v1.3.pdf -------------------------------------------------------------------------------- /firmware.code-workspace: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/firmware.code-workspace -------------------------------------------------------------------------------- /include/Adafruit_NeoPixelEx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/include/Adafruit_NeoPixelEx.h -------------------------------------------------------------------------------- /include/AtModeArgs.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/include/AtModeArgs.hpp -------------------------------------------------------------------------------- /include/NeoPixelEx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/include/NeoPixelEx.h -------------------------------------------------------------------------------- /include/PluginComponent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/include/PluginComponent.h -------------------------------------------------------------------------------- /include/TemplateDataProvider.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/include/TemplateDataProvider.h -------------------------------------------------------------------------------- /include/WebUIComponent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/include/WebUIComponent.h -------------------------------------------------------------------------------- /include/WebUISocket.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/include/WebUISocket.h -------------------------------------------------------------------------------- /include/async_web_handler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/include/async_web_handler.h -------------------------------------------------------------------------------- /include/async_web_response.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/include/async_web_response.h -------------------------------------------------------------------------------- /include/at_mode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/include/at_mode.h -------------------------------------------------------------------------------- /include/bitmap_header.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/include/bitmap_header.h -------------------------------------------------------------------------------- /include/blink_led_timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/include/blink_led_timer.h -------------------------------------------------------------------------------- /include/boost_1_80_0/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/include/boost_1_80_0/README.md -------------------------------------------------------------------------------- /include/boost_1_80_0/boost/preprocessor/arithmetic.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/include/boost_1_80_0/boost/preprocessor/arithmetic.hpp -------------------------------------------------------------------------------- /include/boost_1_80_0/boost/preprocessor/arithmetic/add.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/include/boost_1_80_0/boost/preprocessor/arithmetic/add.hpp -------------------------------------------------------------------------------- /include/boost_1_80_0/boost/preprocessor/arithmetic/dec.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/include/boost_1_80_0/boost/preprocessor/arithmetic/dec.hpp -------------------------------------------------------------------------------- /include/boost_1_80_0/boost/preprocessor/arithmetic/div.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/include/boost_1_80_0/boost/preprocessor/arithmetic/div.hpp -------------------------------------------------------------------------------- /include/boost_1_80_0/boost/preprocessor/arithmetic/inc.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/include/boost_1_80_0/boost/preprocessor/arithmetic/inc.hpp -------------------------------------------------------------------------------- /include/boost_1_80_0/boost/preprocessor/arithmetic/mod.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/include/boost_1_80_0/boost/preprocessor/arithmetic/mod.hpp -------------------------------------------------------------------------------- /include/boost_1_80_0/boost/preprocessor/arithmetic/mul.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/include/boost_1_80_0/boost/preprocessor/arithmetic/mul.hpp -------------------------------------------------------------------------------- /include/boost_1_80_0/boost/preprocessor/arithmetic/sub.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/include/boost_1_80_0/boost/preprocessor/arithmetic/sub.hpp -------------------------------------------------------------------------------- /include/boost_1_80_0/boost/preprocessor/array.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/include/boost_1_80_0/boost/preprocessor/array.hpp -------------------------------------------------------------------------------- /include/boost_1_80_0/boost/preprocessor/array/data.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/include/boost_1_80_0/boost/preprocessor/array/data.hpp -------------------------------------------------------------------------------- /include/boost_1_80_0/boost/preprocessor/array/elem.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/include/boost_1_80_0/boost/preprocessor/array/elem.hpp -------------------------------------------------------------------------------- /include/boost_1_80_0/boost/preprocessor/array/enum.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/include/boost_1_80_0/boost/preprocessor/array/enum.hpp -------------------------------------------------------------------------------- /include/boost_1_80_0/boost/preprocessor/array/insert.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/include/boost_1_80_0/boost/preprocessor/array/insert.hpp -------------------------------------------------------------------------------- /include/boost_1_80_0/boost/preprocessor/array/pop_back.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/include/boost_1_80_0/boost/preprocessor/array/pop_back.hpp -------------------------------------------------------------------------------- /include/boost_1_80_0/boost/preprocessor/array/pop_front.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/include/boost_1_80_0/boost/preprocessor/array/pop_front.hpp -------------------------------------------------------------------------------- /include/boost_1_80_0/boost/preprocessor/array/push_back.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/include/boost_1_80_0/boost/preprocessor/array/push_back.hpp -------------------------------------------------------------------------------- /include/boost_1_80_0/boost/preprocessor/array/push_front.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/include/boost_1_80_0/boost/preprocessor/array/push_front.hpp -------------------------------------------------------------------------------- /include/boost_1_80_0/boost/preprocessor/array/remove.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/include/boost_1_80_0/boost/preprocessor/array/remove.hpp -------------------------------------------------------------------------------- /include/boost_1_80_0/boost/preprocessor/array/replace.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/include/boost_1_80_0/boost/preprocessor/array/replace.hpp -------------------------------------------------------------------------------- /include/boost_1_80_0/boost/preprocessor/array/reverse.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/include/boost_1_80_0/boost/preprocessor/array/reverse.hpp -------------------------------------------------------------------------------- /include/boost_1_80_0/boost/preprocessor/array/size.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/include/boost_1_80_0/boost/preprocessor/array/size.hpp -------------------------------------------------------------------------------- /include/boost_1_80_0/boost/preprocessor/array/to_list.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/include/boost_1_80_0/boost/preprocessor/array/to_list.hpp -------------------------------------------------------------------------------- /include/boost_1_80_0/boost/preprocessor/array/to_seq.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/include/boost_1_80_0/boost/preprocessor/array/to_seq.hpp -------------------------------------------------------------------------------- /include/boost_1_80_0/boost/preprocessor/array/to_tuple.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/include/boost_1_80_0/boost/preprocessor/array/to_tuple.hpp -------------------------------------------------------------------------------- /include/boost_1_80_0/boost/preprocessor/assert_msg.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/include/boost_1_80_0/boost/preprocessor/assert_msg.hpp -------------------------------------------------------------------------------- /include/boost_1_80_0/boost/preprocessor/cat.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/include/boost_1_80_0/boost/preprocessor/cat.hpp -------------------------------------------------------------------------------- /include/boost_1_80_0/boost/preprocessor/comma.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/include/boost_1_80_0/boost/preprocessor/comma.hpp -------------------------------------------------------------------------------- /include/boost_1_80_0/boost/preprocessor/comma_if.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/include/boost_1_80_0/boost/preprocessor/comma_if.hpp -------------------------------------------------------------------------------- /include/boost_1_80_0/boost/preprocessor/comparison.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/include/boost_1_80_0/boost/preprocessor/comparison.hpp -------------------------------------------------------------------------------- /include/boost_1_80_0/boost/preprocessor/comparison/equal.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/include/boost_1_80_0/boost/preprocessor/comparison/equal.hpp -------------------------------------------------------------------------------- /include/boost_1_80_0/boost/preprocessor/comparison/less.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/include/boost_1_80_0/boost/preprocessor/comparison/less.hpp -------------------------------------------------------------------------------- /include/boost_1_80_0/boost/preprocessor/config/config.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/include/boost_1_80_0/boost/preprocessor/config/config.hpp -------------------------------------------------------------------------------- /include/boost_1_80_0/boost/preprocessor/config/limits.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/include/boost_1_80_0/boost/preprocessor/config/limits.hpp -------------------------------------------------------------------------------- /include/boost_1_80_0/boost/preprocessor/control.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/include/boost_1_80_0/boost/preprocessor/control.hpp -------------------------------------------------------------------------------- /include/boost_1_80_0/boost/preprocessor/control/deduce_d.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/include/boost_1_80_0/boost/preprocessor/control/deduce_d.hpp -------------------------------------------------------------------------------- /include/boost_1_80_0/boost/preprocessor/control/expr_if.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/include/boost_1_80_0/boost/preprocessor/control/expr_if.hpp -------------------------------------------------------------------------------- /include/boost_1_80_0/boost/preprocessor/control/expr_iif.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/include/boost_1_80_0/boost/preprocessor/control/expr_iif.hpp -------------------------------------------------------------------------------- /include/boost_1_80_0/boost/preprocessor/control/if.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/include/boost_1_80_0/boost/preprocessor/control/if.hpp -------------------------------------------------------------------------------- /include/boost_1_80_0/boost/preprocessor/control/iif.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/include/boost_1_80_0/boost/preprocessor/control/iif.hpp -------------------------------------------------------------------------------- /include/boost_1_80_0/boost/preprocessor/control/while.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/include/boost_1_80_0/boost/preprocessor/control/while.hpp -------------------------------------------------------------------------------- /include/boost_1_80_0/boost/preprocessor/debug.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/include/boost_1_80_0/boost/preprocessor/debug.hpp -------------------------------------------------------------------------------- /include/boost_1_80_0/boost/preprocessor/debug/assert.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/include/boost_1_80_0/boost/preprocessor/debug/assert.hpp -------------------------------------------------------------------------------- /include/boost_1_80_0/boost/preprocessor/debug/error.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/include/boost_1_80_0/boost/preprocessor/debug/error.hpp -------------------------------------------------------------------------------- /include/boost_1_80_0/boost/preprocessor/debug/line.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/include/boost_1_80_0/boost/preprocessor/debug/line.hpp -------------------------------------------------------------------------------- /include/boost_1_80_0/boost/preprocessor/dec.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/include/boost_1_80_0/boost/preprocessor/dec.hpp -------------------------------------------------------------------------------- /include/boost_1_80_0/boost/preprocessor/detail/auto_rec.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/include/boost_1_80_0/boost/preprocessor/detail/auto_rec.hpp -------------------------------------------------------------------------------- /include/boost_1_80_0/boost/preprocessor/detail/check.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/include/boost_1_80_0/boost/preprocessor/detail/check.hpp -------------------------------------------------------------------------------- /include/boost_1_80_0/boost/preprocessor/detail/is_binary.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/include/boost_1_80_0/boost/preprocessor/detail/is_binary.hpp -------------------------------------------------------------------------------- /include/boost_1_80_0/boost/preprocessor/detail/is_nullary.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/include/boost_1_80_0/boost/preprocessor/detail/is_nullary.hpp -------------------------------------------------------------------------------- /include/boost_1_80_0/boost/preprocessor/detail/is_unary.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/include/boost_1_80_0/boost/preprocessor/detail/is_unary.hpp -------------------------------------------------------------------------------- /include/boost_1_80_0/boost/preprocessor/detail/null.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/include/boost_1_80_0/boost/preprocessor/detail/null.hpp -------------------------------------------------------------------------------- /include/boost_1_80_0/boost/preprocessor/detail/split.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/include/boost_1_80_0/boost/preprocessor/detail/split.hpp -------------------------------------------------------------------------------- /include/boost_1_80_0/boost/preprocessor/empty.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/include/boost_1_80_0/boost/preprocessor/empty.hpp -------------------------------------------------------------------------------- /include/boost_1_80_0/boost/preprocessor/enum.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/include/boost_1_80_0/boost/preprocessor/enum.hpp -------------------------------------------------------------------------------- /include/boost_1_80_0/boost/preprocessor/enum_params.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/include/boost_1_80_0/boost/preprocessor/enum_params.hpp -------------------------------------------------------------------------------- /include/boost_1_80_0/boost/preprocessor/enum_shifted.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/include/boost_1_80_0/boost/preprocessor/enum_shifted.hpp -------------------------------------------------------------------------------- /include/boost_1_80_0/boost/preprocessor/expand.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/include/boost_1_80_0/boost/preprocessor/expand.hpp -------------------------------------------------------------------------------- /include/boost_1_80_0/boost/preprocessor/expr_if.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/include/boost_1_80_0/boost/preprocessor/expr_if.hpp -------------------------------------------------------------------------------- /include/boost_1_80_0/boost/preprocessor/facilities.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/include/boost_1_80_0/boost/preprocessor/facilities.hpp -------------------------------------------------------------------------------- /include/boost_1_80_0/boost/preprocessor/facilities/apply.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/include/boost_1_80_0/boost/preprocessor/facilities/apply.hpp -------------------------------------------------------------------------------- /include/boost_1_80_0/boost/preprocessor/facilities/empty.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/include/boost_1_80_0/boost/preprocessor/facilities/empty.hpp -------------------------------------------------------------------------------- /include/boost_1_80_0/boost/preprocessor/facilities/expand.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/include/boost_1_80_0/boost/preprocessor/facilities/expand.hpp -------------------------------------------------------------------------------- /include/boost_1_80_0/boost/preprocessor/facilities/is_1.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/include/boost_1_80_0/boost/preprocessor/facilities/is_1.hpp -------------------------------------------------------------------------------- /include/boost_1_80_0/boost/preprocessor/facilities/va_opt.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/include/boost_1_80_0/boost/preprocessor/facilities/va_opt.hpp -------------------------------------------------------------------------------- /include/boost_1_80_0/boost/preprocessor/for.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/include/boost_1_80_0/boost/preprocessor/for.hpp -------------------------------------------------------------------------------- /include/boost_1_80_0/boost/preprocessor/identity.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/include/boost_1_80_0/boost/preprocessor/identity.hpp -------------------------------------------------------------------------------- /include/boost_1_80_0/boost/preprocessor/if.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/include/boost_1_80_0/boost/preprocessor/if.hpp -------------------------------------------------------------------------------- /include/boost_1_80_0/boost/preprocessor/inc.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/include/boost_1_80_0/boost/preprocessor/inc.hpp -------------------------------------------------------------------------------- /include/boost_1_80_0/boost/preprocessor/iterate.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/include/boost_1_80_0/boost/preprocessor/iterate.hpp -------------------------------------------------------------------------------- /include/boost_1_80_0/boost/preprocessor/iteration.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/include/boost_1_80_0/boost/preprocessor/iteration.hpp -------------------------------------------------------------------------------- /include/boost_1_80_0/boost/preprocessor/iteration/iterate.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/include/boost_1_80_0/boost/preprocessor/iteration/iterate.hpp -------------------------------------------------------------------------------- /include/boost_1_80_0/boost/preprocessor/iteration/local.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/include/boost_1_80_0/boost/preprocessor/iteration/local.hpp -------------------------------------------------------------------------------- /include/boost_1_80_0/boost/preprocessor/iteration/self.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/include/boost_1_80_0/boost/preprocessor/iteration/self.hpp -------------------------------------------------------------------------------- /include/boost_1_80_0/boost/preprocessor/library.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/include/boost_1_80_0/boost/preprocessor/library.hpp -------------------------------------------------------------------------------- /include/boost_1_80_0/boost/preprocessor/limits.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/include/boost_1_80_0/boost/preprocessor/limits.hpp -------------------------------------------------------------------------------- /include/boost_1_80_0/boost/preprocessor/list.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/include/boost_1_80_0/boost/preprocessor/list.hpp -------------------------------------------------------------------------------- /include/boost_1_80_0/boost/preprocessor/list/adt.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/include/boost_1_80_0/boost/preprocessor/list/adt.hpp -------------------------------------------------------------------------------- /include/boost_1_80_0/boost/preprocessor/list/append.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/include/boost_1_80_0/boost/preprocessor/list/append.hpp -------------------------------------------------------------------------------- /include/boost_1_80_0/boost/preprocessor/list/at.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/include/boost_1_80_0/boost/preprocessor/list/at.hpp -------------------------------------------------------------------------------- /include/boost_1_80_0/boost/preprocessor/list/cat.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/include/boost_1_80_0/boost/preprocessor/list/cat.hpp -------------------------------------------------------------------------------- /include/boost_1_80_0/boost/preprocessor/list/enum.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/include/boost_1_80_0/boost/preprocessor/list/enum.hpp -------------------------------------------------------------------------------- /include/boost_1_80_0/boost/preprocessor/list/filter.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/include/boost_1_80_0/boost/preprocessor/list/filter.hpp -------------------------------------------------------------------------------- /include/boost_1_80_0/boost/preprocessor/list/first_n.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/include/boost_1_80_0/boost/preprocessor/list/first_n.hpp -------------------------------------------------------------------------------- /include/boost_1_80_0/boost/preprocessor/list/fold_left.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/include/boost_1_80_0/boost/preprocessor/list/fold_left.hpp -------------------------------------------------------------------------------- /include/boost_1_80_0/boost/preprocessor/list/fold_right.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/include/boost_1_80_0/boost/preprocessor/list/fold_right.hpp -------------------------------------------------------------------------------- /include/boost_1_80_0/boost/preprocessor/list/for_each.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/include/boost_1_80_0/boost/preprocessor/list/for_each.hpp -------------------------------------------------------------------------------- /include/boost_1_80_0/boost/preprocessor/list/for_each_i.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/include/boost_1_80_0/boost/preprocessor/list/for_each_i.hpp -------------------------------------------------------------------------------- /include/boost_1_80_0/boost/preprocessor/list/rest_n.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/include/boost_1_80_0/boost/preprocessor/list/rest_n.hpp -------------------------------------------------------------------------------- /include/boost_1_80_0/boost/preprocessor/list/reverse.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/include/boost_1_80_0/boost/preprocessor/list/reverse.hpp -------------------------------------------------------------------------------- /include/boost_1_80_0/boost/preprocessor/list/size.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/include/boost_1_80_0/boost/preprocessor/list/size.hpp -------------------------------------------------------------------------------- /include/boost_1_80_0/boost/preprocessor/list/to_array.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/include/boost_1_80_0/boost/preprocessor/list/to_array.hpp -------------------------------------------------------------------------------- /include/boost_1_80_0/boost/preprocessor/list/to_seq.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/include/boost_1_80_0/boost/preprocessor/list/to_seq.hpp -------------------------------------------------------------------------------- /include/boost_1_80_0/boost/preprocessor/list/to_tuple.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/include/boost_1_80_0/boost/preprocessor/list/to_tuple.hpp -------------------------------------------------------------------------------- /include/boost_1_80_0/boost/preprocessor/list/transform.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/include/boost_1_80_0/boost/preprocessor/list/transform.hpp -------------------------------------------------------------------------------- /include/boost_1_80_0/boost/preprocessor/logical.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/include/boost_1_80_0/boost/preprocessor/logical.hpp -------------------------------------------------------------------------------- /include/boost_1_80_0/boost/preprocessor/logical/and.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/include/boost_1_80_0/boost/preprocessor/logical/and.hpp -------------------------------------------------------------------------------- /include/boost_1_80_0/boost/preprocessor/logical/bitand.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/include/boost_1_80_0/boost/preprocessor/logical/bitand.hpp -------------------------------------------------------------------------------- /include/boost_1_80_0/boost/preprocessor/logical/bitnor.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/include/boost_1_80_0/boost/preprocessor/logical/bitnor.hpp -------------------------------------------------------------------------------- /include/boost_1_80_0/boost/preprocessor/logical/bitor.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/include/boost_1_80_0/boost/preprocessor/logical/bitor.hpp -------------------------------------------------------------------------------- /include/boost_1_80_0/boost/preprocessor/logical/bitxor.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/include/boost_1_80_0/boost/preprocessor/logical/bitxor.hpp -------------------------------------------------------------------------------- /include/boost_1_80_0/boost/preprocessor/logical/bool.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/include/boost_1_80_0/boost/preprocessor/logical/bool.hpp -------------------------------------------------------------------------------- /include/boost_1_80_0/boost/preprocessor/logical/compl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/include/boost_1_80_0/boost/preprocessor/logical/compl.hpp -------------------------------------------------------------------------------- /include/boost_1_80_0/boost/preprocessor/logical/nor.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/include/boost_1_80_0/boost/preprocessor/logical/nor.hpp -------------------------------------------------------------------------------- /include/boost_1_80_0/boost/preprocessor/logical/not.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/include/boost_1_80_0/boost/preprocessor/logical/not.hpp -------------------------------------------------------------------------------- /include/boost_1_80_0/boost/preprocessor/logical/or.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/include/boost_1_80_0/boost/preprocessor/logical/or.hpp -------------------------------------------------------------------------------- /include/boost_1_80_0/boost/preprocessor/logical/xor.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/include/boost_1_80_0/boost/preprocessor/logical/xor.hpp -------------------------------------------------------------------------------- /include/boost_1_80_0/boost/preprocessor/max.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/include/boost_1_80_0/boost/preprocessor/max.hpp -------------------------------------------------------------------------------- /include/boost_1_80_0/boost/preprocessor/min.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/include/boost_1_80_0/boost/preprocessor/min.hpp -------------------------------------------------------------------------------- /include/boost_1_80_0/boost/preprocessor/punctuation.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/include/boost_1_80_0/boost/preprocessor/punctuation.hpp -------------------------------------------------------------------------------- /include/boost_1_80_0/boost/preprocessor/repeat.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/include/boost_1_80_0/boost/preprocessor/repeat.hpp -------------------------------------------------------------------------------- /include/boost_1_80_0/boost/preprocessor/repeat_2nd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/include/boost_1_80_0/boost/preprocessor/repeat_2nd.hpp -------------------------------------------------------------------------------- /include/boost_1_80_0/boost/preprocessor/repeat_3rd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/include/boost_1_80_0/boost/preprocessor/repeat_3rd.hpp -------------------------------------------------------------------------------- /include/boost_1_80_0/boost/preprocessor/repeat_from_to.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/include/boost_1_80_0/boost/preprocessor/repeat_from_to.hpp -------------------------------------------------------------------------------- /include/boost_1_80_0/boost/preprocessor/repetition.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/include/boost_1_80_0/boost/preprocessor/repetition.hpp -------------------------------------------------------------------------------- /include/boost_1_80_0/boost/preprocessor/repetition/enum.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/include/boost_1_80_0/boost/preprocessor/repetition/enum.hpp -------------------------------------------------------------------------------- /include/boost_1_80_0/boost/preprocessor/repetition/for.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/include/boost_1_80_0/boost/preprocessor/repetition/for.hpp -------------------------------------------------------------------------------- /include/boost_1_80_0/boost/preprocessor/selection.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/include/boost_1_80_0/boost/preprocessor/selection.hpp -------------------------------------------------------------------------------- /include/boost_1_80_0/boost/preprocessor/selection/max.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/include/boost_1_80_0/boost/preprocessor/selection/max.hpp -------------------------------------------------------------------------------- /include/boost_1_80_0/boost/preprocessor/selection/min.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/include/boost_1_80_0/boost/preprocessor/selection/min.hpp -------------------------------------------------------------------------------- /include/boost_1_80_0/boost/preprocessor/seq.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/include/boost_1_80_0/boost/preprocessor/seq.hpp -------------------------------------------------------------------------------- /include/boost_1_80_0/boost/preprocessor/seq/cat.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/include/boost_1_80_0/boost/preprocessor/seq/cat.hpp -------------------------------------------------------------------------------- /include/boost_1_80_0/boost/preprocessor/seq/elem.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/include/boost_1_80_0/boost/preprocessor/seq/elem.hpp -------------------------------------------------------------------------------- /include/boost_1_80_0/boost/preprocessor/seq/enum.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/include/boost_1_80_0/boost/preprocessor/seq/enum.hpp -------------------------------------------------------------------------------- /include/boost_1_80_0/boost/preprocessor/seq/filter.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/include/boost_1_80_0/boost/preprocessor/seq/filter.hpp -------------------------------------------------------------------------------- /include/boost_1_80_0/boost/preprocessor/seq/first_n.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/include/boost_1_80_0/boost/preprocessor/seq/first_n.hpp -------------------------------------------------------------------------------- /include/boost_1_80_0/boost/preprocessor/seq/fold_left.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/include/boost_1_80_0/boost/preprocessor/seq/fold_left.hpp -------------------------------------------------------------------------------- /include/boost_1_80_0/boost/preprocessor/seq/fold_right.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/include/boost_1_80_0/boost/preprocessor/seq/fold_right.hpp -------------------------------------------------------------------------------- /include/boost_1_80_0/boost/preprocessor/seq/for_each.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/include/boost_1_80_0/boost/preprocessor/seq/for_each.hpp -------------------------------------------------------------------------------- /include/boost_1_80_0/boost/preprocessor/seq/for_each_i.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/include/boost_1_80_0/boost/preprocessor/seq/for_each_i.hpp -------------------------------------------------------------------------------- /include/boost_1_80_0/boost/preprocessor/seq/insert.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/include/boost_1_80_0/boost/preprocessor/seq/insert.hpp -------------------------------------------------------------------------------- /include/boost_1_80_0/boost/preprocessor/seq/pop_back.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/include/boost_1_80_0/boost/preprocessor/seq/pop_back.hpp -------------------------------------------------------------------------------- /include/boost_1_80_0/boost/preprocessor/seq/pop_front.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/include/boost_1_80_0/boost/preprocessor/seq/pop_front.hpp -------------------------------------------------------------------------------- /include/boost_1_80_0/boost/preprocessor/seq/push_back.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/include/boost_1_80_0/boost/preprocessor/seq/push_back.hpp -------------------------------------------------------------------------------- /include/boost_1_80_0/boost/preprocessor/seq/push_front.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/include/boost_1_80_0/boost/preprocessor/seq/push_front.hpp -------------------------------------------------------------------------------- /include/boost_1_80_0/boost/preprocessor/seq/remove.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/include/boost_1_80_0/boost/preprocessor/seq/remove.hpp -------------------------------------------------------------------------------- /include/boost_1_80_0/boost/preprocessor/seq/replace.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/include/boost_1_80_0/boost/preprocessor/seq/replace.hpp -------------------------------------------------------------------------------- /include/boost_1_80_0/boost/preprocessor/seq/rest_n.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/include/boost_1_80_0/boost/preprocessor/seq/rest_n.hpp -------------------------------------------------------------------------------- /include/boost_1_80_0/boost/preprocessor/seq/reverse.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/include/boost_1_80_0/boost/preprocessor/seq/reverse.hpp -------------------------------------------------------------------------------- /include/boost_1_80_0/boost/preprocessor/seq/seq.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/include/boost_1_80_0/boost/preprocessor/seq/seq.hpp -------------------------------------------------------------------------------- /include/boost_1_80_0/boost/preprocessor/seq/size.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/include/boost_1_80_0/boost/preprocessor/seq/size.hpp -------------------------------------------------------------------------------- /include/boost_1_80_0/boost/preprocessor/seq/subseq.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/include/boost_1_80_0/boost/preprocessor/seq/subseq.hpp -------------------------------------------------------------------------------- /include/boost_1_80_0/boost/preprocessor/seq/to_array.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/include/boost_1_80_0/boost/preprocessor/seq/to_array.hpp -------------------------------------------------------------------------------- /include/boost_1_80_0/boost/preprocessor/seq/to_list.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/include/boost_1_80_0/boost/preprocessor/seq/to_list.hpp -------------------------------------------------------------------------------- /include/boost_1_80_0/boost/preprocessor/seq/to_tuple.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/include/boost_1_80_0/boost/preprocessor/seq/to_tuple.hpp -------------------------------------------------------------------------------- /include/boost_1_80_0/boost/preprocessor/seq/transform.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/include/boost_1_80_0/boost/preprocessor/seq/transform.hpp -------------------------------------------------------------------------------- /include/boost_1_80_0/boost/preprocessor/slot.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/include/boost_1_80_0/boost/preprocessor/slot.hpp -------------------------------------------------------------------------------- /include/boost_1_80_0/boost/preprocessor/slot/counter.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/include/boost_1_80_0/boost/preprocessor/slot/counter.hpp -------------------------------------------------------------------------------- /include/boost_1_80_0/boost/preprocessor/slot/detail/def.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/include/boost_1_80_0/boost/preprocessor/slot/detail/def.hpp -------------------------------------------------------------------------------- /include/boost_1_80_0/boost/preprocessor/slot/slot.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/include/boost_1_80_0/boost/preprocessor/slot/slot.hpp -------------------------------------------------------------------------------- /include/boost_1_80_0/boost/preprocessor/stringize.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/include/boost_1_80_0/boost/preprocessor/stringize.hpp -------------------------------------------------------------------------------- /include/boost_1_80_0/boost/preprocessor/tuple.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/include/boost_1_80_0/boost/preprocessor/tuple.hpp -------------------------------------------------------------------------------- /include/boost_1_80_0/boost/preprocessor/tuple/eat.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/include/boost_1_80_0/boost/preprocessor/tuple/eat.hpp -------------------------------------------------------------------------------- /include/boost_1_80_0/boost/preprocessor/tuple/elem.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/include/boost_1_80_0/boost/preprocessor/tuple/elem.hpp -------------------------------------------------------------------------------- /include/boost_1_80_0/boost/preprocessor/tuple/enum.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/include/boost_1_80_0/boost/preprocessor/tuple/enum.hpp -------------------------------------------------------------------------------- /include/boost_1_80_0/boost/preprocessor/tuple/insert.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/include/boost_1_80_0/boost/preprocessor/tuple/insert.hpp -------------------------------------------------------------------------------- /include/boost_1_80_0/boost/preprocessor/tuple/pop_back.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/include/boost_1_80_0/boost/preprocessor/tuple/pop_back.hpp -------------------------------------------------------------------------------- /include/boost_1_80_0/boost/preprocessor/tuple/pop_front.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/include/boost_1_80_0/boost/preprocessor/tuple/pop_front.hpp -------------------------------------------------------------------------------- /include/boost_1_80_0/boost/preprocessor/tuple/push_back.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/include/boost_1_80_0/boost/preprocessor/tuple/push_back.hpp -------------------------------------------------------------------------------- /include/boost_1_80_0/boost/preprocessor/tuple/rem.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/include/boost_1_80_0/boost/preprocessor/tuple/rem.hpp -------------------------------------------------------------------------------- /include/boost_1_80_0/boost/preprocessor/tuple/remove.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/include/boost_1_80_0/boost/preprocessor/tuple/remove.hpp -------------------------------------------------------------------------------- /include/boost_1_80_0/boost/preprocessor/tuple/replace.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/include/boost_1_80_0/boost/preprocessor/tuple/replace.hpp -------------------------------------------------------------------------------- /include/boost_1_80_0/boost/preprocessor/tuple/reverse.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/include/boost_1_80_0/boost/preprocessor/tuple/reverse.hpp -------------------------------------------------------------------------------- /include/boost_1_80_0/boost/preprocessor/tuple/size.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/include/boost_1_80_0/boost/preprocessor/tuple/size.hpp -------------------------------------------------------------------------------- /include/boost_1_80_0/boost/preprocessor/tuple/to_array.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/include/boost_1_80_0/boost/preprocessor/tuple/to_array.hpp -------------------------------------------------------------------------------- /include/boost_1_80_0/boost/preprocessor/tuple/to_list.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/include/boost_1_80_0/boost/preprocessor/tuple/to_list.hpp -------------------------------------------------------------------------------- /include/boost_1_80_0/boost/preprocessor/tuple/to_seq.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/include/boost_1_80_0/boost/preprocessor/tuple/to_seq.hpp -------------------------------------------------------------------------------- /include/boost_1_80_0/boost/preprocessor/variadic.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/include/boost_1_80_0/boost/preprocessor/variadic.hpp -------------------------------------------------------------------------------- /include/boost_1_80_0/boost/preprocessor/variadic/elem.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/include/boost_1_80_0/boost/preprocessor/variadic/elem.hpp -------------------------------------------------------------------------------- /include/boost_1_80_0/boost/preprocessor/variadic/size.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/include/boost_1_80_0/boost/preprocessor/variadic/size.hpp -------------------------------------------------------------------------------- /include/boost_1_80_0/boost/preprocessor/variadic/to_seq.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/include/boost_1_80_0/boost/preprocessor/variadic/to_seq.hpp -------------------------------------------------------------------------------- /include/boost_1_80_0/boost/preprocessor/while.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/include/boost_1_80_0/boost/preprocessor/while.hpp -------------------------------------------------------------------------------- /include/boost_1_80_0/boost/preprocessor/wstringize.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/include/boost_1_80_0/boost/preprocessor/wstringize.hpp -------------------------------------------------------------------------------- /include/build.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/include/build.h -------------------------------------------------------------------------------- /include/build.h.current: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/include/build.h.current -------------------------------------------------------------------------------- /include/deep_sleep.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/include/deep_sleep.h -------------------------------------------------------------------------------- /include/deep_sleep.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/include/deep_sleep.hpp -------------------------------------------------------------------------------- /include/failure_counter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/include/failure_counter.h -------------------------------------------------------------------------------- /include/global.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/include/global.h -------------------------------------------------------------------------------- /include/kfc_fw_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/include/kfc_fw_config.h -------------------------------------------------------------------------------- /include/kfc_fw_config/base.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/include/kfc_fw_config/base.h -------------------------------------------------------------------------------- /include/kfc_fw_config/network.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/include/kfc_fw_config/network.h -------------------------------------------------------------------------------- /include/kfc_fw_config/plugins.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/include/kfc_fw_config/plugins.h -------------------------------------------------------------------------------- /include/kfc_fw_config/plugins/alarm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/include/kfc_fw_config/plugins/alarm.h -------------------------------------------------------------------------------- /include/kfc_fw_config/plugins/blinds_ctrl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/include/kfc_fw_config/plugins/blinds_ctrl.h -------------------------------------------------------------------------------- /include/kfc_fw_config/plugins/clock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/include/kfc_fw_config/plugins/clock.h -------------------------------------------------------------------------------- /include/kfc_fw_config/plugins/dimmer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/include/kfc_fw_config/plugins/dimmer.h -------------------------------------------------------------------------------- /include/kfc_fw_config/plugins/display.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/include/kfc_fw_config/plugins/display.h -------------------------------------------------------------------------------- /include/kfc_fw_config/plugins/iot_switch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/include/kfc_fw_config/plugins/iot_switch.h -------------------------------------------------------------------------------- /include/kfc_fw_config/plugins/mdns.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/include/kfc_fw_config/plugins/mdns.h -------------------------------------------------------------------------------- /include/kfc_fw_config/plugins/mqtt_client.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/include/kfc_fw_config/plugins/mqtt_client.h -------------------------------------------------------------------------------- /include/kfc_fw_config/plugins/ntp_client.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/include/kfc_fw_config/plugins/ntp_client.h -------------------------------------------------------------------------------- /include/kfc_fw_config/plugins/ping.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/include/kfc_fw_config/plugins/ping.h -------------------------------------------------------------------------------- /include/kfc_fw_config/plugins/remote.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/include/kfc_fw_config/plugins/remote.h -------------------------------------------------------------------------------- /include/kfc_fw_config/plugins/sensor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/include/kfc_fw_config/plugins/sensor.h -------------------------------------------------------------------------------- /include/kfc_fw_config/plugins/serial2tcp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/include/kfc_fw_config/plugins/serial2tcp.h -------------------------------------------------------------------------------- /include/kfc_fw_config/plugins/syslog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/include/kfc_fw_config/plugins/syslog.h -------------------------------------------------------------------------------- /include/kfc_fw_config/plugins/weather_station.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/include/kfc_fw_config/plugins/weather_station.h -------------------------------------------------------------------------------- /include/kfc_fw_config/system.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/include/kfc_fw_config/system.h -------------------------------------------------------------------------------- /include/kfc_fw_config_classes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/include/kfc_fw_config_classes.h -------------------------------------------------------------------------------- /include/kfc_fw_config_plugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/include/kfc_fw_config_plugin.h -------------------------------------------------------------------------------- /include/kfc_fw_config_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/include/kfc_fw_config_types.h -------------------------------------------------------------------------------- /include/logger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/include/logger.h -------------------------------------------------------------------------------- /include/logger_stream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/include/logger_stream.h -------------------------------------------------------------------------------- /include/plugins.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/include/plugins.h -------------------------------------------------------------------------------- /include/plugins_menu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/include/plugins_menu.h -------------------------------------------------------------------------------- /include/rest_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/include/rest_api.h -------------------------------------------------------------------------------- /include/serial2udp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/include/serial2udp.h -------------------------------------------------------------------------------- /include/serial_handler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/include/serial_handler.h -------------------------------------------------------------------------------- /include/spgm_auto_def.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/include/spgm_auto_def.h -------------------------------------------------------------------------------- /include/spgm_auto_strings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/include/spgm_auto_strings.h -------------------------------------------------------------------------------- /include/status.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/include/status.h -------------------------------------------------------------------------------- /include/templates.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/include/templates.h -------------------------------------------------------------------------------- /include/web_server.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/include/web_server.h -------------------------------------------------------------------------------- /include/web_server_action.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/include/web_server_action.h -------------------------------------------------------------------------------- /include/web_socket.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/include/web_socket.h -------------------------------------------------------------------------------- /lib-mock/KFCBaseLibrary/cores/esp8266/WString/WStringEx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/lib-mock/KFCBaseLibrary/cores/esp8266/WString/WStringEx.cpp -------------------------------------------------------------------------------- /lib-mock/KFCBaseLibrary/include/Arduino.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/lib-mock/KFCBaseLibrary/include/Arduino.h -------------------------------------------------------------------------------- /lib-mock/KFCBaseLibrary/include/EEPROM.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/lib-mock/KFCBaseLibrary/include/EEPROM.h -------------------------------------------------------------------------------- /lib-mock/KFCBaseLibrary/include/ESP.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/lib-mock/KFCBaseLibrary/include/ESP.h -------------------------------------------------------------------------------- /lib-mock/KFCBaseLibrary/include/ESP8266HttpClient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/lib-mock/KFCBaseLibrary/include/ESP8266HttpClient.h -------------------------------------------------------------------------------- /lib-mock/KFCBaseLibrary/include/ESPAsyncTCP.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/lib-mock/KFCBaseLibrary/include/ESPAsyncTCP.h -------------------------------------------------------------------------------- /lib-mock/KFCBaseLibrary/include/FS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/lib-mock/KFCBaseLibrary/include/FS.h -------------------------------------------------------------------------------- /lib-mock/KFCBaseLibrary/include/FSImpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/lib-mock/KFCBaseLibrary/include/FSImpl.h -------------------------------------------------------------------------------- /lib-mock/KFCBaseLibrary/include/Print.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/lib-mock/KFCBaseLibrary/include/Print.h -------------------------------------------------------------------------------- /lib-mock/KFCBaseLibrary/include/SPI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/lib-mock/KFCBaseLibrary/include/SPI.h -------------------------------------------------------------------------------- /lib-mock/KFCBaseLibrary/include/Serial.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/lib-mock/KFCBaseLibrary/include/Serial.h -------------------------------------------------------------------------------- /lib-mock/KFCBaseLibrary/include/Stream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/lib-mock/KFCBaseLibrary/include/Stream.h -------------------------------------------------------------------------------- /lib-mock/KFCBaseLibrary/include/StreamString.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/lib-mock/KFCBaseLibrary/include/StreamString.h -------------------------------------------------------------------------------- /lib-mock/KFCBaseLibrary/include/WString.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/lib-mock/KFCBaseLibrary/include/WString.h -------------------------------------------------------------------------------- /lib-mock/KFCBaseLibrary/include/WiFi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/lib-mock/KFCBaseLibrary/include/WiFi.h -------------------------------------------------------------------------------- /lib-mock/KFCBaseLibrary/include/WiFiUDP.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/lib-mock/KFCBaseLibrary/include/WiFiUDP.h -------------------------------------------------------------------------------- /lib-mock/KFCBaseLibrary/include/Wire.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/lib-mock/KFCBaseLibrary/include/Wire.h -------------------------------------------------------------------------------- /lib-mock/KFCBaseLibrary/include/avr/delay.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib-mock/KFCBaseLibrary/include/avr/interrupt.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib-mock/KFCBaseLibrary/include/avr/io.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib-mock/KFCBaseLibrary/include/avr/pgmspace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/lib-mock/KFCBaseLibrary/include/avr/pgmspace.h -------------------------------------------------------------------------------- /lib-mock/KFCBaseLibrary/include/c_types.h: -------------------------------------------------------------------------------- 1 | 2 | #pragma once 3 | -------------------------------------------------------------------------------- /lib-mock/KFCBaseLibrary/include/eagle_soc.h: -------------------------------------------------------------------------------- 1 | /** 2 | * Author: sascha_lammers@gmx.de 3 | */ 4 | 5 | #pragma once 6 | -------------------------------------------------------------------------------- /lib-mock/KFCBaseLibrary/include/global.h: -------------------------------------------------------------------------------- 1 | /** 2 | * Author: sascha_lammers@gmx.de 3 | */ 4 | 5 | #pragma once 6 | 7 | #define DEBUG_OUTPUT Serial 8 | -------------------------------------------------------------------------------- /lib-mock/KFCBaseLibrary/include/pgmspace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/lib-mock/KFCBaseLibrary/include/pgmspace.h -------------------------------------------------------------------------------- /lib-mock/KFCBaseLibrary/include/pins_arduino.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/lib-mock/KFCBaseLibrary/include/pins_arduino.h -------------------------------------------------------------------------------- /lib-mock/KFCBaseLibrary/include/spi_flash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/lib-mock/KFCBaseLibrary/include/spi_flash.h -------------------------------------------------------------------------------- /lib-mock/KFCBaseLibrary/include/stdlib_noniso.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | #include "util/stdlib_noniso.h" 4 | -------------------------------------------------------------------------------- /lib-mock/KFCBaseLibrary/include/sys/pgmspace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/lib-mock/KFCBaseLibrary/include/sys/pgmspace.h -------------------------------------------------------------------------------- /lib-mock/KFCBaseLibrary/include/util/delay.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib-mock/KFCBaseLibrary/include/util/stdlib_noniso.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/lib-mock/KFCBaseLibrary/include/util/stdlib_noniso.h -------------------------------------------------------------------------------- /lib-mock/KFCBaseLibrary/include/wProgram.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/lib-mock/KFCBaseLibrary/include/wProgram.h -------------------------------------------------------------------------------- /lib-mock/KFCBaseLibrary/include/wiring_private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/lib-mock/KFCBaseLibrary/include/wiring_private.h -------------------------------------------------------------------------------- /lib-mock/KFCBaseLibrary/msc_framework-arduinoespressif_win32/WeatherStation/WeatherStation.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | #include "resource.h" 4 | -------------------------------------------------------------------------------- /lib-mock/KFCBaseLibrary/msc_framework-arduinoespressif_win32/static_lib/Scheduler.hpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib-mock/KFCBaseLibrary/src/Compat.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/lib-mock/KFCBaseLibrary/src/Compat.cpp -------------------------------------------------------------------------------- /lib-mock/KFCBaseLibrary/src/EEPROM.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/lib-mock/KFCBaseLibrary/src/EEPROM.cpp -------------------------------------------------------------------------------- /lib-mock/KFCBaseLibrary/src/ESP8266HttpClient.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/lib-mock/KFCBaseLibrary/src/ESP8266HttpClient.cpp -------------------------------------------------------------------------------- /lib-mock/KFCBaseLibrary/src/FS.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/lib-mock/KFCBaseLibrary/src/FS.cpp -------------------------------------------------------------------------------- /lib-mock/KFCBaseLibrary/src/Flash/EspFlash.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/lib-mock/KFCBaseLibrary/src/Flash/EspFlash.cpp -------------------------------------------------------------------------------- /lib-mock/KFCBaseLibrary/src/Flash/eagle.flash.4m2m.ld.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/lib-mock/KFCBaseLibrary/src/Flash/eagle.flash.4m2m.ld.cpp -------------------------------------------------------------------------------- /lib-mock/KFCBaseLibrary/src/Print.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/lib-mock/KFCBaseLibrary/src/Print.cpp -------------------------------------------------------------------------------- /lib-mock/KFCBaseLibrary/src/SPI.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/lib-mock/KFCBaseLibrary/src/SPI.cpp -------------------------------------------------------------------------------- /lib-mock/KFCBaseLibrary/src/Serial.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/lib-mock/KFCBaseLibrary/src/Serial.cpp -------------------------------------------------------------------------------- /lib-mock/KFCBaseLibrary/src/Stream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/lib-mock/KFCBaseLibrary/src/Stream.cpp -------------------------------------------------------------------------------- /lib-mock/KFCBaseLibrary/src/StreamString.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/lib-mock/KFCBaseLibrary/src/StreamString.cpp -------------------------------------------------------------------------------- /lib-mock/KFCBaseLibrary/src/WStringMock.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/lib-mock/KFCBaseLibrary/src/WStringMock.cpp -------------------------------------------------------------------------------- /lib-mock/KFCBaseLibrary/src/WiFi.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/lib-mock/KFCBaseLibrary/src/WiFi.cpp -------------------------------------------------------------------------------- /lib-mock/KFCBaseLibrary/src/WiFiUDP.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/lib-mock/KFCBaseLibrary/src/WiFiUDP.cpp -------------------------------------------------------------------------------- /lib-mock/KFCBaseLibrary/src/Wire.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/lib-mock/KFCBaseLibrary/src/Wire.cpp -------------------------------------------------------------------------------- /lib-mock/KFCBaseLibrary/src/stdlib_noniso.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/lib-mock/KFCBaseLibrary/src/stdlib_noniso.cpp -------------------------------------------------------------------------------- /lib-mock/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/lib-mock/README.md -------------------------------------------------------------------------------- /lib-mock/ets_impl/ets_main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/lib-mock/ets_impl/ets_main.cpp -------------------------------------------------------------------------------- /lib-mock/ets_impl/ets_sys_win32.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/lib-mock/ets_impl/ets_sys_win32.cpp -------------------------------------------------------------------------------- /lib-mock/ets_impl/ets_sys_win32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/lib-mock/ets_impl/ets_sys_win32.h -------------------------------------------------------------------------------- /lib-mock/ets_impl/ets_timer_win32.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/lib-mock/ets_impl/ets_timer_win32.cpp -------------------------------------------------------------------------------- /lib-mock/ets_impl/ets_timer_win32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/lib-mock/ets_impl/ets_timer_win32.h -------------------------------------------------------------------------------- /lib-mock/ets_impl/ets_win_includes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/lib-mock/ets_impl/ets_win_includes.h -------------------------------------------------------------------------------- /lib/placeholder.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/lib/placeholder.txt -------------------------------------------------------------------------------- /logs/placeholder.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/package.json -------------------------------------------------------------------------------- /platformio.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/platformio.ini -------------------------------------------------------------------------------- /scripts/build_number.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/scripts/build_number.py -------------------------------------------------------------------------------- /scripts/buildall.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/scripts/buildall.bat -------------------------------------------------------------------------------- /scripts/debug_assets/create_scripts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/scripts/debug_assets/create_scripts.py -------------------------------------------------------------------------------- /scripts/debug_assets/http.server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/scripts/debug_assets/http.server.py -------------------------------------------------------------------------------- /scripts/extra_script.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/scripts/extra_script.py -------------------------------------------------------------------------------- /scripts/kfcfw_tool/common/MainApp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/scripts/kfcfw_tool/common/MainApp.py -------------------------------------------------------------------------------- /scripts/kfcfw_tool/common/Plot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/scripts/kfcfw_tool/common/Plot.py -------------------------------------------------------------------------------- /scripts/kfcfw_tool/common/Touchpad.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/scripts/kfcfw_tool/common/Touchpad.py -------------------------------------------------------------------------------- /scripts/kfcfw_tool/common/tk_ez_grid.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/scripts/kfcfw_tool/common/tk_ez_grid.py -------------------------------------------------------------------------------- /scripts/kfcfw_tool/common/tk_form_var.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/scripts/kfcfw_tool/common/tk_form_var.py -------------------------------------------------------------------------------- /scripts/kfcfw_tool/kfcfw_tool.code-workspace: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/scripts/kfcfw_tool/kfcfw_tool.code-workspace -------------------------------------------------------------------------------- /scripts/kfcfw_tool/kfcfw_tool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/scripts/kfcfw_tool/kfcfw_tool.py -------------------------------------------------------------------------------- /scripts/kfcfw_tool/libs/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/scripts/kfcfw_tool/libs/__init__.py -------------------------------------------------------------------------------- /scripts/kfcfw_tool/pages/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/scripts/kfcfw_tool/pages/__init__.py -------------------------------------------------------------------------------- /scripts/kfcfw_tool/pages/adc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/scripts/kfcfw_tool/pages/adc.py -------------------------------------------------------------------------------- /scripts/kfcfw_tool/pages/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/scripts/kfcfw_tool/pages/base.py -------------------------------------------------------------------------------- /scripts/kfcfw_tool/pages/energy_monitor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/scripts/kfcfw_tool/pages/energy_monitor.py -------------------------------------------------------------------------------- /scripts/kfcfw_tool/pages/start.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/scripts/kfcfw_tool/pages/start.py -------------------------------------------------------------------------------- /scripts/kfcfw_tool/pages/touchpad.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/scripts/kfcfw_tool/pages/touchpad.py -------------------------------------------------------------------------------- /scripts/kfcfw_tool/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/scripts/kfcfw_tool/requirements.txt -------------------------------------------------------------------------------- /scripts/libs/README.md: -------------------------------------------------------------------------------- 1 | 2 | # Common python library 3 | -------------------------------------------------------------------------------- /scripts/libs/kfcfw/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/scripts/libs/kfcfw/__init__.py -------------------------------------------------------------------------------- /scripts/libs/kfcfw/configuration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/scripts/libs/kfcfw/configuration.py -------------------------------------------------------------------------------- /scripts/libs/kfcfw/connection/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/scripts/libs/kfcfw/connection/__init__.py -------------------------------------------------------------------------------- /scripts/libs/kfcfw/connection/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/scripts/libs/kfcfw/connection/base.py -------------------------------------------------------------------------------- /scripts/libs/kfcfw/connection/controller.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/scripts/libs/kfcfw/connection/controller.py -------------------------------------------------------------------------------- /scripts/libs/kfcfw/connection/websocket.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/scripts/libs/kfcfw/connection/websocket.py -------------------------------------------------------------------------------- /scripts/libs/kfcfw/inline.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/scripts/libs/kfcfw/inline.py -------------------------------------------------------------------------------- /scripts/libs/kfcfw/ota.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/scripts/libs/kfcfw/ota.py -------------------------------------------------------------------------------- /scripts/libs/kfcfw/session.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/scripts/libs/kfcfw/session.py -------------------------------------------------------------------------------- /scripts/mqtt/cron.dump_persistant_storage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/scripts/mqtt/cron.dump_persistant_storage -------------------------------------------------------------------------------- /scripts/mqtt/mqtt_show: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/scripts/mqtt/mqtt_show -------------------------------------------------------------------------------- /scripts/mqtt/mqtt_wipe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/scripts/mqtt/mqtt_wipe -------------------------------------------------------------------------------- /scripts/post_script.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /scripts/pre_script.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/scripts/pre_script.py -------------------------------------------------------------------------------- /scripts/tools/MemAnalyzer.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/scripts/tools/MemAnalyzer.exe -------------------------------------------------------------------------------- /scripts/tools/create_7segment_display.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/scripts/tools/create_7segment_display.py -------------------------------------------------------------------------------- /scripts/tools/create_mqtt_strings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/scripts/tools/create_mqtt_strings.py -------------------------------------------------------------------------------- /scripts/tools/dump_section.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/scripts/tools/dump_section.php -------------------------------------------------------------------------------- /scripts/tools/dump_sections.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/scripts/tools/dump_sections.py -------------------------------------------------------------------------------- /scripts/tools/fonts/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/scripts/tools/fonts/__init__.py -------------------------------------------------------------------------------- /scripts/tools/fonts/canvas.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/scripts/tools/fonts/canvas.py -------------------------------------------------------------------------------- /scripts/tools/fonts/font_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/scripts/tools/fonts/font_data.py -------------------------------------------------------------------------------- /scripts/tools/fonts/font_digital_7.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/scripts/tools/fonts/font_digital_7.py -------------------------------------------------------------------------------- /scripts/tools/fonts/font_objects.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/scripts/tools/fonts/font_objects.py -------------------------------------------------------------------------------- /scripts/tools/fonts/headers/Picopixel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/scripts/tools/fonts/headers/Picopixel.h -------------------------------------------------------------------------------- /scripts/tools/fonts/headers/Tiny3x3a2pt7b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/scripts/tools/fonts/headers/Tiny3x3a2pt7b.h -------------------------------------------------------------------------------- /scripts/tools/fonts/headers/digital_7_mono_8pt7b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/scripts/tools/fonts/headers/digital_7_mono_8pt7b.h -------------------------------------------------------------------------------- /scripts/tools/fonts/matrix_display.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/scripts/tools/fonts/matrix_display.py -------------------------------------------------------------------------------- /scripts/tools/gen_note_to_freq.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/scripts/tools/gen_note_to_freq.py -------------------------------------------------------------------------------- /scripts/tools/i2s_microphone_band_gen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/scripts/tools/i2s_microphone_band_gen.py -------------------------------------------------------------------------------- /scripts/tools/kfcfw_discovery.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/scripts/tools/kfcfw_discovery.py -------------------------------------------------------------------------------- /scripts/tools/kfcfw_ota.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/scripts/tools/kfcfw_ota.py -------------------------------------------------------------------------------- /scripts/tools/ldtool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/scripts/tools/ldtool.py -------------------------------------------------------------------------------- /scripts/tools/led_matrix_shapes/7seg.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/scripts/tools/led_matrix_shapes/7seg.html -------------------------------------------------------------------------------- /scripts/tools/led_matrix_shapes/hexagon.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/scripts/tools/led_matrix_shapes/hexagon.html -------------------------------------------------------------------------------- /scripts/tools/led_matrix_shapes/pix.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/scripts/tools/led_matrix_shapes/pix.html -------------------------------------------------------------------------------- /scripts/tools/partitions_tool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/scripts/tools/partitions_tool.py -------------------------------------------------------------------------------- /scripts/tools/spectrum_analyser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/scripts/tools/spectrum_analyser.py -------------------------------------------------------------------------------- /scripts/tools/temp_comp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/scripts/tools/temp_comp.py -------------------------------------------------------------------------------- /scripts/tools/udp_recv_packet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/scripts/tools/udp_recv_packet.py -------------------------------------------------------------------------------- /scripts/tools/udp_recv_packet_gfx.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/scripts/tools/udp_recv_packet_gfx.py -------------------------------------------------------------------------------- /scripts/tools/udp_send_packet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/scripts/tools/udp_send_packet.py -------------------------------------------------------------------------------- /scripts/udp2ws_proxy/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/scripts/udp2ws_proxy/index.js -------------------------------------------------------------------------------- /scripts/udp2ws_proxy/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/scripts/udp2ws_proxy/package.json -------------------------------------------------------------------------------- /scripts/udp2ws_proxy/udp2ws_proxy.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/scripts/udp2ws_proxy/udp2ws_proxy.service -------------------------------------------------------------------------------- /src/AtModeArgs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/src/AtModeArgs.cpp -------------------------------------------------------------------------------- /src/PluginComponent.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/src/PluginComponent.cpp -------------------------------------------------------------------------------- /src/WebUIComponent.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/src/WebUIComponent.cpp -------------------------------------------------------------------------------- /src/WebUISocket.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/src/WebUISocket.cpp -------------------------------------------------------------------------------- /src/async_web_handler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/src/async_web_handler.cpp -------------------------------------------------------------------------------- /src/async_web_response.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/src/async_web_response.cpp -------------------------------------------------------------------------------- /src/at_mode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/src/at_mode.cpp -------------------------------------------------------------------------------- /src/blink_led_timer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/src/blink_led_timer.cpp -------------------------------------------------------------------------------- /src/deep_sleep.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/src/deep_sleep.cpp -------------------------------------------------------------------------------- /src/esp32_perfmon.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/src/esp32_perfmon.hpp -------------------------------------------------------------------------------- /src/failure_counter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/src/failure_counter.cpp -------------------------------------------------------------------------------- /src/i2c_scanner.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/src/i2c_scanner.h -------------------------------------------------------------------------------- /src/kfc_firmware.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/src/kfc_firmware.cpp -------------------------------------------------------------------------------- /src/kfc_fw_config.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/src/kfc_fw_config.cpp -------------------------------------------------------------------------------- /src/kfc_fw_config_classes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/src/kfc_fw_config_classes.cpp -------------------------------------------------------------------------------- /src/kfc_fw_config_classes.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/src/kfc_fw_config_classes.hpp -------------------------------------------------------------------------------- /src/kfc_fw_config_forms.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/src/kfc_fw_config_forms.cpp -------------------------------------------------------------------------------- /src/logger.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/src/logger.cpp -------------------------------------------------------------------------------- /src/plugin_dependencies.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/src/plugin_dependencies.cpp -------------------------------------------------------------------------------- /src/plugins.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/src/plugins.cpp -------------------------------------------------------------------------------- /src/plugins/alarm/alarm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/src/plugins/alarm/alarm.cpp -------------------------------------------------------------------------------- /src/plugins/alarm/alarm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/src/plugins/alarm/alarm.h -------------------------------------------------------------------------------- /src/plugins/alarm/alarm_config.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/src/plugins/alarm/alarm_config.cpp -------------------------------------------------------------------------------- /src/plugins/blinds_ctrl/BlindsControl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/src/plugins/blinds_ctrl/BlindsControl.cpp -------------------------------------------------------------------------------- /src/plugins/blinds_ctrl/BlindsControl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/src/plugins/blinds_ctrl/BlindsControl.h -------------------------------------------------------------------------------- /src/plugins/blinds_ctrl/blinds_audio.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/src/plugins/blinds_ctrl/blinds_audio.hpp -------------------------------------------------------------------------------- /src/plugins/blinds_ctrl/blinds_channelaction.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/src/plugins/blinds_ctrl/blinds_channelaction.hpp -------------------------------------------------------------------------------- /src/plugins/blinds_ctrl/blinds_channelqueue.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/src/plugins/blinds_ctrl/blinds_channelqueue.hpp -------------------------------------------------------------------------------- /src/plugins/blinds_ctrl/blinds_channelstate.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/src/plugins/blinds_ctrl/blinds_channelstate.hpp -------------------------------------------------------------------------------- /src/plugins/blinds_ctrl/blinds_channeltoaction.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/src/plugins/blinds_ctrl/blinds_channeltoaction.hpp -------------------------------------------------------------------------------- /src/plugins/blinds_ctrl/blinds_config.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/src/plugins/blinds_ctrl/blinds_config.cpp -------------------------------------------------------------------------------- /src/plugins/blinds_ctrl/blinds_control.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/src/plugins/blinds_ctrl/blinds_control.hpp -------------------------------------------------------------------------------- /src/plugins/blinds_ctrl/blinds_defines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/src/plugins/blinds_ctrl/blinds_defines.h -------------------------------------------------------------------------------- /src/plugins/blinds_ctrl/blinds_form.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/src/plugins/blinds_ctrl/blinds_form.cpp -------------------------------------------------------------------------------- /src/plugins/blinds_ctrl/blinds_motor.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/src/plugins/blinds_ctrl/blinds_motor.hpp -------------------------------------------------------------------------------- /src/plugins/blinds_ctrl/blinds_plugin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/src/plugins/blinds_ctrl/blinds_plugin.cpp -------------------------------------------------------------------------------- /src/plugins/blinds_ctrl/blinds_plugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/src/plugins/blinds_ctrl/blinds_plugin.h -------------------------------------------------------------------------------- /src/plugins/clock/IoT-Audio-Visualization-Center/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/src/plugins/clock/IoT-Audio-Visualization-Center/README.md -------------------------------------------------------------------------------- /src/plugins/clock/animation.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/src/plugins/clock/animation.cpp -------------------------------------------------------------------------------- /src/plugins/clock/animation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/src/plugins/clock/animation.h -------------------------------------------------------------------------------- /src/plugins/clock/animation_fading.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/src/plugins/clock/animation_fading.h -------------------------------------------------------------------------------- /src/plugins/clock/animation_fire.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/src/plugins/clock/animation_fire.h -------------------------------------------------------------------------------- /src/plugins/clock/animation_flashing.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/src/plugins/clock/animation_flashing.h -------------------------------------------------------------------------------- /src/plugins/clock/animation_gradient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/src/plugins/clock/animation_gradient.h -------------------------------------------------------------------------------- /src/plugins/clock/animation_interleaved.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/src/plugins/clock/animation_interleaved.h -------------------------------------------------------------------------------- /src/plugins/clock/animation_plasma.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/src/plugins/clock/animation_plasma.cpp -------------------------------------------------------------------------------- /src/plugins/clock/animation_plasma.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/src/plugins/clock/animation_plasma.h -------------------------------------------------------------------------------- /src/plugins/clock/animation_rainbow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/src/plugins/clock/animation_rainbow.h -------------------------------------------------------------------------------- /src/plugins/clock/animation_rainbow_FastLED.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/src/plugins/clock/animation_rainbow_FastLED.h -------------------------------------------------------------------------------- /src/plugins/clock/animation_solid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/src/plugins/clock/animation_solid.h -------------------------------------------------------------------------------- /src/plugins/clock/animation_visualizer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/src/plugins/clock/animation_visualizer.cpp -------------------------------------------------------------------------------- /src/plugins/clock/animation_visualizer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/src/plugins/clock/animation_visualizer.h -------------------------------------------------------------------------------- /src/plugins/clock/animation_xmas.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/src/plugins/clock/animation_xmas.h -------------------------------------------------------------------------------- /src/plugins/clock/clock.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/src/plugins/clock/clock.cpp -------------------------------------------------------------------------------- /src/plugins/clock/clock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/src/plugins/clock/clock.h -------------------------------------------------------------------------------- /src/plugins/clock/clock_base.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/src/plugins/clock/clock_base.h -------------------------------------------------------------------------------- /src/plugins/clock/clock_button.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/src/plugins/clock/clock_button.cpp -------------------------------------------------------------------------------- /src/plugins/clock/clock_button.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/src/plugins/clock/clock_button.h -------------------------------------------------------------------------------- /src/plugins/clock/clock_config.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/src/plugins/clock/clock_config.cpp -------------------------------------------------------------------------------- /src/plugins/clock/clock_def.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/src/plugins/clock/clock_def.h -------------------------------------------------------------------------------- /src/plugins/clock/clock_form.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/src/plugins/clock/clock_form.cpp -------------------------------------------------------------------------------- /src/plugins/clock/clock_ir_receiver.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/src/plugins/clock/clock_ir_receiver.cpp -------------------------------------------------------------------------------- /src/plugins/clock/clock_mqtt.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/src/plugins/clock/clock_mqtt.cpp -------------------------------------------------------------------------------- /src/plugins/clock/clock_webui.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/src/plugins/clock/clock_webui.cpp -------------------------------------------------------------------------------- /src/plugins/clock/color.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/src/plugins/clock/color.cpp -------------------------------------------------------------------------------- /src/plugins/clock/color.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/src/plugins/clock/color.h -------------------------------------------------------------------------------- /src/plugins/clock/display_clock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/src/plugins/clock/display_clock.h -------------------------------------------------------------------------------- /src/plugins/clock/display_clockv2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/src/plugins/clock/display_clockv2.h -------------------------------------------------------------------------------- /src/plugins/clock/graphics/wlan.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/src/plugins/clock/graphics/wlan.bmp -------------------------------------------------------------------------------- /src/plugins/clock/graphics/wlan.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/src/plugins/clock/graphics/wlan.h -------------------------------------------------------------------------------- /src/plugins/clock/graphics/wlan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/src/plugins/clock/graphics/wlan.png -------------------------------------------------------------------------------- /src/plugins/clock/i2s_microphone.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/src/plugins/clock/i2s_microphone.cpp -------------------------------------------------------------------------------- /src/plugins/clock/i2s_microphone.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/src/plugins/clock/i2s_microphone.h -------------------------------------------------------------------------------- /src/plugins/clock/i2s_microphone_bands.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/src/plugins/clock/i2s_microphone_bands.h -------------------------------------------------------------------------------- /src/plugins/clock/lm_atmode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/src/plugins/clock/lm_atmode.cpp -------------------------------------------------------------------------------- /src/plugins/clock/pixel_display.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/src/plugins/clock/pixel_display.h -------------------------------------------------------------------------------- /src/plugins/clock/seven_segment_display.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/src/plugins/clock/seven_segment_display.cpp -------------------------------------------------------------------------------- /src/plugins/clock/seven_segment_display.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/src/plugins/clock/seven_segment_display.h -------------------------------------------------------------------------------- /src/plugins/clock/ssd1306.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/src/plugins/clock/ssd1306.cpp -------------------------------------------------------------------------------- /src/plugins/dimmer/dimmer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/src/plugins/dimmer/dimmer.cpp -------------------------------------------------------------------------------- /src/plugins/dimmer/dimmer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/src/plugins/dimmer/dimmer.h -------------------------------------------------------------------------------- /src/plugins/dimmer/dimmer_def.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/src/plugins/dimmer/dimmer_def.h -------------------------------------------------------------------------------- /src/plugins/dimmer_module/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/src/plugins/dimmer_module/README.md -------------------------------------------------------------------------------- /src/plugins/dimmer_module/dimmer_atmode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/src/plugins/dimmer_module/dimmer_atmode.cpp -------------------------------------------------------------------------------- /src/plugins/dimmer_module/dimmer_base.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/src/plugins/dimmer_module/dimmer_base.cpp -------------------------------------------------------------------------------- /src/plugins/dimmer_module/dimmer_base.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/src/plugins/dimmer_module/dimmer_base.h -------------------------------------------------------------------------------- /src/plugins/dimmer_module/dimmer_button.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/src/plugins/dimmer_module/dimmer_button.cpp -------------------------------------------------------------------------------- /src/plugins/dimmer_module/dimmer_button.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/src/plugins/dimmer_module/dimmer_button.h -------------------------------------------------------------------------------- /src/plugins/dimmer_module/dimmer_buttons.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/src/plugins/dimmer_module/dimmer_buttons.cpp -------------------------------------------------------------------------------- /src/plugins/dimmer_module/dimmer_buttons.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/src/plugins/dimmer_module/dimmer_buttons.h -------------------------------------------------------------------------------- /src/plugins/dimmer_module/dimmer_channel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/src/plugins/dimmer_module/dimmer_channel.cpp -------------------------------------------------------------------------------- /src/plugins/dimmer_module/dimmer_channel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/src/plugins/dimmer_module/dimmer_channel.h -------------------------------------------------------------------------------- /src/plugins/dimmer_module/dimmer_colortemp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/src/plugins/dimmer_module/dimmer_colortemp.cpp -------------------------------------------------------------------------------- /src/plugins/dimmer_module/dimmer_colortemp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/src/plugins/dimmer_module/dimmer_colortemp.h -------------------------------------------------------------------------------- /src/plugins/dimmer_module/dimmer_config.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/src/plugins/dimmer_module/dimmer_config.cpp -------------------------------------------------------------------------------- /src/plugins/dimmer_module/dimmer_form.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/src/plugins/dimmer_module/dimmer_form.cpp -------------------------------------------------------------------------------- /src/plugins/dimmer_module/dimmer_module.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/src/plugins/dimmer_module/dimmer_module.cpp -------------------------------------------------------------------------------- /src/plugins/dimmer_module/dimmer_module.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/src/plugins/dimmer_module/dimmer_module.h -------------------------------------------------------------------------------- /src/plugins/dimmer_module/dimmer_plugin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/src/plugins/dimmer_module/dimmer_plugin.cpp -------------------------------------------------------------------------------- /src/plugins/dimmer_module/dimmer_plugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/src/plugins/dimmer_module/dimmer_plugin.h -------------------------------------------------------------------------------- /src/plugins/dimmer_module/dimmer_plugin_def.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/src/plugins/dimmer_module/dimmer_plugin_def.h -------------------------------------------------------------------------------- /src/plugins/dimmer_module/dimmer_twowire.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/src/plugins/dimmer_module/dimmer_twowire.cpp -------------------------------------------------------------------------------- /src/plugins/dimmer_module/dimmer_twowire.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/src/plugins/dimmer_module/dimmer_twowire.h -------------------------------------------------------------------------------- /src/plugins/dimmer_module/firmware/dimmer_commands.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/src/plugins/dimmer_module/firmware/dimmer_commands.cpp -------------------------------------------------------------------------------- /src/plugins/dimmer_module/firmware/dimmer_commands.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/src/plugins/dimmer_module/firmware/dimmer_commands.h -------------------------------------------------------------------------------- /src/plugins/dimmer_module/firmware_protocol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/src/plugins/dimmer_module/firmware_protocol.h -------------------------------------------------------------------------------- /src/plugins/display/display.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/src/plugins/display/display.cpp -------------------------------------------------------------------------------- /src/plugins/display/display.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/src/plugins/display/display.h -------------------------------------------------------------------------------- /src/plugins/display/display_config.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/src/plugins/display/display_config.cpp -------------------------------------------------------------------------------- /src/plugins/dooropener/dooropener_config.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/src/plugins/dooropener/dooropener_config.cpp -------------------------------------------------------------------------------- /src/plugins/dooropener/dooropener_def.h: -------------------------------------------------------------------------------- 1 | /** 2 | * Author: sascha_lammers@gmx.de 3 | */ 4 | -------------------------------------------------------------------------------- /src/plugins/file_manager/file_manager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/src/plugins/file_manager/file_manager.cpp -------------------------------------------------------------------------------- /src/plugins/file_manager/file_manager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/src/plugins/file_manager/file_manager.h -------------------------------------------------------------------------------- /src/plugins/http2serial/http2serial.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/src/plugins/http2serial/http2serial.cpp -------------------------------------------------------------------------------- /src/plugins/http2serial/http2serial.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/src/plugins/http2serial/http2serial.h -------------------------------------------------------------------------------- /src/plugins/http2serial/ws_console_client.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/src/plugins/http2serial/ws_console_client.cpp -------------------------------------------------------------------------------- /src/plugins/http2serial/ws_console_client.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/src/plugins/http2serial/ws_console_client.h -------------------------------------------------------------------------------- /src/plugins/mdns/mdns_atmode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/src/plugins/mdns/mdns_atmode.cpp -------------------------------------------------------------------------------- /src/plugins/mdns/mdns_plugin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/src/plugins/mdns/mdns_plugin.cpp -------------------------------------------------------------------------------- /src/plugins/mdns/mdns_plugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/src/plugins/mdns/mdns_plugin.h -------------------------------------------------------------------------------- /src/plugins/mdns/mdns_resolver.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/src/plugins/mdns/mdns_resolver.cpp -------------------------------------------------------------------------------- /src/plugins/mdns/mdns_resolver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/src/plugins/mdns/mdns_resolver.h -------------------------------------------------------------------------------- /src/plugins/mdns/mdns_sd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/src/plugins/mdns/mdns_sd.cpp -------------------------------------------------------------------------------- /src/plugins/mdns/mdns_sd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/src/plugins/mdns/mdns_sd.h -------------------------------------------------------------------------------- /src/plugins/mqtt/auto_discovery.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/src/plugins/mqtt/auto_discovery.cpp -------------------------------------------------------------------------------- /src/plugins/mqtt/auto_discovery.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/src/plugins/mqtt/auto_discovery.h -------------------------------------------------------------------------------- /src/plugins/mqtt/auto_discovery_list.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/src/plugins/mqtt/auto_discovery_list.cpp -------------------------------------------------------------------------------- /src/plugins/mqtt/auto_discovery_list.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/src/plugins/mqtt/auto_discovery_list.h -------------------------------------------------------------------------------- /src/plugins/mqtt/auto_discovery_queue.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/src/plugins/mqtt/auto_discovery_queue.cpp -------------------------------------------------------------------------------- /src/plugins/mqtt/auto_discovery_queue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/src/plugins/mqtt/auto_discovery_queue.h -------------------------------------------------------------------------------- /src/plugins/mqtt/client.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/src/plugins/mqtt/client.cpp -------------------------------------------------------------------------------- /src/plugins/mqtt/client_misc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/src/plugins/mqtt/client_misc.cpp -------------------------------------------------------------------------------- /src/plugins/mqtt/client_queue.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/src/plugins/mqtt/client_queue.cpp -------------------------------------------------------------------------------- /src/plugins/mqtt/component.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/src/plugins/mqtt/component.cpp -------------------------------------------------------------------------------- /src/plugins/mqtt/component.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/src/plugins/mqtt/component.h -------------------------------------------------------------------------------- /src/plugins/mqtt/component_proxy.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/src/plugins/mqtt/component_proxy.cpp -------------------------------------------------------------------------------- /src/plugins/mqtt/component_proxy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/src/plugins/mqtt/component_proxy.h -------------------------------------------------------------------------------- /src/plugins/mqtt/mqtt_base.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/src/plugins/mqtt/mqtt_base.h -------------------------------------------------------------------------------- /src/plugins/mqtt/mqtt_client.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/src/plugins/mqtt/mqtt_client.h -------------------------------------------------------------------------------- /src/plugins/mqtt/mqtt_config.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/src/plugins/mqtt/mqtt_config.cpp -------------------------------------------------------------------------------- /src/plugins/mqtt/mqtt_def.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/src/plugins/mqtt/mqtt_def.h -------------------------------------------------------------------------------- /src/plugins/mqtt/mqtt_form.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/src/plugins/mqtt/mqtt_form.cpp -------------------------------------------------------------------------------- /src/plugins/mqtt/mqtt_json.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/src/plugins/mqtt/mqtt_json.cpp -------------------------------------------------------------------------------- /src/plugins/mqtt/mqtt_json.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/src/plugins/mqtt/mqtt_json.h -------------------------------------------------------------------------------- /src/plugins/mqtt/mqtt_json_writer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/src/plugins/mqtt/mqtt_json_writer.hpp -------------------------------------------------------------------------------- /src/plugins/mqtt/mqtt_plugin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/src/plugins/mqtt/mqtt_plugin.cpp -------------------------------------------------------------------------------- /src/plugins/mqtt/mqtt_plugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/src/plugins/mqtt/mqtt_plugin.h -------------------------------------------------------------------------------- /src/plugins/mqtt/mqtt_strings.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/src/plugins/mqtt/mqtt_strings.cpp -------------------------------------------------------------------------------- /src/plugins/mqtt/mqtt_strings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/src/plugins/mqtt/mqtt_strings.h -------------------------------------------------------------------------------- /src/plugins/ntp/ntp_atmode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/src/plugins/ntp/ntp_atmode.cpp -------------------------------------------------------------------------------- /src/plugins/ntp/ntp_config.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/src/plugins/ntp/ntp_config.cpp -------------------------------------------------------------------------------- /src/plugins/ntp/ntp_form.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/src/plugins/ntp/ntp_form.cpp -------------------------------------------------------------------------------- /src/plugins/ntp/ntp_plugin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/src/plugins/ntp/ntp_plugin.cpp -------------------------------------------------------------------------------- /src/plugins/ntp/ntp_plugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/src/plugins/ntp/ntp_plugin.h -------------------------------------------------------------------------------- /src/plugins/ntp/ntp_plugin_class.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/src/plugins/ntp/ntp_plugin_class.h -------------------------------------------------------------------------------- /src/plugins/phone_ctrl/phone_ctrl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/src/plugins/phone_ctrl/phone_ctrl.cpp -------------------------------------------------------------------------------- /src/plugins/phone_ctrl/phone_ctrl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/src/plugins/phone_ctrl/phone_ctrl.h -------------------------------------------------------------------------------- /src/plugins/ping_monitor/ping_config.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/src/plugins/ping_monitor/ping_config.cpp -------------------------------------------------------------------------------- /src/plugins/ping_monitor/ping_monitor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/src/plugins/ping_monitor/ping_monitor.cpp -------------------------------------------------------------------------------- /src/plugins/ping_monitor/ping_monitor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/src/plugins/ping_monitor/ping_monitor.h -------------------------------------------------------------------------------- /src/plugins/ping_monitor/ping_monitor.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/src/plugins/ping_monitor/ping_monitor.hpp -------------------------------------------------------------------------------- /src/plugins/ping_monitor/ping_task.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/src/plugins/ping_monitor/ping_task.cpp -------------------------------------------------------------------------------- /src/plugins/ping_monitor/ping_wsclient.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/src/plugins/ping_monitor/ping_wsclient.cpp -------------------------------------------------------------------------------- /src/plugins/plugins.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/src/plugins/plugins.h -------------------------------------------------------------------------------- /src/plugins/remote/payload.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/src/plugins/remote/payload.h -------------------------------------------------------------------------------- /src/plugins/remote/remote.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/src/plugins/remote/remote.cpp -------------------------------------------------------------------------------- /src/plugins/remote/remote.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/src/plugins/remote/remote.h -------------------------------------------------------------------------------- /src/plugins/remote/remote_action.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/src/plugins/remote/remote_action.cpp -------------------------------------------------------------------------------- /src/plugins/remote/remote_action.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/src/plugins/remote/remote_action.h -------------------------------------------------------------------------------- /src/plugins/remote/remote_base.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/src/plugins/remote/remote_base.cpp -------------------------------------------------------------------------------- /src/plugins/remote/remote_base.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/src/plugins/remote/remote_base.h -------------------------------------------------------------------------------- /src/plugins/remote/remote_button.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/src/plugins/remote/remote_button.cpp -------------------------------------------------------------------------------- /src/plugins/remote/remote_button.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/src/plugins/remote/remote_button.h -------------------------------------------------------------------------------- /src/plugins/remote/remote_button.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/src/plugins/remote/remote_button.hpp -------------------------------------------------------------------------------- /src/plugins/remote/remote_config.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/src/plugins/remote/remote_config.cpp -------------------------------------------------------------------------------- /src/plugins/remote/remote_def.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/src/plugins/remote/remote_def.h -------------------------------------------------------------------------------- /src/plugins/remote/remote_event_queue.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/src/plugins/remote/remote_event_queue.cpp -------------------------------------------------------------------------------- /src/plugins/remote/remote_event_queue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/src/plugins/remote/remote_event_queue.h -------------------------------------------------------------------------------- /src/plugins/remote/remote_form.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/src/plugins/remote/remote_form.cpp -------------------------------------------------------------------------------- /src/plugins/remote/remote_form.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/src/plugins/remote/remote_form.h -------------------------------------------------------------------------------- /src/plugins/remote/remote_mqtt.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/src/plugins/remote/remote_mqtt.cpp -------------------------------------------------------------------------------- /src/plugins/remote/remote_mqtt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/src/plugins/remote/remote_mqtt.h -------------------------------------------------------------------------------- /src/plugins/remote/remote_system_menu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/src/plugins/remote/remote_system_menu.cpp -------------------------------------------------------------------------------- /src/plugins/rf24_master/rf24_master.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/src/plugins/rf24_master/rf24_master.h -------------------------------------------------------------------------------- /src/plugins/sensor/EnvComp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/src/plugins/sensor/EnvComp.cpp -------------------------------------------------------------------------------- /src/plugins/sensor/EnvComp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/src/plugins/sensor/EnvComp.h -------------------------------------------------------------------------------- /src/plugins/sensor/MQTTSensor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/src/plugins/sensor/MQTTSensor.cpp -------------------------------------------------------------------------------- /src/plugins/sensor/MQTTSensor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/src/plugins/sensor/MQTTSensor.h -------------------------------------------------------------------------------- /src/plugins/sensor/Sensor_AmbientLight.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/src/plugins/sensor/Sensor_AmbientLight.cpp -------------------------------------------------------------------------------- /src/plugins/sensor/Sensor_AmbientLight.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/src/plugins/sensor/Sensor_AmbientLight.h -------------------------------------------------------------------------------- /src/plugins/sensor/Sensor_BME280.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/src/plugins/sensor/Sensor_BME280.cpp -------------------------------------------------------------------------------- /src/plugins/sensor/Sensor_BME280.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/src/plugins/sensor/Sensor_BME280.h -------------------------------------------------------------------------------- /src/plugins/sensor/Sensor_BME680.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/src/plugins/sensor/Sensor_BME680.cpp -------------------------------------------------------------------------------- /src/plugins/sensor/Sensor_BME680.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/src/plugins/sensor/Sensor_BME680.h -------------------------------------------------------------------------------- /src/plugins/sensor/Sensor_Battery.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/src/plugins/sensor/Sensor_Battery.cpp -------------------------------------------------------------------------------- /src/plugins/sensor/Sensor_Battery.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/src/plugins/sensor/Sensor_Battery.h -------------------------------------------------------------------------------- /src/plugins/sensor/Sensor_CCS811.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/src/plugins/sensor/Sensor_CCS811.cpp -------------------------------------------------------------------------------- /src/plugins/sensor/Sensor_CCS811.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/src/plugins/sensor/Sensor_CCS811.h -------------------------------------------------------------------------------- /src/plugins/sensor/Sensor_DHTxx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/src/plugins/sensor/Sensor_DHTxx.cpp -------------------------------------------------------------------------------- /src/plugins/sensor/Sensor_DHTxx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/src/plugins/sensor/Sensor_DHTxx.h -------------------------------------------------------------------------------- /src/plugins/sensor/Sensor_DS3231.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/src/plugins/sensor/Sensor_DS3231.cpp -------------------------------------------------------------------------------- /src/plugins/sensor/Sensor_DS3231.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/src/plugins/sensor/Sensor_DS3231.h -------------------------------------------------------------------------------- /src/plugins/sensor/Sensor_DimmerMetrics.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/src/plugins/sensor/Sensor_DimmerMetrics.cpp -------------------------------------------------------------------------------- /src/plugins/sensor/Sensor_DimmerMetrics.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/src/plugins/sensor/Sensor_DimmerMetrics.h -------------------------------------------------------------------------------- /src/plugins/sensor/Sensor_HLW8012.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/src/plugins/sensor/Sensor_HLW8012.cpp -------------------------------------------------------------------------------- /src/plugins/sensor/Sensor_HLW8012.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/src/plugins/sensor/Sensor_HLW8012.h -------------------------------------------------------------------------------- /src/plugins/sensor/Sensor_HLW8012.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/src/plugins/sensor/Sensor_HLW8012.hpp -------------------------------------------------------------------------------- /src/plugins/sensor/Sensor_HLW8032.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/src/plugins/sensor/Sensor_HLW8032.cpp -------------------------------------------------------------------------------- /src/plugins/sensor/Sensor_HLW8032.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/src/plugins/sensor/Sensor_HLW8032.h -------------------------------------------------------------------------------- /src/plugins/sensor/Sensor_HLW80xx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/src/plugins/sensor/Sensor_HLW80xx.cpp -------------------------------------------------------------------------------- /src/plugins/sensor/Sensor_HLW80xx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/src/plugins/sensor/Sensor_HLW80xx.h -------------------------------------------------------------------------------- /src/plugins/sensor/Sensor_INA219.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/src/plugins/sensor/Sensor_INA219.cpp -------------------------------------------------------------------------------- /src/plugins/sensor/Sensor_INA219.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/src/plugins/sensor/Sensor_INA219.h -------------------------------------------------------------------------------- /src/plugins/sensor/Sensor_LM75A.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/src/plugins/sensor/Sensor_LM75A.cpp -------------------------------------------------------------------------------- /src/plugins/sensor/Sensor_LM75A.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/src/plugins/sensor/Sensor_LM75A.h -------------------------------------------------------------------------------- /src/plugins/sensor/Sensor_Motion.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/src/plugins/sensor/Sensor_Motion.cpp -------------------------------------------------------------------------------- /src/plugins/sensor/Sensor_Motion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/src/plugins/sensor/Sensor_Motion.h -------------------------------------------------------------------------------- /src/plugins/sensor/Sensor_SystemMetrics.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/src/plugins/sensor/Sensor_SystemMetrics.cpp -------------------------------------------------------------------------------- /src/plugins/sensor/Sensor_SystemMetrics.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/src/plugins/sensor/Sensor_SystemMetrics.h -------------------------------------------------------------------------------- /src/plugins/sensor/sensor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/src/plugins/sensor/sensor.cpp -------------------------------------------------------------------------------- /src/plugins/sensor/sensor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/src/plugins/sensor/sensor.h -------------------------------------------------------------------------------- /src/plugins/sensor/sensor_config.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/src/plugins/sensor/sensor_config.cpp -------------------------------------------------------------------------------- /src/plugins/serial2tcp/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/src/plugins/serial2tcp/README.md -------------------------------------------------------------------------------- /src/plugins/serial2tcp/Serial2TcpBase.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/src/plugins/serial2tcp/Serial2TcpBase.cpp -------------------------------------------------------------------------------- /src/plugins/serial2tcp/Serial2TcpBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/src/plugins/serial2tcp/Serial2TcpBase.h -------------------------------------------------------------------------------- /src/plugins/serial2tcp/Serial2TcpClient.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/src/plugins/serial2tcp/Serial2TcpClient.cpp -------------------------------------------------------------------------------- /src/plugins/serial2tcp/Serial2TcpClient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/src/plugins/serial2tcp/Serial2TcpClient.h -------------------------------------------------------------------------------- /src/plugins/serial2tcp/Serial2TcpConnection.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/src/plugins/serial2tcp/Serial2TcpConnection.cpp -------------------------------------------------------------------------------- /src/plugins/serial2tcp/Serial2TcpConnection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/src/plugins/serial2tcp/Serial2TcpConnection.h -------------------------------------------------------------------------------- /src/plugins/serial2tcp/Serial2TcpServer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/src/plugins/serial2tcp/Serial2TcpServer.cpp -------------------------------------------------------------------------------- /src/plugins/serial2tcp/Serial2TcpServer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/src/plugins/serial2tcp/Serial2TcpServer.h -------------------------------------------------------------------------------- /src/plugins/serial2tcp/s2t_config.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/src/plugins/serial2tcp/s2t_config.cpp -------------------------------------------------------------------------------- /src/plugins/serial2tcp/s2t_nvt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/src/plugins/serial2tcp/s2t_nvt.h -------------------------------------------------------------------------------- /src/plugins/serial2tcp/serial2tcp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/src/plugins/serial2tcp/serial2tcp.cpp -------------------------------------------------------------------------------- /src/plugins/serial2tcp/serial2tcp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/src/plugins/serial2tcp/serial2tcp.h -------------------------------------------------------------------------------- /src/plugins/ssd1306_plugin/fonts/7digit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/src/plugins/ssd1306_plugin/fonts/7digit -------------------------------------------------------------------------------- /src/plugins/ssd1306_plugin/ssd1306_plugin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/src/plugins/ssd1306_plugin/ssd1306_plugin.cpp -------------------------------------------------------------------------------- /src/plugins/ssd1306_plugin/ssd1306_plugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/src/plugins/ssd1306_plugin/ssd1306_plugin.h -------------------------------------------------------------------------------- /src/plugins/ssdp/ssdp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/src/plugins/ssdp/ssdp.cpp -------------------------------------------------------------------------------- /src/plugins/ssdp/ssdp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/src/plugins/ssdp/ssdp.h -------------------------------------------------------------------------------- /src/plugins/stk500v1/STK500v1Programmer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/src/plugins/stk500v1/STK500v1Programmer.cpp -------------------------------------------------------------------------------- /src/plugins/stk500v1/STK500v1Programmer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/src/plugins/stk500v1/STK500v1Programmer.h -------------------------------------------------------------------------------- /src/plugins/stk500v1/atmega.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/src/plugins/stk500v1/atmega.csv -------------------------------------------------------------------------------- /src/plugins/stk500v1/stk500v1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/src/plugins/stk500v1/stk500v1.cpp -------------------------------------------------------------------------------- /src/plugins/stk500v1/stk500v1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/src/plugins/stk500v1/stk500v1.h -------------------------------------------------------------------------------- /src/plugins/switch/switch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/src/plugins/switch/switch.cpp -------------------------------------------------------------------------------- /src/plugins/switch/switch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/src/plugins/switch/switch.h -------------------------------------------------------------------------------- /src/plugins/switch/switch_config.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/src/plugins/switch/switch_config.cpp -------------------------------------------------------------------------------- /src/plugins/switch/switch_def.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/src/plugins/switch/switch_def.h -------------------------------------------------------------------------------- /src/plugins/syslog/syslog_config.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/src/plugins/syslog/syslog_config.cpp -------------------------------------------------------------------------------- /src/plugins/syslog/syslog_form.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/src/plugins/syslog/syslog_form.cpp -------------------------------------------------------------------------------- /src/plugins/syslog/syslog_plugin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/src/plugins/syslog/syslog_plugin.cpp -------------------------------------------------------------------------------- /src/plugins/syslog/syslog_plugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/src/plugins/syslog/syslog_plugin.h -------------------------------------------------------------------------------- /src/plugins/weather_station/CuratedArt/1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/src/plugins/weather_station/CuratedArt/1.jpg -------------------------------------------------------------------------------- /src/plugins/weather_station/CuratedArt/2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/src/plugins/weather_station/CuratedArt/2.jpg -------------------------------------------------------------------------------- /src/plugins/weather_station/CuratedArt/3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/src/plugins/weather_station/CuratedArt/3.jpg -------------------------------------------------------------------------------- /src/plugins/weather_station/CuratedArt/4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/src/plugins/weather_station/CuratedArt/4.jpg -------------------------------------------------------------------------------- /src/plugins/weather_station/CuratedArt/5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/src/plugins/weather_station/CuratedArt/5.jpg -------------------------------------------------------------------------------- /src/plugins/weather_station/CuratedArt/6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/src/plugins/weather_station/CuratedArt/6.jpg -------------------------------------------------------------------------------- /src/plugins/weather_station/CuratedArt/7.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/src/plugins/weather_station/CuratedArt/7.jpg -------------------------------------------------------------------------------- /src/plugins/weather_station/CuratedArt/8.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/src/plugins/weather_station/CuratedArt/8.jpg -------------------------------------------------------------------------------- /src/plugins/weather_station/Mpr121Touchpad.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/src/plugins/weather_station/Mpr121Touchpad.cpp -------------------------------------------------------------------------------- /src/plugins/weather_station/Mpr121Touchpad.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/src/plugins/weather_station/Mpr121Touchpad.h -------------------------------------------------------------------------------- /src/plugins/weather_station/RestAPI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/src/plugins/weather_station/RestAPI.h -------------------------------------------------------------------------------- /src/plugins/weather_station/WSDraw.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/src/plugins/weather_station/WSDraw.cpp -------------------------------------------------------------------------------- /src/plugins/weather_station/WSDraw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/src/plugins/weather_station/WSDraw.h -------------------------------------------------------------------------------- /src/plugins/weather_station/WeatherStationBase.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/src/plugins/weather_station/WeatherStationBase.cpp -------------------------------------------------------------------------------- /src/plugins/weather_station/WeatherStationBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/src/plugins/weather_station/WeatherStationBase.h -------------------------------------------------------------------------------- /src/plugins/weather_station/fonts/DejaVuSans-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/src/plugins/weather_station/fonts/DejaVuSans-Bold.ttf -------------------------------------------------------------------------------- /src/plugins/weather_station/fonts/DejaVuSans.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/src/plugins/weather_station/fonts/DejaVuSans.ttf -------------------------------------------------------------------------------- /src/plugins/weather_station/fonts/Dialog Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/src/plugins/weather_station/fonts/Dialog Bold.ttf -------------------------------------------------------------------------------- /src/plugins/weather_station/fonts/Dialog.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/src/plugins/weather_station/fonts/Dialog.ttf -------------------------------------------------------------------------------- /src/plugins/weather_station/fonts/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/src/plugins/weather_station/fonts/README.md -------------------------------------------------------------------------------- /src/plugins/weather_station/fonts/fontconvert/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/src/plugins/weather_station/fonts/fontconvert/Makefile -------------------------------------------------------------------------------- /src/plugins/weather_station/fonts/fontconvert/fontconvert.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/src/plugins/weather_station/fonts/fontconvert/fontconvert.c -------------------------------------------------------------------------------- /src/plugins/weather_station/fonts/fontconvert/makefonts.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/src/plugins/weather_station/fonts/fontconvert/makefonts.sh -------------------------------------------------------------------------------- /src/plugins/weather_station/fonts/fonts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/src/plugins/weather_station/fonts/fonts.h -------------------------------------------------------------------------------- /src/plugins/weather_station/fonts/fonts_headers.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/src/plugins/weather_station/fonts/fonts_headers.tgz -------------------------------------------------------------------------------- /src/plugins/weather_station/fonts/fonts_includes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/src/plugins/weather_station/fonts/fonts_includes.h -------------------------------------------------------------------------------- /src/plugins/weather_station/fonts/gfxfont.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/src/plugins/weather_station/fonts/gfxfont.h -------------------------------------------------------------------------------- /src/plugins/weather_station/fonts/makefonts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/src/plugins/weather_station/fonts/makefonts -------------------------------------------------------------------------------- /src/plugins/weather_station/fonts/simple_small_pixels.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/src/plugins/weather_station/fonts/simple_small_pixels.ttf -------------------------------------------------------------------------------- /src/plugins/weather_station/format_time.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/src/plugins/weather_station/format_time.h -------------------------------------------------------------------------------- /src/plugins/weather_station/moon/README.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/src/plugins/weather_station/moon/README.MD -------------------------------------------------------------------------------- /src/plugins/weather_station/moon/julian.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/src/plugins/weather_station/moon/julian.cpp -------------------------------------------------------------------------------- /src/plugins/weather_station/moon/julian.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/src/plugins/weather_station/moon/julian.h -------------------------------------------------------------------------------- /src/plugins/weather_station/moon/moon_font.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/src/plugins/weather_station/moon/moon_font.h -------------------------------------------------------------------------------- /src/plugins/weather_station/moon/moontool.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/src/plugins/weather_station/moon/moontool.cpp -------------------------------------------------------------------------------- /src/plugins/weather_station/moon/moontool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/src/plugins/weather_station/moon/moontool.h -------------------------------------------------------------------------------- /src/plugins/weather_station/moon_phase.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/src/plugins/weather_station/moon_phase.cpp -------------------------------------------------------------------------------- /src/plugins/weather_station/moon_phase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/src/plugins/weather_station/moon_phase.h -------------------------------------------------------------------------------- /src/plugins/weather_station/themes/colors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/src/plugins/weather_station/themes/colors.h -------------------------------------------------------------------------------- /src/plugins/weather_station/themes/theme1_160x240.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/src/plugins/weather_station/themes/theme1_160x240.h -------------------------------------------------------------------------------- /src/plugins/weather_station/themes/theme1_colors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/src/plugins/weather_station/themes/theme1_colors.h -------------------------------------------------------------------------------- /src/plugins/weather_station/themes/theme2_240x320.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/src/plugins/weather_station/themes/theme2_240x320.h -------------------------------------------------------------------------------- /src/plugins/weather_station/weather_icons.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/src/plugins/weather_station/weather_icons.h -------------------------------------------------------------------------------- /src/plugins/weather_station/weather_station.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/src/plugins/weather_station/weather_station.cpp -------------------------------------------------------------------------------- /src/plugins/weather_station/weather_station.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/src/plugins/weather_station/weather_station.h -------------------------------------------------------------------------------- /src/plugins/weather_station/ws_at_mode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/src/plugins/weather_station/ws_at_mode.cpp -------------------------------------------------------------------------------- /src/plugins/weather_station/ws_config.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/src/plugins/weather_station/ws_config.cpp -------------------------------------------------------------------------------- /src/plugins/weather_station/ws_form.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/src/plugins/weather_station/ws_form.cpp -------------------------------------------------------------------------------- /src/serial_handler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/src/serial_handler.cpp -------------------------------------------------------------------------------- /src/spgm_auto_strings.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/src/spgm_auto_strings.cpp -------------------------------------------------------------------------------- /src/status.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/src/status.cpp -------------------------------------------------------------------------------- /src/templates.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/src/templates.cpp -------------------------------------------------------------------------------- /src/web_server.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/src/web_server.cpp -------------------------------------------------------------------------------- /src/web_server_action.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/src/web_server_action.cpp -------------------------------------------------------------------------------- /src/web_server_arduino_ota.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/src/web_server_arduino_ota.cpp -------------------------------------------------------------------------------- /src/web_server_config.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/src/web_server_config.cpp -------------------------------------------------------------------------------- /src/web_server_form.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/src/web_server_form.cpp -------------------------------------------------------------------------------- /src/web_server_rest_handler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/src/web_server_rest_handler.cpp -------------------------------------------------------------------------------- /src/web_server_upload.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/src/web_server_upload.cpp -------------------------------------------------------------------------------- /src/web_socket.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascha432/esp8266-kfc-fw/HEAD/src/web_socket.cpp --------------------------------------------------------------------------------