EN / USD
220 Items
 Home
Blog
How to Create a Time-Lapse Animations with Raspberry Pi 4
Time-Lapse Animations with Raspberry Pi 4, RPi4 Camera, Raspberry Pi 4 Camera, Camera in RPi4, Camera in Raspberry Pi 4, Time lapse animation RPi4
Welcome to the next tutorial of our Raspberry Pi programming course. Our previous tutorial looked at how to Interface DS18B20 with Raspberry Pi 4. This tutorial will teach us how to create a time-lapse video with still images and understand how phototimer and FFmpeg work. What is time-lapse? When photographing something over a lengthy period, "time-lapse" comes to mind. A video can be created by mixing the still photos. Plant development may be tracked with time-lapse movies, as can the changing of the seasons. They can also be utilized as low-resolution security cameras. Components Raspberry pi 4B Pi camera Connect to the Raspberry Pi Cameras that can be used with the Raspberry Pi are a bit limi ...
Blog
Dependency Injection in ASP.NET Core
Dependency Injection in ASP.NET Core, Dependency Injection in ASP NET Core, Dependency Injection ASP.NET Core, ASP.NET Core Dependency Injection
Hello friends, I hope you all are doing great. In today's tutorial, we will have a look at Dependency Injection in ASP.NET Core. It's our 7th tutorial in ASP.NET Core series. In previous versions of ASP.NET, dependency injection was not its core element, although we could have achieved it using third party packages i.e. Ninject, StructureMap etc. As ASP.NET Core is built from scratch so it was made sure that Dependency Injection should become its essential part. In our previous lecture, we have created Controller & Model for our core project. Now there's a need to connect them together and that will be done by Dependency Injection. So, let's get started with Dependency Injection in ASP.NET Core: Dependency Injection in ASP.NET Core Dependen ...
Blog
Writing First Code in Python (Hello World)
first code in python, python for beginners, python basics, hello world python, python hello world, python first program, python hello world first code
The "Hello, World!" program is a computer programming classic that has stood the test of time. For beginners, "Hello, World!" is a simple and full first program that introduces the basic syntax of programming languages and can be used to evaluate systems and programming environments. The more you learn about Python, the more you may use it for your own purposes. Data analyst, application developer, or the ability to automate your work processes are all examples of jobs that can be automated. This Python 3 tutorial will show you how to create a simple "Hello, World" program. Python's basic syntax and components include the following: Variable-types Data structures Math operators loops Different function calls Input and output functio ...
Blog
Python Arrays Practice in Jupyter Notebook
Python Arrays Practice in Jupyter Notebook, python arrays, python arrays operations, arrays in python, how to use python arrays
Hello Python programmers! Welcome to the engineering projects where you will find the best learning data in a precise way. We are dealing with Python nowadays, and today, the topic of discussion is the arrays in the language. We have seen different data types in Python and discussed a lot about them in detail till now. In the previous lecture, we saw the details of the procedures in dictionaries. There are certain ways to store the data in the different types of sequences, and we have highlighted a lot about almost all of them. It is time to discuss the arrays, but before this, it is better to understand the objectives of this lecture: Introduction to arrays Difference between contiguous and non-contiguous memory locations One-dimensional arrays Functions in arrays What are Arra ...
Blog
Interface RFID Module RC522 with Raspberry Pi 4
How To Interface An Rfid With Raspberry Pi 4, RFID Raspberry Pi 4, RFID RC522 Rpi4, RPi4 RC522, RPi4 RFID RC522
We're glad you could join us for another lesson in our comprehensive Raspberry Pi programming guide. I will show you how to install and connect the RFID card chip to your Raspberry Pi through step-by-step instructions. Modern security systems would only be complete using radio frequency (RFID) devices. To control who can enter a facility or which rooms they can access, RFID chips and card readers are employed. The RFID card's unique identification number can be read wirelessly with a wall-mounted RFID reader. A door will only unlock and allow entry if the RFID card's unique identification number matches a list of approved cards. It's fun to tinker with this circuit, and it may be used in many other applications, from opening locks to taking a ...
Blog
Introduction to Namespaces in C#
Introduction to Namespaces in C#,Namespaces in C#,Namespaces C#, c# Namespaces
Hello friends, I hope you all are doing great. In today's tutorial, we are gonna have a look at detailed Introduction to Namespaces in C#. Namespaces are considered as libraries in C#. If you have worked on any other programming language then you must be aware of the term library which contains all classes & methods etc. In C#, this functionality is performed by namespaces. In 12th tutorial, we have seen Introduction to Methods and in 13th part, we have seen Classes in C#. Methods are simple storage units and stores code only, Classes are slightly bigger storage units and can store methods. Now Namespaces are giant storage units, which can save anything in them i.e. classes, methods, namespaces etc. So, let's have a look at them in detail: Int ...
Blog
Introduction to Nucleo Development Board
Introduction to STM32 Microcontrollers, STM32 Family, STM32 Mainstream, STM32 Ultra-Low-Power, STM32 High-Performance, STM32 Wireless, The Nucleo Development Board, STM32 Nucleo-64 parts, STM32 Nucleo-64 connectors, Setting-Up the Tool-Chain, First Project in STM using STM32CubeIDE, Blinking LED, Steps to generate the config. files from STM32CubeMX, Creating a new STM32CubeMX project, User Code Blinking Led, Data type C programs
To become familiar with the world of microcontrollers it is necessary to have a development board (also known as a kit), which generally allows you to start working on it easily. Fortunately, the ST provides a wide portfolio of development boards. In this guide, we will describe and use the Nucleo board. The Nucleo has been introduced a few years ago and its line is divided into three main groups: Nucleo-32; Nucleo-64; Nucleo-144. Nucleo-32 Development Board The number of pins available, so the package, gives the name to the board: Nucleo-32 uses an LQFP-32 package; Nucleo-64 and LQFP-64; Nucleo-144 an LQFP-144. The Nucleo-64 was the first line introduced and counts 16 different boards. The Nucleo boards have interesting advantages compa ...
Blog
C# ListBox Control
c# Listbox control, c# listbox, csharp listbox, listbox in c#, listbox c#
Hey, everyone, I hope you all are doing great. In this article, I am going to explain C# ListBox Control. In the previous article, we have discussed the C# ComboBox Control. C# ListBox is quite similar to ComboBox. C# ListBox is just a simple list, which is showing the data. The user can easily select an option from the list by clicking on any of its items. Some features are common in ComboBox and ListBox. Such as the data is inserted like items. Insertion, deletion, and selection are also same. We will insert the values, then after performing the selection, we will delete them. We will also focus on the text styling, colors and events handling etc. So, let's get started with C# ListBox Control: C# ListBox Control There are multiple functional ...
Blog
Types and Operations on Array using NumPy in Python
Types and Operations on Array using NumPy
Hello students! Welcome to the next episode of NumPy, where we are working more on arrays in detail. NumPy is an important library for Python, and for concepts like integer arrays, it has many useful built-in functions that help programmers a lot. In the previous lecture, the installation and basic functions were discussed and this time, our focus is on the general operations and types of arrays that usually the programmers need during the coding. It is an interesting and basic lecture, and you will learn the following concepts in this lecture: What are some important types of arrays? Why are we using NumPy for arrays? What are zero arrays? What is the random array? How can we use the ones array using NumPy? Is it easy to perform the identity array in Numpy? Practically perform the ...
Blog
Kohonen’s Self-Organizing Neural Network
Kohonen’s Self organizing Neural Network, Kohonen neurla network, Kohonen’s Neural Network, Kohonen’s maps
Hi there! I hope you are having a great day. The success of the field of deep learning is due to its complex and advanced neural networks. These networks can be broadly divided into traditional and modern neural networks. We have seen the details of traditional neural networks, and in the previous session, the basic introduction of modern neural networks and the details of their features were discussed. Today, we will talk about one of the most famous modern neural networks, the Kohonen Self-Organized Neural Network.  Modern neural networks are more organized and developed than traditional neural networks, but that does not make traditional neural networks less efficient than modern ones. All the networks are introduced for specific tasks, and this is one of the main reasons behind t ...