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 Newbie in Arduino and MQTT project-Need 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 19 replies
  • Subscribers 394 subscribers
  • Views 1389 views
  • Users 0 members are here
  • mqtt
  • arduino
Related

Newbie in Arduino and MQTT project-Need help

Former Member
Former Member over 10 years ago

Hi,

I am a newbie in Arduino and MQTT projects..I want to use Temperature sensor as MQTT client by connecting it with Arduino UNO and Ethernet Shield.

I want to buy the required components.Kindly let me know whether the below are the correct components for this...

 

Arduino UNO-Are the both same product?If no,which one is the best to buy?

1)https://www.sparkfun.com/products/11021

2)http://www.simplelabs.co.in/content/arduino-uno

 

Ethernet shield-Are the both same product?If no,which one is the best to buy?

1) http://www.ebay.in/itm/Ethernet-Shield-W5100-for-arduino-UNO-Mega-/141511630995?_trksid=p2054897.l4275

2)https://www.sparkfun.com/products/9026?

 

Hope I have to  buy RJ45 cable?

One more wire seems to be connected from the Arduino board with computer USB port as per the video "https://www.youtube.com/watch?v=xj6eA8BIvlQ".Not sure what is the use of it..Kindly explain me..

  • Sign in to reply
  • Cancel

Top Replies

  • bobcroft
    bobcroft over 10 years ago +1
    Radhamani, The products you are comparing are essentially the same. The Arduino UNO comes as the genuine item, which tend to be quite expensive, and then there are many clones. The latest version is the…
Parents
  • Former Member
    Former Member over 10 years ago

    After my long trial,finally my first Arduino project has worked for me image

    The steps I did to solve the issue are,

      1)This issue is definitely related to Windows 8 OS which cannot accept unsigned version of drivers.And Arduino UNO driver 1.6 version also is one such driver.Hence first I fixed the issue by following "https://www.youtube.com/watch?v=CdE72XUYC7k" .

    2)Now my Arduino is connected to COM1 port(I selected COM1 as port)

    3)Arduino IDE automatically got the PORT option enabled once the above 2 steps are successful

    4)Now,followed " Intro to Arduino : Run a sketch ",to upload Blink sketch.I gave delay as 5000seconds

    5)While uploading,I got "avrdude: ser_open(): can't open device "\\.\COM1": Access is denied. :" error

    6)But strangely,second time I tried once again.And it started uploading without any issues.And my Arduino is blinking perfectly with a delay of 5000seconds

     

    Thanks a lot for all who have helped me for my first project in Arduino...image

    • Cancel
    • Vote Up 0 Vote Down
    • Sign in to reply
    • Cancel
  • bobcroft
    bobcroft over 10 years ago in reply to Former Member

    Radhamani,

                             Well done for persevering with the problem.  You can plug / unplug your Arduino's freely.  If you buy more or different model Arduino's you should find that each one will be allocated its own com port provided it has an on board USB to TTL chip.  Also if you buy an external programmer for things like the Pro Mini that do not have a USB connector, then the USB to TTL converter on the programmer will also be given a com port.  Have fun and enjoy your Arduino's.  Take things a step at a time and get each part working before moving onto the next part.  Save each working sketch with a different name then you have something to go back to if your next step fails. ..........image

    • Cancel
    • Vote Up 0 Vote Down
    • Sign in to reply
    • Cancel
Reply
  • bobcroft
    bobcroft over 10 years ago in reply to Former Member

    Radhamani,

                             Well done for persevering with the problem.  You can plug / unplug your Arduino's freely.  If you buy more or different model Arduino's you should find that each one will be allocated its own com port provided it has an on board USB to TTL chip.  Also if you buy an external programmer for things like the Pro Mini that do not have a USB connector, then the USB to TTL converter on the programmer will also be given a com port.  Have fun and enjoy your Arduino's.  Take things a step at a time and get each part working before moving onto the next part.  Save each working sketch with a different name then you have something to go back to if your next step fails. ..........image

    • Cancel
    • Vote Up 0 Vote Down
    • Sign in to reply
    • Cancel
Children
  • Former Member
    Former Member over 10 years ago in reply to bobcroft

    Thanks a lot Bob for your positive note and advice..I will definitely follow what you have said image

    • 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