Questions tagged [stepper]

Software for managing microcontroller input and output for controlling stepper motor hardware; To be used together with the platform tag.

Steppers are very precise motors that give a very precise control on their rotation. The full rotation is divided into steps and the driver circuit of the motor allows to execute commands that precisely move the motor by a given number of steps, in a given direction and at given speed.

Use this tag exclusively for software-related questions such as:

  • stepper control code
  • libraries controlling steppers
  • producing/processing I/O related to steppers

Use this tag in combination with the hardware environment, such as or .

More information:

297 questions
1
vote
1 answer

Material UI - Stepper top and bottom labels with line

I try to make a stepper with Material UI (V5). Here is my code: import * as React from 'react'; import Box from '@mui/material/Box'; import Stepper from '@mui/material/Stepper'; import Step from '@mui/material/Step'; import Typography from…
1
vote
0 answers

How to drive stepper motor using Arduino Accelstepper library with ros message?

At the moment I am working on a code that should send a message to a arduino uno through rosserial to drive the stepper motor to move a speciafied number of steps. I was using a 28BYJ-48 with ULN2003 driver. Everything is hooked up correctly. My…
znsword
  • 11
  • 1
1
vote
1 answer

add intermediate step in mui stepper and overriding style

I would like to change the following code to meet my needs I need to change the design from this : to this : I can not change the style and also add an intermediate step here is the lin to the…
Abdelkader
  • 43
  • 8
1
vote
1 answer

vertical line in Stepper widget

Why there a vertical line beside Pending text? @override Widget build(BuildContext context) { return WillPopScope( onWillPop: () async { Navigator.pop(context, true); return false; }, child:…
John Joe
  • 12,412
  • 16
  • 70
  • 135
1
vote
2 answers

Communication with a stepper motor controller through a USB COM?

I have a stepper motor controller that I can command through a USB COM on windows. The manufacturer provided a software but I want to create my own on python (In fact, I want to include the control of the stepper into a python code that control…
gtn_03
  • 11
  • 3
1
vote
2 answers

Reduce Flutter Stepper Bar size

I'm using flutter Stepper for my UI . I want to reduce the height of the stepper horizontal menu. Please help me.
Cordelia
  • 313
  • 3
  • 11
1
vote
0 answers

How to implement conditional rendering in Stepper - Material UI? React.Js Step Progress Bar

Context: I need a card with the title: ''You have 16% complete profile!'', and a step progress bar with 6 steps (circles), which each has a condition behind it that must meet to be active. I have stuck here, because everything I find is with…
1
vote
1 answer

How to set an animation to Nebular Stepper with Angular as Material does it

When you change from one step to another in Angular Material you have a slide effect, is this possible with Nebular Stepper? I mean a directive or something simple. Angular material Example Javascript vanilla from scratch
user8410236
1
vote
1 answer

Driving a TMC5160 from ESP32

I am trying to use the TMC5160 library by Tom Magnier and having a couple of issues. I am using the SPI interface version of the BigTreeTech chip and have the following pins hooked up. Hardware setup : MOSI (ESP32 : 23) <=> SDI MISO (ESP32…
Tom Lindley
  • 351
  • 1
  • 3
  • 14
1
vote
1 answer

Return to the first step of a stepper angular material

first of all hello to the whole community, I am beginner with angular, this is my first message. I encounter the following problem : I have a stepper with two fields. Whole stepper When I validate the second field, I would like to go back to step1…
olivier
  • 139
  • 2
  • 10
1
vote
0 answers

TMC2208 Stepper driver replacement with A4988 Trouble

I am using a version of an Arduino CNC board that is found here to drive 4 wheels on a small wheeled robot. The shield came with A4988 stepper drivers and I got them to work fine, however the motors were much louder than intended so I went searching…
1
vote
0 answers

Stepper Motor rpm and delay

So im using a esp8266 and a tmc2130 stepper driverto control a nema 17 stepper motor. I am having a few problems with setting the correct rpm. I want to set the rpm to 4,5. Heres my code: #include const int stepsPerRevolution = 200; //…
1
vote
1 answer

Flutter web: How to make horizontal scroll in stepper form?

I am trying to make a flutter web form using stepper and i am doing the experiment for small size screen. I have done the vertical scroll using the physics: ClampingScrollPhysics() method. However, I am unable to make horizontal scroll inside the…
newbie dev
  • 161
  • 6
  • 19
1
vote
2 answers

How to align stepper and text in Flutter?

I'm currently using the Stepper widget and trying to recreate something as shown below. I can't understand how to align the text below the circle instead of on the right. This is my code: Widget build(BuildContext context) { return Container( …
Simran Aswani
  • 1,236
  • 3
  • 19
  • 42
1
vote
1 answer

Control Stepper Motor with A4988 Driver motor Using LDR Sensor

Hello i am now trying to control stepper motor using LDR sensor. im using NEMA 17 Stepper motor with A4988 motor driver. when i put code for LDR module, in serial monitor just show 1 data and not looping. when i using L298N, is not problem. i try to…