Product |
Arduino Brick
|
Sensor Brick
| Temperature Sensor-2 -Arduino Compatible
Arduino Temperature Sensor-2

By using electronic bricks, you may connect Arduino compatible boards easily with various digital, analog and I2C/Uart interfaces. These the breadboard-less firm connection are prepared to extensive modules like poteniometers, sensors, relays, servos...even buttons, just plug and play.
Each terminal module has buckled port with VCC, GND and Output, which has corresponding port on the sensing board, with a plain 2.54mm dual-female cable you may start playing already. Buckled brick cables are like cement for bricks, make the connections easier, secure and more professional looking.
It is very interesting Electronic Brick Module
This module can be used with Arduino Special Sensor Shield V4.0.
You can do some simple design about it,it support“plug and play”。
Temperature sensing Brick
A temperature sensor based on thermistor. Can be used to detecting environment temperature.


First , connect Arduino with Arduino Special Sensor Shield V4.0:

Then connect light sensor with No.6 interface(A5) of analog input port of Arduino Sensor Shield through the analog sensor cables :
Then download the programmer below into Arduino through Arduino integrated development environment:
Test Code :
#include <math.h>
double Thermister(int RawADC) {
double Temp;
Temp = log(((10240000/RawADC) - 10000));
Temp = 1 / (0.001129148 + (0.000234125 * Temp) + (0.0000000876741 * Temp * Temp * Temp));
Temp = Temp - 273.15; // Convert Kelvin to Celcius
Temp = (Temp * 9.0)/ 5.0 + 32.0; // Convert Celcius to Fahrenheit
return Temp;
}
void setup() {
Serial.begin(115200);
}
void loop() {
Serial.println(int(Thermister(analogRead(0)))); // display Fahrenheit
delay(100);
}
Connecting Diagram :

This sensor module come with 3 Pin Dual-female Jumper Wire length 300mm as below :

Test Result :

Categories
Newsletter
Join our newsletter today, to get latest product information and promotion code.








