Shared singlenozzle item

This commit is contained in:
Scott Lahteine
2020-10-04 14:46:55 -05:00
parent 0ff3ae3cc6
commit 782eabc226
3 changed files with 12 additions and 12 deletions

View File

@@ -191,12 +191,7 @@ void menu_temperature() {
//
#if HAS_FAN
#if SNFAN(1) || SNFAN(2) || SNFAN(3) || SNFAN(4) || SNFAN(5) || SNFAN(6) || SNFAN(7)
auto singlenozzle_item = [&](const uint8_t f) {
editable.uint8 = singlenozzle_fan_speed[f];
EDIT_ITEM_FAST_N(percent, f, MSG_STORED_FAN_N, &editable.uint8, 0, 255, on_fan_update);
};
#endif
DEFINE_SINGLENOZZLE_ITEM();
#if HAS_FAN0
_FAN_EDIT_ITEMS(0,FIRST_FAN_SPEED);