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
    About the element14 Community
  • 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 687 subscribers
  • Views 2192 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
  • 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 © 2026 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