zt07elecfreaks 发表于 2017-9-20 14:45:03

Micro:bit Experiment 07:Temperature Sensor —— Elecfreaks Mirco: bit Start

Introduction:

Temperature sensor is a kind of sensor that can feel temperature and transfer it into output data. Temperature sensor is the core component of temperature gauges and instruments. It has multiple categories. In this experiment, we are going to learn analog temperature sensor--TMP36 and display its data on the screen of Micro:bit.

Components List

Hardware:

1 x Micro:bit Board

1 x Micro-B USB Cable

1 x Microbit Breadboard Adapter

1 x Transparent Breadboard - 83 * 55 mm

1 x TMP36 Temperature Sensor

1 x Breadborad jumper wire 65pcs pack

Tips: If you want all components above, you may need Elecfreaks Micro:bit Starter Kit.

https://www.elecfreaks.com/wp-content/uploads/2017/09/1-2.jpg
Software:

Microsoft Makecode Online Editor

Major Components Introduction

TMP36

TMP36 is a kind of analog temperature sensor. Its output voltage and temperature forms a linear relationship. That means higher temperature will have bigger output voltage.

https://www.elecfreaks.com/wp-content/uploads/2017/09/091817_1137_MicrobitExp2.jpg
Note:

When we look at the front side marked \"TMP36\", the left footer of the core is VCC, middle is Vout, and the right footer is GND. You can't connect it wrong or the components connected might be damaged.

https://www.elecfreaks.com/wp-content/uploads/2017/09/091817_1137_MicrobitExp3.jpg
Here's the curve chart for output voltage of TMP36 changing with temperature:

https://www.elecfreaks.com/wp-content/uploads/2017/09/091817_1137_MicrobitExp4.jpg
https://www.elecfreaks.com/wp-content/uploads/2017/09/091817_1137_MicrobitExp5.jpg
We can know from the above chart that the temperature formula is:


Hardware Connection

Please complete hardware connection according to the picture below.https://www.elecfreaks.com/wp-content/uploads/2017/09/091817_1137_MicrobitExp6.jpg

After connection, you will see:


https://www.elecfreaks.com/wp-content/uploads/2017/09/091817_1137_MicrobitExp7.jpg
Programming

Open Microsoft Makecode, write your code in the edit area. I would like to suggest that you program by yourself first.

Of course, you can see the whole program in the link below directly. Just click \"Edit\" on the top right corner of the interface, then click \"Download\" on the bottom right corner to download code into Micro:bit directly.


Code Explanation

map

Remaps the specified value from one range to another. This function maps the value of from low to the value of to low, the value of from high to the value of to high, and intermediate values to intermediate values.

This function does not constrain values to the ranges, because out-of-range values are sometimes intended and useful. If you need to limit a range, you can use the Math.clamp function before or after calling this function.

https://www.elecfreaks.com/wp-content/uploads/2017/09/091817_1137_MicrobitExp8.png
In our program, we have to use brick \"Map\" to transfer the read-out analog data into voltage(mV).

If \"analog read\" value is 0 to 1023, so \"from low\"is 0, \"from high\" is 1023.

The basic voltage of Micro:bit is 3.3V, i.e. 3300Mv. So \"to low\" is 0, \"to high\" is 3300.

https://www.elecfreaks.com/wp-content/uploads/2017/09/091817_1137_MicrobitExp9.png
Then according to the formula above



to calculate temperature value.

Experiment Result

Micro:bit screen displays the present temperature value.

https://www.elecfreaks.com/wp-content/uploads/2017/09/1-3.gif
Question

In this experiment, Micro:bit displays the centigrade temperature. If we want to display the Fahrenheit temperature, then how to design circuit and program? We look forward to your comments or further discussion with us.

Relative Readings:

Start Your Micro:bit Programming Trip

Micro:bit Experiment 01: LED Scroller —— Elecfreaks Micro:bit Starter Kit Course

Micro:bit Experiment 02: Button —— Elecfreaks Mirco:bit Starter Kit Course

Micro:bit Experiment 03: Trimpot —— Elecfreaks Mirco:bit Starter Kit Course

Micro:bit Experiment 04: Photocell —— Elecfreaks Mirco:bit Starter Kit Course

Micro:bit Experiment 05: RGB LED —— Elecfreaks Mirco:bit Starter Kit Course

Micro:bit Experiment 06: Self-lock Switch —— Elecfreaks Mirco:bit Starter Kit Course

BadboyFly 发表于 2017-9-22 10:32:48

Hello Foreign friends

GloomyGhost 发表于 2017-9-23 14:26:07

Visual programming?
That\'s good

zt07elecfreaks 发表于 2018-1-10 17:59:40

Hello Foreign friends My QQ: 2966830653.
Welcome to discuss with me ! I am a Chinese too!

zt07elecfreaks 发表于 2018-1-10 18:01:44

Visual programming?
That\'s good No. That is block-based programming.
Have you ever used micro:bit?
http://www.elecfreaks.com/estore/micro-bit-board.html
You can take a look at the introduction in the above link.
For more projects, you may find here: https://www.elecfreaks.com/blog

My QQ: 2966830653.
Welcome to discuss with me !

GloomyGhost 发表于 2018-1-25 11:03:49

No. That is block-based programming.
Have you ever used micro:bit?
http://www.elecfreaks.com/estore/micro-bit-board.htm... I\'d love yet!
页: [1]
查看完整版本: Micro:bit Experiment 07:Temperature Sensor —— Elecfreaks Mirco: bit Start