diff --git a/homeassistant/components/miele/const.py b/homeassistant/components/miele/const.py index 22c874b408c..ce3ff2e79d2 100644 --- a/homeassistant/components/miele/const.py +++ b/homeassistant/components/miele/const.py @@ -617,11 +617,11 @@ class OvenProgramId(MieleEnum, missing_to_none=True): evaporate_water = 327 shabbat_program = 335 yom_tov = 336 - drying = 357 + drying = 357, 2028 heat_crockery = 358 - prove_dough = 359 + prove_dough = 359, 2023 low_temperature_cooking = 360 - steam_cooking = 361 + steam_cooking = 8, 361 keeping_warm = 362 apple_sponge = 364 apple_pie = 365 @@ -668,9 +668,9 @@ class OvenProgramId(MieleEnum, missing_to_none=True): saddle_of_roebuck = 456 salmon_fillet = 461 potato_cheese_gratin = 464 - trout = 486 - carp = 491 - salmon_trout = 492 + trout = 486, 2224 + carp = 491, 2233 + salmon_trout = 492, 2241 springform_tin_15cm = 496 springform_tin_20cm = 497 springform_tin_25cm = 498 @@ -736,137 +736,15 @@ class OvenProgramId(MieleEnum, missing_to_none=True): pork_belly = 701 pikeperch_fillet_with_vegetables = 702 steam_bake = 99001 - - -class DishWarmerProgramId(MieleEnum, missing_to_none=True): - """Program Id codes for dish warmers.""" - - no_program = 0, -1 - warm_cups_glasses = 1 - warm_dishes_plates = 2 - keep_warm = 3 - slow_roasting = 4 - - -class RobotVacuumCleanerProgramId(MieleEnum, missing_to_none=True): - """Program Id codes for robot vacuum cleaners.""" - - no_program = 0, -1 - auto = 1 - spot = 2 - turbo = 3 - silent = 4 - - -class CoffeeSystemProgramId(MieleEnum, missing_to_none=True): - """Program Id codes for coffee systems.""" - - no_program = 0, -1 - - check_appliance = 17004 - - # profile 1 - ristretto = 24000, 24032, 24064, 24096, 24128 - espresso = 24001, 24033, 24065, 24097, 24129 - coffee = 24002, 24034, 24066, 24098, 24130 - long_coffee = 24003, 24035, 24067, 24099, 24131 - cappuccino = 24004, 24036, 24068, 24100, 24132 - cappuccino_italiano = 24005, 24037, 24069, 24101, 24133 - latte_macchiato = 24006, 24038, 24070, 24102, 24134 - espresso_macchiato = 24007, 24039, 24071, 24135 - cafe_au_lait = 24008, 24040, 24072, 24104, 24136 - caffe_latte = 24009, 24041, 24073, 24105, 24137 - flat_white = 24012, 24044, 24076, 24108, 24140 - very_hot_water = 24013, 24045, 24077, 24109, 24141 - hot_water = 24014, 24046, 24078, 24110, 24142 - hot_milk = 24015, 24047, 24079, 24111, 24143 - milk_foam = 24016, 24048, 24080, 24112, 24144 - black_tea = 24017, 24049, 24081, 24113, 24145 - herbal_tea = 24018, 24050, 24082, 24114, 24146 - fruit_tea = 24019, 24051, 24083, 24115, 24147 - green_tea = 24020, 24052, 24084, 24116, 24148 - white_tea = 24021, 24053, 24085, 24117, 24149 - japanese_tea = 24022, 29054, 24086, 24118, 24150 - # special programs - coffee_pot = 24400 - barista_assistant = 24407 - # machine settings menu - appliance_settings = ( - 16016, # display brightness - 16018, # volume - 16019, # buttons volume - 16020, # child lock - 16021, # water hardness - 16027, # welcome sound - 16033, # connection status - 16035, # remote control - 16037, # remote update - 24500, # total dispensed - 24502, # lights appliance on - 24503, # lights appliance off - 24504, # turn off lights after - 24506, # altitude - 24513, # performance mode - 24516, # turn off after - 24537, # advanced mode - 24542, # tea timer - 24549, # total coffee dispensed - 24550, # total tea dispensed - 24551, # total ristretto - 24552, # total cappuccino - 24553, # total espresso - 24554, # total coffee - 24555, # total long coffee - 24556, # total italian cappuccino - 24557, # total latte macchiato - 24558, # total caffe latte - 24560, # total espresso macchiato - 24562, # total flat white - 24563, # total coffee with milk - 24564, # total black tea - 24565, # total herbal tea - 24566, # total fruit tea - 24567, # total green tea - 24568, # total white tea - 24569, # total japanese tea - 24571, # total milk foam - 24572, # total hot milk - 24573, # total hot water - 24574, # total very hot water - 24575, # counter to descaling - 24576, # counter to brewing unit degreasing - 24800, # maintenance - 24801, # profiles settings menu - 24813, # add profile - ) - appliance_rinse = 24750, 24759, 24773, 24787, 24788 - intermediate_rinsing = 24758 - automatic_maintenance = 24778 - descaling = 24751 - brewing_unit_degrease = 24753 - milk_pipework_rinse = 24754 - milk_pipework_clean = 24789 - - -class SteamOvenMicroProgramId(MieleEnum, missing_to_none=True): - """Program Id codes for steam oven micro combo.""" - - no_program = 0, -1 - steam_cooking = 8 - microwave = 19 - popcorn = 53 - quick_mw = 54 sous_vide = 72 eco_steam_cooking = 75 rapid_steam_cooking = 77 - descale = 326 menu_cooking = 330 reheating_with_steam = 2018 defrosting_with_steam = 2019 blanching = 2020 bottling = 2021 sterilize_crockery = 2022 - prove_dough = 2023 soak = 2027 reheating_with_microwave = 2029 defrosting_with_microwave = 2030 @@ -1020,18 +898,15 @@ class SteamOvenMicroProgramId(MieleEnum, missing_to_none=True): gilt_head_bream_fillet = 2220 codfish_piece = 2221, 2232 codfish_fillet = 2222, 2231 - trout = 2224 pike_fillet = 2225 pike_piece = 2226 halibut_fillet_2_cm = 2227 halibut_fillet_3_cm = 2230 - carp = 2233 salmon_fillet_2_cm = 2234 salmon_fillet_3_cm = 2235 salmon_steak_2_cm = 2238 salmon_steak_3_cm = 2239 salmon_piece = 2240 - salmon_trout = 2241 iridescent_shark_fillet = 2244 red_snapper_fillet_2_cm = 2245 red_snapper_fillet_3_cm = 2248 @@ -1268,6 +1143,116 @@ class SteamOvenMicroProgramId(MieleEnum, missing_to_none=True): round_grain_rice_general_rapid_steam_cooking = 3411 +class DishWarmerProgramId(MieleEnum, missing_to_none=True): + """Program Id codes for dish warmers.""" + + no_program = 0, -1 + warm_cups_glasses = 1 + warm_dishes_plates = 2 + keep_warm = 3 + slow_roasting = 4 + + +class RobotVacuumCleanerProgramId(MieleEnum, missing_to_none=True): + """Program Id codes for robot vacuum cleaners.""" + + no_program = 0, -1 + auto = 1 + spot = 2 + turbo = 3 + silent = 4 + + +class CoffeeSystemProgramId(MieleEnum, missing_to_none=True): + """Program Id codes for coffee systems.""" + + no_program = 0, -1 + + check_appliance = 17004 + + # profile 1 + ristretto = 24000, 24032, 24064, 24096, 24128 + espresso = 24001, 24033, 24065, 24097, 24129 + coffee = 24002, 24034, 24066, 24098, 24130 + long_coffee = 24003, 24035, 24067, 24099, 24131 + cappuccino = 24004, 24036, 24068, 24100, 24132 + cappuccino_italiano = 24005, 24037, 24069, 24101, 24133 + latte_macchiato = 24006, 24038, 24070, 24102, 24134 + espresso_macchiato = 24007, 24039, 24071, 24135 + cafe_au_lait = 24008, 24040, 24072, 24104, 24136 + caffe_latte = 24009, 24041, 24073, 24105, 24137 + flat_white = 24012, 24044, 24076, 24108, 24140 + very_hot_water = 24013, 24045, 24077, 24109, 24141 + hot_water = 24014, 24046, 24078, 24110, 24142 + hot_milk = 24015, 24047, 24079, 24111, 24143 + milk_foam = 24016, 24048, 24080, 24112, 24144 + black_tea = 24017, 24049, 24081, 24113, 24145 + herbal_tea = 24018, 24050, 24082, 24114, 24146 + fruit_tea = 24019, 24051, 24083, 24115, 24147 + green_tea = 24020, 24052, 24084, 24116, 24148 + white_tea = 24021, 24053, 24085, 24117, 24149 + japanese_tea = 24022, 29054, 24086, 24118, 24150 + # special programs + coffee_pot = 24400 + barista_assistant = 24407 + # machine settings menu + appliance_settings = ( + 16016, # display brightness + 16018, # volume + 16019, # buttons volume + 16020, # child lock + 16021, # water hardness + 16027, # welcome sound + 16033, # connection status + 16035, # remote control + 16037, # remote update + 24500, # total dispensed + 24502, # lights appliance on + 24503, # lights appliance off + 24504, # turn off lights after + 24506, # altitude + 24513, # performance mode + 24516, # turn off after + 24537, # advanced mode + 24542, # tea timer + 24549, # total coffee dispensed + 24550, # total tea dispensed + 24551, # total ristretto + 24552, # total cappuccino + 24553, # total espresso + 24554, # total coffee + 24555, # total long coffee + 24556, # total italian cappuccino + 24557, # total latte macchiato + 24558, # total caffe latte + 24560, # total espresso macchiato + 24562, # total flat white + 24563, # total coffee with milk + 24564, # total black tea + 24565, # total herbal tea + 24566, # total fruit tea + 24567, # total green tea + 24568, # total white tea + 24569, # total japanese tea + 24571, # total milk foam + 24572, # total hot milk + 24573, # total hot water + 24574, # total very hot water + 24575, # counter to descaling + 24576, # counter to brewing unit degreasing + 24800, # maintenance + 24801, # profiles settings menu + 24813, # add profile + ) + appliance_rinse = 24750, 24759, 24773, 24787, 24788 + intermediate_rinsing = 24758 + automatic_maintenance = 24778 + descaling = 24751 + brewing_unit_degrease = 24753 + milk_pipework_rinse = 24754 + milk_pipework_clean = 24789 + + PROGRAM_IDS: dict[int, type[MieleEnum]] = { MieleAppliance.WASHING_MACHINE: WashingMachineProgramId, MieleAppliance.TUMBLE_DRYER: TumbleDryerProgramId, @@ -1278,7 +1263,7 @@ PROGRAM_IDS: dict[int, type[MieleEnum]] = { MieleAppliance.STEAM_OVEN_MK2: OvenProgramId, MieleAppliance.STEAM_OVEN: OvenProgramId, MieleAppliance.STEAM_OVEN_COMBI: OvenProgramId, - MieleAppliance.STEAM_OVEN_MICRO: SteamOvenMicroProgramId, + MieleAppliance.STEAM_OVEN_MICRO: OvenProgramId, MieleAppliance.WASHER_DRYER: WashingMachineProgramId, MieleAppliance.ROBOT_VACUUM_CLEANER: RobotVacuumCleanerProgramId, MieleAppliance.COFFEE_SYSTEM: CoffeeSystemProgramId, diff --git a/homeassistant/components/miele/strings.json b/homeassistant/components/miele/strings.json index 18c8aec44bc..1155f7b0a01 100644 --- a/homeassistant/components/miele/strings.json +++ b/homeassistant/components/miele/strings.json @@ -474,6 +474,7 @@ "drain_spin": "Drain/spin", "drop_cookies_1_tray": "Drop cookies (1 tray)", "drop_cookies_2_trays": "Drop cookies (2 trays)", + "drying": "Drying", "duck": "Duck", "dutch_hash": "Dutch hash", "easy_care": "Easy care", diff --git a/tests/components/miele/snapshots/test_sensor.ambr b/tests/components/miele/snapshots/test_sensor.ambr index 470d93b4d64..60f4fa97b86 100644 --- a/tests/components/miele/snapshots/test_sensor.ambr +++ b/tests/components/miele/snapshots/test_sensor.ambr @@ -5167,32 +5167,138 @@ 'options': list([ 'almond_macaroons_1_tray', 'almond_macaroons_2_trays', + 'amaranth', 'apple_pie', 'apple_sponge', + 'apples_diced', + 'apples_halved', + 'apples_quartered', + 'apples_sliced', + 'apples_whole', + 'apricots_halved_skinning', + 'apricots_halved_steam_cooking', + 'apricots_quartered', + 'apricots_wedges', + 'artichokes_large', + 'artichokes_medium', + 'artichokes_small', + 'atlantic_catfish_fillet_1_cm', + 'atlantic_catfish_fillet_2_cm', 'auto_roast', 'baguettes', 'baiser_one_large', 'baiser_several_small', + 'basmati_rice_rapid_steam_cooking', + 'basmati_rice_steam_cooking', + 'beef_casserole', 'beef_fillet_low_temperature_cooking', 'beef_fillet_roast', 'beef_hash', + 'beef_tenderloin', + 'beef_tenderloin_medaillons_1_cm_low_temperature_cooking', + 'beef_tenderloin_medaillons_1_cm_steam_cooking', + 'beef_tenderloin_medaillons_2_cm_low_temperature_cooking', + 'beef_tenderloin_medaillons_2_cm_steam_cooking', + 'beef_tenderloin_medaillons_3_cm_low_temperature_cooking', + 'beef_tenderloin_medaillons_3_cm_steam_cooking', 'beef_wellington', + 'beetroot_whole_large', + 'beetroot_whole_medium', + 'beetroot_whole_small', 'belgian_sponge_cake', + 'beluga_lentils', 'biscuits_short_crust_pastry_1_tray', 'biscuits_short_crust_pastry_2_trays', + 'black_beans', + 'black_salsify_medium', + 'black_salsify_thick', + 'black_salsify_thin', + 'blanching', 'blueberry_muffins', + 'bologna_sausage', + 'bottling', + 'bottling_hard', + 'bottling_medium', + 'bottling_soft', 'bottom_heat', 'braised_beef', 'braised_veal', + 'bread_dumplings_boil_in_the_bag', + 'bread_dumplings_fresh', + 'broad_beans', + 'broccoli_florets_large', + 'broccoli_florets_medium', + 'broccoli_florets_small', + 'broccoli_whole_large', + 'broccoli_whole_medium', + 'broccoli_whole_small', + 'brown_lentils', + 'bruehwurst_sausages', + 'brussels_sprout', + 'bulgur', + 'bunched_carrots_cut_into_batons', + 'bunched_carrots_diced', + 'bunched_carrots_halved', + 'bunched_carrots_quartered', + 'bunched_carrots_sliced', + 'bunched_carrots_whole_large', + 'bunched_carrots_whole_medium', + 'bunched_carrots_whole_small', 'butter_cake', 'carp', + 'carrots_cut_into_batons', + 'carrots_diced', + 'carrots_halved', + 'carrots_quartered', + 'carrots_sliced', + 'carrots_whole_large', + 'carrots_whole_medium', + 'carrots_whole_small', + 'cauliflower_florets_large', + 'cauliflower_florets_medium', + 'cauliflower_florets_small', + 'cauliflower_whole_large', + 'cauliflower_whole_medium', + 'cauliflower_whole_small', + 'celeriac_cut_into_batons', + 'celeriac_diced', + 'celeriac_sliced', + 'celery_pieces', + 'celery_sliced', + 'cep', + 'chanterelle', + 'char', 'cheese_souffle', + 'cheesecake_one_large', + 'cheesecake_several_small', + 'chick_peas', 'chicken_thighs', + 'chicken_tikka_masala_with_rice', 'chicken_whole', + 'chinese_cabbage_cut', 'chocolate_hazlenut_cake_one_large', 'chocolate_hazlenut_cake_several_small', + 'chongming_rapid_steam_cooking', + 'chongming_steam_cooking', 'choux_buns', + 'christmas_pudding_cooking', + 'christmas_pudding_heating', + 'coalfish_fillet_2_cm', + 'coalfish_fillet_3_cm', + 'coalfish_piece', + 'cockles', + 'codfish_fillet', + 'codfish_piece', + 'common_beans', + 'common_sole_fillet_1_cm', + 'common_sole_fillet_2_cm', 'conventional_heat', + 'cook_bacon', + 'corn_on_the_cob', + 'courgette_diced', + 'courgette_sliced', + 'cranberries', + 'crevettes', 'custom_program_1', 'custom_program_10', 'custom_program_11', @@ -5214,83 +5320,300 @@ 'custom_program_8', 'custom_program_9', 'dark_mixed_grain_bread', + 'decrystallise_honey', 'defrost', 'defrost_meat', 'defrost_vegetables', + 'defrosting_with_microwave', + 'defrosting_with_steam', 'descale', + 'dissolve_gelatine', 'drop_cookies_1_tray', 'drop_cookies_2_trays', 'drying', 'duck', + 'dutch_hash', 'eco_fan_heat', + 'eco_steam_cooking', 'economy_grill', + 'eggplant_diced', + 'eggplant_sliced', + 'endive_halved', + 'endive_quartered', + 'endive_strips', 'evaporate_water', 'fan_grill', 'fan_plus', + 'fennel_halved', + 'fennel_quartered', + 'fennel_strips', 'flat_bread', 'fruit_flan_puff_pastry', 'fruit_flan_short_crust_pastry', 'fruit_streusel_cake', 'full_grill', + 'german_turnip_cut_into_batons', + 'german_turnip_diced', + 'german_turnip_sliced', + 'gilt_head_bream_fillet', + 'gilt_head_bream_whole', 'ginger_loaf', + 'gnocchi_fresh', + 'goose_barnacles', 'goose_stuffed', 'goose_unstuffed', + 'gooseberries', + 'goulash_soup', + 'green_asparagus_medium', + 'green_asparagus_thick', + 'green_asparagus_thin', + 'green_beans_cut', + 'green_beans_whole', + 'green_cabbage_cut', + 'green_spelt_cracked', + 'green_spelt_whole', + 'green_split_peas', + 'greenage_plums', 'grill', + 'halibut_fillet_2_cm', + 'halibut_fillet_3_cm', 'ham_roast', 'heat_crockery', 'heating_bakes_gratins', + 'heating_damp_flannels', 'heating_vegetables', + 'hens_eggs_size_l_hard', + 'hens_eggs_size_l_medium', + 'hens_eggs_size_l_soft', + 'hens_eggs_size_m_hard', + 'hens_eggs_size_m_medium', + 'hens_eggs_size_m_soft', + 'hens_eggs_size_s_hard', + 'hens_eggs_size_s_medium', + 'hens_eggs_size_s_soft', + 'hens_eggs_size_xl_hard', + 'hens_eggs_size_xl_medium', + 'hens_eggs_size_xl_soft', + 'huanghuanian_rapid_steam_cooking', + 'huanghuanian_steam_cooking', 'intensive_bake', + 'iridescent_shark_fillet', + 'jasmine_rice_rapid_steam_cooking', + 'jasmine_rice_steam_cooking', + 'jerusalem_artichoke_diced', + 'jerusalem_artichoke_sliced', + 'kale_cut', + 'kasseler_piece', + 'kasseler_slice', 'keeping_warm', + 'king_prawns', + 'knuckle_of_pork_cured', + 'knuckle_of_pork_fresh', + 'large_shrimps', + 'leek_pieces', + 'leek_rings', 'leg_of_lamb', 'lemon_meringue_pie', 'linzer_augen_1_tray', 'linzer_augen_2_trays', + 'long_grain_rice_general_rapid_steam_cooking', + 'long_grain_rice_general_steam_cooking', 'low_temperature_cooking', 'madeira_cake', + 'make_yoghurt', + 'mangel_cut', 'marble_cake', + 'meat_for_soup_back_or_top_rib', + 'meat_for_soup_brisket', + 'meat_for_soup_leg_steak', 'meat_loaf', + 'meat_with_rice', + 'melt_chocolate', + 'menu_cooking', 'microwave', 'microwave_auto_roast', 'microwave_fan_grill', 'microwave_fan_plus', 'microwave_grill', + 'millet', + 'mirabelles', 'mixed_rye_bread', 'moisture_plus_auto_roast', 'moisture_plus_conventional_heat', 'moisture_plus_fan_plus', 'moisture_plus_intensive_bake', 'multigrain_rolls', + 'mushrooms_diced', + 'mushrooms_halved', + 'mushrooms_quartered', + 'mushrooms_sliced', + 'mushrooms_whole', + 'mussels', + 'mussels_in_sauce', + 'nectarines_peaches_halved_skinning', + 'nectarines_peaches_halved_steam_cooking', + 'nectarines_peaches_quartered', + 'nectarines_peaches_wedges', + 'nile_perch_fillet_2_cm', + 'nile_perch_fillet_3_cm', 'no_program', + 'oats_cracked', + 'oats_whole', 'osso_buco', + 'oyster_mushroom_diced', + 'oyster_mushroom_strips', + 'oyster_mushroom_whole', + 'parboiled_rice_rapid_steam_cooking', + 'parboiled_rice_steam_cooking', + 'parisian_carrots_large', + 'parisian_carrots_medium', + 'parisian_carrots_small', + 'parsley_root_cut_into_batons', + 'parsley_root_diced', + 'parsley_root_sliced', + 'parsnip_cut_into_batons', + 'parsnip_diced', + 'parsnip_sliced', + 'pears_halved', + 'pears_quartered', + 'pears_to_cook_large_halved', + 'pears_to_cook_large_quartered', + 'pears_to_cook_large_whole', + 'pears_to_cook_medium_halved', + 'pears_to_cook_medium_quartered', + 'pears_to_cook_medium_whole', + 'pears_to_cook_small_halved', + 'pears_to_cook_small_quartered', + 'pears_to_cook_small_whole', + 'pears_wedges', + 'peas', + 'pepper_diced', + 'pepper_halved', + 'pepper_quartered', + 'pepper_strips', + 'perch_fillet_2_cm', + 'perch_fillet_3_cm', + 'perch_whole', + 'pike_fillet', + 'pike_piece', 'pikeperch_fillet_with_vegetables', + 'pinto_beans', 'pizza_oil_cheese_dough_baking_tray', 'pizza_oil_cheese_dough_round_baking_tine', 'pizza_yeast_dough_baking_tray', 'pizza_yeast_dough_round_baking_tine', + 'plaice_fillet_1_cm', + 'plaice_fillet_2_cm', + 'plaice_whole_2_cm', + 'plaice_whole_3_cm', + 'plaice_whole_4_cm', 'plaited_loaf', 'plaited_swiss_loaf', + 'plums_halved', + 'plums_whole', + 'pointed_cabbage_cut', + 'polenta', + 'polenta_swiss_style_coarse_polenta', + 'polenta_swiss_style_fine_polenta', + 'polenta_swiss_style_medium_polenta', 'popcorn', 'pork_belly', 'pork_fillet_low_temperature_cooking', 'pork_fillet_roast', 'pork_smoked_ribs_low_temperature_cooking', 'pork_smoked_ribs_roast', + 'pork_tenderloin_medaillons_3_cm', + 'pork_tenderloin_medaillons_4_cm', + 'pork_tenderloin_medaillons_5_cm', 'pork_with_crackling', 'potato_cheese_gratin', + 'potato_dumplings_half_half_boil_in_bag', + 'potato_dumplings_half_half_deep_frozen', + 'potato_dumplings_raw_boil_in_bag', + 'potato_dumplings_raw_deep_frozen', 'potato_gratin', + 'potatoes_floury_diced', + 'potatoes_floury_halved', + 'potatoes_floury_quartered', + 'potatoes_floury_whole_large', + 'potatoes_floury_whole_medium', + 'potatoes_floury_whole_small', + 'potatoes_in_the_skin_floury_large', + 'potatoes_in_the_skin_floury_medium', + 'potatoes_in_the_skin_floury_small', + 'potatoes_in_the_skin_mainly_waxy_large', + 'potatoes_in_the_skin_mainly_waxy_medium', + 'potatoes_in_the_skin_mainly_waxy_small', + 'potatoes_in_the_skin_waxy_large_rapid_steam_cooking', + 'potatoes_in_the_skin_waxy_large_steam_cooking', + 'potatoes_in_the_skin_waxy_medium_rapid_steam_cooking', + 'potatoes_in_the_skin_waxy_medium_steam_cooking', + 'potatoes_in_the_skin_waxy_small_rapid_steam_cooking', + 'potatoes_in_the_skin_waxy_small_steam_cooking', + 'potatoes_mainly_waxy_diced', + 'potatoes_mainly_waxy_halved', + 'potatoes_mainly_waxy_large', + 'potatoes_mainly_waxy_medium', + 'potatoes_mainly_waxy_quartered', + 'potatoes_mainly_waxy_small', + 'potatoes_waxy_diced', + 'potatoes_waxy_halved', + 'potatoes_waxy_quartered', + 'potatoes_waxy_whole_large', + 'potatoes_waxy_whole_medium', + 'potatoes_waxy_whole_small', + 'poularde_breast', + 'poularde_whole', + 'prawns', 'prove_15_min', 'prove_30_min', 'prove_45_min', 'prove_dough', + 'pumpkin_diced', + 'pumpkin_risotto', + 'pumpkin_soup', 'pyrolytic', 'quiche_lorraine', 'quick_microwave', + 'quinces_diced', + 'quinoa', 'rabbit', 'rack_of_lamb_with_vegetables', + 'rapid_steam_cooking', + 'ravioli_fresh', + 'razor_clams_large', + 'razor_clams_medium', + 'razor_clams_small', + 'red_beans', + 'red_cabbage_cut', + 'red_lentils', + 'red_snapper_fillet_2_cm', + 'red_snapper_fillet_3_cm', + 'redfish_fillet_2_cm', + 'redfish_fillet_3_cm', + 'redfish_piece', + 'reheating_with_microwave', + 'reheating_with_steam', + 'rhubarb_chunks', + 'rice_pudding_rapid_steam_cooking', + 'rice_pudding_steam_cooking', + 'risotto', 'roast_beef_low_temperature_cooking', 'roast_beef_roast', + 'romanesco_florets_large', + 'romanesco_florets_medium', + 'romanesco_florets_small', + 'romanesco_whole_large', + 'romanesco_whole_medium', + 'romanesco_whole_small', + 'round_grain_rice_general_rapid_steam_cooking', + 'round_grain_rice_general_steam_cooking', + 'runner_beans_pieces', + 'runner_beans_sliced', + 'runner_beans_whole', + 'rye_cracked', 'rye_rolls', + 'rye_whole', 'sachertorte', 'saddle_of_lamb_low_temperature_cooking', 'saddle_of_lamb_roast', @@ -5299,40 +5622,122 @@ 'saddle_of_veal_roast', 'saddle_of_venison', 'salmon_fillet', + 'salmon_fillet_2_cm', + 'salmon_fillet_3_cm', + 'salmon_piece', + 'salmon_steak_2_cm', + 'salmon_steak_3_cm', 'salmon_trout', + 'saucisson', 'savoury_flan_puff_pastry', 'savoury_flan_short_crust_pastry', + 'savoy_cabbage_cut', + 'scallops', + 'schupfnudeln_potato_noodels', + 'sea_devil_fillet_3_cm', + 'sea_devil_fillet_4_cm', 'seeded_loaf', 'shabbat_program', + 'sheyang_rapid_steam_cooking', + 'sheyang_steam_cooking', + 'silverside_10_cm', + 'silverside_5_cm', + 'silverside_7_5_cm', + 'simiao_rapid_steam_cooking', + 'simiao_steam_cooking', + 'small_shrimps', + 'snow_pea', + 'soak', + 'soup_hen', + 'sour_cherries', + 'sous_vide', + 'spaetzle_fresh', 'spelt_bread', + 'spelt_cracked', + 'spelt_whole', + 'spinach', 'sponge_base', 'springform_tin_15cm', 'springform_tin_20cm', 'springform_tin_25cm', 'steam_bake', 'steam_cooking', + 'sterilize_crockery', 'stollen', + 'stuffed_cabbage', + 'sweat_onions', + 'swede_cut_into_batons', + 'swede_diced', + 'sweet_cheese_dumplings', + 'sweet_cherries', 'swiss_farmhouse_bread', 'swiss_roll', + 'swiss_toffee_cream_100_ml', + 'swiss_toffee_cream_150_ml', + 'tagliatelli_fresh', 'tart_flambe', + 'teltow_turnip_diced', + 'teltow_turnip_sliced', 'tiger_bread', + 'tilapia_fillet_1_cm', + 'tilapia_fillet_2_cm', + 'toffee_date_dessert_one_large', + 'toffee_date_dessert_several_small', 'top_heat', + 'tortellini_fresh', + 'treacle_sponge_pudding_one_large', + 'treacle_sponge_pudding_several_small', 'trout', + 'tuna_fillet_2_cm', + 'tuna_fillet_3_cm', + 'tuna_steak', + 'turbot_fillet_2_cm', + 'turbot_fillet_3_cm', + 'turkey_breast', 'turkey_drumsticks', 'turkey_whole', + 'uonumma_koshihikari_rapid_steam_cooking', + 'uonumma_koshihikari_steam_cooking', 'vanilla_biscuits_1_tray', 'vanilla_biscuits_2_trays', 'veal_fillet_low_temperature_cooking', + 'veal_fillet_medaillons_1_cm', + 'veal_fillet_medaillons_2_cm', + 'veal_fillet_medaillons_3_cm', 'veal_fillet_roast', + 'veal_fillet_whole', 'veal_knuckle', + 'veal_sausages', + 'venus_clams', 'viennese_apple_strudel', + 'viennese_silverside', 'walnut_bread', 'walnut_muffins', + 'wheat_cracked', + 'wheat_whole', + 'white_asparagus_medium', + 'white_asparagus_thick', + 'white_asparagus_thin', + 'white_beans', 'white_bread_baking_tin', 'white_bread_on_tray', 'white_rolls', + 'whole_ham_reheating', + 'whole_ham_steam_cooking', + 'wholegrain_rice', + 'wild_rice', + 'wuchang_rapid_steam_cooking', + 'wuchang_steam_cooking', + 'yam_halved', + 'yam_quartered', + 'yam_strips', + 'yeast_dumplings_fresh', + 'yellow_beans_cut', + 'yellow_beans_whole', + 'yellow_split_peas', 'yom_tov', 'yorkshire_pudding', + 'zander_fillet', ]), }), 'config_entry_id': , @@ -5373,32 +5778,138 @@ 'options': list([ 'almond_macaroons_1_tray', 'almond_macaroons_2_trays', + 'amaranth', 'apple_pie', 'apple_sponge', + 'apples_diced', + 'apples_halved', + 'apples_quartered', + 'apples_sliced', + 'apples_whole', + 'apricots_halved_skinning', + 'apricots_halved_steam_cooking', + 'apricots_quartered', + 'apricots_wedges', + 'artichokes_large', + 'artichokes_medium', + 'artichokes_small', + 'atlantic_catfish_fillet_1_cm', + 'atlantic_catfish_fillet_2_cm', 'auto_roast', 'baguettes', 'baiser_one_large', 'baiser_several_small', + 'basmati_rice_rapid_steam_cooking', + 'basmati_rice_steam_cooking', + 'beef_casserole', 'beef_fillet_low_temperature_cooking', 'beef_fillet_roast', 'beef_hash', + 'beef_tenderloin', + 'beef_tenderloin_medaillons_1_cm_low_temperature_cooking', + 'beef_tenderloin_medaillons_1_cm_steam_cooking', + 'beef_tenderloin_medaillons_2_cm_low_temperature_cooking', + 'beef_tenderloin_medaillons_2_cm_steam_cooking', + 'beef_tenderloin_medaillons_3_cm_low_temperature_cooking', + 'beef_tenderloin_medaillons_3_cm_steam_cooking', 'beef_wellington', + 'beetroot_whole_large', + 'beetroot_whole_medium', + 'beetroot_whole_small', 'belgian_sponge_cake', + 'beluga_lentils', 'biscuits_short_crust_pastry_1_tray', 'biscuits_short_crust_pastry_2_trays', + 'black_beans', + 'black_salsify_medium', + 'black_salsify_thick', + 'black_salsify_thin', + 'blanching', 'blueberry_muffins', + 'bologna_sausage', + 'bottling', + 'bottling_hard', + 'bottling_medium', + 'bottling_soft', 'bottom_heat', 'braised_beef', 'braised_veal', + 'bread_dumplings_boil_in_the_bag', + 'bread_dumplings_fresh', + 'broad_beans', + 'broccoli_florets_large', + 'broccoli_florets_medium', + 'broccoli_florets_small', + 'broccoli_whole_large', + 'broccoli_whole_medium', + 'broccoli_whole_small', + 'brown_lentils', + 'bruehwurst_sausages', + 'brussels_sprout', + 'bulgur', + 'bunched_carrots_cut_into_batons', + 'bunched_carrots_diced', + 'bunched_carrots_halved', + 'bunched_carrots_quartered', + 'bunched_carrots_sliced', + 'bunched_carrots_whole_large', + 'bunched_carrots_whole_medium', + 'bunched_carrots_whole_small', 'butter_cake', 'carp', + 'carrots_cut_into_batons', + 'carrots_diced', + 'carrots_halved', + 'carrots_quartered', + 'carrots_sliced', + 'carrots_whole_large', + 'carrots_whole_medium', + 'carrots_whole_small', + 'cauliflower_florets_large', + 'cauliflower_florets_medium', + 'cauliflower_florets_small', + 'cauliflower_whole_large', + 'cauliflower_whole_medium', + 'cauliflower_whole_small', + 'celeriac_cut_into_batons', + 'celeriac_diced', + 'celeriac_sliced', + 'celery_pieces', + 'celery_sliced', + 'cep', + 'chanterelle', + 'char', 'cheese_souffle', + 'cheesecake_one_large', + 'cheesecake_several_small', + 'chick_peas', 'chicken_thighs', + 'chicken_tikka_masala_with_rice', 'chicken_whole', + 'chinese_cabbage_cut', 'chocolate_hazlenut_cake_one_large', 'chocolate_hazlenut_cake_several_small', + 'chongming_rapid_steam_cooking', + 'chongming_steam_cooking', 'choux_buns', + 'christmas_pudding_cooking', + 'christmas_pudding_heating', + 'coalfish_fillet_2_cm', + 'coalfish_fillet_3_cm', + 'coalfish_piece', + 'cockles', + 'codfish_fillet', + 'codfish_piece', + 'common_beans', + 'common_sole_fillet_1_cm', + 'common_sole_fillet_2_cm', 'conventional_heat', + 'cook_bacon', + 'corn_on_the_cob', + 'courgette_diced', + 'courgette_sliced', + 'cranberries', + 'crevettes', 'custom_program_1', 'custom_program_10', 'custom_program_11', @@ -5420,83 +5931,300 @@ 'custom_program_8', 'custom_program_9', 'dark_mixed_grain_bread', + 'decrystallise_honey', 'defrost', 'defrost_meat', 'defrost_vegetables', + 'defrosting_with_microwave', + 'defrosting_with_steam', 'descale', + 'dissolve_gelatine', 'drop_cookies_1_tray', 'drop_cookies_2_trays', 'drying', 'duck', + 'dutch_hash', 'eco_fan_heat', + 'eco_steam_cooking', 'economy_grill', + 'eggplant_diced', + 'eggplant_sliced', + 'endive_halved', + 'endive_quartered', + 'endive_strips', 'evaporate_water', 'fan_grill', 'fan_plus', + 'fennel_halved', + 'fennel_quartered', + 'fennel_strips', 'flat_bread', 'fruit_flan_puff_pastry', 'fruit_flan_short_crust_pastry', 'fruit_streusel_cake', 'full_grill', + 'german_turnip_cut_into_batons', + 'german_turnip_diced', + 'german_turnip_sliced', + 'gilt_head_bream_fillet', + 'gilt_head_bream_whole', 'ginger_loaf', + 'gnocchi_fresh', + 'goose_barnacles', 'goose_stuffed', 'goose_unstuffed', + 'gooseberries', + 'goulash_soup', + 'green_asparagus_medium', + 'green_asparagus_thick', + 'green_asparagus_thin', + 'green_beans_cut', + 'green_beans_whole', + 'green_cabbage_cut', + 'green_spelt_cracked', + 'green_spelt_whole', + 'green_split_peas', + 'greenage_plums', 'grill', + 'halibut_fillet_2_cm', + 'halibut_fillet_3_cm', 'ham_roast', 'heat_crockery', 'heating_bakes_gratins', + 'heating_damp_flannels', 'heating_vegetables', + 'hens_eggs_size_l_hard', + 'hens_eggs_size_l_medium', + 'hens_eggs_size_l_soft', + 'hens_eggs_size_m_hard', + 'hens_eggs_size_m_medium', + 'hens_eggs_size_m_soft', + 'hens_eggs_size_s_hard', + 'hens_eggs_size_s_medium', + 'hens_eggs_size_s_soft', + 'hens_eggs_size_xl_hard', + 'hens_eggs_size_xl_medium', + 'hens_eggs_size_xl_soft', + 'huanghuanian_rapid_steam_cooking', + 'huanghuanian_steam_cooking', 'intensive_bake', + 'iridescent_shark_fillet', + 'jasmine_rice_rapid_steam_cooking', + 'jasmine_rice_steam_cooking', + 'jerusalem_artichoke_diced', + 'jerusalem_artichoke_sliced', + 'kale_cut', + 'kasseler_piece', + 'kasseler_slice', 'keeping_warm', + 'king_prawns', + 'knuckle_of_pork_cured', + 'knuckle_of_pork_fresh', + 'large_shrimps', + 'leek_pieces', + 'leek_rings', 'leg_of_lamb', 'lemon_meringue_pie', 'linzer_augen_1_tray', 'linzer_augen_2_trays', + 'long_grain_rice_general_rapid_steam_cooking', + 'long_grain_rice_general_steam_cooking', 'low_temperature_cooking', 'madeira_cake', + 'make_yoghurt', + 'mangel_cut', 'marble_cake', + 'meat_for_soup_back_or_top_rib', + 'meat_for_soup_brisket', + 'meat_for_soup_leg_steak', 'meat_loaf', + 'meat_with_rice', + 'melt_chocolate', + 'menu_cooking', 'microwave', 'microwave_auto_roast', 'microwave_fan_grill', 'microwave_fan_plus', 'microwave_grill', + 'millet', + 'mirabelles', 'mixed_rye_bread', 'moisture_plus_auto_roast', 'moisture_plus_conventional_heat', 'moisture_plus_fan_plus', 'moisture_plus_intensive_bake', 'multigrain_rolls', + 'mushrooms_diced', + 'mushrooms_halved', + 'mushrooms_quartered', + 'mushrooms_sliced', + 'mushrooms_whole', + 'mussels', + 'mussels_in_sauce', + 'nectarines_peaches_halved_skinning', + 'nectarines_peaches_halved_steam_cooking', + 'nectarines_peaches_quartered', + 'nectarines_peaches_wedges', + 'nile_perch_fillet_2_cm', + 'nile_perch_fillet_3_cm', 'no_program', + 'oats_cracked', + 'oats_whole', 'osso_buco', + 'oyster_mushroom_diced', + 'oyster_mushroom_strips', + 'oyster_mushroom_whole', + 'parboiled_rice_rapid_steam_cooking', + 'parboiled_rice_steam_cooking', + 'parisian_carrots_large', + 'parisian_carrots_medium', + 'parisian_carrots_small', + 'parsley_root_cut_into_batons', + 'parsley_root_diced', + 'parsley_root_sliced', + 'parsnip_cut_into_batons', + 'parsnip_diced', + 'parsnip_sliced', + 'pears_halved', + 'pears_quartered', + 'pears_to_cook_large_halved', + 'pears_to_cook_large_quartered', + 'pears_to_cook_large_whole', + 'pears_to_cook_medium_halved', + 'pears_to_cook_medium_quartered', + 'pears_to_cook_medium_whole', + 'pears_to_cook_small_halved', + 'pears_to_cook_small_quartered', + 'pears_to_cook_small_whole', + 'pears_wedges', + 'peas', + 'pepper_diced', + 'pepper_halved', + 'pepper_quartered', + 'pepper_strips', + 'perch_fillet_2_cm', + 'perch_fillet_3_cm', + 'perch_whole', + 'pike_fillet', + 'pike_piece', 'pikeperch_fillet_with_vegetables', + 'pinto_beans', 'pizza_oil_cheese_dough_baking_tray', 'pizza_oil_cheese_dough_round_baking_tine', 'pizza_yeast_dough_baking_tray', 'pizza_yeast_dough_round_baking_tine', + 'plaice_fillet_1_cm', + 'plaice_fillet_2_cm', + 'plaice_whole_2_cm', + 'plaice_whole_3_cm', + 'plaice_whole_4_cm', 'plaited_loaf', 'plaited_swiss_loaf', + 'plums_halved', + 'plums_whole', + 'pointed_cabbage_cut', + 'polenta', + 'polenta_swiss_style_coarse_polenta', + 'polenta_swiss_style_fine_polenta', + 'polenta_swiss_style_medium_polenta', 'popcorn', 'pork_belly', 'pork_fillet_low_temperature_cooking', 'pork_fillet_roast', 'pork_smoked_ribs_low_temperature_cooking', 'pork_smoked_ribs_roast', + 'pork_tenderloin_medaillons_3_cm', + 'pork_tenderloin_medaillons_4_cm', + 'pork_tenderloin_medaillons_5_cm', 'pork_with_crackling', 'potato_cheese_gratin', + 'potato_dumplings_half_half_boil_in_bag', + 'potato_dumplings_half_half_deep_frozen', + 'potato_dumplings_raw_boil_in_bag', + 'potato_dumplings_raw_deep_frozen', 'potato_gratin', + 'potatoes_floury_diced', + 'potatoes_floury_halved', + 'potatoes_floury_quartered', + 'potatoes_floury_whole_large', + 'potatoes_floury_whole_medium', + 'potatoes_floury_whole_small', + 'potatoes_in_the_skin_floury_large', + 'potatoes_in_the_skin_floury_medium', + 'potatoes_in_the_skin_floury_small', + 'potatoes_in_the_skin_mainly_waxy_large', + 'potatoes_in_the_skin_mainly_waxy_medium', + 'potatoes_in_the_skin_mainly_waxy_small', + 'potatoes_in_the_skin_waxy_large_rapid_steam_cooking', + 'potatoes_in_the_skin_waxy_large_steam_cooking', + 'potatoes_in_the_skin_waxy_medium_rapid_steam_cooking', + 'potatoes_in_the_skin_waxy_medium_steam_cooking', + 'potatoes_in_the_skin_waxy_small_rapid_steam_cooking', + 'potatoes_in_the_skin_waxy_small_steam_cooking', + 'potatoes_mainly_waxy_diced', + 'potatoes_mainly_waxy_halved', + 'potatoes_mainly_waxy_large', + 'potatoes_mainly_waxy_medium', + 'potatoes_mainly_waxy_quartered', + 'potatoes_mainly_waxy_small', + 'potatoes_waxy_diced', + 'potatoes_waxy_halved', + 'potatoes_waxy_quartered', + 'potatoes_waxy_whole_large', + 'potatoes_waxy_whole_medium', + 'potatoes_waxy_whole_small', + 'poularde_breast', + 'poularde_whole', + 'prawns', 'prove_15_min', 'prove_30_min', 'prove_45_min', 'prove_dough', + 'pumpkin_diced', + 'pumpkin_risotto', + 'pumpkin_soup', 'pyrolytic', 'quiche_lorraine', 'quick_microwave', + 'quinces_diced', + 'quinoa', 'rabbit', 'rack_of_lamb_with_vegetables', + 'rapid_steam_cooking', + 'ravioli_fresh', + 'razor_clams_large', + 'razor_clams_medium', + 'razor_clams_small', + 'red_beans', + 'red_cabbage_cut', + 'red_lentils', + 'red_snapper_fillet_2_cm', + 'red_snapper_fillet_3_cm', + 'redfish_fillet_2_cm', + 'redfish_fillet_3_cm', + 'redfish_piece', + 'reheating_with_microwave', + 'reheating_with_steam', + 'rhubarb_chunks', + 'rice_pudding_rapid_steam_cooking', + 'rice_pudding_steam_cooking', + 'risotto', 'roast_beef_low_temperature_cooking', 'roast_beef_roast', + 'romanesco_florets_large', + 'romanesco_florets_medium', + 'romanesco_florets_small', + 'romanesco_whole_large', + 'romanesco_whole_medium', + 'romanesco_whole_small', + 'round_grain_rice_general_rapid_steam_cooking', + 'round_grain_rice_general_steam_cooking', + 'runner_beans_pieces', + 'runner_beans_sliced', + 'runner_beans_whole', + 'rye_cracked', 'rye_rolls', + 'rye_whole', 'sachertorte', 'saddle_of_lamb_low_temperature_cooking', 'saddle_of_lamb_roast', @@ -5505,40 +6233,122 @@ 'saddle_of_veal_roast', 'saddle_of_venison', 'salmon_fillet', + 'salmon_fillet_2_cm', + 'salmon_fillet_3_cm', + 'salmon_piece', + 'salmon_steak_2_cm', + 'salmon_steak_3_cm', 'salmon_trout', + 'saucisson', 'savoury_flan_puff_pastry', 'savoury_flan_short_crust_pastry', + 'savoy_cabbage_cut', + 'scallops', + 'schupfnudeln_potato_noodels', + 'sea_devil_fillet_3_cm', + 'sea_devil_fillet_4_cm', 'seeded_loaf', 'shabbat_program', + 'sheyang_rapid_steam_cooking', + 'sheyang_steam_cooking', + 'silverside_10_cm', + 'silverside_5_cm', + 'silverside_7_5_cm', + 'simiao_rapid_steam_cooking', + 'simiao_steam_cooking', + 'small_shrimps', + 'snow_pea', + 'soak', + 'soup_hen', + 'sour_cherries', + 'sous_vide', + 'spaetzle_fresh', 'spelt_bread', + 'spelt_cracked', + 'spelt_whole', + 'spinach', 'sponge_base', 'springform_tin_15cm', 'springform_tin_20cm', 'springform_tin_25cm', 'steam_bake', 'steam_cooking', + 'sterilize_crockery', 'stollen', + 'stuffed_cabbage', + 'sweat_onions', + 'swede_cut_into_batons', + 'swede_diced', + 'sweet_cheese_dumplings', + 'sweet_cherries', 'swiss_farmhouse_bread', 'swiss_roll', + 'swiss_toffee_cream_100_ml', + 'swiss_toffee_cream_150_ml', + 'tagliatelli_fresh', 'tart_flambe', + 'teltow_turnip_diced', + 'teltow_turnip_sliced', 'tiger_bread', + 'tilapia_fillet_1_cm', + 'tilapia_fillet_2_cm', + 'toffee_date_dessert_one_large', + 'toffee_date_dessert_several_small', 'top_heat', + 'tortellini_fresh', + 'treacle_sponge_pudding_one_large', + 'treacle_sponge_pudding_several_small', 'trout', + 'tuna_fillet_2_cm', + 'tuna_fillet_3_cm', + 'tuna_steak', + 'turbot_fillet_2_cm', + 'turbot_fillet_3_cm', + 'turkey_breast', 'turkey_drumsticks', 'turkey_whole', + 'uonumma_koshihikari_rapid_steam_cooking', + 'uonumma_koshihikari_steam_cooking', 'vanilla_biscuits_1_tray', 'vanilla_biscuits_2_trays', 'veal_fillet_low_temperature_cooking', + 'veal_fillet_medaillons_1_cm', + 'veal_fillet_medaillons_2_cm', + 'veal_fillet_medaillons_3_cm', 'veal_fillet_roast', + 'veal_fillet_whole', 'veal_knuckle', + 'veal_sausages', + 'venus_clams', 'viennese_apple_strudel', + 'viennese_silverside', 'walnut_bread', 'walnut_muffins', + 'wheat_cracked', + 'wheat_whole', + 'white_asparagus_medium', + 'white_asparagus_thick', + 'white_asparagus_thin', + 'white_beans', 'white_bread_baking_tin', 'white_bread_on_tray', 'white_rolls', + 'whole_ham_reheating', + 'whole_ham_steam_cooking', + 'wholegrain_rice', + 'wild_rice', + 'wuchang_rapid_steam_cooking', + 'wuchang_steam_cooking', + 'yam_halved', + 'yam_quartered', + 'yam_strips', + 'yeast_dumplings_fresh', + 'yellow_beans_cut', + 'yellow_beans_whole', + 'yellow_split_peas', 'yom_tov', 'yorkshire_pudding', + 'zander_fillet', ]), }), 'context': , @@ -8109,32 +8919,138 @@ 'options': list([ 'almond_macaroons_1_tray', 'almond_macaroons_2_trays', + 'amaranth', 'apple_pie', 'apple_sponge', + 'apples_diced', + 'apples_halved', + 'apples_quartered', + 'apples_sliced', + 'apples_whole', + 'apricots_halved_skinning', + 'apricots_halved_steam_cooking', + 'apricots_quartered', + 'apricots_wedges', + 'artichokes_large', + 'artichokes_medium', + 'artichokes_small', + 'atlantic_catfish_fillet_1_cm', + 'atlantic_catfish_fillet_2_cm', 'auto_roast', 'baguettes', 'baiser_one_large', 'baiser_several_small', + 'basmati_rice_rapid_steam_cooking', + 'basmati_rice_steam_cooking', + 'beef_casserole', 'beef_fillet_low_temperature_cooking', 'beef_fillet_roast', 'beef_hash', + 'beef_tenderloin', + 'beef_tenderloin_medaillons_1_cm_low_temperature_cooking', + 'beef_tenderloin_medaillons_1_cm_steam_cooking', + 'beef_tenderloin_medaillons_2_cm_low_temperature_cooking', + 'beef_tenderloin_medaillons_2_cm_steam_cooking', + 'beef_tenderloin_medaillons_3_cm_low_temperature_cooking', + 'beef_tenderloin_medaillons_3_cm_steam_cooking', 'beef_wellington', + 'beetroot_whole_large', + 'beetroot_whole_medium', + 'beetroot_whole_small', 'belgian_sponge_cake', + 'beluga_lentils', 'biscuits_short_crust_pastry_1_tray', 'biscuits_short_crust_pastry_2_trays', + 'black_beans', + 'black_salsify_medium', + 'black_salsify_thick', + 'black_salsify_thin', + 'blanching', 'blueberry_muffins', + 'bologna_sausage', + 'bottling', + 'bottling_hard', + 'bottling_medium', + 'bottling_soft', 'bottom_heat', 'braised_beef', 'braised_veal', + 'bread_dumplings_boil_in_the_bag', + 'bread_dumplings_fresh', + 'broad_beans', + 'broccoli_florets_large', + 'broccoli_florets_medium', + 'broccoli_florets_small', + 'broccoli_whole_large', + 'broccoli_whole_medium', + 'broccoli_whole_small', + 'brown_lentils', + 'bruehwurst_sausages', + 'brussels_sprout', + 'bulgur', + 'bunched_carrots_cut_into_batons', + 'bunched_carrots_diced', + 'bunched_carrots_halved', + 'bunched_carrots_quartered', + 'bunched_carrots_sliced', + 'bunched_carrots_whole_large', + 'bunched_carrots_whole_medium', + 'bunched_carrots_whole_small', 'butter_cake', 'carp', + 'carrots_cut_into_batons', + 'carrots_diced', + 'carrots_halved', + 'carrots_quartered', + 'carrots_sliced', + 'carrots_whole_large', + 'carrots_whole_medium', + 'carrots_whole_small', + 'cauliflower_florets_large', + 'cauliflower_florets_medium', + 'cauliflower_florets_small', + 'cauliflower_whole_large', + 'cauliflower_whole_medium', + 'cauliflower_whole_small', + 'celeriac_cut_into_batons', + 'celeriac_diced', + 'celeriac_sliced', + 'celery_pieces', + 'celery_sliced', + 'cep', + 'chanterelle', + 'char', 'cheese_souffle', + 'cheesecake_one_large', + 'cheesecake_several_small', + 'chick_peas', 'chicken_thighs', + 'chicken_tikka_masala_with_rice', 'chicken_whole', + 'chinese_cabbage_cut', 'chocolate_hazlenut_cake_one_large', 'chocolate_hazlenut_cake_several_small', + 'chongming_rapid_steam_cooking', + 'chongming_steam_cooking', 'choux_buns', + 'christmas_pudding_cooking', + 'christmas_pudding_heating', + 'coalfish_fillet_2_cm', + 'coalfish_fillet_3_cm', + 'coalfish_piece', + 'cockles', + 'codfish_fillet', + 'codfish_piece', + 'common_beans', + 'common_sole_fillet_1_cm', + 'common_sole_fillet_2_cm', 'conventional_heat', + 'cook_bacon', + 'corn_on_the_cob', + 'courgette_diced', + 'courgette_sliced', + 'cranberries', + 'crevettes', 'custom_program_1', 'custom_program_10', 'custom_program_11', @@ -8156,83 +9072,300 @@ 'custom_program_8', 'custom_program_9', 'dark_mixed_grain_bread', + 'decrystallise_honey', 'defrost', 'defrost_meat', 'defrost_vegetables', + 'defrosting_with_microwave', + 'defrosting_with_steam', 'descale', + 'dissolve_gelatine', 'drop_cookies_1_tray', 'drop_cookies_2_trays', 'drying', 'duck', + 'dutch_hash', 'eco_fan_heat', + 'eco_steam_cooking', 'economy_grill', + 'eggplant_diced', + 'eggplant_sliced', + 'endive_halved', + 'endive_quartered', + 'endive_strips', 'evaporate_water', 'fan_grill', 'fan_plus', + 'fennel_halved', + 'fennel_quartered', + 'fennel_strips', 'flat_bread', 'fruit_flan_puff_pastry', 'fruit_flan_short_crust_pastry', 'fruit_streusel_cake', 'full_grill', + 'german_turnip_cut_into_batons', + 'german_turnip_diced', + 'german_turnip_sliced', + 'gilt_head_bream_fillet', + 'gilt_head_bream_whole', 'ginger_loaf', + 'gnocchi_fresh', + 'goose_barnacles', 'goose_stuffed', 'goose_unstuffed', + 'gooseberries', + 'goulash_soup', + 'green_asparagus_medium', + 'green_asparagus_thick', + 'green_asparagus_thin', + 'green_beans_cut', + 'green_beans_whole', + 'green_cabbage_cut', + 'green_spelt_cracked', + 'green_spelt_whole', + 'green_split_peas', + 'greenage_plums', 'grill', + 'halibut_fillet_2_cm', + 'halibut_fillet_3_cm', 'ham_roast', 'heat_crockery', 'heating_bakes_gratins', + 'heating_damp_flannels', 'heating_vegetables', + 'hens_eggs_size_l_hard', + 'hens_eggs_size_l_medium', + 'hens_eggs_size_l_soft', + 'hens_eggs_size_m_hard', + 'hens_eggs_size_m_medium', + 'hens_eggs_size_m_soft', + 'hens_eggs_size_s_hard', + 'hens_eggs_size_s_medium', + 'hens_eggs_size_s_soft', + 'hens_eggs_size_xl_hard', + 'hens_eggs_size_xl_medium', + 'hens_eggs_size_xl_soft', + 'huanghuanian_rapid_steam_cooking', + 'huanghuanian_steam_cooking', 'intensive_bake', + 'iridescent_shark_fillet', + 'jasmine_rice_rapid_steam_cooking', + 'jasmine_rice_steam_cooking', + 'jerusalem_artichoke_diced', + 'jerusalem_artichoke_sliced', + 'kale_cut', + 'kasseler_piece', + 'kasseler_slice', 'keeping_warm', + 'king_prawns', + 'knuckle_of_pork_cured', + 'knuckle_of_pork_fresh', + 'large_shrimps', + 'leek_pieces', + 'leek_rings', 'leg_of_lamb', 'lemon_meringue_pie', 'linzer_augen_1_tray', 'linzer_augen_2_trays', + 'long_grain_rice_general_rapid_steam_cooking', + 'long_grain_rice_general_steam_cooking', 'low_temperature_cooking', 'madeira_cake', + 'make_yoghurt', + 'mangel_cut', 'marble_cake', + 'meat_for_soup_back_or_top_rib', + 'meat_for_soup_brisket', + 'meat_for_soup_leg_steak', 'meat_loaf', + 'meat_with_rice', + 'melt_chocolate', + 'menu_cooking', 'microwave', 'microwave_auto_roast', 'microwave_fan_grill', 'microwave_fan_plus', 'microwave_grill', + 'millet', + 'mirabelles', 'mixed_rye_bread', 'moisture_plus_auto_roast', 'moisture_plus_conventional_heat', 'moisture_plus_fan_plus', 'moisture_plus_intensive_bake', 'multigrain_rolls', + 'mushrooms_diced', + 'mushrooms_halved', + 'mushrooms_quartered', + 'mushrooms_sliced', + 'mushrooms_whole', + 'mussels', + 'mussels_in_sauce', + 'nectarines_peaches_halved_skinning', + 'nectarines_peaches_halved_steam_cooking', + 'nectarines_peaches_quartered', + 'nectarines_peaches_wedges', + 'nile_perch_fillet_2_cm', + 'nile_perch_fillet_3_cm', 'no_program', + 'oats_cracked', + 'oats_whole', 'osso_buco', + 'oyster_mushroom_diced', + 'oyster_mushroom_strips', + 'oyster_mushroom_whole', + 'parboiled_rice_rapid_steam_cooking', + 'parboiled_rice_steam_cooking', + 'parisian_carrots_large', + 'parisian_carrots_medium', + 'parisian_carrots_small', + 'parsley_root_cut_into_batons', + 'parsley_root_diced', + 'parsley_root_sliced', + 'parsnip_cut_into_batons', + 'parsnip_diced', + 'parsnip_sliced', + 'pears_halved', + 'pears_quartered', + 'pears_to_cook_large_halved', + 'pears_to_cook_large_quartered', + 'pears_to_cook_large_whole', + 'pears_to_cook_medium_halved', + 'pears_to_cook_medium_quartered', + 'pears_to_cook_medium_whole', + 'pears_to_cook_small_halved', + 'pears_to_cook_small_quartered', + 'pears_to_cook_small_whole', + 'pears_wedges', + 'peas', + 'pepper_diced', + 'pepper_halved', + 'pepper_quartered', + 'pepper_strips', + 'perch_fillet_2_cm', + 'perch_fillet_3_cm', + 'perch_whole', + 'pike_fillet', + 'pike_piece', 'pikeperch_fillet_with_vegetables', + 'pinto_beans', 'pizza_oil_cheese_dough_baking_tray', 'pizza_oil_cheese_dough_round_baking_tine', 'pizza_yeast_dough_baking_tray', 'pizza_yeast_dough_round_baking_tine', + 'plaice_fillet_1_cm', + 'plaice_fillet_2_cm', + 'plaice_whole_2_cm', + 'plaice_whole_3_cm', + 'plaice_whole_4_cm', 'plaited_loaf', 'plaited_swiss_loaf', + 'plums_halved', + 'plums_whole', + 'pointed_cabbage_cut', + 'polenta', + 'polenta_swiss_style_coarse_polenta', + 'polenta_swiss_style_fine_polenta', + 'polenta_swiss_style_medium_polenta', 'popcorn', 'pork_belly', 'pork_fillet_low_temperature_cooking', 'pork_fillet_roast', 'pork_smoked_ribs_low_temperature_cooking', 'pork_smoked_ribs_roast', + 'pork_tenderloin_medaillons_3_cm', + 'pork_tenderloin_medaillons_4_cm', + 'pork_tenderloin_medaillons_5_cm', 'pork_with_crackling', 'potato_cheese_gratin', + 'potato_dumplings_half_half_boil_in_bag', + 'potato_dumplings_half_half_deep_frozen', + 'potato_dumplings_raw_boil_in_bag', + 'potato_dumplings_raw_deep_frozen', 'potato_gratin', + 'potatoes_floury_diced', + 'potatoes_floury_halved', + 'potatoes_floury_quartered', + 'potatoes_floury_whole_large', + 'potatoes_floury_whole_medium', + 'potatoes_floury_whole_small', + 'potatoes_in_the_skin_floury_large', + 'potatoes_in_the_skin_floury_medium', + 'potatoes_in_the_skin_floury_small', + 'potatoes_in_the_skin_mainly_waxy_large', + 'potatoes_in_the_skin_mainly_waxy_medium', + 'potatoes_in_the_skin_mainly_waxy_small', + 'potatoes_in_the_skin_waxy_large_rapid_steam_cooking', + 'potatoes_in_the_skin_waxy_large_steam_cooking', + 'potatoes_in_the_skin_waxy_medium_rapid_steam_cooking', + 'potatoes_in_the_skin_waxy_medium_steam_cooking', + 'potatoes_in_the_skin_waxy_small_rapid_steam_cooking', + 'potatoes_in_the_skin_waxy_small_steam_cooking', + 'potatoes_mainly_waxy_diced', + 'potatoes_mainly_waxy_halved', + 'potatoes_mainly_waxy_large', + 'potatoes_mainly_waxy_medium', + 'potatoes_mainly_waxy_quartered', + 'potatoes_mainly_waxy_small', + 'potatoes_waxy_diced', + 'potatoes_waxy_halved', + 'potatoes_waxy_quartered', + 'potatoes_waxy_whole_large', + 'potatoes_waxy_whole_medium', + 'potatoes_waxy_whole_small', + 'poularde_breast', + 'poularde_whole', + 'prawns', 'prove_15_min', 'prove_30_min', 'prove_45_min', 'prove_dough', + 'pumpkin_diced', + 'pumpkin_risotto', + 'pumpkin_soup', 'pyrolytic', 'quiche_lorraine', 'quick_microwave', + 'quinces_diced', + 'quinoa', 'rabbit', 'rack_of_lamb_with_vegetables', + 'rapid_steam_cooking', + 'ravioli_fresh', + 'razor_clams_large', + 'razor_clams_medium', + 'razor_clams_small', + 'red_beans', + 'red_cabbage_cut', + 'red_lentils', + 'red_snapper_fillet_2_cm', + 'red_snapper_fillet_3_cm', + 'redfish_fillet_2_cm', + 'redfish_fillet_3_cm', + 'redfish_piece', + 'reheating_with_microwave', + 'reheating_with_steam', + 'rhubarb_chunks', + 'rice_pudding_rapid_steam_cooking', + 'rice_pudding_steam_cooking', + 'risotto', 'roast_beef_low_temperature_cooking', 'roast_beef_roast', + 'romanesco_florets_large', + 'romanesco_florets_medium', + 'romanesco_florets_small', + 'romanesco_whole_large', + 'romanesco_whole_medium', + 'romanesco_whole_small', + 'round_grain_rice_general_rapid_steam_cooking', + 'round_grain_rice_general_steam_cooking', + 'runner_beans_pieces', + 'runner_beans_sliced', + 'runner_beans_whole', + 'rye_cracked', 'rye_rolls', + 'rye_whole', 'sachertorte', 'saddle_of_lamb_low_temperature_cooking', 'saddle_of_lamb_roast', @@ -8241,40 +9374,122 @@ 'saddle_of_veal_roast', 'saddle_of_venison', 'salmon_fillet', + 'salmon_fillet_2_cm', + 'salmon_fillet_3_cm', + 'salmon_piece', + 'salmon_steak_2_cm', + 'salmon_steak_3_cm', 'salmon_trout', + 'saucisson', 'savoury_flan_puff_pastry', 'savoury_flan_short_crust_pastry', + 'savoy_cabbage_cut', + 'scallops', + 'schupfnudeln_potato_noodels', + 'sea_devil_fillet_3_cm', + 'sea_devil_fillet_4_cm', 'seeded_loaf', 'shabbat_program', + 'sheyang_rapid_steam_cooking', + 'sheyang_steam_cooking', + 'silverside_10_cm', + 'silverside_5_cm', + 'silverside_7_5_cm', + 'simiao_rapid_steam_cooking', + 'simiao_steam_cooking', + 'small_shrimps', + 'snow_pea', + 'soak', + 'soup_hen', + 'sour_cherries', + 'sous_vide', + 'spaetzle_fresh', 'spelt_bread', + 'spelt_cracked', + 'spelt_whole', + 'spinach', 'sponge_base', 'springform_tin_15cm', 'springform_tin_20cm', 'springform_tin_25cm', 'steam_bake', 'steam_cooking', + 'sterilize_crockery', 'stollen', + 'stuffed_cabbage', + 'sweat_onions', + 'swede_cut_into_batons', + 'swede_diced', + 'sweet_cheese_dumplings', + 'sweet_cherries', 'swiss_farmhouse_bread', 'swiss_roll', + 'swiss_toffee_cream_100_ml', + 'swiss_toffee_cream_150_ml', + 'tagliatelli_fresh', 'tart_flambe', + 'teltow_turnip_diced', + 'teltow_turnip_sliced', 'tiger_bread', + 'tilapia_fillet_1_cm', + 'tilapia_fillet_2_cm', + 'toffee_date_dessert_one_large', + 'toffee_date_dessert_several_small', 'top_heat', + 'tortellini_fresh', + 'treacle_sponge_pudding_one_large', + 'treacle_sponge_pudding_several_small', 'trout', + 'tuna_fillet_2_cm', + 'tuna_fillet_3_cm', + 'tuna_steak', + 'turbot_fillet_2_cm', + 'turbot_fillet_3_cm', + 'turkey_breast', 'turkey_drumsticks', 'turkey_whole', + 'uonumma_koshihikari_rapid_steam_cooking', + 'uonumma_koshihikari_steam_cooking', 'vanilla_biscuits_1_tray', 'vanilla_biscuits_2_trays', 'veal_fillet_low_temperature_cooking', + 'veal_fillet_medaillons_1_cm', + 'veal_fillet_medaillons_2_cm', + 'veal_fillet_medaillons_3_cm', 'veal_fillet_roast', + 'veal_fillet_whole', 'veal_knuckle', + 'veal_sausages', + 'venus_clams', 'viennese_apple_strudel', + 'viennese_silverside', 'walnut_bread', 'walnut_muffins', + 'wheat_cracked', + 'wheat_whole', + 'white_asparagus_medium', + 'white_asparagus_thick', + 'white_asparagus_thin', + 'white_beans', 'white_bread_baking_tin', 'white_bread_on_tray', 'white_rolls', + 'whole_ham_reheating', + 'whole_ham_steam_cooking', + 'wholegrain_rice', + 'wild_rice', + 'wuchang_rapid_steam_cooking', + 'wuchang_steam_cooking', + 'yam_halved', + 'yam_quartered', + 'yam_strips', + 'yeast_dumplings_fresh', + 'yellow_beans_cut', + 'yellow_beans_whole', + 'yellow_split_peas', 'yom_tov', 'yorkshire_pudding', + 'zander_fillet', ]), }), 'config_entry_id': , @@ -8315,32 +9530,138 @@ 'options': list([ 'almond_macaroons_1_tray', 'almond_macaroons_2_trays', + 'amaranth', 'apple_pie', 'apple_sponge', + 'apples_diced', + 'apples_halved', + 'apples_quartered', + 'apples_sliced', + 'apples_whole', + 'apricots_halved_skinning', + 'apricots_halved_steam_cooking', + 'apricots_quartered', + 'apricots_wedges', + 'artichokes_large', + 'artichokes_medium', + 'artichokes_small', + 'atlantic_catfish_fillet_1_cm', + 'atlantic_catfish_fillet_2_cm', 'auto_roast', 'baguettes', 'baiser_one_large', 'baiser_several_small', + 'basmati_rice_rapid_steam_cooking', + 'basmati_rice_steam_cooking', + 'beef_casserole', 'beef_fillet_low_temperature_cooking', 'beef_fillet_roast', 'beef_hash', + 'beef_tenderloin', + 'beef_tenderloin_medaillons_1_cm_low_temperature_cooking', + 'beef_tenderloin_medaillons_1_cm_steam_cooking', + 'beef_tenderloin_medaillons_2_cm_low_temperature_cooking', + 'beef_tenderloin_medaillons_2_cm_steam_cooking', + 'beef_tenderloin_medaillons_3_cm_low_temperature_cooking', + 'beef_tenderloin_medaillons_3_cm_steam_cooking', 'beef_wellington', + 'beetroot_whole_large', + 'beetroot_whole_medium', + 'beetroot_whole_small', 'belgian_sponge_cake', + 'beluga_lentils', 'biscuits_short_crust_pastry_1_tray', 'biscuits_short_crust_pastry_2_trays', + 'black_beans', + 'black_salsify_medium', + 'black_salsify_thick', + 'black_salsify_thin', + 'blanching', 'blueberry_muffins', + 'bologna_sausage', + 'bottling', + 'bottling_hard', + 'bottling_medium', + 'bottling_soft', 'bottom_heat', 'braised_beef', 'braised_veal', + 'bread_dumplings_boil_in_the_bag', + 'bread_dumplings_fresh', + 'broad_beans', + 'broccoli_florets_large', + 'broccoli_florets_medium', + 'broccoli_florets_small', + 'broccoli_whole_large', + 'broccoli_whole_medium', + 'broccoli_whole_small', + 'brown_lentils', + 'bruehwurst_sausages', + 'brussels_sprout', + 'bulgur', + 'bunched_carrots_cut_into_batons', + 'bunched_carrots_diced', + 'bunched_carrots_halved', + 'bunched_carrots_quartered', + 'bunched_carrots_sliced', + 'bunched_carrots_whole_large', + 'bunched_carrots_whole_medium', + 'bunched_carrots_whole_small', 'butter_cake', 'carp', + 'carrots_cut_into_batons', + 'carrots_diced', + 'carrots_halved', + 'carrots_quartered', + 'carrots_sliced', + 'carrots_whole_large', + 'carrots_whole_medium', + 'carrots_whole_small', + 'cauliflower_florets_large', + 'cauliflower_florets_medium', + 'cauliflower_florets_small', + 'cauliflower_whole_large', + 'cauliflower_whole_medium', + 'cauliflower_whole_small', + 'celeriac_cut_into_batons', + 'celeriac_diced', + 'celeriac_sliced', + 'celery_pieces', + 'celery_sliced', + 'cep', + 'chanterelle', + 'char', 'cheese_souffle', + 'cheesecake_one_large', + 'cheesecake_several_small', + 'chick_peas', 'chicken_thighs', + 'chicken_tikka_masala_with_rice', 'chicken_whole', + 'chinese_cabbage_cut', 'chocolate_hazlenut_cake_one_large', 'chocolate_hazlenut_cake_several_small', + 'chongming_rapid_steam_cooking', + 'chongming_steam_cooking', 'choux_buns', + 'christmas_pudding_cooking', + 'christmas_pudding_heating', + 'coalfish_fillet_2_cm', + 'coalfish_fillet_3_cm', + 'coalfish_piece', + 'cockles', + 'codfish_fillet', + 'codfish_piece', + 'common_beans', + 'common_sole_fillet_1_cm', + 'common_sole_fillet_2_cm', 'conventional_heat', + 'cook_bacon', + 'corn_on_the_cob', + 'courgette_diced', + 'courgette_sliced', + 'cranberries', + 'crevettes', 'custom_program_1', 'custom_program_10', 'custom_program_11', @@ -8362,83 +9683,300 @@ 'custom_program_8', 'custom_program_9', 'dark_mixed_grain_bread', + 'decrystallise_honey', 'defrost', 'defrost_meat', 'defrost_vegetables', + 'defrosting_with_microwave', + 'defrosting_with_steam', 'descale', + 'dissolve_gelatine', 'drop_cookies_1_tray', 'drop_cookies_2_trays', 'drying', 'duck', + 'dutch_hash', 'eco_fan_heat', + 'eco_steam_cooking', 'economy_grill', + 'eggplant_diced', + 'eggplant_sliced', + 'endive_halved', + 'endive_quartered', + 'endive_strips', 'evaporate_water', 'fan_grill', 'fan_plus', + 'fennel_halved', + 'fennel_quartered', + 'fennel_strips', 'flat_bread', 'fruit_flan_puff_pastry', 'fruit_flan_short_crust_pastry', 'fruit_streusel_cake', 'full_grill', + 'german_turnip_cut_into_batons', + 'german_turnip_diced', + 'german_turnip_sliced', + 'gilt_head_bream_fillet', + 'gilt_head_bream_whole', 'ginger_loaf', + 'gnocchi_fresh', + 'goose_barnacles', 'goose_stuffed', 'goose_unstuffed', + 'gooseberries', + 'goulash_soup', + 'green_asparagus_medium', + 'green_asparagus_thick', + 'green_asparagus_thin', + 'green_beans_cut', + 'green_beans_whole', + 'green_cabbage_cut', + 'green_spelt_cracked', + 'green_spelt_whole', + 'green_split_peas', + 'greenage_plums', 'grill', + 'halibut_fillet_2_cm', + 'halibut_fillet_3_cm', 'ham_roast', 'heat_crockery', 'heating_bakes_gratins', + 'heating_damp_flannels', 'heating_vegetables', + 'hens_eggs_size_l_hard', + 'hens_eggs_size_l_medium', + 'hens_eggs_size_l_soft', + 'hens_eggs_size_m_hard', + 'hens_eggs_size_m_medium', + 'hens_eggs_size_m_soft', + 'hens_eggs_size_s_hard', + 'hens_eggs_size_s_medium', + 'hens_eggs_size_s_soft', + 'hens_eggs_size_xl_hard', + 'hens_eggs_size_xl_medium', + 'hens_eggs_size_xl_soft', + 'huanghuanian_rapid_steam_cooking', + 'huanghuanian_steam_cooking', 'intensive_bake', + 'iridescent_shark_fillet', + 'jasmine_rice_rapid_steam_cooking', + 'jasmine_rice_steam_cooking', + 'jerusalem_artichoke_diced', + 'jerusalem_artichoke_sliced', + 'kale_cut', + 'kasseler_piece', + 'kasseler_slice', 'keeping_warm', + 'king_prawns', + 'knuckle_of_pork_cured', + 'knuckle_of_pork_fresh', + 'large_shrimps', + 'leek_pieces', + 'leek_rings', 'leg_of_lamb', 'lemon_meringue_pie', 'linzer_augen_1_tray', 'linzer_augen_2_trays', + 'long_grain_rice_general_rapid_steam_cooking', + 'long_grain_rice_general_steam_cooking', 'low_temperature_cooking', 'madeira_cake', + 'make_yoghurt', + 'mangel_cut', 'marble_cake', + 'meat_for_soup_back_or_top_rib', + 'meat_for_soup_brisket', + 'meat_for_soup_leg_steak', 'meat_loaf', + 'meat_with_rice', + 'melt_chocolate', + 'menu_cooking', 'microwave', 'microwave_auto_roast', 'microwave_fan_grill', 'microwave_fan_plus', 'microwave_grill', + 'millet', + 'mirabelles', 'mixed_rye_bread', 'moisture_plus_auto_roast', 'moisture_plus_conventional_heat', 'moisture_plus_fan_plus', 'moisture_plus_intensive_bake', 'multigrain_rolls', + 'mushrooms_diced', + 'mushrooms_halved', + 'mushrooms_quartered', + 'mushrooms_sliced', + 'mushrooms_whole', + 'mussels', + 'mussels_in_sauce', + 'nectarines_peaches_halved_skinning', + 'nectarines_peaches_halved_steam_cooking', + 'nectarines_peaches_quartered', + 'nectarines_peaches_wedges', + 'nile_perch_fillet_2_cm', + 'nile_perch_fillet_3_cm', 'no_program', + 'oats_cracked', + 'oats_whole', 'osso_buco', + 'oyster_mushroom_diced', + 'oyster_mushroom_strips', + 'oyster_mushroom_whole', + 'parboiled_rice_rapid_steam_cooking', + 'parboiled_rice_steam_cooking', + 'parisian_carrots_large', + 'parisian_carrots_medium', + 'parisian_carrots_small', + 'parsley_root_cut_into_batons', + 'parsley_root_diced', + 'parsley_root_sliced', + 'parsnip_cut_into_batons', + 'parsnip_diced', + 'parsnip_sliced', + 'pears_halved', + 'pears_quartered', + 'pears_to_cook_large_halved', + 'pears_to_cook_large_quartered', + 'pears_to_cook_large_whole', + 'pears_to_cook_medium_halved', + 'pears_to_cook_medium_quartered', + 'pears_to_cook_medium_whole', + 'pears_to_cook_small_halved', + 'pears_to_cook_small_quartered', + 'pears_to_cook_small_whole', + 'pears_wedges', + 'peas', + 'pepper_diced', + 'pepper_halved', + 'pepper_quartered', + 'pepper_strips', + 'perch_fillet_2_cm', + 'perch_fillet_3_cm', + 'perch_whole', + 'pike_fillet', + 'pike_piece', 'pikeperch_fillet_with_vegetables', + 'pinto_beans', 'pizza_oil_cheese_dough_baking_tray', 'pizza_oil_cheese_dough_round_baking_tine', 'pizza_yeast_dough_baking_tray', 'pizza_yeast_dough_round_baking_tine', + 'plaice_fillet_1_cm', + 'plaice_fillet_2_cm', + 'plaice_whole_2_cm', + 'plaice_whole_3_cm', + 'plaice_whole_4_cm', 'plaited_loaf', 'plaited_swiss_loaf', + 'plums_halved', + 'plums_whole', + 'pointed_cabbage_cut', + 'polenta', + 'polenta_swiss_style_coarse_polenta', + 'polenta_swiss_style_fine_polenta', + 'polenta_swiss_style_medium_polenta', 'popcorn', 'pork_belly', 'pork_fillet_low_temperature_cooking', 'pork_fillet_roast', 'pork_smoked_ribs_low_temperature_cooking', 'pork_smoked_ribs_roast', + 'pork_tenderloin_medaillons_3_cm', + 'pork_tenderloin_medaillons_4_cm', + 'pork_tenderloin_medaillons_5_cm', 'pork_with_crackling', 'potato_cheese_gratin', + 'potato_dumplings_half_half_boil_in_bag', + 'potato_dumplings_half_half_deep_frozen', + 'potato_dumplings_raw_boil_in_bag', + 'potato_dumplings_raw_deep_frozen', 'potato_gratin', + 'potatoes_floury_diced', + 'potatoes_floury_halved', + 'potatoes_floury_quartered', + 'potatoes_floury_whole_large', + 'potatoes_floury_whole_medium', + 'potatoes_floury_whole_small', + 'potatoes_in_the_skin_floury_large', + 'potatoes_in_the_skin_floury_medium', + 'potatoes_in_the_skin_floury_small', + 'potatoes_in_the_skin_mainly_waxy_large', + 'potatoes_in_the_skin_mainly_waxy_medium', + 'potatoes_in_the_skin_mainly_waxy_small', + 'potatoes_in_the_skin_waxy_large_rapid_steam_cooking', + 'potatoes_in_the_skin_waxy_large_steam_cooking', + 'potatoes_in_the_skin_waxy_medium_rapid_steam_cooking', + 'potatoes_in_the_skin_waxy_medium_steam_cooking', + 'potatoes_in_the_skin_waxy_small_rapid_steam_cooking', + 'potatoes_in_the_skin_waxy_small_steam_cooking', + 'potatoes_mainly_waxy_diced', + 'potatoes_mainly_waxy_halved', + 'potatoes_mainly_waxy_large', + 'potatoes_mainly_waxy_medium', + 'potatoes_mainly_waxy_quartered', + 'potatoes_mainly_waxy_small', + 'potatoes_waxy_diced', + 'potatoes_waxy_halved', + 'potatoes_waxy_quartered', + 'potatoes_waxy_whole_large', + 'potatoes_waxy_whole_medium', + 'potatoes_waxy_whole_small', + 'poularde_breast', + 'poularde_whole', + 'prawns', 'prove_15_min', 'prove_30_min', 'prove_45_min', 'prove_dough', + 'pumpkin_diced', + 'pumpkin_risotto', + 'pumpkin_soup', 'pyrolytic', 'quiche_lorraine', 'quick_microwave', + 'quinces_diced', + 'quinoa', 'rabbit', 'rack_of_lamb_with_vegetables', + 'rapid_steam_cooking', + 'ravioli_fresh', + 'razor_clams_large', + 'razor_clams_medium', + 'razor_clams_small', + 'red_beans', + 'red_cabbage_cut', + 'red_lentils', + 'red_snapper_fillet_2_cm', + 'red_snapper_fillet_3_cm', + 'redfish_fillet_2_cm', + 'redfish_fillet_3_cm', + 'redfish_piece', + 'reheating_with_microwave', + 'reheating_with_steam', + 'rhubarb_chunks', + 'rice_pudding_rapid_steam_cooking', + 'rice_pudding_steam_cooking', + 'risotto', 'roast_beef_low_temperature_cooking', 'roast_beef_roast', + 'romanesco_florets_large', + 'romanesco_florets_medium', + 'romanesco_florets_small', + 'romanesco_whole_large', + 'romanesco_whole_medium', + 'romanesco_whole_small', + 'round_grain_rice_general_rapid_steam_cooking', + 'round_grain_rice_general_steam_cooking', + 'runner_beans_pieces', + 'runner_beans_sliced', + 'runner_beans_whole', + 'rye_cracked', 'rye_rolls', + 'rye_whole', 'sachertorte', 'saddle_of_lamb_low_temperature_cooking', 'saddle_of_lamb_roast', @@ -8447,40 +9985,122 @@ 'saddle_of_veal_roast', 'saddle_of_venison', 'salmon_fillet', + 'salmon_fillet_2_cm', + 'salmon_fillet_3_cm', + 'salmon_piece', + 'salmon_steak_2_cm', + 'salmon_steak_3_cm', 'salmon_trout', + 'saucisson', 'savoury_flan_puff_pastry', 'savoury_flan_short_crust_pastry', + 'savoy_cabbage_cut', + 'scallops', + 'schupfnudeln_potato_noodels', + 'sea_devil_fillet_3_cm', + 'sea_devil_fillet_4_cm', 'seeded_loaf', 'shabbat_program', + 'sheyang_rapid_steam_cooking', + 'sheyang_steam_cooking', + 'silverside_10_cm', + 'silverside_5_cm', + 'silverside_7_5_cm', + 'simiao_rapid_steam_cooking', + 'simiao_steam_cooking', + 'small_shrimps', + 'snow_pea', + 'soak', + 'soup_hen', + 'sour_cherries', + 'sous_vide', + 'spaetzle_fresh', 'spelt_bread', + 'spelt_cracked', + 'spelt_whole', + 'spinach', 'sponge_base', 'springform_tin_15cm', 'springform_tin_20cm', 'springform_tin_25cm', 'steam_bake', 'steam_cooking', + 'sterilize_crockery', 'stollen', + 'stuffed_cabbage', + 'sweat_onions', + 'swede_cut_into_batons', + 'swede_diced', + 'sweet_cheese_dumplings', + 'sweet_cherries', 'swiss_farmhouse_bread', 'swiss_roll', + 'swiss_toffee_cream_100_ml', + 'swiss_toffee_cream_150_ml', + 'tagliatelli_fresh', 'tart_flambe', + 'teltow_turnip_diced', + 'teltow_turnip_sliced', 'tiger_bread', + 'tilapia_fillet_1_cm', + 'tilapia_fillet_2_cm', + 'toffee_date_dessert_one_large', + 'toffee_date_dessert_several_small', 'top_heat', + 'tortellini_fresh', + 'treacle_sponge_pudding_one_large', + 'treacle_sponge_pudding_several_small', 'trout', + 'tuna_fillet_2_cm', + 'tuna_fillet_3_cm', + 'tuna_steak', + 'turbot_fillet_2_cm', + 'turbot_fillet_3_cm', + 'turkey_breast', 'turkey_drumsticks', 'turkey_whole', + 'uonumma_koshihikari_rapid_steam_cooking', + 'uonumma_koshihikari_steam_cooking', 'vanilla_biscuits_1_tray', 'vanilla_biscuits_2_trays', 'veal_fillet_low_temperature_cooking', + 'veal_fillet_medaillons_1_cm', + 'veal_fillet_medaillons_2_cm', + 'veal_fillet_medaillons_3_cm', 'veal_fillet_roast', + 'veal_fillet_whole', 'veal_knuckle', + 'veal_sausages', + 'venus_clams', 'viennese_apple_strudel', + 'viennese_silverside', 'walnut_bread', 'walnut_muffins', + 'wheat_cracked', + 'wheat_whole', + 'white_asparagus_medium', + 'white_asparagus_thick', + 'white_asparagus_thin', + 'white_beans', 'white_bread_baking_tin', 'white_bread_on_tray', 'white_rolls', + 'whole_ham_reheating', + 'whole_ham_steam_cooking', + 'wholegrain_rice', + 'wild_rice', + 'wuchang_rapid_steam_cooking', + 'wuchang_steam_cooking', + 'yam_halved', + 'yam_quartered', + 'yam_strips', + 'yeast_dumplings_fresh', + 'yellow_beans_cut', + 'yellow_beans_whole', + 'yellow_split_peas', 'yom_tov', 'yorkshire_pudding', + 'zander_fillet', ]), }), 'context': ,