Uli Manz

Results 15 comments of Uli Manz

When I add manually the code so it works but my "OTP Auth" app on IOS 15.7.2 say every time I create a new code the QR-Code is invalid.

We have a new iLO Latest iLO currently is 2.82 from Feb 06 2023

``` """ test example file for rpiMotorlib.py A4988 NEMA""" import time import RPi.GPIO as GPIO """ # Next 3 lines for development, local library testing import # Comment out in...

This was the first thing I try but then I get another error. ` File "/usr/src/RpiMotorLib-3.2/test/./A4988_Nema_Test.py", line 26 mymotortest = RpiMotorLib.A4988Nema(direction, step, GPIO_pins, "A4988") IndentationError: unexpected indent`

Thanks Python is not my friend I think. Now the errors gone. How can I change the Button from cative HIGH to active LOW?

Unfortunately he say ``` A4988_Nema_Test.py TEST START Test file: Stopping motor Test file: Stopping motor Stop Motor Interrupt : RpiMotorLib: TEST END ```

I am checking also about the pin is working. On commandline ``` root@pimicroscop:/usr/src/RpiMotorLib-3.2/test# raspi-gpio get 4 GPIO 4: level=1 fsel=0 func=INPUT root@pimicroscop:/usr/src/RpiMotorLib-3.2/test# raspi-gpio get 4 GPIO 4: level=0 fsel=0 func=INPUT...

I changed the line `GPIO.add_event_detect(4, GPIO.RISING, callback=button_callback)` to `GPIO.add_event_detect(4, GPIO.FALLING, callback=button_callback)` And the line `GPIO.setup(channel, GPIO.IN, pull_up_down=GPIO.PUD_UP)` to `GPIO.setup(channel, GPIO.IN)` because there is a hardware resistor. Nothing happend

Hi, I tried a lot of things but my endstop don't work in Python3. He work perfect in the command shell. So the wiring ist correct. You can read it...

I wrote a small script and the endstop works. The difference is that I used the gpiozero library for this. ``` #!/usr/bin/env python3 from gpiozero import Button taster = Button(17)...