পোস্টগুলি

emu8086 Lisence key

ছবি
☺ emu8086 Lisence key:) .................................................................................... check this Code: ..................................................................................... .model small .stack 100h .code main proc      mov ah, 1      int 21h     mov bl, al              mov ah, 1     int 21h     mov bh, al          mov ah, 2     mov dl, bl     int 21h          mov ah, 2     mov dl, bh     int 21h          exit:     mov ah, 4ch     int 21h     main endp end main .............................................................................

OLED DISPLAY

 #include <OneWire.h> #include <DallasTemperature.h> #include <DHT.h> #define DHTPIN 12 DHT dht(DHTPIN, DHT11); #include "U8glib.h" U8GLIB_SH1106_128X64 u8g(U8G_I2C_OPT_NO_ACK);   #define BUS 2 // Data wire is connected to Arduino Pin 2 OneWire oneWire(BUS);  // Initialize OneWire bus DallasTemperature s1(&oneWire); // KY001 sensor void ekrana_yaz(float t, float h) {    u8g.setFont(u8g_font_unifont);      // Display for KY001 (s1)   u8g.setPrintPos(0, 10);    u8g.print("PROB  :");   u8g.setPrintPos(65, 10);    u8g.print(s1.getTempCByIndex(0));   u8g.setPrintPos(108, 10);    u8g.print("C");   // Display for DHT11 (temperature)   u8g.setPrintPos(0, 40);    u8g.print("DHT11 :");   u8g.setPrintPos(65, 40);    u8g.print(t);   u8g.setPrintPos(108, 40);    u8g.print("C");   // Display for DHT11 (humidity)   u8g.setPrint...

Amplitude Shift Keying (ASK) Modulation and Demodulation

ছবি
  Experiment Name:  Amplitude Shift Keying (ASK) Modulation and Demodulation Theory Amplitude Shift Keying (ASK) is a form of amplitude modulation that represents digital data as variations in the amplitude of a carrier wave. In ASK, the amplitude of the carrier signal is switched between different levels in response to the digital data signal (usually a binary signal). This means that a binary '1' might be represented by a high amplitude, while a binary '0' might be represented by a low amplitude or zero amplitude.  Mathematical Representation The ASK signal can be represented mathematically as: 𝑠 ( 𝑡 )= 𝐴⋅𝑚 ( 𝑡 ) ⋅ cos ⁡ (2 𝜋𝑓𝑐𝑡 ) s(t)=A ⋅ m(t) ⋅ cos(2 π f ct) where: A is the amplitude of the carrier signal’ m(t) is the modulating signal (binary data), f c- is the frequency of the carrier signal. Demodulation Demodulation is the process of extracting the original information-bearing signal from the modulated carrier wave. In ASK demodu...

Study of PSK Modulation and Demodulation

ছবি
  Experiment Name Study of PSK Modulation and Demodulation   Theory Phase Shift Keying (PSK) is a digital modulation technique where the phase of a carrier signal is changed according to the digital data being transmitted. There are several types of PSK, including Binary Phase Shift Keying (BPSK) and Quadrature Phase Shift Keying (QPSK), with BPSK being the simplest form. Modulation is the process of varying a carrier signal to transmit data, while demodulation is the process of extracting the original information from the modulated carrier signal. In PSK, the binary data (1s and 0s) are used to shift the phase of the carrier signal by 0 or 180 degrees. During demodulation, the received signal is correlated with a reference signal to retrieve the transmitted binary data.     Apparatus Signal generator PSK modulator and demodulator Oscilloscope Function generator Data acquisition system or PC with data processing software Connecting cables ...

Constructing, Designing, and Testing the Forward Bias of a PN Junction Using AutoCAD

ছবি
 Experiment Name: Constructing, Designing, and Testing the Forward Bias of a PN Junction Using AutoCAD Theory: A PN junction is a fundamental building block of semiconductor devices. It is formed by joining P-type and N-type semiconductors together in very close contact. The P-type semiconductor contains an excess of holes (positive charge carriers), while the N-type contains an excess of electrons (negative charge carriers). When a forward bias is applied to a PN junction (the P-side is connected to the positive terminal of a power supply and the N-side to the negative terminal), the potential barrier at the junction decreases, allowing current to flow through the device. This behavior is crucial for the operation of diodes, transistors, and other semiconductor devices. The forward bias condition reduces the width of the depletion region, allowing charge carriers to recombine across the junction and facilitating current flow. This experiment aims to design and test the forward bia...

Study of Frequency Shift Keying (FSK)

ছবি
 Experiment Name:  Study of Frequency Shift Keying (FSK) Theory Frequency Shift Keying (FSK) is a digital modulation technique in which the frequency of the carrier signal is varied in accordance with the digital signal data. In FSK, binary data is transmitted through discrete frequency changes of the carrier wave. The most common types of FSK are Binary FSK (BFSK), where two frequencies represent binary '0' and '1', and Multiple FSK (MFSK), where multiple frequencies are used to represent more than two levels of digital data. Circuit Diagram: Apparatus: Function Generator Frequency Counter Oscilloscope Breadboard Connecting Wires Resistors and Capacitors (as required) FSK Modulator IC Power Supply Procedure: Modulation Assemble the FSK modulator circuit on the breadboard according to the provided circuit diagram. Connect the power supply to the circuit. Ensure correct voltage levels as specified for the FSK modulator IC. Connect a binary data signal to the input of the...

Design, Construction, and Testing of a Full-Wave Rectifier using AutoCAD.

ছবি
 Experiment Name: Design, Construction, and Testing of a Full-Wave Rectifier using AutoCAD. Theory A full-wave rectifier is an electronic device that converts an alternating current (AC) input into a direct current (DC) output. Unlike a half-wave rectifier, which uses only one half of the AC waveform, a full-wave rectifier utilizes both halves, thereby increasing the efficiency of the rectification process. A full-wave rectifier typically consists of a transformer, four diodes arranged in a bridge configuration, and a load resistor. The transformer adjusts the input AC voltage to the desired level. The diodes then rectify the AC signal, allowing current to pass through only during specific portions of the AC cycle, effectively flipping the negative halves of the waveform to positive. The result is a pulsating DC voltage that is further smoothed by a capacitor filter to reduce ripples. Apparatus: Transformer (Step-down, Center-tapped) Four diodes (1N4007) Load resistor (1 kΩ) Capaci...