cable-length-cutter/main/guide-stepper.hpp
jonny_ji7 58c5a92d1e Add functional STEPPER_TEST feature
- add macro variable STEPPER_TEST (config.hpp)
    if set: only `task_stepper-test` is started (main.cpp)
- add file for stepper/guide related code (guide-stepper.cpp/hpp)
    currently defines a task that simply moves the axis left to right
    repeatedly with a speed defined by a potentiometer connected to ADC
    GPIO34
2023-02-21 21:27:33 +01:00

20 lines
426 B
C++

extern "C"
{
#include <stdio.h>
#include "DendoStepper.h"
#include "freertos/FreeRTOS.h"
#include "freertos/task.h"
#include "esp_log.h"
#include "driver/adc.h"
}
#include "config.hpp"
//task that initializes and controls the stepper motor
//current functionality:
// - automatically auto-homes
// - moves left and right repeatedly
// - updates speed from potentiometer each cycle
void task_stepper(void *pvParameter);