element14 Community
element14 Community
    Register Log In
  • Site
  • Search
  • Log In Register
  • Community Hub
    Community Hub
    • What's New on element14
    • Feedback and Support
    • Benefits of Membership
    • Personal Blogs
    • Members Area
    • Achievement Levels
  • Learn
    Learn
    • Ask an Expert
    • eBooks
    • element14 presents
    • Learning Center
    • Tech Spotlight
    • STEM Academy
    • Webinars, Training and Events
    • Learning Groups
  • Technologies
    Technologies
    • 3D Printing
    • FPGA
    • Industrial Automation
    • Internet of Things
    • Power & Energy
    • Sensors
    • Technology Groups
  • Challenges & Projects
    Challenges & Projects
    • Design Challenges
    • element14 presents Projects
    • Project14
    • Arduino Projects
    • Raspberry Pi Projects
    • Project Groups
  • Products
    Products
    • Arduino
    • Avnet & Tria Boards Community
    • Dev Tools
    • Manufacturers
    • Multicomp Pro
    • Product Groups
    • Raspberry Pi
    • RoadTests & Reviews
  • About Us
  • Store
    Store
    • Visit Your Store
    • Choose another store...
      • Europe
      •  Austria (German)
      •  Belgium (Dutch, French)
      •  Bulgaria (Bulgarian)
      •  Czech Republic (Czech)
      •  Denmark (Danish)
      •  Estonia (Estonian)
      •  Finland (Finnish)
      •  France (French)
      •  Germany (German)
      •  Hungary (Hungarian)
      •  Ireland
      •  Israel
      •  Italy (Italian)
      •  Latvia (Latvian)
      •  
      •  Lithuania (Lithuanian)
      •  Netherlands (Dutch)
      •  Norway (Norwegian)
      •  Poland (Polish)
      •  Portugal (Portuguese)
      •  Romania (Romanian)
      •  Russia (Russian)
      •  Slovakia (Slovak)
      •  Slovenia (Slovenian)
      •  Spain (Spanish)
      •  Sweden (Swedish)
      •  Switzerland(German, French)
      •  Turkey (Turkish)
      •  United Kingdom
      • Asia Pacific
      •  Australia
      •  China
      •  Hong Kong
      •  India
      • Japan
      •  Korea (Korean)
      •  Malaysia
      •  New Zealand
      •  Philippines
      •  Singapore
      •  Taiwan
      •  Thailand (Thai)
      • Vietnam
      • Americas
      •  Brazil (Portuguese)
      •  Canada
      •  Mexico (Spanish)
      •  United States
      Can't find the country/region you're looking for? Visit our export site or find a local distributor.
  • Translate
  • Profile
  • Settings
Raspberry Pi
  • Products
  • More
Raspberry Pi
Raspberry Pi Forum Creating Python 2.7 Class
  • Blog
  • Forum
  • Documents
  • Quiz
  • Events
  • Polls
  • Files
  • Members
  • Mentions
  • Sub-Groups
  • Tags
  • More
  • Cancel
  • New
Join Raspberry Pi to participate - click to join for free!
Featured Articles
Announcing Pi
Technical Specifications
Raspberry Pi FAQs
Win a Pi
Raspberry Pi Wishlist
Actions
  • Share
  • More
  • Cancel
