Basamma B - electroSome https://electrosome.com/author/basamma/ You Inspire.....We Create..... Tue, 15 Sep 2020 02:41:24 +0000 en-US hourly 1 https://wordpress.org/?v=6.1.1 Sending E-mail from ESP8266 – IoT Project https://electrosome.com/sending-email-esp8266-iot-project/ https://electrosome.com/sending-email-esp8266-iot-project/#comments Thu, 17 Jan 2019 07:16:05 +0000 https://electrosome.com/?p=15717 The scope of the IoT applications is growing from controlling appliances to monitoring devices (like sensors) and sending e-mails. So here I am writing an article on Sending Email from ESP8266 and it will be a step forward in the IoT Implementation. Components Required ESP8266 Breadboard USB Cable Software SMTP Server Setup In order to send […]

The post Sending E-mail from ESP8266 – IoT Project appeared first on electroSome.

]]>
https://electrosome.com/sending-email-esp8266-iot-project/feed/ 3
Controlling LED using ESP8266 and Telegram Bot – IoT Project https://electrosome.com/led-control-esp8266-telegram-bot/ https://electrosome.com/led-control-esp8266-telegram-bot/#comments Fri, 21 Dec 2018 11:22:38 +0000 https://electrosome.com/?p=15735 In this project we will control an LED which is connected to ESP8266 with a Telegram bot. Hope you know about Telegram, it is a messenger app similar to Whatsapp. This enables users to control their ESP8266 via simply typing and sending commands in Telegram. By adding some relays or TRIAC you can make this […]

The post Controlling LED using ESP8266 and Telegram Bot – IoT Project appeared first on electroSome.

]]>
https://electrosome.com/led-control-esp8266-telegram-bot/feed/ 1
Updating Sensor Data to Google Spreadsheet using ESP8266 – IoT Project https://electrosome.com/updating-sensor-data-google-spreadsheet-esp8266-iot-project/ https://electrosome.com/updating-sensor-data-google-spreadsheet-esp8266-iot-project/#comments Wed, 28 Nov 2018 05:09:26 +0000 https://electrosome.com/?p=15699 In IoT applications, the monitored sensor data needs to be recorded. This data logging is important for data analytics. So in this tutorial, we will record the sensor captured data in a Google spreadsheet. Components Required ESP8266 10KΩ Potentiometer Breadboard USB Cable Connecting Wires Hardware Circuit Diagram Software Google Spreadsheet Creation Login to your Gmail account […]

The post Updating Sensor Data to Google Spreadsheet using ESP8266 – IoT Project appeared first on electroSome.

]]>
https://electrosome.com/updating-sensor-data-google-spreadsheet-esp8266-iot-project/feed/ 5
Flashing Espressif and NodeMCU Firmware to ESP8266 https://electrosome.com/flashing-espressif-nodemcu-firmware-esp8266/ https://electrosome.com/flashing-espressif-nodemcu-firmware-esp8266/#respond Sun, 28 Oct 2018 17:01:29 +0000 https://electrosome.com/?p=15421 In the earlier articles, we have written our own program in Arduino IDE to access GPIO pins of ESP8266 or to interface sensors to ESP8266. But if we write our own program to access GPIO Pins, the existing firmware will be completely erased and the new program will be written on the ESP8266. So in this […]

The post Flashing Espressif and NodeMCU Firmware to ESP8266 appeared first on electroSome.

]]>
https://electrosome.com/flashing-espressif-nodemcu-firmware-esp8266/feed/ 0
Home Automation using ESP8266 & Blynk App – IoT https://electrosome.com/home-automation-esp8266-blynk-app-iot/ https://electrosome.com/home-automation-esp8266-blynk-app-iot/#comments Wed, 03 Oct 2018 09:25:10 +0000 https://electrosome.com/?p=15243 A home automation system is an automating the bulk of electronic and electrical tasks within a home. It uses a combination of hardware and software to enable control and management over appliances and devices within a home. Home automation not only refers to reduce human efforts but also energy efficiency and time saving. Here we are performing home automation […]

