Home

Raspberry Pi


STM32


Arduino



while(try()!=success);

How to send SMS with GSM module from Raspberry Pi using Python

Introduction Hi guys, in this article we will see how to interface GSM Module with Raspberry pi and send SMS using python. Components Required Raspberry Pi (with OS installed SD card) – 1 GSM module (SIM800) – 1 TTL Converter – 1 Jumper Wires Schematic Diagram Code Thanks for reading this article for any assistanceโ€ฆ

How to send SMS with GSM (SIM800) using STM32F1(Bluepill) in Keil IDE

Introduction: Hi, in this article we will see how to send SMS with SIM800 GSM module using blue pill microcontroller in Keil IDE. SIM800 is a quad-band module 850/900/1800/1900MHz and this module support USART Communication. Requirements: Blue pill – 1 ST-Link Debugger – 1 FTDI – 1 Breadboard – 1 Jumper wires Schematic Diagram: GSMโ€ฆ

Lora SX1276/7/8/9 Library for STM32F103C in Keil

Hi guys this article is to discuss the Lora module interfacing with the STM32F blue pill board. The driver is implemented to transmit and receive the data between two devices in Keil IDE using the HAL driver. This library mostly focuses on the Lora mode and uses SPI communication. In Lora mode, we can accessโ€ฆ

How to monitor Sensor values in Blynk App using Raspberry Pi

Hi guys, in this article we will discuss how to monitor the DHT sensor values in the Blynk application. For this we should have an account in the Blynk app, we can signup into Blynk either by Gmail or Facebook. After signup create a project with text labels, and we get an auth key toโ€ฆ

How to display DHT sensor values on GUI application in raspberry pi

Hi guys, this article is to read the DHT sensor values temperature and humidity, these values are displayed on the PyQt5 GUI application. This GUI is designed in Qt designer (see below image) and converted to the .py file. DHT11 is a temperature and humidity sensor. This sensor has 3 pins (VCC, OUT, and GND).โ€ฆ

How to Interface MQ 2 with Arduino

Introduction: MQ 2 or MQ6 is Gas leakage sensor which consists of 4 pins. This module is used to detect the gases like butane, propane and LPG. VCC – 5v DC GND – ground D0 – Digital out A0 – Analog out Requirements: Arduino UNO – 1 MQ2/MQ6 – 1 Jumper Wires Working: If noโ€ฆ

How to Interface DHT 11 with Arduino

Introduction: DHT 11 is a sensor which gives temperature and humidity of the air molecules. It is an 3 pin Module. VCC – 5v D0 – digital out (sensor values transmit from this pin) GND – ground Requirements: Arduino UNO – 1 DHT11 – 1 Jumper wires Working; D0 pin is treated as input andโ€ฆ

How to Interface IR Sensor with Arduino

Introduction: IR sensor module will have 3pins VCC, GND and D0 respectively. VCC – +5V DC GND – Ground D0 – Digital Out Requirements: Arduino UNO – 1 IR Module – 1 Jumper Wires This module consists of two leds (looks like led but not an led), one is IR Transmitter (i.e., white one) andโ€ฆ

How to Interface Ultra sonic sensor with Arduino

Interfacing Ultrasonic sensor with Arduino UNO HC-SR04 As show in the figure HC-SR04 is an ultrasonic sensor. It is an 4pin module consists of Vcc, Trig, Echo and GND. Module had a transmitter and receiver which transmits and receive the ultrasonic wave signal. Pins Explanation: VCC – +5v dc TRIG – To activate sensor weโ€ฆ

Led Blinking and Fading using Arduino

Led Blinking: We will see blinking an normal dc led with arduino. Requiremnts: Arduino UNO Board – 1 No. LED – 1 No. Potentiometer – 1 No. Breadboard – 1 No. Below program is to blink an led with delay of 500msec of time: #define LED 10 void setup() {     pinMode(LED,OUTPUT); } voidโ€ฆ

How to do Arduino Coding for beginners

In Arduino, we can do coding in C and C++ languages. We will discuss how can code in C++ language and some basic predefined functions in Arduino Code structure will be as follow: The above program is an example of led blinking of 1 second. Predefined Functions: Some of the predefined functions are:pinMode(pin,mode);digitalRead(pin);digitalWrite(pin,value);analogRead(pin);analogWrite(pin,value);pulseIn(pin,value);delay(ms); pinMode(pin,mode): Configuresโ€ฆ

Download Arduino

How to download and install Arduino IDE  To download arduino ide go to the official website arduino.cc or alternatively click here Arduino IDE Select the respective operating system. for example click on windows then site will be redirect to the Microsoft account, login with with your credentials again redirect to the play store there clickโ€ฆ

Arduino UNO

Arduino Uno Arduino Uno is a development board. It is flexible with any sensors and modules (for example: Ultrasonic, IR, lm35, GSM module, GPS module, etc.,). Arduino UNO Board Arduino Specifications: Microcontroller is ATmega328 Atmega328 is 28 pin IC Operating Voltage 5V Input Voltage 7-12V (External power supply not USB) Digital I/O Pins are 14ย โ€ฆ