how to add a hydrocontrol menu

Post date: Jan 3, 2018 6:36:59 PM

File _SMD_xx.ino

    1. number_of_fields: append
    2. field_coordinates: append input fields and text fields
    3. if it is an input menu: append setting_pointers

file _3_menu_definitions.ino

    1. m0_field0: add one const char for each text field in the same manner
    2. string_array: add the above char arrays

file _4_menu_layouts.ino

    1. add the static parts of the menu

file button_actions.ino

    1. switch (active_element[0]): add a case with the menu number and the button functions

file key_input.ino

    1. line 84: switch menu navigation case M -> case 'D': //return, back : add the menu number to the parent menu case

add a button in the parent menu

see above