mirror of
https://github.com/justcallmekoko/ESP32Marauder.git
synced 2026-08-03 01:16:07 -07:00
Remove unused methods and banner
This commit is contained in:
@@ -68,18 +68,10 @@ MenuFunctions::MenuFunctions()
|
||||
{
|
||||
|
||||
data->state = touched ? LV_INDEV_STATE_PR : LV_INDEV_STATE_REL;
|
||||
|
||||
//if(data->state == LV_INDEV_STATE_PR) touchpad_get_xy(&last_x, &last_y);
|
||||
|
||||
|
||||
data->point.x = touchX;
|
||||
data->point.y = touchY;
|
||||
|
||||
//Serial.print("Data x");
|
||||
//Serial.println(touchX);
|
||||
|
||||
//Serial.print("Data y");
|
||||
//Serial.println(touchY);
|
||||
|
||||
}
|
||||
|
||||
return false;
|
||||
@@ -113,141 +105,10 @@ MenuFunctions::MenuFunctions()
|
||||
//lv_deinit();
|
||||
}
|
||||
|
||||
/*void MenuFunctions::writeBadUSB(){
|
||||
// Create a keyboard and apply the styles
|
||||
kb = lv_keyboard_create(lv_scr_act(), NULL);
|
||||
lv_obj_set_size(kb, LV_HOR_RES, LV_VER_RES / 2);
|
||||
lv_obj_set_event_cb(kb, write_bad_usb_keyboard_event_cb);
|
||||
|
||||
// Create one text area
|
||||
// Store all SSIDs
|
||||
ta1 = lv_textarea_create(lv_scr_act(), NULL);
|
||||
lv_textarea_set_cursor_hidden(ta1, false);
|
||||
lv_textarea_set_one_line(ta1, false);
|
||||
lv_obj_set_width(ta1, LV_HOR_RES);
|
||||
lv_obj_set_height(ta1, (LV_VER_RES / 2) - 35);
|
||||
lv_obj_set_pos(ta1, 5, 20);
|
||||
lv_textarea_set_cursor_hidden(ta1, true);
|
||||
lv_obj_align(ta1, NULL, LV_ALIGN_IN_TOP_MID, NULL, NULL);
|
||||
lv_textarea_set_text(ta1, "");
|
||||
lv_textarea_set_placeholder_text(ta1, "Ducky script");
|
||||
|
||||
#ifndef WRITE_PACKETS_SERIAL
|
||||
if (sd_obj.supported) {
|
||||
// Create load button
|
||||
lv_obj_t * label;
|
||||
lv_obj_t * load_btn = lv_btn_create(lv_scr_act(), NULL);
|
||||
lv_obj_set_event_cb(load_btn, load_btn_cb);
|
||||
lv_obj_set_height(load_btn, 35);
|
||||
lv_obj_set_width(load_btn, LV_HOR_RES / 3);
|
||||
lv_obj_align(load_btn, ta1, LV_ALIGN_IN_TOP_RIGHT, NULL, (LV_VER_RES / 2) - 35); // align to text area
|
||||
label = lv_label_create(load_btn, NULL);
|
||||
lv_label_set_text(label, text05);
|
||||
|
||||
// Create Save As button
|
||||
lv_obj_t * label2;
|
||||
lv_obj_t * save_as_btn = lv_btn_create(lv_scr_act(), NULL);
|
||||
lv_obj_set_event_cb(save_as_btn, load_btn_cb);
|
||||
lv_obj_set_height(save_as_btn, 35);
|
||||
lv_obj_set_width(save_as_btn, LV_HOR_RES / 3);
|
||||
lv_obj_align(save_as_btn, ta1, LV_ALIGN_IN_TOP_MID, NULL, (LV_VER_RES / 2) - 35); // align to text area
|
||||
label2 = lv_label_create(save_as_btn, NULL);
|
||||
lv_label_set_text(label2, text06);
|
||||
}
|
||||
#endif
|
||||
|
||||
// Focus it on one of the text areas to start
|
||||
lv_keyboard_set_textarea(kb, ta1);
|
||||
lv_keyboard_set_cursor_manage(kb, true);
|
||||
}*/
|
||||
|
||||
// Event handler for settings drop down menus
|
||||
void setting_dropdown_cb(lv_obj_t * obj, lv_event_t event) {
|
||||
//lv_event_code_t code = lv_event_get_code(event);
|
||||
//lv_obj_t * obj = lv_event_get_target(event);
|
||||
//lv_obj_t * list1 = lv_obj_get_parent(lv_obj_get_parent(obj));
|
||||
//if(event == LV_EVENT_CLICKED) {
|
||||
// LV_LOG_USER("Clicked: %s", lv_list_get_btn_text(list1, obj));
|
||||
//}
|
||||
}
|
||||
|
||||
void settings_list_cb(lv_obj_t * btn, lv_event_t event) {
|
||||
extern Settings settings_obj;
|
||||
extern MenuFunctions menu_function_obj;
|
||||
|
||||
String btn_text = lv_list_get_btn_text(btn);
|
||||
String display_string = "";
|
||||
|
||||
if (event == LV_EVENT_CLICKED) {
|
||||
if (btn_text == text07) {
|
||||
Serial.println("Exiting...");
|
||||
lv_obj_del_async(lv_obj_get_parent(lv_obj_get_parent(btn)));
|
||||
|
||||
printf("LV_EVENT_CANCEL\n");
|
||||
Serial.println("Potato");
|
||||
//menu_function_obj.deinitLVGL();
|
||||
//wifi_scan_obj.StartScan(WIFI_SCAN_OFF);
|
||||
//display_obj.exit_draw = true; // set everything back to normal
|
||||
}
|
||||
else {
|
||||
// Build base obj to host buttons
|
||||
Serial.println("Creating base object...");
|
||||
lv_obj_t * obj;
|
||||
obj = lv_obj_create(lv_scr_act(), NULL);
|
||||
lv_obj_set_size(obj, LV_HOR_RES, LV_VER_RES);
|
||||
|
||||
lv_obj_t * exit_btn;
|
||||
|
||||
lv_obj_t * label;
|
||||
|
||||
// Build the generic Exit button
|
||||
exit_btn = lv_btn_create(obj, NULL);
|
||||
lv_obj_set_event_cb(exit_btn, settings_list_cb);
|
||||
lv_label_set_text(label, text07);
|
||||
//lv_obj_center(label);
|
||||
|
||||
label = lv_label_create(exit_btn, NULL);
|
||||
|
||||
// Create the type specific device
|
||||
if (settings_obj.getSettingType(btn_text) == "bool") {
|
||||
lv_obj_t * sw = lv_switch_create(obj, NULL);
|
||||
lv_obj_align(sw, NULL, LV_ALIGN_CENTER, 0, 0);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
void MenuFunctions::displaySettingsGFX(){
|
||||
extern Settings settings_obj;
|
||||
|
||||
DynamicJsonDocument json(1024); // ArduinoJson v6
|
||||
|
||||
if (deserializeJson(json, settings_obj.getSettingsString())) {
|
||||
Serial.println("\nCould not parse json");
|
||||
}
|
||||
|
||||
lv_obj_t * list1 = lv_list_create(lv_scr_act(), NULL);
|
||||
lv_obj_set_size(list1, 160, 200);
|
||||
lv_obj_set_width(list1, LV_HOR_RES);
|
||||
lv_obj_align(list1, NULL, LV_ALIGN_CENTER, 0, 0);
|
||||
|
||||
lv_obj_t * list_btn;
|
||||
|
||||
lv_obj_t * label;
|
||||
|
||||
lv_obj_t * sw;
|
||||
|
||||
list_btn = lv_list_add_btn(list1, LV_SYMBOL_CLOSE, text07);
|
||||
lv_obj_set_event_cb(list_btn, ap_list_cb);
|
||||
|
||||
for (int i = 0; i < json[text09].size(); i++) {
|
||||
char buf[json[text08][i]["name"].as<String>().length() + 1] = {};
|
||||
json[text08][i]["name"].as<String>().toCharArray(buf, json[text08][i]["name"].as<String>().length() + 1);
|
||||
|
||||
list_btn = lv_list_add_btn(list1, LV_SYMBOL_WIFI, buf);
|
||||
lv_btn_set_checkable(list_btn, false);
|
||||
lv_obj_set_event_cb(list_btn, settings_list_cb);
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
// GFX Function to build a list showing all Stations scanned
|
||||
@@ -285,9 +146,6 @@ MenuFunctions::MenuFunctions()
|
||||
// Convert uint8_t MAC to char array
|
||||
wifi_scan_obj.getMAC(addr, cur_sta.mac, 0);
|
||||
|
||||
//char buf[stations->get(i).mac.length() + 1] = {};
|
||||
//stations->get(i).mac.toCharArray(buf, stations->get(i).mac.length() + 1);
|
||||
|
||||
list_btn = lv_list_add_btn(list1, LV_SYMBOL_WIFI, addr);
|
||||
lv_btn_set_checkable(list_btn, true);
|
||||
lv_obj_set_event_cb(list_btn, station_list_cb);
|
||||
@@ -310,7 +168,6 @@ MenuFunctions::MenuFunctions()
|
||||
|
||||
if (event == LV_EVENT_CLICKED) {
|
||||
if (btn_text != text09) {
|
||||
//lv_list_focus_btn(lv_obj_get_parent(lv_obj_get_parent(btn)), btn);
|
||||
}
|
||||
else {
|
||||
Serial.println("Exiting...");
|
||||
@@ -333,8 +190,6 @@ MenuFunctions::MenuFunctions()
|
||||
|
||||
if (event == LV_EVENT_VALUE_CHANGED) {
|
||||
if (lv_btn_get_state(btn) == LV_BTN_STATE_CHECKED_RELEASED) {
|
||||
//Serial.print("Toggle on: ");
|
||||
//Serial.println(btn_text);
|
||||
for (int i = 0; i < stations->size(); i++) {
|
||||
wifi_scan_obj.getMAC(addr, stations->get(i).mac, 0);
|
||||
if (strcmp(addr, btn_text.c_str()) == 0) {
|
||||
@@ -347,8 +202,6 @@ MenuFunctions::MenuFunctions()
|
||||
}
|
||||
}
|
||||
else {
|
||||
//Serial.print("Toggle off: ");
|
||||
//Serial.println(btn_text);
|
||||
for (int i = 0; i < stations->size(); i++) {
|
||||
wifi_scan_obj.getMAC(addr, stations->get(i).mac, 0);
|
||||
if (strcmp(addr, btn_text.c_str()) == 0) {
|
||||
@@ -403,7 +256,6 @@ MenuFunctions::MenuFunctions()
|
||||
|
||||
if (event == LV_EVENT_CLICKED) {
|
||||
if (btn_text != text09) {
|
||||
//lv_list_focus_btn(lv_obj_get_parent(lv_obj_get_parent(btn)), btn);
|
||||
}
|
||||
else {
|
||||
Serial.println("Exiting...");
|
||||
@@ -424,8 +276,6 @@ MenuFunctions::MenuFunctions()
|
||||
|
||||
if (event == LV_EVENT_VALUE_CHANGED) {
|
||||
if (lv_btn_get_state(btn) == LV_BTN_STATE_CHECKED_RELEASED) {
|
||||
//Serial.print("Toggle on: ");
|
||||
//Serial.println(btn_text);
|
||||
for (int i = 0; i < access_points->size(); i++) {
|
||||
if (access_points->get(i).essid == btn_text) {
|
||||
Serial.println("Adding AP: " + (String)access_points->get(i).essid);
|
||||
@@ -436,8 +286,6 @@ MenuFunctions::MenuFunctions()
|
||||
}
|
||||
}
|
||||
else {
|
||||
//Serial.print("Toggle off: ");
|
||||
//Serial.println(btn_text);
|
||||
for (int i = 0; i < access_points->size(); i++) {
|
||||
if (access_points->get(i).essid == btn_text) {
|
||||
Serial.println("Removing AP: " + (String)access_points->get(i).essid);
|
||||
@@ -491,244 +339,6 @@ MenuFunctions::MenuFunctions()
|
||||
|
||||
}
|
||||
|
||||
void MenuFunctions::joinWiFiGFX(){
|
||||
|
||||
// Create one text area
|
||||
ta1 = lv_textarea_create(lv_scr_act(), NULL);
|
||||
lv_textarea_set_one_line(ta1, true);
|
||||
lv_obj_set_width(ta1, LV_HOR_RES / 2 - 20);
|
||||
lv_obj_set_pos(ta1, 5, 20);
|
||||
//lv_ta_set_cursor_type(ta, LV_CURSOR_BLOCK);
|
||||
lv_textarea_set_text(ta1, "");
|
||||
lv_obj_set_event_cb(ta1, ta_event_cb);
|
||||
|
||||
// Create first label
|
||||
lv_obj_t * ssid_label = lv_label_create(lv_scr_act(), NULL);
|
||||
lv_label_set_text(ssid_label, text_table1[2]);
|
||||
lv_obj_align(ssid_label, ta1, LV_ALIGN_OUT_TOP_LEFT, 0, 0);
|
||||
|
||||
// Create second text area
|
||||
ta2 = lv_textarea_create(lv_scr_act(), ta1);
|
||||
//lv_textarea_set_pwd_mode(ta2, true); // This shit makes it so backspace does not work
|
||||
//lv_textarea_set_pwd_show_time(ta2, 1000);
|
||||
lv_textarea_set_cursor_hidden(ta2, true);
|
||||
lv_obj_align(ta2, NULL, LV_ALIGN_IN_TOP_RIGHT, -5, 20);
|
||||
|
||||
// Create second label
|
||||
lv_obj_t * pw_label = lv_label_create(lv_scr_act(), NULL);
|
||||
lv_label_set_text(pw_label, text_table1[3]);
|
||||
lv_obj_align(pw_label, ta2, LV_ALIGN_OUT_TOP_LEFT, 0, 0);
|
||||
|
||||
// Create a keyboard and apply the styles
|
||||
kb = lv_keyboard_create(lv_scr_act(), NULL);
|
||||
lv_obj_set_size(kb, LV_HOR_RES, LV_VER_RES / 2);
|
||||
lv_obj_set_event_cb(kb, join_wifi_keyboard_event_cb);
|
||||
|
||||
// Focus it on one of the text areas to start
|
||||
lv_keyboard_set_textarea(kb, ta1);
|
||||
lv_keyboard_set_cursor_manage(kb, true);
|
||||
|
||||
}
|
||||
|
||||
// Function to create keyboard for saving file name
|
||||
void save_as_keyboard_event_cb(lv_obj_t * keyboard, lv_event_t event) {
|
||||
extern MenuFunctions menu_function_obj;
|
||||
|
||||
lv_keyboard_def_event_cb(save_as_kb, event);
|
||||
|
||||
// User canceled so we will get rid of the keyboard and text box
|
||||
if (event == LV_EVENT_CANCEL) {
|
||||
lv_obj_del_async(save_as_kb);
|
||||
lv_obj_del_async(save_name);
|
||||
}
|
||||
|
||||
// Save content from ta1 to file name in save_name
|
||||
else if(event == LV_EVENT_APPLY){
|
||||
String display_string = "";
|
||||
printf("LV_EVENT_APPLY\n");
|
||||
|
||||
// Get ducky script
|
||||
String content = lv_textarea_get_text(ta1);
|
||||
|
||||
String target_file_name = "/SCRIPTS/" + (String)lv_textarea_get_text(save_name);
|
||||
|
||||
Serial.println("Writing to target file: " + (String)target_file_name);
|
||||
|
||||
// Open file with the given name
|
||||
File script = SD.open(target_file_name, FILE_WRITE);
|
||||
|
||||
if (script) {
|
||||
menu_function_obj.loaded_file = target_file_name;
|
||||
|
||||
Serial.println("Writing content: ");
|
||||
Serial.println(content);
|
||||
|
||||
script.print(content);
|
||||
|
||||
script.close();
|
||||
}
|
||||
|
||||
lv_obj_del_async(save_as_kb);
|
||||
lv_obj_del_async(save_name);
|
||||
|
||||
// Create Save button
|
||||
lv_obj_t * save_label;
|
||||
lv_obj_t * save_btn = lv_btn_create(lv_scr_act(), NULL);
|
||||
lv_obj_set_event_cb(save_btn, load_btn_cb);
|
||||
lv_obj_set_height(save_btn, 35);
|
||||
lv_obj_set_width(save_btn, LV_HOR_RES / 3);
|
||||
lv_obj_align(save_btn, ta1, LV_ALIGN_IN_TOP_LEFT, NULL, (LV_VER_RES / 2) - 35); // align to text area
|
||||
save_label = lv_label_create(save_btn, NULL);
|
||||
lv_label_set_text(save_label, text13);
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
void test_btn_cb(lv_obj_t * btn, lv_event_t event) {
|
||||
extern MenuFunctions menu_function_obj;
|
||||
|
||||
if (event == LV_EVENT_CLICKED) {
|
||||
String btn_text = lv_list_get_btn_text(btn);
|
||||
String display_string = "";
|
||||
//printf("Clicked: %s\n", btn_text);
|
||||
Serial.print("Clicked: ");
|
||||
Serial.println(btn_text);
|
||||
|
||||
// Get file content and send to text area
|
||||
if (btn_text != text12) {
|
||||
File script = SD.open(btn_text);
|
||||
|
||||
if (script) {
|
||||
while (script.available()) {
|
||||
display_string.concat((char)script.read());
|
||||
}
|
||||
script.close();
|
||||
|
||||
Serial.println(display_string);
|
||||
|
||||
char buf[display_string.length() + 1] = {};
|
||||
display_string.toCharArray(buf, display_string.length() + 1);
|
||||
|
||||
lv_textarea_set_text(ta1, buf);
|
||||
|
||||
// Create Save button
|
||||
lv_obj_t * save_label;
|
||||
lv_obj_t * save_btn = lv_btn_create(lv_scr_act(), NULL);
|
||||
lv_obj_set_event_cb(save_btn, load_btn_cb);
|
||||
lv_obj_set_height(save_btn, 35);
|
||||
lv_obj_set_width(save_btn, LV_HOR_RES / 3);
|
||||
lv_obj_align(save_btn, ta1, LV_ALIGN_IN_TOP_LEFT, NULL, (LV_VER_RES / 2) - 35); // align to text area
|
||||
save_label = lv_label_create(save_btn, NULL);
|
||||
lv_label_set_text(save_label, text13);
|
||||
}
|
||||
}
|
||||
|
||||
// Delete the file list obj
|
||||
lv_obj_del_async(lv_obj_get_parent(lv_obj_get_parent(btn)));
|
||||
menu_function_obj.loaded_file = btn_text;
|
||||
}
|
||||
}
|
||||
|
||||
void load_btn_cb(lv_obj_t * load_btn, lv_event_t event) {
|
||||
extern SDInterface sd_obj;
|
||||
extern MenuFunctions menu_function_obj;
|
||||
|
||||
String btn_text = lv_list_get_btn_text(load_btn);
|
||||
|
||||
if (btn_text == "Load") {
|
||||
if (event == LV_EVENT_CLICKED)
|
||||
Serial.println("Load button pressed");
|
||||
else if (event == LV_EVENT_RELEASED) {
|
||||
Serial.println("Load button released");
|
||||
/*Create a list*/
|
||||
lv_obj_t * list1 = lv_list_create(lv_scr_act(), NULL);
|
||||
lv_obj_set_size(list1, 160, 200);
|
||||
lv_obj_set_width(list1, LV_HOR_RES);
|
||||
lv_obj_align(list1, NULL, LV_ALIGN_CENTER, 0, 0);
|
||||
//lv_list_set_anim_time(list1, 0);
|
||||
|
||||
// Load file names into buttons
|
||||
File scripts = SD.open("/SCRIPTS");
|
||||
|
||||
// Build list of files from the SD card
|
||||
lv_obj_t * list_btn;
|
||||
|
||||
list_btn = lv_list_add_btn(list1, LV_SYMBOL_CLOSE, text12);
|
||||
lv_obj_set_event_cb(list_btn, test_btn_cb);
|
||||
|
||||
while (true) {
|
||||
File entity = scripts.openNextFile();
|
||||
|
||||
if (!entity)
|
||||
break;
|
||||
|
||||
if (!entity.isDirectory()) {
|
||||
String file_name = entity.name();
|
||||
|
||||
// Fancy button text time
|
||||
char buf[file_name.length() + 1] = {};
|
||||
file_name.toCharArray(buf, file_name.length() + 1);
|
||||
|
||||
list_btn = lv_list_add_btn(list1, LV_SYMBOL_FILE, buf);
|
||||
lv_obj_set_event_cb(list_btn, test_btn_cb);
|
||||
}
|
||||
|
||||
entity.close();
|
||||
}
|
||||
|
||||
scripts.close();
|
||||
}
|
||||
}
|
||||
|
||||
// Save current text bod content to new file
|
||||
else if (btn_text == text06) {
|
||||
if (event == LV_EVENT_CLICKED)
|
||||
Serial.println("Save button pressed");
|
||||
else if (event == LV_EVENT_RELEASED) {
|
||||
Serial.println("Save button released");
|
||||
|
||||
save_name = lv_textarea_create(lv_scr_act(), ta2);
|
||||
lv_textarea_set_cursor_hidden(save_name, false);
|
||||
lv_textarea_set_one_line(save_name, true);
|
||||
lv_obj_align(save_name, NULL, LV_ALIGN_IN_TOP_MID, NULL, (LV_VER_RES / 2) - 35);
|
||||
lv_textarea_set_text(save_name, "");
|
||||
lv_textarea_set_placeholder_text(save_name, "File Name");
|
||||
|
||||
// Create a keyboard and apply the styles
|
||||
save_as_kb = lv_keyboard_create(lv_scr_act(), NULL);
|
||||
lv_obj_set_size(save_as_kb, LV_HOR_RES, LV_VER_RES / 2);
|
||||
lv_obj_set_event_cb(save_as_kb, save_as_keyboard_event_cb);
|
||||
|
||||
lv_keyboard_set_textarea(save_as_kb, save_name);
|
||||
lv_keyboard_set_cursor_manage(save_as_kb, true);
|
||||
}
|
||||
}
|
||||
|
||||
// Save current text box content to current loaded file
|
||||
else if (btn_text == text13) {
|
||||
if (event == LV_EVENT_CLICKED)
|
||||
Serial.println("Save button pressed");
|
||||
else if (event == LV_EVENT_RELEASED) {
|
||||
Serial.println("Save button released");
|
||||
|
||||
Serial.println("Writing to file: " + (String)menu_function_obj.loaded_file);
|
||||
|
||||
File script = SD.open(menu_function_obj.loaded_file, FILE_WRITE);
|
||||
|
||||
// Write data to file
|
||||
if (script) {
|
||||
String content = lv_textarea_get_text(ta1);
|
||||
|
||||
Serial.println("Writing content:");
|
||||
Serial.println(content);
|
||||
Serial.println("to file: " + (String)menu_function_obj.loaded_file);
|
||||
script.print(lv_textarea_get_text(ta1));
|
||||
script.close();
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
// Keyboard callback dedicated to joining wifi
|
||||
void add_ssid_keyboard_event_cb(lv_obj_t * keyboard, lv_event_t event){
|
||||
extern Display display_obj;
|
||||
@@ -745,7 +355,6 @@ MenuFunctions::MenuFunctions()
|
||||
|
||||
// Get text from SSID text box
|
||||
String ta2_text = lv_textarea_get_text(ta2);
|
||||
//Serial.println(ta1_text);
|
||||
Serial.println(ta2_text);
|
||||
|
||||
// Add text box text to list of SSIDs
|
||||
@@ -759,32 +368,7 @@ MenuFunctions::MenuFunctions()
|
||||
lv_textarea_set_text(ta2, "");
|
||||
}else if(event == LV_EVENT_CANCEL){
|
||||
printf("LV_EVENT_CANCEL\n");
|
||||
//lv_textarea_set_text(lv_keyboard_get_textarea(kb), "");
|
||||
menu_function_obj.deinitLVGL();
|
||||
//wifi_scan_obj.StartScan(WIFI_SCAN_OFF);
|
||||
display_obj.exit_draw = true; // set everything back to normal
|
||||
}
|
||||
}
|
||||
|
||||
// Keyboard callback dedicated to joining wifi
|
||||
void join_wifi_keyboard_event_cb(lv_obj_t * keyboard, lv_event_t event){
|
||||
extern Display display_obj;
|
||||
extern MenuFunctions menu_function_obj;
|
||||
extern WiFiScan wifi_scan_obj;
|
||||
lv_keyboard_def_event_cb(kb, event);
|
||||
if(event == LV_EVENT_APPLY){
|
||||
printf("LV_EVENT_APPLY\n");
|
||||
//String ta1_text = lv_textarea_get_text(lv_keyboard_get_textarea(kb));
|
||||
String ta1_text = lv_textarea_get_text(ta1);
|
||||
String ta2_text = lv_textarea_get_text(ta2);
|
||||
Serial.println(ta1_text);
|
||||
Serial.println(ta2_text);
|
||||
wifi_scan_obj.joinWiFi(ta1_text, ta2_text);
|
||||
}else if(event == LV_EVENT_CANCEL){
|
||||
printf("LV_EVENT_CANCEL\n");
|
||||
//lv_textarea_set_text(lv_keyboard_get_textarea(kb), "");
|
||||
menu_function_obj.deinitLVGL();
|
||||
//wifi_scan_obj.StartScan(WIFI_SCAN_OFF);
|
||||
display_obj.exit_draw = true; // set everything back to normal
|
||||
}
|
||||
}
|
||||
@@ -830,11 +414,11 @@ void MenuFunctions::main(uint32_t currentTime)
|
||||
this->orientDisplay();
|
||||
wifi_scan_obj.orient_display = false;
|
||||
}
|
||||
#ifdef HAS_ILI9341
|
||||
/*#ifdef HAS_ILI9341
|
||||
if ((wifi_scan_obj.currentScanMode != LV_JOIN_WIFI) &&
|
||||
(wifi_scan_obj.currentScanMode != LV_ADD_SSID))
|
||||
display_obj.updateBanner(current_menu->name);
|
||||
#endif
|
||||
#endif*/
|
||||
}
|
||||
|
||||
if (currentTime != 0) {
|
||||
@@ -843,9 +427,9 @@ void MenuFunctions::main(uint32_t currentTime)
|
||||
if ((wifi_scan_obj.currentScanMode != LV_JOIN_WIFI) &&
|
||||
(wifi_scan_obj.currentScanMode != LV_ADD_SSID))
|
||||
this->updateStatusBar();
|
||||
#if defined(MARAUDER_MINI) || defined(MARAUDER_M5STICKC)
|
||||
display_obj.updateBanner(current_menu->name);
|
||||
#endif
|
||||
//#if defined(MARAUDER_MINI) || defined(MARAUDER_M5STICKC)
|
||||
// display_obj.updateBanner(current_menu->name);
|
||||
//#endif
|
||||
}
|
||||
}
|
||||
|
||||
@@ -2168,6 +1752,7 @@ void MenuFunctions::displayCurrentMenu()
|
||||
{
|
||||
//Serial.println(F("Displaying current menu..."));
|
||||
display_obj.clearScreen();
|
||||
display_obj.updateBanner(current_menu->name);
|
||||
display_obj.tft.setTextColor(TFT_LIGHTGREY, TFT_DARKGREY);
|
||||
this->drawStatusBar();
|
||||
|
||||
|
||||
Reference in New Issue
Block a user