EmbedGyan Private Limited

EmbedGyan Private Limited we have a hybid team that specialises in develop

We are a Technology company from India and work in the field of Embedded systems and automation with ability to facilitate/ enable customers to design, manufacture and produce products based on controllers.

In this guide, you’ll learn how to send ESP8266 notifications to Pushover. Pushover is a notification service that integ...
03/06/2023

In this guide, you’ll learn how to send ESP8266 notifications to Pushover. Pushover is a notification service that integrates with many applications. You can send push notifications to all of your devices and multiple users. You can manage your notifications with levels of priority, set silent hours, and set different sounds depending on the notification. Table of Contents Introducing Pushover App…...

In this guide, you’ll learn how to send ESP8266 notifications to Pushover. Pushover is a notification service that integrates with many applications. You can send push notifications to all of your …

The Raspberry Pi 4 Model B and most recent versions of the Raspberry Pi have a double row of 40 GPIOs (General Purpose I...
31/05/2023

The Raspberry Pi 4 Model B and most recent versions of the Raspberry Pi have a double row of 40 GPIOs (General Purpose Input/Output Pins) that allow you to connect electronic components like LEDs and sensors. Some pins have specific functions like providing power, I2C, SPI, and UART communication protocols or PWM. In this guide, we’ll take a look at the Raspberry Pi GPIOs and their functions....

The Raspberry Pi 4 Model B and most recent versions of the Raspberry Pi have a double row of 40 GPIOs (General Purpose Input/Output Pins) that allow you to connect electronic components like LEDs a…

In this guide, you’ll learn how to set the Raspberry Pi GPIOs as digital outputs and control them using a Python program...
28/05/2023

In this guide, you’ll learn how to set the Raspberry Pi GPIOs as digital outputs and control them using a Python program. As an example, we’ll show you how to control an LED connected to one of the Raspberry Pi GPIOs using the gpiozero interface. Table of Contents Throughout this tutorial, we’ll cover the following main topics: Introducing the Raspberry Pi GPIOs…...

In this guide, you’ll learn how to set the Raspberry Pi GPIOs as digital outputs and control them using a Python program. As an example, we’ll show you how to control an LED connected to one of the…

In this article, we’ll share nine different methods to log and save data with the ESP32. Would you like to monitor a spe...
28/05/2023

In this article, we’ll share nine different methods to log and save data with the ESP32. Would you like to monitor a specific sensor with the ESP32 and keep track of the data over time? Would you like to save all your data records but you don’t know how to do it or which method to use? Here we’ll show you different ways to save data permanently with the ESP32....

In this article, we’ll share nine different methods to log and save data with the ESP32. Would you like to monitor a specific sensor with the ESP32 and keep track of the data over time? Would you l…

This article is a getting-started guide for the Raspberry Pi Pico W microcontroller board. It was built around the RP204...
27/05/2023

This article is a getting-started guide for the Raspberry Pi Pico W microcontroller board. It was built around the RP2040 chip, provides many GPIOs to connect peripherals, and can be programmed using C/C++ programming language or Micropython. Let’s explore the features of the Raspberry Pi Pico and learn how to run your first program. Introducing the Raspberry Pi Pico The Raspberry Pi Pico is a low-cost microcontroller board developed around the RP2040 chip by the Raspberry Pi Foundation....

This article is a getting-started guide for the Raspberry Pi Pico W microcontroller board. It was built around the RP2040 chip, provides many GPIOs to connect peripherals, and can be programmed usi…

In this guide, you’ll learn how to generate PWM signals on the Raspberry Pi GPIOs. As an example, we’ll show you how to ...
27/05/2023

In this guide, you’ll learn how to generate PWM signals on the Raspberry Pi GPIOs. As an example, we’ll show you how to dim the brightness of an LED by changing the duty cycle over time. Generating PWM signals can also be useful to control other peripherals like servo motors. Table of Contents Throughout this tutorial, we’ll cover the following main topics:...

In this guide, you’ll learn how to generate PWM signals on the Raspberry Pi GPIOs. As an example, we’ll show you how to dim the brightness of an LED by changing the duty cycle over time. Generating…

This tutorial shows how to install the Mosquitto Broker for MQTT communication on a Raspberry Pi board. Updated 10 June ...
11/07/2022

This tutorial shows how to install the Mosquitto Broker for MQTT communication on a Raspberry Pi board. Updated 10 June 2022 You can also run Mosquitto MQTT broker in the cloud. Running the MQTT Mosquitto Broker in the cloud allows you to connect several ESP32/ESP8266 boards and other IoT devices from anywhere using different networks as long as they have an Internet connection....

This tutorial shows how to install the Mosquitto Broker for MQTT communication on a Raspberry Pi board. Updated 10 June 2022 You can also run Mosquitto MQTT broker in the cloud. Running the MQTT Mo…

This guide shows how to install InfluxDB 2 on Raspberry Pi. InfluxDB is an open-source time-series database (TSDB). So, ...
11/07/2022

This guide shows how to install InfluxDB 2 on Raspberry Pi. InfluxDB is an open-source time-series database (TSDB). So, it is ideal to store sensor data with timestamps over a determined period of time. In previous tutorials, we showed you how to use InfluxDB cloud and send data from the ESP32 and ESP8266. The InfluxDB free cloud plan has some limitations that might not be suitable for your projects like the maximum 30-day data retention....

This guide shows how to install InfluxDB 2 on Raspberry Pi. InfluxDB is an open-source time-series database (TSDB). So, it is ideal to store sensor data with timestamps over a determined period of …

Learn how to use WiFiMulti with the ESP32. It allows you to register multiple networks (SSID/password combinations). The...
11/07/2022

Learn how to use WiFiMulti with the ESP32. It allows you to register multiple networks (SSID/password combinations). The ESP32 will connect to the Wi-Fi network with the strongest signal (RSSI). If the connection is lost, it will connect to the next network on the list. Using WiFiMulti in your ESP32 IoT projects is useful if your board can have access to more than one Wi-Fi network....

Learn how to use WiFiMulti with the ESP32. It allows you to register multiple networks (SSID/password combinations). The ESP32 will connect to the Wi-Fi network with the strongest signal (RSSI). If…

ESP32 with Load Cell and HX711 Amplifier (Digital Scale) In this guide, you’ll learn how to create a scale with the ESP3...
11/07/2022

ESP32 with Load Cell and HX711 Amplifier (Digital Scale) In this guide, you’ll learn how to create a scale with the ESP32 using a load cell and the HX711 amplifier. First, you’ll learn how to wire the load cell and the HX711 amplifier to the ESP32 to build a scale. Then, we’ll show you how to calibrate the scale, and a simple example to get the weight of objects....

ESP32 with Load Cell and HX711 Amplifier (Digital Scale) In this guide, you’ll learn how to create a scale with the ESP32 using a load cell and the HX711 amplifier. First, you’ll learn how to wire …

The ESP32 contains a Serial Peripheral Interface Flash File System (SPIFFS). SPIFFS is a lightweight filesystem created ...
22/05/2022

The ESP32 contains a Serial Peripheral Interface Flash File System (SPIFFS). SPIFFS is a lightweight filesystem created for microcontrollers with a flash chip, which is connected by SPI bus, like the ESP32 flash memory. In this article we’re going to show how to easily upload files to the ESP32 filesystem using a plugin for Arduino IDE. Note: if you have an ESP8266 board, read: Install ESP8266 NodeMCU LittleFS Filesystem Uploader in Arduino IDE....

The ESP32 contains a Serial Peripheral Interface Flash File System (SPIFFS). SPIFFS is a lightweight filesystem created for microcontrollers with a flash chip, which is connected by SPI bus, like t…

This guide will get you started quickly with InfluxDB using the ESP32 board. InfluxDB is an open-source time series data...
22/05/2022

This guide will get you started quickly with InfluxDB using the ESP32 board. InfluxDB is an open-source time series database (TSDB). So, it is ideal to store sensor data with timestamps over a determined period of time. In this tutorial, you’ll set up an InfluxDB bucket to save data, and you’ll learn how to save ESP32 data to the database. InfluxDB also offers different ways to visualize and organize your data (dashboards, charts, tables, gauges, etc)....

This guide will get you started quickly with InfluxDB using the ESP32 board. InfluxDB is an open-source time series database (TSDB). So, it is ideal to store sensor data with timestamps over a dete…

Address

Noida
201301

Alerts

Be the first to know and let us send you an email when EmbedGyan Private Limited posts news and promotions. Your email address will not be used for any other purpose, and you can unsubscribe at any time.

Contact The Business

Send a message to EmbedGyan Private Limited:

Share