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
0 answers

how to add Alternate labels in Flutter Stepper?

Is there a way to add alternate labels to the stepper in flutter, as shown below. https://material.io/archive/guidelines/components/steppers.html#steppers-types-of-steppers
iamntg
  • 29
  • 6
1
vote
1 answer

Missing dependency: ionic-angular when trying to use ionic-stepper

I want to use ionic-stepper in my project. I downloaded this package from https://www.npmjs.com/package/ionic-stepper. When I use it, I get the following error: ERROR in The target entry-point "ionic-stepper" has missing dependencies: [ng] -…
1
vote
2 answers

Soft wdt Reset - ESP8266 / NodeMCU using Stepper motor

I'm running very basic code and my ESP8266 times out during the stepper motor function. I get a "Soft wdt Reset" about 1600 ms into the myStepper.step function call. The program works for a MyStepper.setSpeed of 38, but not for 37. This happens on…
Matt
  • 13
  • 3
1
vote
1 answer

Arduino Uno stepper direction

I am having trouble getting a stepper motor to rotate counterclockwise with code written for an Arduino Uno. This is a simple setup that uses a push button to move the stepper as you hold the button. Originally the code was written to move the…
BoatingPuppy
  • 31
  • 1
  • 5
1
vote
0 answers

Data is not getting store when moving to next step or back in stepper Material UI

Data is not getting store when moving to next step or back in stepper Material UI. In getStepContent() fuction, i am returning different component like One, Two etc, and all component have material table and text field. But when i click on next or…
theWanderer
  • 576
  • 2
  • 10
  • 30
1
vote
1 answer

SwiftUI Stepper save value

How can I save the value of the stepper in the UserDefaults every time I press + or -? I don't want a separate save button. struct Settings: View { @State private var zielwert = UserDefaults.standard.integer(forKey: "zielwert") var…
Heisenberg
  • 113
  • 1
  • 8
1
vote
0 answers

How to avoid unnecessary remounts in a component which has dynamic redirect?

In my app I tried to implement a stepper (with forms inside it) using useReducer, useContext and react-router-dom. The example here is closely emulating code in my app: Codesandbox So, I have a Parent component, which renders routes dynamically from…
1
vote
1 answer

How to make the visited step active?

I am making a simple react application and included react-stepper-horizontal library and things are fine. Working Example: Appropriate Code related to stepper: const Form = () => { . . . const [currentPage, setCurrentPage] = useState(1); const…
Undefined
  • 851
  • 5
  • 20
  • 48
1
vote
1 answer

pass formik.values to another js file

I learn react and I am trying to create a stepper to manage my form correct,I'm looking for the best fit way to pass input value from one step to another The full code is bellow here the input value from step 1 :
1
vote
1 answer

Mat stepper done icon is out of circle

Hello i have trouble using mat stepper in angular..

E-SNEAKERS

Step 1 content
user13505963
1
vote
0 answers

Angular 8 a collection of steppers

How can I identify a stepper from a array of steppers and set the step index on that stepper. example I have 4 steppers generated through a *ngFor loop, this.stepper always point to the first stepper and this.stepper.selectedIndex is for the first…
1
vote
1 answer

How to create multi-step form in Reactjs

How can we create stepper that is multi-step form in Reactjs for multiple step form submission. Currently i am not showing component for each step I want to return div component for each step for that i am not able to apply logic for that.. For now…
Parth Tiwari
  • 466
  • 8
  • 23
1
vote
1 answer

Change the UILabel when a static variable changes

I have a CartItem struct where I store the items that I show in a UITableView My UITableView is in CartViewController. I use custom cell for my table view. Here is my custom cell: class CartItemCell: UITableViewCell { @IBOutlet weak var…
hummaan
  • 113
  • 1
  • 5
1
vote
2 answers

Xamarin Stepper increment on Entry

I want to have a stepper to increase/decrease the value in an Entry. I referenced to other posts online but my increment does not work. Do I need to have a code behind for the values to increase in Entry? xaml
Ris
  • 13
  • 2
1
vote
1 answer

Problem when importing a script into another one

I wrote two scripts for a robot with belt drives driven by stepper motors. The script "DUALSTEPPER_LIBARY_002.py" contains a DualStepper Class and some functions like forward, backward etc. This script should run in the background by being imported…