//Command variables
const char* request[][15] = {
    "set",      //  [0]
    "get",      //  [1]
    "clear",    //  [2]
    "read",     //  [3]
    "write",    //  [4]
  };
const char fuction[][10] = {
    "function",
    "effect",
    "spiffs",
    "status",
    "arrays",
  };
Const char key1[][10] = {
    "fillall",
    "bright",
    "effect"
    "fade",
    "speed",
    "open1",
    "wifi",
    "ble",
  };

const char actions[][10] = {
    "up",
    "down",
    "add",
    "remove",
    "on",
    "off",
  };

const char attributes[][15] = {
    "rgb",
    "red",
    "green",
    "blue",
    "hue",
    "saturation",
    "fade",
    "speed",
  };
const char Answers[][10] = {
    "no",
    "yes",
  };

const int num_messages = (sizeof(messages) / sizeof(char *));



void setup() {
  // put your setup code here, to run once:
  Serial.begin(115200);
  Serial.println("Hello, ESP32!");
}

void loop() {
  // put your main code here, to run repeatedly:
  delay(10); // this speeds up the simulation
}