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

ListView in Stepper - Step

I examined the Stepper Class and saw that it is using a ListView to display items in horizontal mode (StepperType.horizontal). I've no clue, how I can use a nested ListView inside my Step. I've tried a couple of methods mentioned in other threads,…
aliep
  • 1,702
  • 2
  • 21
  • 33
3
votes
1 answer

How to create a Stepper in a layout?

I want to create the stepper as shown in above image. Below is the code what I have tried. text below the circles should be at the center of circle. color of each line should be changed as next activity is navigated. and also color of each circle…
Android
  • 133
  • 3
  • 13
3
votes
3 answers

How to share data across various steps of the stepper component?

Is there a way I could share data across various steps of the stepper component? For example, in the code below, I want the data filled in the form of app-step1 to be available in the app-step2 component.
Vishal Pawar
  • 51
  • 1
  • 4
3
votes
3 answers

rtl support and configuration with semantic ui react

I am using Semantic UI lib for react https://react.semantic-ui.com/introduction. and create-react-app boilerplate https://github.com/facebook/create-react-app. My app requires RTL support especially for the Step component. while researching for a…
2
votes
0 answers

Editable vuetify stepper with validation

Is there any way to make an editable Vuetify stepper where I can make a validation that prevents the event of clicking on another step if the validation is incorrect? I tried to modify the default event of the editable stepper-step with some event…
2
votes
1 answer

Saving state of a widget in Stepper flutter

I created a stepper (4 steps) with two buttons for next and previous. Each step has a form, and each form is in a widget in its own class. The first problem is that every time I click the previous button, the data in the text fields disappear. How…
Mary
  • 51
  • 3
2
votes
1 answer

How to get the position value with a Trinamic 5130 (Python+RPI) without stopping the motor?

I've got strange behavior with a Trinamic 5130 stepper motor driver. The code runs on a raspberry pi using SPI. I use a Trinamic EVAL board. When I run the code below, as expected, the motor goes to a position ([0x00, 0x00, 0xAA, 0x00]) then goes…
saquiel
  • 476
  • 1
  • 5
  • 14
2
votes
0 answers

Stepper motor powered, but not turning

I am new to using stepper motors and micropython. I am having trouble getting my stepper motor to turn. I am using a raspberry pi pico and a tmc 2208 driver to control my stepper motor. I can hear the coils being powered on and off, but I get no…
TiVe
  • 73
  • 4
2
votes
2 answers

How to change the v-stepper icon size inside the steps?

I want to change the Icon size inside the v-stepper steps. I could manage to change the step sizes. But cannot find a way to change the icon size.
2
votes
1 answer

Problem with machine.Timer() and _thread on Raspberry Pi Pico (RP2040)

I am trying to run balance() function on one thread and use Timer on a separate one. Both methods when run separately work fine, but when I try to use them both at once the issr() function which is called by a Timer just stops working after few…
AntCwo
  • 21
  • 3
2
votes
2 answers

Passing steper value to another View - SwiftUI

I have very simple "app" in SwiftUI How i can passing stepper value from list to struct SumOfValue or to ContentView ? But i want passing sum of stepper value in case from image will be 8. struct ContentView: View { var body: some View { …
tparys86
  • 21
  • 3
2
votes
3 answers

SwiftUI: stepper with animated bar

I would like to create a stepper component with an animated bar. Here is the result I get: The idea is that the bar should always be centered, and also I would like to animate the blue bar when the value changes, but I can't get it working. Here is…
Another Dude
  • 1,204
  • 4
  • 15
  • 33
2
votes
1 answer

Examples for using fipy.steppers.pidStepper

I'm using FiPy to simulate a moderately large system of coupled PDEs (11 equations) that calculate the time-dependent evolution of a biochemical advection-diffusion-reaction network. Currently I'm using a fixed time step, and it works fine. However,…
jmrohwer
  • 21
  • 2
2
votes
0 answers

How do I implement nested steps within an individual Material UI Stepper Step (A Step Within A Stepper Step [Child Steps within Parent Steps] )

I want to use nested Step Components within a Material UI Stepper Component This is the behavior that I am seeking. I am using Material UI, and Formik within a NextJS context. I am using the tutorial as a reference. Wireframes Below are some…
2
votes
1 answer

ReactJS MaterialUI Stepper breaks on overflow

I have been trying to convince the Material UI Stepper component to fit my needs, that is to say display severl steps and overflow, but it continues doing this: I don't know how to explain the error... the separators are doing weird things on…
assembler
  • 3,098
  • 12
  • 43
  • 84
1 2
3
19 20