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
Upcycle It
  • Challenges & Projects
  • Design Challenges
  • Upcycle It
  • More
  • Cancel
Upcycle It
Blog UpCycle IT - R2I - Hot2Not
  • Blog
  • Forum
  • Documents
  • Polls
  • Files
  • Events
  • Mentions
  • Sub-Groups
  • Tags
  • More
  • Cancel
  • New
  • Share
  • More
  • Cancel
Group Actions
  • Group RSS
  • More
  • Cancel
Engagement
  • Author Author: jkutzsch
  • Date Created: 4 Jun 2017 1:47 AM Date Created
  • Views 543 views
  • Likes 2 likes
  • Comments 1 comment
  • upcycle it design challenge
  • upcycle it
Related
Recommended

UpCycle IT - R2I - Hot2Not

jkutzsch
jkutzsch
4 Jun 2017

UpCycle IT - R2I - Grove-ON!

UpCycle IT – R2I INDEX:

 

Blog #1_”Introduction”

Blog #2_”Designing”

Blog #3 "The Kit"

Blog #4_"Mother Natures Version"
Blog #5_"Research"
Blog #6_"Competition01"

Blog #7_"Edison Setup"

Blog #8_"Edison 2 Ardunio"
Blog #9_"Grove-ON"
Blog #10_"Hot2Not"

 

Blog #10 - Hot2Not

 

As I had mentioned in blog #9 I am interesting in getting the temperature sensor and the lcd display rolling together since it seems a great duo to work with my project.  Let's see how well they play together with the Intel Edison!

 

image

 

The Base shield is pretty straight forward, with the pin layout it can only appropriately fit one way to the Intel Edison board. 

 

Grove - Temperature Sensor:

 

imageimage

Here is the Temperature sensor that we will use.

 

image

 

Going with the suggestion from our Handy/Dandy info page I used the first Analog port, A0 for our temperature sensor.

 

image

 

In Blog #9 we pulled the Grove Examples into our IDE for our own use.  Here is the Grove_Temperature_Sensor example we will work with.

 

 

image

 

Pretty straight forward, go ahead and upload it over to your Edison.

 

image

 

Error!!!  Ah, I see that Will Robinson must have switched over to Com8, the Edison does have 2 usb connections and I want to use Com7 for my setup.  So if you get an error you may want to verify you are on the right communications port!

 

image

 

Success!!!  Always the preferred result.

 

 

image

Let's take a look at our Serial Monitor since that is where we will be displaying the Temperature sensor results.

 

 

image

 

Here we have the basic data coming from out Temperature Sensor.  Yes it is a tad chilly in my office.

 

image

 

Here I actually cupped the sensor in my hand to provide a little more heat to show it adjusting it's data with temperature change.

 

image

To make it easier for my American brain I added a line that took Celsius and converted to Fahrenheit.

 

// Calculate F temp

    float ftemp = temperature * (9.0/5.0) + 32.0;

 

image

 

Finally to make it cleaner, I added some text to explain exactly what was what.

 

// Print the temperature to the serial console.

    Serial.print("Celcius = ");Serial.println(temperature);

    Serial.print("Fahrenheit = ");Serial.println(ftemp);

 

Okay let's take a look at that LCD Display and hopefully eventually push our Temperature results to the LCD.

 

Grove - RGB Backlight LCD:

 

image

 

Here we go, v4.0 even.

 

image

 

Here we have the LCD plugged into the 2nd I2C port per the Handy Dandy info page.  Keeping it simple!

 

image

 

Let's go ahead and load the tried and true favorite, Hello World as an example test.

 

image

 

Hmm, not what I was hoping for.

 

I tried several other examples and while it looks like the sketch loads fine the LCD does not actually display the appropriate messages.

 

Looking online I found some references that suggested hardwiring some additional pieces in to resolve this but I want to fully explore Grove first to see if they have updated information.  It seems contrary to their kit idea to have to start throwing additional pieces at their devices that were not included.

 

So the Temperature Sensor was a success hence the Hot part of the Title.

 

Sadly the LCD wasn't, explaining the 2Not part.

 

I am going to keep researching since the LCD seems a perfect part of the kit to use, so stay tuned!

  • Sign in to reply

Top Comments

  • DAB
    DAB over 8 years ago +1
    Nice update John, Yes, sometimes the simple things just do not work. Good luck on the debug. DAB
  • DAB
    DAB over 8 years ago

    Nice update John,

     

    Yes, sometimes the simple things just do not work.

     

    Good luck on the debug.

     

    DAB

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