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

Stepper label font size in react js

how to change stepper label font size in react JS? which file needs to modify for changing stepper label font size in react js as i am using material UI library I having step.js, stepper.js, steplabel.js files in material ui
Vaishnavi
  • 21
  • 1
  • 4
0
votes
0 answers

Smooth movement of stepper motor

So I tried to implement an S-Curve for the movement of my stepper motor; however, I feel like this is way too complicated for the simple thing I want the stepper motor to do: Smooth movement. It doesn't have to go from a to b within the blink of an…
GSerum_
  • 57
  • 8
0
votes
0 answers

Vertical Stepper Design xcode11

How to create vertical swappable steppers in storyboard ios.Please suggest solution for designing vertical stepper like in below image.
0
votes
1 answer

How to fixed infinity height of stepper?

I have a problem about my Stepper Horizontal because even I only have one TextFormfield, it is still scrollable because it says the height is infinity. Container( child: new Stepper( steps: _mySteps(), …
0
votes
0 answers

How to change the default button caption on VerticalStepperForm?

I'm using VerticalStepperForm to implement a survey form like this: DiagnosaActivity.java import androidx.appcompat.app.AppCompatActivity; import android.os.Bundle; import com.diasni.app.diagnosa.steps.StepPertanyaan; import…
anta40
  • 6,511
  • 7
  • 46
  • 73
0
votes
1 answer

Custom Angular 2+ Stepper module

At the beginning I would like to say that I know that there is ready to use stepper from CDK or Materials but I would like to create "my own" in order to learning angular 8. To be honest I don't know where I should search help now that is why I…
Micchaleq
  • 433
  • 1
  • 5
  • 21
0
votes
1 answer

Inline TextFormField in Stepper

I have to put two TextFormField near but when I create Row and in childrens put the two TextFormField, the container that contain the Stepper disappear. How can I do it? Code that make Container disappear Widget build(BuildContext context) { …
Jerry Palmiotto
  • 97
  • 1
  • 1
  • 8
0
votes
1 answer

Controlling the stepper motor speed with potentiometer

I'm trying to build a small rotating table with variable speed with EasyDriver, NEMA17 stepper motor, potentiometer, and arduino. I am having some trouble with the code. Basically, the motor rotates the same speed no mather of the potentiometer…
0
votes
1 answer

How to create dynamically class in Android

In my application, I should use Material Stepper and for this, I want to use this library : https://github.com/ernestoyaquello/VerticalStepperForm But I want to add this dynamically from server. For connecting with server I used Retrofit library and…
Dr line
  • 81
  • 5
0
votes
2 answers

How can i, send property id with stepper in xamarin forms?

i want create purchase cart in list view and use stepper for change count of products and change online price but i do not know what to send product id to server.my code:
0
votes
1 answer

Stepper Angular 5|6 HTML CSS Onclick Event

I need help with click event to my stepper progress. for example i 'am on Step 1 when i click on 3 i ll move to Step 3 i tried with click on
  • but doesn't work Here is my html and CSS
    MedDiv
    • 53
    • 1
    • 2
    • 8
  • 0
    votes
    1 answer

    hi need help for storage a number in a label whose connect to a stepper

    i am creating an app for Know the quantity of liquid I have and I need to storage a number whose in a label, with this label who are connected to a steeper. I try to UserDefaults.standard.set(mintLabel, forKey: "podsM") but Xcode say that Cannot…
    0
    votes
    1 answer

    Disable a step in CDK Stepper / prevent to go back to previous step

    I have a CdkStepper in my Angular app - consisting of 4 steps - which behaves quite regularly. No step is optional, so you cannot jump over any step, but the user can always go back to the previous step. CdkStepper:…
    jasie
    • 2,192
    • 10
    • 39
    • 54
    0
    votes
    1 answer

    What is the correct way to enable and disable a stepper motor driver from the +ENA and -ENA pins?

    I want to de-energize the stepper motor from the +ENA & -ENA pins on the stepper driver. I wanted to know what is the correct way to do this? I'm hooking up the two enable pins with 2 digital pins of the microcontroller. I tried using the code…
    0
    votes
    1 answer

    No CCW rotation

    The code runs in CW(flex) motion but when switch is detected or hit will not run in CCW(dflex) motion.When the mechanical limit switch is manually pressed or hit the motor will attempt something but it does not stop the CW motion and it definitely…