Temperature Sensor using ARDUINO UNO

Introduction : 

The DHT11 is a basic, low-cost digital temperature and humidity sensor. It uses a capacitive humidity sensor and a thermistor to measure the surrounding air, and it outputs a digital signal on the data pin (no analog input pins needed)

Key Features

  • Temperature Range: 0 to 50°C (±2°C accuracy)
  • Humidity Range: 20% to 90% RH (±5% accuracy)
  • Operating Voltage: 3.5V to 5.5V
  • Max Current: 2.5mA (during conversion)
  • Output: Digital signal via single-bus interface

Pin Configuration

  1. VCC: Power supply (3.5V to 5.5V)
  2. Data: Serial data output (connect to a digital pin on the microcontroller)
  3. GND: Ground

 

 

Connection:

  • VCC to 5V (Arduino)
  • GND to GND (Arduino)
  • Data to a digital pin (e.g., pin 4) on the Arduino

 

Code : 

#include <DHT.h>
#define DHTPIN 4       // Pin connected to the Data pin of DHT11
#define DHTTYPE DHT11  // DHT 11 sensor type
DHT dht(DHTPIN, DHTTYPE);
void setup() {
  Serial.begin(9600);  // Initialize serial communication at 9600 baud
  dht.begin();         // Initialize the DHT sensor
}
void loop() {
  delay(2000);         // Wait a few seconds between measurements
  float humidity = dht.readHumidity();         // Read humidity
  float temperatureC = dht.readTemperature();  // Read temperature as Celsius
  float temperatureF = dht.readTemperature(true); // Read temperature as Fahrenheit
  // Check if any reads failed and exit early (to try again).
  if (isnan(humidity) || isnan(temperatureC) || isnan(temperatureF)) {
    Serial.println(“Failed to read from DHT sensor!”);
    return;
  }
  Serial.print(“Humidity: “);
  Serial.print(humidity);
  Serial.print(” %\t”);
  Serial.print(“Temperature: “);
  Serial.print(temperatureC);
  Serial.print(” *C “);
  Serial.print(temperatureF);
  Serial.println(” *F”);
}
https://github.com/makertribe/IoT-Codes/blob/8827f3514542eaead0f456b647918363b2247cc6/temperature%20sensor%20code
DHT-sensor-library-master
Output: 

 

 

Basic LED blinking using Arduino UNO

Introduction :

The Arduino UNO is perfect for beginners. A common first project is making an LED blink, introducing you to Arduino programming and hardware. Let’s light up your path into electronics with this simple first experiment

 

Hardware needed :

  1. Arduino UNO (with cable)
  2. LED light 

Connection : 

  1. Connect your laptop and UNO board using the UNO cable
  2. Open a blank IDE and configure your UNO to the IDE
  3. Connect the Longer pin of the LED to the digital pin 13
  4. The shorter end of the led to the GND present next to  pin13Arduino UNO R3 SMD Atmega328P – Indian Hobby Center

Connection diagram : 

 

Bad Tutorial? Connect an LED directly to pin 13 without resistor? - Website and Forum - Arduino Forum

CODE : 

void setup() {                         //Initialization
  pinMode(13, OUTPUT);  // change pin accordingly
}
void loop(){                                   // working loop
  digitalWrite(13,HIGH);          // High = On
  delay(1000);
  digitalWrite(13,LOW);          // Low = OFF
  delay(1000);
}
https://github.com/makertribe/IoT-Codes/blob/18b94243947e4dfaa5d09eb944850c69dfd53a4c/LED%20blinking%20in%20UNO%20board
OUTPUT : 

Basics Of IoT

The Internet of Things (IoT) is revolutionizing the way we interact with the world around us. By connecting everyday objects to the internet, IoT enables these objects to send and receive data, making them “smart” and capable of performing tasks without human intervention. This blog will provide an overview of IoT, focusing on three popular development boards used in IoT projects: the Arduino UNO, NodeMCU, and Raspberry Pi.

