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 1859 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
  • mgt6910
    mgt6910 over 13 years ago

    Fergus, this link may point you in the right direction...

     

    http://stackoverflow.com/questions/4473184/unbound-method-f-must-be-called-with-fibo-instance-as-first-argument-got-cla

     

     

    p.s. why did  you use 512 tests to invert the motors instead of :

     

     

    def invert_mota(self):

         motor_a = 255 - motor_a

     

    def invert_motb(self):

         motor_b = 255 - motor_b

    • Cancel
    • Vote Up 0 Vote Down
    • Sign in to reply
    • Cancel
  • Former Member
    Former Member over 13 years ago in reply to mgt6910

    >  p.s. why did  you use 512 tests to invert the motors instead of :  ...

     

    good point!

     

    One of the design goals for programming languages is that there should

    essentially never be a need for repetitive looking code.  So when you

    see something like that, you know there's probably a better way to do it.

     

    For example, using copy/paste to duplicate code is usually a bad idea.

    Instead, you should usually create a subprogram and call it multiple times.

    If you have multiple sequential calls to the same subprogram, you should

    instead use a loop.  If you have similar but not identical subprograms,

    you can combine them by adding parameters.  If you have similar

    algorithms applied to different data types, you can combine them

    using generics.  If you have similar classes, you can combine their

    common parts using inheritance from a common base class.

     

    In the case at hand, when you have a repetitive looking elsif chain,

    you can often simplify it using a switch statement.  If you still have a

    repetitive looking switch statement, you can often simplify it using

    a table lookup, either to look up a value or to look up a subprogram

    to call indirectly.  If you still have a repetitive looking table, you can

    often simplify it using a mathematical calculation.

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

    Malcolm Turner wrote:

     

    Fergus, this link may point you in the right direction...

     

    http://stackoverflow.com/questions/4473184/unbound-method-f-must-be-called-with-fibo-instance-as-first-argument-got-cla

     

     

    p.s. why did  you use 512 tests to invert the motors instead of :

     

     

    def invert_mota(self):

         motor_a = 255 - motor_a

     

    def invert_motb(self):

         motor_b = 255 - motor_b

    I will have a look at this later.

     

    And yes, I see the error in my ways now.  I wasn't sure if that would work as the first time I used it, it spat out errors.  I have fixed it now but I would still like to use a class for some other little programs that I am using.

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

    Here is a quick update.

     

    i. I can import the module.

    ii. I can bound the class

    iii. I can call instances within the class without any errors.

     

    But, the instances do not seem to do anything.  See updated script below.

     

    I do the following...

    >> import CMDmodule

    >> CMD = CMDmodule.CMDmodule()

     

    Then I can call the instance that I want:

    >> CMD.zero_variables()

     

    I would have thought that at this stage I would now have all the variables under the "def <command>:" imported but that seems not to be the case.

    >> CMD.zero_variables()

    >> print a

    Traceback (most recent call last):

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

        print b

    NameError: name 'b' is not defined

     

    What am I doing wrong?

    Attachments:
    4401.CMDmodule.py.zip
    • Cancel
    • Vote Up 0 Vote Down
    • Sign in to reply
    • Cancel
  • 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
>
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