EN / USD
939 Items
 Home
Blog
Introduction to LM318
Introduction to LM318, LM318 Pinout, LM318basics, basics of LM318, getting started with LM318, how to get start with LM318, how to use LM318, LM318 proteus, proteus LM318, LM318 proteus simulation
Hello everyone! I hope you all will be absolutely fine and having fun. Today, I am going to give a detailed discussion on Introduction to LM318. LM 318 is basically a high speed Operational Amplifier (Op-amp). It provides higher slew rates and wide range of bandwidth. LM-318 has processing speed 10 times higher than the common operational amplifier. It has unity gain frequency compensation. External components are not required for its operation. Feed forward compensation increases the slew rate up to 150 V/us for inverting applications. It also doubles the bandwidth as compared to the earlier. In LM 318, in order obtain the high stability level we overcompensation can be used with amplifier. LM 318 setting time can be reduced by adding an extern ...
Blog
DC Motor Speed Control using Arduino
DC motor speed control using Arduino, Control speed of the DC motor with arduino, How to control the speed of the DC motor, using Arduino, Arduino DC motor speed control, Controlling the speed of the DC motor with Arduino
Hello friends! I hope you all will be absolutely fine and having fun. Today, I am going to share my knowledge about how can you make a simple program for DC Motor Speed Control using Arduino UNO. In my previous tutorial, DC Motor Direction Control using Arduino, I have just controlled the DC motor in both directions at constant speed using Arduino. I have also performed the DC Motor Direction Control in Matlab by sending different commands through serial port from Matlab and LabVIEW to the Arduino and then controlled the direction of rotation of DC motor. But in this tutorial I will rotate the same DC motor at variable speed in both clockwise and anti clockwise directions. In my previous tutorial, we have seen that input pins In1 & In2 of mo ...
Blog
Byte and Byte Array Sequence in Python
Byte and Byte Array Sequence in Python, byte sequence in python, byte array sequence in python
Hey pupils! Welcome to the new tutorial on deep learning, where we are in the section on Python learning. In the previous lecture, we were discussing the tuple data type, which is a sub-class of sequences. In the present lecture, the discussion will be about the byte sequence and byte array. The whole discussion is cleared with the help of practical implementation in TensorFlow by using simple and easy codes. If you understand the concepts of list and tuple, then this lecture will be easy for you. Yet, before going into the details of this topic, you must know the highlights of the content discussed in this lecture: What is the byte method in Python?  How can you use byte in TensorFlow? What are some examples of bytes? Give examples of error handling in bytes. How can you convert in ...
Blog
Introduction to Structures in C#
Introduction to Structures in C#, Structures in C#, Structures C#, c# Structures, c# struct, struct c#
Hello friends, I hope you all are doing great. In today's tutorial, we will have a detailed Introduction to Structures in C#. It's our 17th tutorial in C# series. Structures are quite similar to classes but have few differences as well, which we will discuss today. We have discussed C# Classes in 13th lecture, so you must read it once as we will use that knowledge in today's lecture as well. So, let's get started with Introduction to Structures in C#: Introduction to Structures in C# Structure in C# is a value type data type, created by using keyword struct, and can have fields, methods, properties, operators etc. just as in C# Classes. Main difference between C# Class & Structure is that C# Class is a Reference Type Date type while C# St ...
Blog
Introduction to TL431
TL431 Pinout, Introduction to TL431 Pinout, getting started with TL431 Pinout, how to use TL431 Pinout, TL431 Pinout proteus, proteus TL431 Pinout, use TL431 Pinout, how to get start with TL431 Pinout
Hello everyone! I hope you all will be absolutely fine and having fun. Today, I am going to explain you about Introduction to TL431. TL 431 are programmable shunt regulator diodes having three terminals. Its a low temperature coefficient diode and can be programmed from reference voltage (Vref) up to 36V when it is attached to 2 external resistors. TL 431 has an impedance of 0.22 ohms and has a current range from 1mA to 100mA. In several different applications zener diodes can be replaced with TL 431 diode due to its efficiency. These applications include power supplies, Operational Amplifier (Op-amp) circuitry and digital voltmeters. TL-431 can either be used as positive or as negative voltage reference because it operates as shunt regulator. T ...
Blog
Rain Sensor Library for Proteus
Rain Sensor Library for Proteus, rain sensor in proteus, rain sensor proteus, rain sensor simulation in proteus, rain sensor proteus
Hello friends, I hope you all are doing great. In today's tutorial, I am going to share a new Rain Sensor Library for Proteus. I have got a lot of requests for designing this sensor. So finally it has been designed by our team and is ready to use in your Proteus Simulations. Rain Sensor, as the name shows, is used for detection of rain and is common sensor used in Embedded Systems Projects. Both analog and digital rain sensors are available these days but we have only designed the digital Rain Sensor. It will give digital output and its output will be HIGH when there's rain and will remain LOW if it won't detect any rain. As Proteus is a simulation software and we can't actually bring the rain so that's why I have placed a TestPin. If you apply H ...
Blog
Introduction to LM339
Introduction to LM339, getting started with LM339, how to use LM339 for the first time, how to start with L339, LM339 proteus, Proteus LM339, LM339 Proteus diagram
Hello everyone! I hope you all will be absolutely fine and having fun. Today, I am going to share my knowledge about Introduction to LM339. LM339 belongs to the family of devices having 4 independent voltage comparators. Each comparator is designed in such a way that it is capable of operating from a single power source over a wide range of power supplies. It can also operate for split power supplies. There is a unique characteristic of comparators, Input Common-Mode Voltage Range (ICMR) includes a ground even when it is operating from a single power supply voltage. Basically, LM339 is a comparator IC having four built-in comparators. The basic purpose of a comparator is to rotate the signal between analog and digital domains. At its input termina ...
Blog
Middleware in ASP.NET Core
Middleware in ASP.NET Core, Middleware in ASP NET Core, middleware components in asp net core, asp.net core middleware
Hello friends, I hope you all are doing great. In today's tutorial, we are going to have a look at what are Middleware in ASP.NET Core. It's our 3rd tutorial in ASP.NET Core series. In order to understand the Middleware, we have to open the Startup.cs file present in Solution Explorer. In our previous lecture, we have discussed the Code in Startup.cs and I have told you thhat we will discuss the Configure method later, so now we have to understand that code first. So, first let's define middleware components and then have a look at that code: Middleware in ASP.NET Core Middleware in ASP.NET Core are simple software components used to control HTTP requests and handle both incoming requests as well as outgoing responses. Each middleware is a se ...
Blog
ViewModels in ASP.NET Core
ViewModels in ASP.NET Core,ViewModels ASP.NET Core, asp.net core ViewModels, ViewModels in ASP NET Core
Hello friends, I hope you all are doing great. In today's tutorial, we will have a look at How to Create ViewModels in ASP.NET Core. It's our 9th tutorial in ASP.Net Core series. We have already covered Controllers, Models & Views in our previous lectures and now it's time to understand this fourth pillar of MVC architecture. ViewModel is not an integral part of MVC architecture and can be ignored in simple projects but in complex applications, we have to use ViewModel as it adds flexibility in the project. So, let's have a look at ViewModels in ASP.NET Core: ViewModels in ASP.NET Core ViewModels in ASP.NET Core ( also called Data Transfer Objects [DTO] ) are used to send Models data from Controll ...
Blog
Data Structures in C#
C# Programming Language, C#, Data Structures in C#, C# Data Structures, Abstract Data Type, types of structures in C#, Primitive Data Structure
Are you here to learn about the Data Structures in the C#? If so, then you will learn everything in no time with our article. C# programming language is undoubtedly the most used language in the entire world. It has exceptional features and applications that benefit us a lot. In fact, the program where I am typing the article (Microsoft Word) is also an application of the C# programming language. But, how is C# related to Data Structures? Do not worry. This article contains everything that you need to know about the Data Structures in the C#. So, keep reading to find out! C# Programming Language: An Overview C# is a Microsoft-developed, overall object-intended coding language that has been certified by the ECMA and the Global Standards Organizatio ...