What is IoT?
IoT refers to the interconnectedness of devices and objects through the internet, allowing them to communicate and share data. This technology has applications in various fields, including home automation, healthcare, agriculture, and industrial automation. Key components of an IoT system include sensors, actuators, connectivity, data processing, and user interfaces.

Arduino UNO
Description
The Arduino UNO is one of the most popular microcontroller boards in the IoT community. It is based on the ATmega328P microcontroller and features 14 digital input/output pins, 6 analog inputs, a 16 MHz quartz crystal, a USB connection, a power jack, an ICSP header, and a reset button.

Key Features
Microcontroller: ATmega328P
Operating Voltage: 5V
Input Voltage (recommended): 7-12V
Digital I/O Pins: 14 (of which 6 provide PWM output)
Analog Input Pins: 6
Flash Memory: 32 KB (ATmega328P) of which 0.5 KB used by bootloader
SRAM: 2 KB (ATmega328P)
EEPROM: 1 KB (ATmega328P)
Clock Speed: 16 MHz
Applications
The Arduino UNO is widely used in beginner-level IoT projects due to its simplicity and ease of use. It’s suitable for prototyping and learning about microcontrollers and sensors. Common applications include home automation, wearable devices, and educational projects.

NodeMCU
Description
NodeMCU is an open-source IoT platform that includes firmware that runs on the ESP8266 Wi-Fi SoC and hardware based on the ESP-12 module. The board is ideal for IoT applications that require Wi-Fi connectivity and is favored for its low cost and ease of programming.

Key Features
Microcontroller: ESP8266
Operating Voltage: 3.3V
Digital I/O Pins: 17
Analog Input Pins: 1 (input range: 0-3.3V)
Flash Memory: 4 MB
SRAM: 64 KB (instruction), 96 KB (data)
Wi-Fi: 802.11 b/g/n
USB-TTL: CP2102
Applications
NodeMCU is particularly well-suited for IoT projects that require Wi-Fi connectivity. It is often used in smart home applications, remote monitoring systems, and IoT-based data logging.

Raspberry Pi
Description
The Raspberry Pi is a series of small, affordable single-board computers that run on a Linux-based operating system. The Raspberry Pi models vary in specifications, but they all provide a powerful platform for IoT development, offering higher processing power and more extensive connectivity options compared to microcontroller-based boards like Arduino and NodeMCU.

Key Features (Raspberry Pi 4 Model B)
Processor: Quad-core Cortex-A72 (ARM v8) 64-bit SoC @ 1.5GHz
Memory: 2GB, 4GB, or 8GB LPDDR4-3200 SDRAM
Connectivity:
2.4 GHz and 5.0 GHz IEEE 802.11ac wireless
Bluetooth 5.0, BLE
Gigabit Ethernet
2 × USB 3.0 ports; 2 × USB 2.0 ports
GPIO: 40-pin GPIO header
Video & Sound: 2 × micro-HDMI ports (up to 4Kp60 supported), 4-pole stereo audio and composite video port
Storage: MicroSD slot for loading operating system and data storage
Applications
The Raspberry Pi is ideal for complex IoT projects that require significant processing power and storage. It’s used in applications such as home automation, media centers, personal web servers, and industrial automation.

Discover Makers Tribe: Chennai’s Premier Destination for Innovation, Collaboration, and Community

Welcome to Makers Tribe, the hub of innovation and teamwork in Chennai, where community and creativity join together to create a dynamic fusion of opportunities. Makers Tribe is more than just a location on a map; it’s an exciting combination of a tech-learning hub, a bustling community place. Makers Tribe provides an atmosphere that fosters development, learning, and meaningful relationships, whether you’re an aspiring entrepreneur, a tech enthusiast, or a creative thinker seeking connection.

A Coworking Haven for Creative Minds

At Makers Tribe, we recognize the value of a positive work environment. Our coworking environment aims to foster creativity, productivity, and cooperation. We serve to individuals and teams of all sizes by offering several flexible workplace alternatives, including hot desks and private offices. Our cutting-edge facilities provide everything you need to bring your idea to life in an environment that encourages focus and innovation.

