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
0
votes
1 answer

Formik stepper props+hooks between steps

I am trying to pass data in a component to another component, which are siblings to one another.But they are in a Formik Stepper with Formik Hook(rff). index.js -> is entry point, that calls only one component App, as we have no route App.js -> this…
0
votes
1 answer

How show error in Quasar Stepper when required field is empty

I work with Quasar framwork. I create a stepper and in each step I've several field. Some are required like this: \
YannickIngenierie
  • 602
  • 1
  • 13
  • 37
0
votes
1 answer

Mat stepper request param

Hello im using mat stepper.. What i want to achieve is: get step number from request param and show second step like this: http://localhost:4200/matstepper?step=2 Pass and retrieve request param is no problem, but how can i show second or third…
user13505963
0
votes
0 answers

Angular Material Stepper not working anymore

I have been recently trying to deploy the project to production, and for this cause I have been playing with angular.json baseHref value and deployUrl values. I also added the HashLocationStrategy in order to make the web display fine in the Apache…
Germán
  • 1,007
  • 1
  • 7
  • 20
0
votes
1 answer

G-code G1 move command is not consistent with MM114 get motor position command

I am using the G1 move command to rotate a a stepper motor with a Duet3D stepper controller board. I just realised by using the M114 command, which returns the actual motor position, that there is an error margin between the 2 commands, but I don't…
JCSB
  • 345
  • 2
  • 16
0
votes
1 answer

CSS Progress Stepper not working on first step

I followed a tutorial to make the following progress stepper. It won't show step 1 when it is set to active. The other steps work when they are set to active. Can someone please help me understand what needs to be changed in the CSS to allow step 1…
Tim M
  • 306
  • 3
  • 18
0
votes
1 answer

Continue button and icons are hidden for my stepper flutter

The issue is that progress icons and continue button are hidden in my stepper (cancel button is visible). So when i click on the place where "continue" button should exists (next to Cancel button) the "continue" event is happening and its…
Yassine Zagliz
  • 289
  • 1
  • 5
  • 12
0
votes
1 answer

Polymer component paper stepper by zecat is having back navigation issue

I am using a paper stepper polymer component by zecat (http://zecat.github.io/paper-stepper/components/paper-stepper/) My issue is as below. All the steps from 1 to 5 are showing correctly. I can navigate from a previous step to any future steps.…
Shanij P.S
  • 164
  • 3
  • 12
0
votes
1 answer

speed,time,cycle and direction stepper motor by arduino

I want my stepper motor to run at a specified speed for a specified time and stop for a set time and then repeat the same cycle. In fact, the number of times the user has to do this will determine the user I have the last code that failed, but this…
fatehan
  • 3
  • 1
0
votes
1 answer

Why my angular stepper doesn't have style?

Recently I started working with Angular, and I needed to create a multi-step form, first of all it was a mess to install it, but at the end there it is, but when I use it on my component it doesn,t have style at all, I searched in a lot of sites and…
0
votes
2 answers

How to issue a stop command to stepper motors using Flask?

Description My ultimate goal with this program is to have a Flask web app be projected, someone connects to it, and they can control stepper motors with it using the Adafruit Stepper Motor HAT. At the moment, the visual code is a bit of a mess due…
Daniil Rose
  • 123
  • 1
  • 9
0
votes
1 answer

Flutter Radio Value not Changing in Stepper

The problem is that _qualificationRadioGroupValue value update when setState() called but after build method called its reset to its original value I am beginner to flutter so don't know what I am doing wrong I have tested only 2 radio button it's…
Burhan Khanzada
  • 945
  • 9
  • 27
0
votes
1 answer

SwiftUI Stepper Layout issues

When I include a Stepper inside a List with many rows such that it will scroll off the screen when scrolled the layout becomes completely mucked up. See attached image. Has anybody had this issue and managed to solve it? Code to reproduce in Xcode…
Sway
  • 1,647
  • 3
  • 16
  • 19
0
votes
1 answer

reusable angular reactive form (ControlValueAccessor) & material stepper & asynchronous validation

I try to use material stepper (https://material.angular.io/components/stepper/overview) with nested reusable form (https://coryrylan.com/blog/building-reusable-forms-in-angular). It work nice until I built an asynchronous validator for a nested…
0
votes
1 answer

Compiler looking for deleted constructor function in an argument when calling another function in C++

I am trying to control four different objects in a micro-controller (a sensor, a motor, a rotary encoder and a class in charge of the logic) with two functions that are mainly switch state statements, one that reads from the serial port and switches…