The post Home Automation using ESP8266 & Blynk App – IoT appeared first on electroSome.

]]>
https://electrosome.com/home-automation-esp8266-blynk-app-iot/feed/ 1
ESP8266 as MQTT Client – Arduino IoT https://electrosome.com/esp8266-mqtt-client-arduino-iot/ https://electrosome.com/esp8266-mqtt-client-arduino-iot/#comments Tue, 04 Sep 2018 06:02:28 +0000 https://electrosome.com/?p=15059 IoT or Internet of Things is an emerging technology which enables us to create a network of devices, sensors, actuators to connect and exchange data. MQTT (Message Queuing Telemetry Transport) is one of the commonly used protocol in this field. It consists of MQTT Broker and MQTT Clients. Where MQTT Broker is the server through […]

The post ESP8266 as MQTT Client – Arduino IoT appeared first on electroSome.

]]>
https://electrosome.com/esp8266-mqtt-client-arduino-iot/feed/ 11
Interfacing DHT11 Sensor with ESP8266 https://electrosome.com/interfacing-dht11-sensor-esp8266/ https://electrosome.com/interfacing-dht11-sensor-esp8266/#comments Mon, 11 Jun 2018 17:25:17 +0000 https://electrosome.com/?p=14897 In this article, I am going to explain about interfacing of DHT11 sensor with ESP8266. For that we have to make only 3 connections between the DHT11 sensor and ESP8266. For the working demonstration we will be programing ESP8266 as a web server for displaying temperature and humidity in a web browser as per request. Components Required […]

The post Interfacing DHT11 Sensor with ESP8266 appeared first on electroSome.

]]>
https://electrosome.com/interfacing-dht11-sensor-esp8266/feed/ 1
Calling API using ESP8266 https://electrosome.com/calling-api-esp8266/ https://electrosome.com/calling-api-esp8266/#respond Sat, 09 Jun 2018 02:33:42 +0000 https://electrosome.com/?p=14836 The objective of this tutorial is to explain how to do HTTP JSON GET requests using an ESP8266 and Arduino IDE. Components Required ESP8266 USB Cable Hardware   Software Code #include <ESP8266WiFi.h> #include <ESP8266HTTPClient.h> #include <ArduinoJson.h> const char* ssid = "SERVER NAME"; const char* password = "SERVER PASSWORD"; void setup() { Serial.begin(115200); WiFi.begin(ssid, password); while […]

The post Calling API using ESP8266 appeared first on electroSome.

]]>
https://electrosome.com/calling-api-esp8266/feed/ 0
Interfacing GPS with Arduino https://electrosome.com/interfacing-gps-arduino/ https://electrosome.com/interfacing-gps-arduino/#comments Sat, 05 May 2018 19:10:57 +0000 https://electrosome.com/?p=14765 GPS stands for Global Positioning System. GPS module find the location (latitude, longitude, altitude) by comparing the time taken for receiving signals from satellites in its vicinity. GPS offers a great accuracy and also provides other data besides position coordinates. Components Required Arduino Uno GPS Breadboard Connecting Wires Hardware Circuit Diagram Connections Connect TX pin […]

The post Interfacing GPS with Arduino appeared first on electroSome.

]]>
https://electrosome.com/interfacing-gps-arduino/feed/ 1
Interfacing GSM Module with Arduino https://electrosome.com/interfacing-gsm-module-arduino/ https://electrosome.com/interfacing-gsm-module-arduino/#comments Thu, 19 Apr 2018 14:30:46 +0000 https://electrosome.com/?p=14671 In this article, I am going to explain about interfacing of GSM Module with Arduino. Interfacing a GSM module to Arduino is pretty simple. We have to make only 3 connections between the GSM module and Arduino. For the working demonstration we will be sending an SMS to a particular number whenever a switch is pressed. Components […]

The post Interfacing GSM Module with Arduino appeared first on electroSome.

]]>
https://electrosome.com/interfacing-gsm-module-arduino/feed/ 1