A Tech-Learning Hotspot for Enthusiasts

Makers Tribe stands at the forefront of technology and learning, offering workshops, seminars, and courses led by industry experts. Whether you’re looking to upskill in the latest programming languages, explore the realms of digital marketing, or dive into the world of design, Makers Tribe is your gateway to mastering new skills. Our hands-on approach to learning empowers you to stay ahead of the curve in an ever-evolving digital landscape.

A Vibrant Community of Innovators and Creators

What truly sets Makers Tribe apart is our vibrant community. We’re a melting pot of ideas, cultures, and passions, where members from diverse backgrounds come together to share, collaborate, and grow. Makers Tribe hosts a plethora of events, from networking meetups to creative workshops, providing ample opportunities for members to connect, learn, and inspire each other.

Events in Chennai: Immerse Yourself in the Buzz

Looking for events in Chennai this weekend? Makers Tribe is the place to be! From tech meetups and design sprints to entrepreneur networking events and creative showcases, our calendar is packed with opportunities to engage, learn, and have fun. These events are not just about expanding your knowledge; they’re about building relationships, sharing experiences, and creating memories.

Meetups in Chennai: Connect, Collaborate, Create

Meetups in Chennai this weekend at Makers Tribe are all about connecting like-minded individuals. Whether you’re interested in exploring new tech trends, discussing startup challenges, or sharing creative ideas, our meetups offer a platform for open dialogue and collaboration. It’s an opportunity to meet potential collaborators, mentors, and friends who share your passion and vision.

Conclusion: Join Makers Tribe, Embrace the Vibe

Makers Tribe is more than simply a location; it’s a community that wants to create, learn, and develop together. We encourage you to join us on our voyage of exploration and discovery. Makers Tribe is the place to go if you want to work on your next major project, acquire a new skill, or network with other innovators in Chennai.

Welcome to the tribe, where creativity and collaboration intersect, where every day is an opportunity to inspire and be inspired.

Exploring Affordable Coworking Spaces in Chennai With Benefits – Your Guide to Shared Office Solutions Under 5000

Are you a freelancer, entrepreneur, or remote worker in Chennai seeking a professional workspace without breaking the bank? Look no further than affordable coworking space in Chennai! With the rise of remote work and the gig economy, coworking spaces have become increasingly popular, offering flexible and cost-effective solutions for individuals and small teams. In this guide, we’ll explore shared office space in Chennai priced under 5000 rupees, providing you with a conducive environment to work, collaborate, and thrive.

The digital world of today is fast-paced, and this has significantly changed the way we operate. Even if technology has made employment more flexible and efficient, human interaction in the office cannot be undervalued. At Makers Tribe, we think that to create a productive workplace where people and teams can flourish, it is important to strike a balance between technology and connection.

The Benefits of Coworking Spaces

Coworking spaces offer a myriad of benefits, including:

1.Cost-Effective: By opting for a coworking space, you can avoid the hefty overhead costs associated with traditional office leases, such as rent, utilities, and maintenance fees.

2.Flexibility: Coworking spaces provide flexible membership plans, allowing you to choose the duration and amenities that best suit your needs. Whether you need a dedicated desk, hot desk, or meeting room, coworking spaces offer options tailored to your preferences.

3. Networking Opportunities: Coworking spaces foster a vibrant community of like-minded individuals, providing ample opportunities for networking, collaboration, and knowledge sharing. From workshops and events to informal networking sessions, you’ll have the chance to connect with professionals from diverse backgrounds.

4.Amenities: Most coworking spaces are equipped with essential amenities, including high-speed internet, printing facilities, meeting rooms, and kitchenettes. These amenities ensure that you have everything you need to be productive throughout the day.

In summary Constantly be aware of how crucial it is to maintain a balance between connection and technology in the current workplace. Our approach combines the use of cutting-edge technology with the development of deep human relationships to create a work environment that is conducive to both individual and team success. Come experience the ideal fusion of technology and human connection at Makers Tribe.