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
Arduino
  • Products
  • More
Arduino
Arduino Forum First arduino project, please 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 7 replies
  • Subscribers 418 subscribers
  • Views 740 views
  • Users 0 members are here
Related

First arduino project, please help.

e14 Contributor
e14 Contributor over 13 years ago

Ok, so i started a project utilizing arduinos (2x) (havent decided to go uno or mega yet)

 

My quesion is while using a tft screen and an adapter shield is there any way to expand the board?

I have ran out of pins. my project requires 15 output pins and 5 input pins(some analog and some digital) other than what are being used buy the tft screens.

 

is there anyway to make 2 or 3 arduino boards communicate with eachother instantly?

 

example: if arduino board(1) reads a digital signal into pin 5

              then arduino board(2) reads that arduino board(1) has recieved the signal so it sends a 5v output to a relay via pin 8?

 

I have yet to purchace my arduino boards, I would like some input about what would be the best way to do this.

 

Any help would be greatly appreciated, Thank You.

  • Sign in to reply
  • Cancel
Parents
  • e14 Contributor
    e14 Contributor over 13 years ago

    Also wondering if i use the rx tx serial pins. if i have the touchscreen arduino send a certain integer if the other arduino can read that integer and perform an action.

     

    example:

    Touch arduino: Press button"1" on the screen. send a "1" through the tx pin

     

    Second arduino: Recieves the "1" and sends power to pin 8

     

    Touch arduino: Press button "2" on the screen. send a "2" through the tx pin

     

    Second arduino: Recieves the "2" and sends power to pin 10

     

     

    I understand that probably wont support any multi touch function. but im not really aiming for that. lol.

    • Cancel
    • Vote Up 0 Vote Down
    • Sign in to reply
    • Cancel
  • mcb1
    mcb1 over 13 years ago in reply to e14 Contributor

    Anthony

    You certainly can use serial to pass anything onto another Arduino, etc.

     

    There are a few examples of Serial using the computer which works equally as well for the 'far' end.

     

    Most data passed serially consists of a protocol where it starts with a character, contains x data bits, and then has a checksum, and a stop character.

    This is to ensure that only valid data is accepted and acted on.

     

    A vehicle is electrically very noisy so you will need to put some thought into some form of protocol or using an existing one.

     

    You may wish to use a small computer to do the graphics and accept inputs, and pass the data serially to an Arduino or two to do the physical interfacing.

     

     

    It looks like quite a challenge, especially for a begining project.

     

    Mark

    • Cancel
    • Vote Up 0 Vote Down
    • Sign in to reply
    • Cancel
  • e14 Contributor
    e14 Contributor over 13 years ago in reply to mcb1

    thank you mark for your response.

     

    I have thought about using a small computer such as rasperry pi but the only problem i would have is the time it take to boot it up. and i wouldnot be able to start the vehicle until it boots up. 

    And i have also thought about how noisy the car will be. and i dont know if a simple debounce script would work but that was what i was going to try first

    Could you please give an example of something that should be passed serially? as in should it be a more complex integer or a character and an integer?.

     

    And it is gonna be quite a challege but that is what i am looking for. Something to challange what i already know and push me to learn more.

     

    im not new to coding at all i have coded quite a few flash games using both java and c++ but have never actually got into the hardware side of it all. and it has always intruiged by it.

     

    anthony

    • Cancel
    • Vote Up 0 Vote Down
    • Sign in to reply
    • Cancel
Reply
  • e14 Contributor
    e14 Contributor over 13 years ago in reply to mcb1

    thank you mark for your response.

     

    I have thought about using a small computer such as rasperry pi but the only problem i would have is the time it take to boot it up. and i wouldnot be able to start the vehicle until it boots up. 

    And i have also thought about how noisy the car will be. and i dont know if a simple debounce script would work but that was what i was going to try first

    Could you please give an example of something that should be passed serially? as in should it be a more complex integer or a character and an integer?.

     

    And it is gonna be quite a challege but that is what i am looking for. Something to challange what i already know and push me to learn more.

     

    im not new to coding at all i have coded quite a few flash games using both java and c++ but have never actually got into the hardware side of it all. and it has always intruiged by it.

     

    anthony

    • Cancel
    • Vote Up 0 Vote Down
    • Sign in to reply
    • Cancel
Children
  • mcb1
    mcb1 over 13 years ago in reply to e14 Contributor

    Anthony

    There is no reason why the Arduino side can't do the vehicle starting, with the ignition starting the RPi (or similar).

    I'm also certain that removing a lot of the drivers/unecessary will improve the boot time.

    Some of the other SBC have SATA drive capability and using a SolidState drive means 1 or 2 secs boot time.

     

    re examples

    You have of course looked under File Examples on the Arduino IDE .....image

     

    There are three under the communications tab featuring examples of the Arduino receiving serial data and performing a task.

    Dimmer

    PhysicalPixel

    SerialCallResponse

    These just use simple characters, etc, and don't rely on doing much else while they wait.

     

    I presume your search using google was also as useful for tutorials and the like..??

    You have the advantage of understanding the coding, so a few examples or tutorials should have you on your way in no time.

     

     

    You may be interested in "Efijy" a working Holden concept car that uses a few Picaxe controllers for its electronics.

    http://www.holden.com.au/concept-cars/efijy

    http://www.hotrod.com/featuredvehicles/hdrp_0604_holden_efijy_concept_car/viewall.html

     

    unfortunately you need to pay to get the full article

    http://www.siliconchip.com.au/Issue/2006/January/Holden%E2%80%99s+EFIJY+Show+Car

     

     

    Mark

    • 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.

Follow element14

  • X
  • Facebook
  • linkedin
  • YouTube