Manuel Alcaraz
Manuel Alcaraz
Thanks! I see that I also need to return `totalItems` and `totalPages`, which seems not to be documented. The following works for me: JSON ```json { "data": [ { "src":...
Note: there's a typo error in this [line](https://github.com/lordmauve/pgzero/blame/master/doc/introduction.rst#L123) (two `the`)
Hello I've rename the `forward` and `backward` functions so you can set the speed of the motor relative to its initial velocity. Now, if you want to move a certain...
Hello I was thinking about the `speed` value when I wrote the code. To control de speed of the motor, you change the `delay` attribute. But if you want to...
Hello `StepperMotor` class now match "API". That's the code: ```python from time import sleep from gpiozero import StepperMotor, BasicStepperMotor motor = BasicStepperMotor() motor.forward(speed=0.1) sleep(2) motor.backward() sleep(2) motor.stop() # Stop motor...
> Hi, did you end up solving this problem? I have the same issue currently No, I don't. I drop the program since I couldn't manage to work.