Forum Thread Details
  • Replies 16 replies
  • Subscribers 676 subscribers
  • Views 1862 views
  • Users 0 members are here
  • that
  • of
  • in
  • under
  • cmdmodule
  • the
  • instance
  • to
  • very
  • this
  • instead);
  • am
  • must
  • first
  • create
  • need
  • as
  • method
  • are
  • way
  • commands
  • raspberry_pi
  • hi
  • unbound
  • grouped
  • called
  • argument
  • send_when_different()
  • with
  • be
  • (got
  • quickly.;
  • typeerror:
  • attempting
  • instructions
  • a
  • class.
  • file
  • can
  • set
  • i
  • nothing
Related

Creating Python 2.7 Class

wallarug
wallarug over 13 years ago

Hi, I am attempting to create a set of instructions that are grouped in a file under a class.  This way, the commands that I need can be called very quickly.

 

I am having a problem, I keep getting the following error:

[ code ]

 

Traceback (most recent call last):

  File "<pyshell#7>", line 1, in <module>

    CMDmodule.send_when_different()

TypeError: unbound method send_when_different() must be called with CMDmodule instance as first argument (got nothing instead)

 

[ /code]

 

Does anyone know how I can get the groups of commands to work by me importing the module / class?

Attachments:
CMDmodule.py.zip
  • Sign in to reply
  • Cancel
Parents
  • wallarug
    wallarug over 13 years ago

    New problem with each command:

     

    UnboundLocalError: local variable 'y' referenced before assignment

     

    Any ideas on how to fix it?

    • Cancel
    • Vote Up 0 Vote Down
    • Sign in to reply
    • Cancel
  • wallarug
    wallarug over 13 years ago in reply to wallarug

    It seems that the problem is under the def statements.

     

    when I call on "invert_y_axis()" It gives me errors. same when I call on the zero_variables().

     

    But when I bring out the values in zero_variables() by removing them from under that statement, and moving them to when the module is imported, I can >>> print a.

     

    Any ideas or quick fixes?

    • Cancel
    • Vote Up 0 Vote Down
    • Sign in to reply
    • Cancel
  • wallarug
    wallarug over 13 years ago in reply to wallarug

    Still no luck.  Could someone fix this code so that it works?

     

    There is a problem with declearing variables.

     

    You should see once you run it.

     

    Attached is the module and the test script I am using.

     

    Please tell me how I can fix the problem.  Nothing seems to work.

    Attachments:
    Test Program for CMDmodule.py.zip
    0066.CMDmodule.py.zip
    • Cancel
    • Vote Up 0 Vote Down
    • Sign in to reply
    • Cancel
  • fustini
    fustini over 13 years ago in reply to wallarug

    Hi - I'm still learning Python myself but I was able to get it to run by making this change to adding "a = 0" at the beginning of CMDmodule.py:

     

    afustini@lappy486:~/Downloads$ head CMDmodule.py
    # C:\python27\Lib
    
    
    a = 0
    '''
    Invert Code for Arduino PWM when Digital
    Channel is 'LOW' along with a few other
    bits and pieces.
    '''
    
    
    ##set_zero = 0

     

    And running it seems to be ok (no error at least):

     

    afustini@lappy486:~/Downloads$ python ./Test\ Program\ for\ CMDmodule.py
    Welcome to CMDmodule.  Use Wisely. 
    Valables set to Zero!
    Change this value Test: 23
    23
    Change this value Test: 45 
    45
    Change this value Test:

     

    Based on what I was reading here:

     

    http://stackoverflow.com/questions/423379/using-global-variables-in-a-function-other-than-the-one-that-created-them

     

    However, I'm wondering is there are reason that you are using globals heavily?  I'm still developing my sense of style for python but this would seem to be very un-"pythonic" as they say. 

    • Cancel
    • Vote Up 0 Vote Down
    • Sign in to reply
    • Cancel
  • fustini
    fustini over 13 years ago in reply to fustini

    I'm not sure if this will help or not, but I thought it might give an example of something I've done.  Recently I wrote a  LCD twitter display with Python.  Initially, I wrote it as a procedural program since I don't know Python that well:


    https://github.com/pdp7/tweetypi/blob/1b203aa2fcbe3ba15327d74248dc2e56f210b9d1/display-hashtag.py

     

    After guidance from Bonnie King, I re-wrote it do be more object oriented:

     

    https://github.com/pdp7/tweetypi/blob/master/display-hashtag.py

     

    I'm still working on improving the code, but what I tried to do is pass data that won't change for a given instance of the HashTagDisplay class in the constructor (__init__) like the number of rows and columns for the LCD.

     

     

    The constructor then sets attributes self.rows and self.cols that the methods in the HashTagDisplay class refer to.

     

    However, I decided to pass that hashtag to search as a parameter to the HashTagDisplay.search() method which returns the results.  The HashTagDisplay.display() method then takes those results as a parameter:

     

     

    My main program can thus just create a new HashTagDisplay object with the appropriate LCD parameters and then call the search and display methods in a loop:

     

     

    I think that you should be able avoid globals by either setting attributes in an object or passing parameters to a method and utilizing the return value.

    • Cancel
    • Vote Up 0 Vote Down
    • Sign in to reply
    • Cancel
  • wallarug
    wallarug over 13 years ago in reply to fustini

    Drew Fustini wrote:

     

    Hi - I'm still learning Python myself but I was able to get it to run by making this change to adding "a = 0" at the beginning of CMDmodule.py:

     

    afustini@lappy486:~/Downloads$ head CMDmodule.py
    # C:\python27\Lib
    
    
    a = 0
    '''
    Invert Code for Arduino PWM when Digital
    Channel is 'LOW' along with a few other
    bits and pieces.
    '''
    
    
    ##set_zero = 0
    

     

    And running it seems to be ok (no error at least):

     

    afustini@lappy486:~/Downloads$ python ./Test\ Program\ for\ CMDmodule.py
    Welcome to CMDmodule.  Use Wisely. 
    Valables set to Zero!
    Change this value Test: 23
    23
    Change this value Test: 45 
    45
    Change this value Test: 
    

     

    Based on what I was reading here:

     

    http://stackoverflow.com/questions/423379/using-global-variables-in-a-function-other-than-the-one-that-created-them

     

    However, I'm wondering is there are reason that you are using globals heavily?  I'm still developing my sense of style for python but this would seem to be very un-"pythonic" as they say. 

    You have seen first hand the problem I am having!

    Change this value Test: 23

    23

    It should have applied the formula in CMD module:

    def pwm_formula_test(self):

            global a

            PWM = 255

            aa = PWM*a

            aa = round(aa, 1)

            motor_a = aa

    Well... I think yours might be a bit different but you get the idea.

     

    It should have mulitpled '23' by 255 and then given the output.

     

    Any ideas why it is not working?

    • Cancel
    • Vote Up 0 Vote Down
    • Sign in to reply
    • Cancel
Reply
  • wallarug
    wallarug over 13 years ago in reply to fustini

    Drew Fustini wrote:

     

    Hi - I'm still learning Python myself but I was able to get it to run by making this change to adding "a = 0" at the beginning of CMDmodule.py:

     

    afustini@lappy486:~/Downloads$ head CMDmodule.py
    # C:\python27\Lib
    
    
    a = 0
    '''
    Invert Code for Arduino PWM when Digital
    Channel is 'LOW' along with a few other
    bits and pieces.
    '''
    
    
    ##set_zero = 0
    

     

    And running it seems to be ok (no error at least):

     

    afustini@lappy486:~/Downloads$ python ./Test\ Program\ for\ CMDmodule.py
    Welcome to CMDmodule.  Use Wisely. 
    Valables set to Zero!
    Change this value Test: 23
    23
    Change this value Test: 45 
    45
    Change this value Test: 
    

     

    Based on what I was reading here:

     

    http://stackoverflow.com/questions/423379/using-global-variables-in-a-function-other-than-the-one-that-created-them

     

    However, I'm wondering is there are reason that you are using globals heavily?  I'm still developing my sense of style for python but this would seem to be very un-"pythonic" as they say. 

    You have seen first hand the problem I am having!

    Change this value Test: 23

    23

    It should have applied the formula in CMD module:

    def pwm_formula_test(self):

            global a

            PWM = 255

            aa = PWM*a

            aa = round(aa, 1)

            motor_a = aa

    Well... I think yours might be a bit different but you get the idea.

     

    It should have mulitpled '23' by 255 and then given the output.

     

    Any ideas why it is not working?

    • Cancel
    • Vote Up 0 Vote Down
    • Sign in to reply
    • Cancel
Children
  • fustini
    fustini over 13 years ago in reply to wallarug

    I think it must be due to some aspect of using globals.  I would think globals wouldn't be the best way to handle this anyways.  What do you think of changing pwm_formula_test() to accept a parameter and then having it return a value?

    afustini@lappy486:~/Downloads$ python ./Test\ Program\ for\ CMDmodule.py

    Welcome to CMDmodule.  Use Wisely.

    Valables set to Zero!

    Change this value Test: 25

    6375.0

    so that method in your class would be:

        def pwm_formula_test(self, a):

            PWM = 255

            aa = PWM*a

            aa = round(aa, 1)

            motor_a = aa

            return aa

    and you test script would have:

    while True:

        a = input("Change this value Test: ")

        b = CMD.pwm_formula_test(a)

        print b

    • Cancel
    • Vote Up 0 Vote Down
    • Sign in to reply
    • Cancel
  • wallarug
    wallarug over 13 years ago in reply to fustini

    I don't mind how it goes about solving the problem.  I just want it to work.

     

    I was using globals because I read somewhere that 'that was the go'.  I don't know any better.

     

    Does the way you suggested above work?

    • Cancel
    • Vote Up 0 Vote Down
    • Sign in to reply
    • Cancel
  • fustini
    fustini over 13 years ago in reply to wallarug

    The snippets I posted above in http://www.element14.com/community/message/65629#65661 do work.

     

    This adds a parameter "a":

        def pwm_formula_test(self, a):

     

    "a" is then multiplied by 255 ("PWM" value) and stored in "aa".  "aa" is the rounded to one decimal place.  The method returns the value of "aa".  This is value stored in "b":

     

        b = CMD.pwm_formula_test(a)

     

    I'm a little unclear as to the objective of your program though.  What is the objective?

     


    • Cancel
    • Vote Up 0 Vote Down
    • Sign in to reply
    • Cancel
  • wallarug
    wallarug over 13 years ago in reply to fustini

    That is correct.  Thank you.  I will test it later.

     

    But what if I want to use the fomula for a different variable?

    I'm a little unclear as to the objective of your program though.  What is the objective?

    The objective is to read imput from  a joystick and then make the values go through that formula so that they can be read correctly by the arduino.

     

    This branch of the project is so that it is easier for others to understand the code.  I want to eventually write a 'guide' so that others can replicate this project.  Having little pieces of code in a library/class should make it easier for others to learn.

     

    I posted here:  http://www.raspberrypi.org/phpBB3/viewtopic.php?p=225261#p225261  all the different things I am using to make this work.  That is just another little issue I am having with the Gertboard but for the same project.

     

    Hope that helps clear up your understanding.

    • Cancel
    • Vote Up 0 Vote Down
    • Sign in to reply
    • Cancel
  • fustini
    fustini over 13 years ago in reply to wallarug

    But what if I want to use the fomula for a different variable?

     

    Do you mean pass a different variable to the pwm_formula_test() method?  You can just call it again with a different value as the parameter.  Is that what you mean?

    • Cancel
    • Vote Up 0 Vote Down
    • Sign in to reply
    • Cancel
  • wallarug
    wallarug over 13 years ago in reply to fustini

    yep. I will look at this some other time.  Other parts of the project must be completed first.  This was just to kill some time and build apon my own knowledge of python.

     

    Thanks for all your help.

    • Cancel
    • Vote Up 0 Vote Down
    • Sign in to reply
    • Cancel
element14 Community

element14 is the first online community specifically for engineers. Connect with your peers and get expert answers to your questions.

  • Members
  • Learn
  • Technologies
  • Challenges & Projects
  • Products
  • Store
  • About Us
  • Feedback & Support
  • FAQs
  • Terms of Use
  • Privacy Policy
  • Legal and Copyright Notices
  • Sitemap
  • Cookies

An Avnet Company © 2025 Premier Farnell Limited. All Rights Reserved.

Premier Farnell Ltd, registered in England and Wales (no 00876412), registered office: Farnell House, Forge Lane, Leeds LS12 2NE.

ICP 备案号 10220084.

Follow element14

  • X
  • Facebook
  • linkedin
  • YouTube