Python Forum
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Debugging scripts basics
#1
So, I'm mainly a BASH scripter looking to jump into the Python boat.

What's the equivalent to bash -xv when running a python script? Rather than bug people necessarily, I need help on trying to troubleshoot the logic of a python script.

I've already read https://python-forum.io/Thread-Basic-Sim...tracebacks

Scenario:
I'm trying to get the value of channel 7 on a Raspberry Pi to figure out if the value needs to be changed. From my understanding, GPIO.input should output a 1 or a 0. But, when running the script I get nothing. I've even tried usind -d and -vv. But all I get are entries for Importing modules and cleanups.

import RPi.GPIO as GPIO
import time
GPIO.setmode(GPIO.BOARD)
GPIO.setup(7, GPIO.IN)
GPIO.setup(7, GPIO.OUT)

GPIO.input(7)
time.sleep(4)

GPIO.cleanup()
Reply


Messages In This Thread
Debugging scripts basics - by bako - Apr-24-2020, 01:23 AM
RE: Debugging scripts basics - by Larz60+ - Apr-24-2020, 01:49 AM
RE: Debugging scripts basics - by bako - Apr-24-2020, 02:27 AM
RE: Debugging scripts basics - by bowlofred - Apr-24-2020, 05:00 AM
RE: Debugging scripts basics - by buran - Apr-24-2020, 02:58 AM
RE: Debugging scripts basics - by bako - Apr-24-2020, 03:00 AM
RE: Debugging scripts basics - by Larz60+ - Apr-24-2020, 05:59 AM
RE: Debugging scripts basics - by ndc85430 - Apr-24-2020, 06:03 AM
RE: Debugging scripts basics - by Larz60+ - Apr-24-2020, 06:18 AM

Possibly Related Threads…
Thread Author Replies Views Last Post
  Learned Python Basics, what now? muzikman 20 6,202 Oct-11-2021, 01:34 AM
Last Post: Underscore
  PYserial basics? bako 10 5,148 Apr-26-2020, 09:15 PM
Last Post: bowlofred
  [split] Debugging scripts basics tultalk 5 3,120 Apr-25-2020, 01:02 AM
Last Post: menator01
  Problem with basics Wraith2102 2 2,020 Jun-17-2019, 06:51 PM
Last Post: perfringo
  Dictionary Basics pythonjm 5 3,547 Nov-26-2018, 11:11 PM
Last Post: pythonjm
  What to do after learning python basics xyzabc12310000 1 2,867 May-20-2018, 11:43 PM
Last Post: micseydel

Forum Jump:

User Panel Messages

Announcements
Announcement #1 8/1/2020
Announcement #2 8/2/2020
Announcement #3 8/6/2020