element14 Community
element14 Community
    Register Log In
  • Site
  • Search
  • Log In Register
  • About Us
  • 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 Boards Community
    • Dev Tools
    • Manufacturers
    • Multicomp Pro
    • Product Groups
    • Raspberry Pi
    • RoadTests & Reviews
  • 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
      •  Korea (Korean)
      •  Malaysia
      •  New Zealand
      •  Philippines
      •  Singapore
      •  Taiwan
      •  Thailand (Thai)
      • 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
Arduino
  • Products
  • More
Arduino
Arduino Forum HELP :'(
  • Blog
  • Forum
  • Documents
  • Quiz
  • Events
  • Polls
  • Files
  • Members
  • Mentions
  • Sub-Groups
  • Tags
  • More
  • Cancel
  • New
Join Arduino to participate - click to join for free!
Actions
  • Share
  • More
  • Cancel
Forum Thread Details
  • Replies 23 replies
  • Subscribers 394 subscribers
  • Views 2295 views
  • Users 0 members are here
  • python
  • help
  • blink led
  • arduinos
  • arduino coding
  • need help coding
Related

HELP :'(

the_future
the_future over 7 years ago

Coding Arduino in Python but got an error and have no idea why please help me

 

My Code:

 

 

import serial                                 # add Serial library for Serial communication

 

 

Arduino_Serial = serial.Serial('com4',9600)  #Create Serial port object called arduinoSerialData

print Arduino_Serial.readline()               #read the serial data and print it as line

print ("Enter 1 to ON LED and 0 to OFF LED")

 

 

while 1:                                      #infinite loop

    input_data = raw_input()                  #waits until user enters data

    print "you entered", input_data           #prints the data for confirmation

  

    if (input_data == '1'):                   #if the entered data is 1

        Arduino_Serial.write('1')             #send 1 to arduino

        print ("LED ON")

     

  

    if (input_data == '0'):                   #if the entered data is 0

        Arduino_Serial.write('0')             #send 0 to arduino

        print ("LED OFF")

 

image

  • Sign in to reply
  • Cancel

Top Replies

  • Dudley
    Dudley over 7 years ago in reply to shabaz +5
    I still call () brackets. I call {} braces and [] square brackets. Parentheses to me is related to sentence structure. Something added as an afterthought in an existing sentence - something you didn't…
  • jomoenginer
    jomoenginer over 7 years ago in reply to Dudley +5
    Some refer to '{}" as curly brackets, so I suppose '()' could be something like happy-sad face brackets. I still refer to '#' as the pound symbol due to my Unix background; '#!' = Pound Bang To each is…
  • gecoz
    gecoz over 7 years ago in reply to the_future +4
    Since the "python setup.py install" seems to be working, probably your Python 2.7 environment is correctly set up. On the other hand, the error you get using the "python3 ..." command is a strong indicator…
Parents
  • the_future
    the_future over 7 years ago

    speech recognition error , message:

     

    Traceback (most recent call last):

         File "setup.py", line 7 in <module>

              from setuptools import setup

    ImportError: No module named setuptools

    • Cancel
    • Vote Up +1 Vote Down
    • Sign in to reply
    • Cancel
  • gecoz
    gecoz over 7 years ago in reply to the_future

    Ok, looks like you don't have the setuptools package installed. Before trying to sort that out, lets establish first exactly what version of Python 2 you are using. This can be done issuing the command from the terminal:

     

    python --version

     

    Knowing the version is important because, for example, starting from Python 2.7.9 (and Python 3.4 for the 3 series), the pip package manager is included in the distribution by default.

     

    Moreover, it would be useful if you could post here also the command used to install the speech recognition package together with the full output from the command.

     

    Fabio

    • Cancel
    • Vote Up +1 Vote Down
    • Sign in to reply
    • Cancel
  • the_future
    the_future over 7 years ago in reply to gecoz

    Python 2.7

    • Cancel
    • Vote Up +1 Vote Down
    • Sign in to reply
    • Cancel
  • the_future
    the_future over 7 years ago in reply to gecoz

    command: python setup.py install

    • Cancel
    • Vote Up +1 Vote Down
    • Sign in to reply
    • Cancel
  • gecoz
    gecoz over 7 years ago in reply to the_future

    Is it just Python 2.7, or something like 2.7.xx? And, can you use python command from the Windows command line?

    • Cancel
    • Vote Up +1 Vote Down
    • Sign in to reply
    • Cancel
Reply
  • gecoz
    gecoz over 7 years ago in reply to the_future

    Is it just Python 2.7, or something like 2.7.xx? And, can you use python command from the Windows command line?

    • Cancel
    • Vote Up +1 Vote Down
    • Sign in to reply
    • Cancel
Children
No Data
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