diff --git a/motor.h b/motor.h index 1b2d035a456514ec532776ed3aaa9e12cce76e27..c1dda505161fc7b244295316379e91bc5cc1d768 100644 --- a/motor.h +++ b/motor.h @@ -11,11 +11,11 @@ class AccelStepper public: enum { DRIVER, FULL4WIRE, }; AccelStepper(uint8_t interface = AccelStepper::FULL4WIRE, uint8_t pin1 = 2, uint8_t pin2 = 3, uint8_t pin3 = 4, uint8_t pin4 = 5, bool enable = true) {} - unsigned long computeNewSpeed () { return 10; } - float maxSpeed () { return 10; } + unsigned long computeNewSpeed () { return 0; } + float maxSpeed () { return 0; } float acceleration () { return 5; } long distanceToGo () { return 0; } - float speed() {return 10;} + float speed() {return 0;} }; #else #include <AccelStepper.h> diff --git a/web.cpp b/web.cpp index 103a8b66b928b98540fb84d66910c650f3d159e6..75aed7e653e70529b629acbc8c75f37f52b340b9 100644 --- a/web.cpp +++ b/web.cpp @@ -71,6 +71,8 @@ void web_setup () label_push_pull_choice = ESPUI.addControl(ControlType::Label, "Delivrer ou recupérer", "Délivrer", ControlColor::None, position_choice, status_position_choice_callback); switch_push_pull_choice = ESPUI.addControl(ControlType::Switcher, "Delivrer ou recupérer", "Délivrer", ControlColor::None, position_choice, switch_push_pull_choice_callback, (void*)19); + ESPUI.updateSwitcher(switch_push_pull_choice, true); //pour mettre a "Delivrer" par défaut au début + //Style style (position_choice, 3); @@ -139,11 +141,13 @@ void web_setup () //Diamètre de la vis worm_diameter = ESPUI.addControl(ControlType::Number, "Diamètre de la vis sans fin", "5", ControlColor::None, tab4, number_callback); //Sens de rotation du moteur - clockwise_equals_push = ESPUI.addControl(ControlType::Switcher, "Sens de rotation du moteur", "Horaire =", ControlColor::None, tab4, clockwise_equals_push_callback); - - style (name_new__syringe_label, 3); - style (name_new_syringe, 3); + clockwise_equals_push_label = ESPUI.addControl(ControlType::Label, "Sens de rotation du moteur", "Horaire = Delivrer", ControlColor::None, tab4); + clockwise_equals_push = ESPUI.addControl(ControlType::Switcher, "Sens de rotation du moteur", "Horaire =", ControlColor::None, clockwise_equals_push_label, clockwise_equals_push_callback); + ESPUI.updateSwitcher(clockwise_equals_push, true); //pour mettre a "Horaire = Delivrer" par défaut au début + style (worm_diameter, 3); + style (clockwise_equals_push_label, 3); + style (clockwise_equals_push, 3); //Lancement @@ -184,10 +188,13 @@ void clockwise_equals_push_callback(Control* sender, int value) { case S_ACTIVE: Serial.print("Clockwise equals push"); + ESPUI.print(clockwise_equals_push_label, "Horaire = Delivrer"); + break; case S_INACTIVE: Serial.print("Clockwise equals pull"); + ESPUI.print(clockwise_equals_push_label, "Horaire = Récupérer"); break; } @@ -345,7 +352,7 @@ void syringe_filled_placement_callback (Control* sender, int value, void* param) void choose_syringe_callback (Control* sender, int value, void* param) { - switch (value) + switch (value) { case B_DOWN: Serial.println("Button DOWN"); diff --git a/web.h b/web.h index f64b5adc1e4713228296ba6a7163e0e742d7209a..6a3ba6dc81316c5ba74749946ff3c11020e4be71 100644 --- a/web.h +++ b/web.h @@ -28,7 +28,7 @@ String select_value; uint16_t name_new_syringe, internal_diameter_new_syringe, total_volume_new_syringe, add_syringe_label; -uint16_t worm_diameter, clockwise_equals_push; +uint16_t worm_diameter, clockwise_equals_push_label, clockwise_equals_push; int millis_label_id;