Python Forum
if-loop does not respond to input
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
if-loop does not respond to input
#1
Hey, I recently bought a dobot magician and have been playing around with controlling it using python. However, Im very new to this programming language, and I dont know whether my syntax is off base, or if its the script, or maybe (probably) both. My plan is to control the robot coordinate inputs from an external component, and in the meantime I just want to leave a placeholder for i=input, where i simply just write the number 1 to run the if-loop. However whenever I type 1, nothing happens. Is this because the if-loop does not wait for a command, and the script just moves along with its life?
I also want the script to run endlessly, meaning that once it has checked for i=1 once, it should go back and do this over and over again. How do I go about this?

import threading
import DobotDllType as dType
  
CON_STR = {
    dType.DobotConnect.DobotConnect_NoError: "DobotConnect_NoError",
    dType.DobotConnect.DobotConnect_NotFound: "DobotConnect_NotFound",
    dType.DobotConnect.DobotConnect_Occupied: "DobotConnect_Occupied"}


# Load Dll
api = dType.load()  # Loader biblioteket som gjør at det er mulig å bruke dobot sine funksjoner i python

# Connect
state = dType.ConnectDobot(api, "", 115200)[0]
print("Connect status:", CON_STR[state])

if (state == dType.DobotConnect.DobotConnect_NoError):
    # Clean Command Queued
    dType.SetQueuedCmdClear(api)

    # code

i = input("Enter a number  ")


while (i ==1):
        dType.SetPTPCmdEx(api, 0, 250, 0, 60, 0, 1)
        dType.SetPTPCmdEx(api, 0, 20, 285, 30, 0, 1)
        dType.SetPTPCmdEx(api, 0, 20, 299, (-26), 0, 1)
        dType.SetEndEffectorParamsEx(api, 59.7, 0, 0, 1)
        dType.SetEndEffectorGripperEx(api, 1, 1)
        dType.SetWAITCmdEx(api, 0.4, 1)
        dType.SetPTPCmdEx(api, 0, 200, (-200), 30, 0, 1)
        current_pose = dType.GetPose(api)
        dType.SetPTPCmdEx(api, 2, 0, (-250), (-26), current_pose[3], 1)
        dType.SetEndEffectorGripperEx(api, 1, 0)
        dType.SetPTPCmdEx(api, 0, 250, 0, 60, 0, 1)
        dType.SetPTPCmdEx(api, 0, 0, (-250), (-26), 0, 1)
        dType.SetEndEffectorGripperEx(api, 1, 1)
        dType.SetWAITCmdEx(api, 0.4, 1)
        dType.SetPTPCmdEx(api, 0, 20, 299, 50, 0, 1)
        dType.SetPTPCmdEx(api, 7, 0, 0, (-76), 0, 1)
        dType.SetEndEffectorGripperEx(api, 1, 0)
        dType.SetPTPCmdEx(api, 0, 250, 0, 60, 0, 1)
        dType.SetEndEffectorGripperEx(api, 0, 1)
else:
        dType.SetPTPCmdEx(api, 0, 250, 0, 60, 0, 1)
        dType.SetEndEffectorGripperEx(api, 0, 1)
        
Reply
#2
your while loop has no terminator, ( i is never changed ), so it's happily going to run forever in the loop and only reach the else clause i was input as something other than 1
Reply


Possibly Related Threads…
Thread Author Replies Views Last Post
  WHILE LOOP NOT RETURNING USER INPUT AFTER ZerroDivisionError! HELP! ayodele_martins1 7 1,053 Oct-01-2023, 07:36 PM
Last Post: ayodele_martins1
  Code won't break While loop or go back to the input? MrKnd94 2 946 Oct-26-2022, 10:10 AM
Last Post: Larz60+
  WHILE Loop - constant variables NOT working with user input boundaries C0D3R 4 1,475 Apr-05-2022, 06:18 AM
Last Post: C0D3R
Exclamation question about input, while loop, then print jamie_01 5 2,649 Sep-30-2021, 12:46 PM
Last Post: Underscore
  Use of respond.get ebolisa 2 1,748 Jul-31-2021, 02:11 PM
Last Post: ebolisa
  How to make a telegram bot respond to the specific word in a sentence? Metodolog 2 6,348 Dec-22-2020, 07:30 AM
Last Post: martabassof
  I want to check if the input is str or is int & if it's str repeat the loop HLD202 4 2,780 Nov-23-2020, 11:01 PM
Last Post: perfringo
  Loop back through loop based on user input, keeping previous changes loop made? hbkpancakes 2 2,931 Nov-21-2020, 02:35 AM
Last Post: hbkpancakes
  Nested Loop for user input Ads 2 3,550 Dec-30-2019, 11:44 AM
Last Post: Ads
  How to Loop my calculator input Michael1 2 3,748 Dec-13-2019, 04:57 AM
Last Post: ICanIBB

Forum Jump:

User Panel Messages

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