stepper-test: Control stepper with buttons
now the stepper test task controls the stepper using button input this makes debugging modifications to stepper library easier
This commit is contained in:
parent
8d2428d285
commit
5d7c67ab9a
@ -85,7 +85,7 @@ extern "C" {
|
|||||||
//----- stepper config -----
|
//----- stepper config -----
|
||||||
//--------------------------
|
//--------------------------
|
||||||
//enable stepper test mode (dont start control and encoder task)
|
//enable stepper test mode (dont start control and encoder task)
|
||||||
//#define STEPPER_TEST
|
#define STEPPER_TEST
|
||||||
#define STEPPER_STEP_PIN GPIO_NUM_18 //mos1
|
#define STEPPER_STEP_PIN GPIO_NUM_18 //mos1
|
||||||
#define STEPPER_DIR_PIN GPIO_NUM_16 //ST3
|
#define STEPPER_DIR_PIN GPIO_NUM_16 //ST3
|
||||||
#define STEPPER_EN_PIN GPIO_NUM_0 //not connected (-> stepper always on)
|
#define STEPPER_EN_PIN GPIO_NUM_0 //not connected (-> stepper always on)
|
||||||
|
@ -11,6 +11,7 @@ extern "C"
|
|||||||
#include "config.hpp"
|
#include "config.hpp"
|
||||||
#include "guide-stepper.hpp"
|
#include "guide-stepper.hpp"
|
||||||
#include "encoder.hpp"
|
#include "encoder.hpp"
|
||||||
|
#include "gpio_evaluateSwitch.hpp"
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
@ -32,7 +33,7 @@ extern "C"
|
|||||||
#define SPEED_MAX 60.0 //mm/s
|
#define SPEED_MAX 60.0 //mm/s
|
||||||
|
|
||||||
#define SPEED 10 //35, 100, 50 rev
|
#define SPEED 10 //35, 100, 50 rev
|
||||||
#define ACCEL_MS 600.0 //ms from 0 to max
|
#define ACCEL_MS 1000.0 //ms from 0 to max
|
||||||
#define DECEL_MS 1000.0 //ms from max to 0
|
#define DECEL_MS 1000.0 //ms from max to 0
|
||||||
|
|
||||||
#define STEPPER_STEPS_PER_ROT 1600
|
#define STEPPER_STEPS_PER_ROT 1600
|
||||||
@ -188,18 +189,55 @@ void task_stepper_test(void *pvParameter)
|
|||||||
{
|
{
|
||||||
init_stepper();
|
init_stepper();
|
||||||
home();
|
home();
|
||||||
|
step.setSpeedMm(SPEED, ACCEL_MS, DECEL_MS);
|
||||||
|
//--- move from left to right repeatedly ---
|
||||||
|
// while (1) {
|
||||||
|
// updateSpeedFromAdc();
|
||||||
|
// step.runPosMm(STEPPER_TEST_TRAVEL);
|
||||||
|
// while(step.getState() != 1) vTaskDelay(2);
|
||||||
|
// ESP_LOGI(TAG, "finished moving right => moving left");
|
||||||
|
|
||||||
while (1) {
|
// 10updateSpeedFromAdc();
|
||||||
updateSpeedFromAdc();
|
// step.runPosMm(-STEPPER_TEST_TRAVEL);
|
||||||
step.runPosMm(STEPPER_TEST_TRAVEL);
|
// while(step.getState() != 1) vTaskDelay(2); //1=idle
|
||||||
while(step.getState() != 1) vTaskDelay(2);
|
// ESP_LOGI(TAG, "finished moving left => moving right");
|
||||||
ESP_LOGI(TAG, "finished moving right => moving left");
|
// }
|
||||||
|
|
||||||
updateSpeedFromAdc();
|
//--- control stepper using preset buttons ---
|
||||||
step.runPosMm(-STEPPER_TEST_TRAVEL);
|
while(1){
|
||||||
while(step.getState() != 1) vTaskDelay(2); //1=idle
|
vTaskDelay(20 / portTICK_PERIOD_MS);
|
||||||
ESP_LOGI(TAG, "finished moving left => moving right");
|
|
||||||
}
|
//------ handle switches ------
|
||||||
|
//run handle functions for all switches
|
||||||
|
SW_START.handle();
|
||||||
|
SW_RESET.handle();
|
||||||
|
SW_SET.handle();
|
||||||
|
SW_PRESET1.handle();
|
||||||
|
SW_PRESET2.handle();
|
||||||
|
SW_PRESET3.handle();
|
||||||
|
SW_CUT.handle();
|
||||||
|
SW_AUTO_CUT.handle();
|
||||||
|
|
||||||
|
if (SW_RESET.risingEdge) {
|
||||||
|
buzzer.beep(1, 1000, 100);
|
||||||
|
step.stop();
|
||||||
|
ESP_LOGI(TAG, "button - stop stepper\n ");
|
||||||
|
}
|
||||||
|
if (SW_PRESET1.risingEdge) {
|
||||||
|
buzzer.beep(2, 300, 100);
|
||||||
|
step.runPosMm(30);
|
||||||
|
ESP_LOGI(TAG, "button - moving right\n ");
|
||||||
|
}
|
||||||
|
if (SW_PRESET3.risingEdge) {
|
||||||
|
buzzer.beep(1, 500, 100);
|
||||||
|
step.runPosMm(-30);
|
||||||
|
ESP_LOGI(TAG, "button - moving left\n ");
|
||||||
|
}
|
||||||
|
if (SW_PRESET2.risingEdge) {
|
||||||
|
buzzer.beep(1, 100, 100);
|
||||||
|
ESP_LOGW(TAG, "button - current state: %d\n, pos: %llu", (int)step.getState(), step.getPositionMm());
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
@ -99,10 +99,10 @@ extern "C" void app_main()
|
|||||||
|
|
||||||
//create task for controlling the machine
|
//create task for controlling the machine
|
||||||
xTaskCreate(task_stepper_ctl, "task_stepper_ctl", configMINIMAL_STACK_SIZE * 5, NULL, 5, NULL);
|
xTaskCreate(task_stepper_ctl, "task_stepper_ctl", configMINIMAL_STACK_SIZE * 5, NULL, 5, NULL);
|
||||||
|
#endif
|
||||||
|
|
||||||
//create task for handling the buzzer
|
//create task for handling the buzzer
|
||||||
xTaskCreate(&task_buzzer, "task_buzzer", 2048, NULL, 2, NULL);
|
xTaskCreate(&task_buzzer, "task_buzzer", 2048, NULL, 2, NULL);
|
||||||
#endif
|
|
||||||
|
|
||||||
//beep at startup
|
//beep at startup
|
||||||
buzzer.beep(3, 70, 50);
|
buzzer.beep(3, 70, 50);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user