Electronics Engineering World

  • Home
  • Electronics Engineering World

Electronics Engineering World Contact information, map and directions, contact form, opening hours, services, ratings, photos, videos and announcements from Electronics Engineering World, .

 (SCR)            Silicon Controlled Rectifier(SCR) is a kind of semi conductor device used in switching applications. W...
11/10/2020

(SCR)
Silicon Controlled Rectifier(SCR) is a kind of semi conductor device used in switching applications. When a positive voltage is applied to its gate, SCR conducts and latches. It remains conductive even if its gate current is removed. The latched SCR can be switched off by removing its Anode current.

SCR is a solid state switch with two transistors and a resistor inside. Complementary transistors, NPN and PNP form the PNPN junction of SCR. It is a complementary regenerative switch in which the base current of NPN transistor is derived from the PNP transistor. When a positive voltage is applied to the gate of SCR, the NPN transistor switches on and its collector pulls the base of PNP transistor and it conducts. Its collector current feeds the base of NPN transistor and the process repeats. This latches SCR even if the gate current is removed. Thus both the transistors feed each other and hence the process is called “Regenerative switching”.

 's day 2020Engineer's day is celebrated in India on September 15. It is celebrated to mark the birth anniversary of M V...
15/09/2020

's day 2020

Engineer's day is celebrated in India on September 15. It is celebrated to mark the birth anniversary of M Visvesvaraya. He is considered as one of the greatest Indian engineers of India. M Visvesvaraya is known for his outstanding achievements as an engineer like Krishna Raja Sagara dam in the north-west suburb of Mysuru city among others. He had also served as one of the Chief Engineers of the flood protection system for the city of Hyderabad. For his contributions, he was also awarded India's highest honour of Bharat Ratna.

    PULSE GENERATOR IC:~It is 60Hz pulse generator ASIC MM5369 (8 pin DIP package) and the resonant frequency is 3.57954...
17/08/2020

PULSE GENERATOR IC:~

It is 60Hz pulse generator ASIC MM5369 (8 pin DIP package) and the resonant frequency is 3.579545 of the crystal and other components consisting of 60Hz pulse circuit. It is used to provide support with the digital clock frequency of 60Hz. Oscillation frequency in parts of the signal processing by the MM5369, from 1 foot out, the frequency is very stable. The circuit consists of 6 ~ 12V power supply. When the supply voltage less than 6V, the operational reliability worse. Special circumstances, may be the resistance of R3 into the circuit of 100 ohms or so, can the normal operating voltage of the circuit is reduced to 4.5V.

  Electronics, The Importance of Speed Controllers For Flyers.Electronic Speed controllers are a very important part of ...
12/07/2020

Electronics, The Importance of Speed Controllers For Flyers.

Electronic Speed controllers are a very important part of any quad copter drone.they are the complainant that regulated five volts to each brushless motor. It is also Important because its main purpose is to change direct current from the on board battery to alternating current with three wires coming out the AC end. These currents are switched on and off rapidly in order to power the small magnets inside the motor.

Your basic speed controller is composed by several critical parts. The first is a micro controller chip with a code written on it that switches current going out, and makes sure only five volts are exiting. The next key component is a large capacitor that smooths out the current coming from the battery and then out to the motor. On the back of the speed controller is a series of switches that the on board computer turns on and off to make the current flow at a rapid rate or a slow rate. Electronic Speed controllers are responsible for the smooth altitude adjustments the right and left, forward and backward motion.
Altitude is determined by the amount of power to all four motors. Forward motion is achieved by driving the rear props faster than the forward props. Sideways motion is achieved by running the left or right props faster.

The wires coming from ether end are your direct current negative and positive (red and black) and the other end is three wires that are input into opposite sides of the motor that controls the propeller. The other three wires that are bound together and have a plug in clip on them is your radio control and will connect to your receiver.

For even more Electric Speed Controller information and how they work, I will link in here. :-

It is full of information and very helpful.

28/06/2019

- 01 module Based Webserver to Control LED from Webpage :-

ESP series WiFi module becomes very popular among hobbyists and industries for IoT based projects. ESP8266 Wi-Fi transceiver is one of the most used module for IoT based Applications. Here, we are using ESP8266 NodeMCU to connect with ThingSpeak IoT cloud Platform. A NodeMCU have inbuilt Wi-Fi shield so we don’t need to connect an external Wi-Fi shield like we used to do with Arduino. Previously, we have used ESP32 webserver for controlling LED using webpage.

In this project, we are making an IoT based LED control from webpage using ESP8266. Even by doing some small modifications in this same project, we can use this for home automation. For controlling the LED using Webserver we need to create an HTML webpage. The page will have two buttons for turning LED ON and OFF.

*Components Required :-

1. ESP8266 -01 Module
2. LED
3. 250 ohm Resistor
4. Breadboard
5. Jumper Wires

*Code :-

Copy the code below to your Arduino IDE, but don’t upload it yet. You need to make some changes to make it work for you.



// Replace with your network credentials
const char* ssid = "REPLACE_WITH_YOUR_SSID";
const char* password = "REPLACE_WITH_YOUR_PASSWORD";

// Set web server port number to 80
WiFiServer server(80);

// Variable to store the HTTP request
String header;

// Auxiliar variables to store the current output state
String output5State = "off";
String output4State = "off";

// Assign output variables to GPIO pins
const int output5 = 5;
const int output4 = 4;

void setup() {
Serial.begin(115200);
// Initialize the output variables as outputs
pinMode(output5, OUTPUT);
pinMode(output4, OUTPUT);
// Set outputs to LOW
digitalWrite(output5, LOW);
digitalWrite(output4, LOW);

// Connect to Wi-Fi network with SSID and password
Serial.print("Connecting to ");
Serial.println(ssid);
WiFi.begin(ssid, password);
while (WiFi.status() != WL_CONNECTED) {
delay(500);
Serial.print(".");
}
// Print local IP address and start web server
Serial.println("");
Serial.println("WiFi connected.");
Serial.println("IP address: ");
Serial.println(WiFi.localIP());
server.begin();
}

void loop(){
WiFiClient client = server.available(); // Listen for incoming clients

if (client) { // If a new client connects,
Serial.println("New Client."); // print a message out in the serial port
String currentLine = ""; // make a String to hold incoming data from the client
while (client.connected()) { // loop while the client's connected
if (client.available()) { // if there's bytes to read from the client,
char c = client.read(); // read a byte, then
Serial.write(c); // print it out the serial monitor
header += c;
if (c == '\n') { // if the byte is a newline character
// if the current line is blank, you got two newline characters in a row.
// that's the end of the client HTTP request, so send a response:
if (currentLine.length() == 0) {
// HTTP headers always start with a response code (e.g. HTTP/1.1 200 OK)
// and a content-type so the client knows what's coming, then a blank line:
client.println("HTTP/1.1 200 OK");
client.println("Content-type:text/html");
client.println("Connection: close");
client.println();

// turns the GPIOs on and off
if (header.indexOf("GET /5/on") >= 0) {
Serial.println("GPIO 5 on");
output5State = "on";
digitalWrite(output5, HIGH);
} else if (header.indexOf("GET /5/off") >= 0) {
Serial.println("GPIO 5 off");
output5State = "off";
digitalWrite(output5, LOW);
} else if (header.indexOf("GET /4/on") >= 0) {
Serial.println("GPIO 4 on");
output4State = "on";
digitalWrite(output4, HIGH);
} else if (header.indexOf("GET /4/off") >= 0) {
Serial.println("GPIO 4 off");
output4State = "off";
digitalWrite(output4, LOW);
}

// Display the HTML web page
client.println("");
client.println("");
client.println("");
// CSS to style the on/off buttons
// Feel free to change the background-color and font-size attributes to fit your preferences
client.println("html { font-family: Helvetica; display: inline-block; margin: 0px auto; text-align: center;}");
client.println(".button { background-color: ; border: none; color: white; padding: 16px 40px;");
client.println("text-decoration: none; font-size: 30px; margin: 2px; cursor: pointer;}");
client.println(".button2 {background-color: ;}");

// Web Page Heading
client.println("ESP8266 Web Server");

// Display current state, and ON/OFF buttons for GPIO 5
client.println("GPIO 5 - State " + output5State + "");
// If the output5State is off, it displays the ON button
if (output5State=="off") {
client.println("ON");
} else {
client.println("OFF");
}

// Display current state, and ON/OFF buttons for GPIO 4
client.println("GPIO 4 - State " + output4State + "");
// If the output4State is off, it displays the ON button
if (output4State=="off") {
client.println("ON");
} else {
client.println("OFF");
}
client.println("");

// The HTTP response ends with another blank line
client.println();
// Break out of the while loop
break;
} else { // if you got a newline, then clear currentLine
currentLine = "";
}
} else if (c != '\r') { // if you got anything else but a carriage return character,
currentLine += c; // add it to the end of the currentLine
}
}
}
// Clear the header variable
header = "";
// Close the connection
client.stop();
Serial.println("Client disconnected.");
Serial.println("");
}
}

 -420       :-The Grove - Vibration Sensor (SW-420) is a high sensitivity non-directional vibration sensor. When the mod...
23/04/2019

-420 :-

The Grove - Vibration Sensor (SW-420) is a high sensitivity non-directional vibration sensor. When the module is stable, the circuit is turned on and the output is high. When the movement or vibration occurs, the circuit will be briefly disconnected and output low. At the same time, you can also adjust the sensitivity according to your own needs.

:-

1. Non-directional
2. High sensitivity
3. Respond to vibration, tilt
4. Waterproof
5. Compression resistance

:-

Item. Value.
Operating voltage - 3.3V / 5V
Interface - Digital

:-

1. Car, bicycle, motorcycle burglar alarm
2. Game control
3. Vibration detection

  to  -06 :-*>  HC-06 is a Bluetooth module which is designed to work on serial communication. When we paired it with Bl...
19/04/2019

to -06 :-

*> HC-06 is a Bluetooth module which is designed to work on serial communication. When we paired it with Bluetooth working devices such as smarts phones and tablet, its use becomes easier for device users.

*> Its working depends on the wireless system, for sending and receiving data, it uses transceiver module RS 232 TTL. We do not use any cable for sending and receiving data for this module.

*> The main feature of this Bluetooth module is that it can easily achieve serial wireless data transmission protocol.

*> The frequency band at which it operates is 2.4 GHz ISM frequency.

*> HC-06 adopts famous 2.0+EDR Bluetooth standard. The benefit of this standard is that data can be sent in less time interval. It can send data in 0.5 seconds of an interval. By this feature, the workload on Bluetooth chip can be reduced and a large amount of data can be sent in small time.

-06 PINOUT :-

There is four main pinout of HC-06, now we discuss each one by one and their function.

1. Vcc: This pin is used for input supply. At this pin, we provide an input voltage to HC-06.

2. GND: This pin use for ground.

3. TXD: By this pin, data is transmitted by the serial interface.

4. RXD: The purpose of this pin is to receive data by a serial interface.

* of HC-06 :-

These are some features of HC-06.

1. Bluetooth protocol which we connect with it is Bluetooth 2.0+ EDR. 2.0+ EDR is a standard Bluetooth protocol which is used.

2. It is at the Bluetooth class 2 power level.

3. USB protocol used for it is USB v 1.1/2.0.

4. The frequency on which it operates is a 2.4 GHz ISM frequency band.

5. The modulation mode which is used in this module is Gauss frequency Shift Keying.

6. Its transmitting power is ≤ 4 dBm.

7. Its sensitivity rate is ≤-84 dBm at 0.1% Bit Error Rate.

8. The speed at which it transmits data is 2.1 Mbps (Max)/160 kbps (Asynchronous) and 1 Mbps/1 Mbps (Synchronous).

9. The Safety feature which it provides is authentication and encryption.

10. Its supported configuration is based on Bluetooth serial port (major and minor).

11. Its supply voltage is 3.3 V DC and operating current is 50 mA.

12. Its operating temperature is 20 to 55℃.

13. The weight of this module is 4g.

14. The dimensions of this module are 36.5*16 mm.

15. Its Default baud rate is 9600.

16. This module can also be used in SMD.

17. This module is made through ROHS process.

18. Board of this module PIN is half hole size.

19. It based upon CSR BC 04 Bluetooth technology.

20. It has a high-performance wireless transceiver system.

21. It is a Low-Cost module.

22. It has the external 8 Mbit flash.

23. It has a built-in 2.4 GHz antenna, the user does not need a test antenna.

:-

* Bluetooth: - Bluetooth Slave
* Operating Voltage:- 3.3 to 6.0V
* Power consumption in standby:- less than 20uA
* Power consumption when unpaired:- about 30mA
* Power consumption when paired:- about 10mA
* Effective Distance:- about 10 meters (line of sight)
* Dimensions:- 4.03cm x 1.52cm

* of HC-06 :-
These are some applications of HC-06

1. > HC-06 is a Bluetooth module, it is used in different electronic devices such as a mobile, laptop, personal computer, etc.

2. > It can also use in different industrial projects for sending and receiving data, Let’s see pictures of HC-06 use in projects.

** The LED indicate the status of the bluetooth connection: >

– Flashing LED: Bluetooth is not connected.
– LED On: Bluetooth is connected.

**** The default password is 1234

 -   4       :-*TM1637 DISPLAY module is used for displaying numbers. The module consists of four 7- segment displays wo...
12/04/2019

- 4 :-

*TM1637 DISPLAY module is used for displaying numbers. The module consists of four 7- segment displays working together. The module working is based on ‘TM1637’ IC present internally and hence the name ‘TM1637 display’.

*TM1637 Pin Configuration
TM1637 DISPLAY is a four terminal device. We will describe function of each pin below.

Name :-
Description

1. VCC. Connected to power source
2. GND. Connected to ground
3. DIO. Data Input/output pin
4. CLK. Clock pin

Display Features and Specifications :-

1. Two wire interface
2. Eight adjustable luminance levels
3. Grove compatible interface (3.3V/5V)
4. Four alpha-numeric digits
5. Potable size
6. Operating voltage: 3.3V – 5.5V
7. Operating current consumption: 80mA
8. Operating temperature: -10ºC to +80ºC

to use TM1637 Display Module?

*There are many reasons why TM1637 DISPLAY is preferred a few are stated below.

1. The module can be interfaced to any system using only two pins. This is the main reason the module is preferred over other module. The characters to be displayed on the screen can be sent to module using only two pins. With that we can save many I/O pins of system which can be used for other important tasks.

2. Another main reason TM1637 display is preferred is because of its low cost. Although there are other display modules present in the market they cost more.

3. The module design is robust so it can sustain in tough environments and still can perform its function for a long time.

4. The module consumes low power and can be installed in mobile applications.

5. There are many pre-written programs for the module which helps in easy installation.

to use TM1637 Display Module?

1. As mentioned earlier the module communication can only be done using the two pins ‘DIO’ and ’CLK’ respectively. The data is sent to the module or received from the module though these two pins. So the characters to be displayed are sent in the form of serial data through this interface.

2. The module can work on +5V regulated power and any higher voltage may lead to permanent damage. The interface is established as shown in figure. All you need to do is connect DIO and CLK to any of GPIO (General Purpose Input Output) pins of controller and establish serial data exchange through programming.

3. This serial data transmission between controller and module is really complex. So we will be using libraries which are written for the module to help with data transmission. All you need to do is download these libraries which are available in various websites and call them in application programs. Once the header file is included, the controller performs the communication by itself and required display characters will be sent to module.

*The TM1637 IC on the module receives the serial data sent by the controller. The chip drives the 4 display segments according to the code. The segments light up to display the desired character.

:-

1. Power units
2. Time display
3. Stop watch and counters
4. Robotics
5. Servers
6. Computer Peripherals
7. GPS
8. Utility power meters

  to   :-*> ESP8266 is a cost-effective WiFi module that supports both TCP/IP and microcontrollers. It runs at 3V with m...
26/03/2019

to :-

*> ESP8266 is a cost-effective WiFi module that supports both TCP/IP and microcontrollers. It runs at 3V with maximum voltage range around 3.6V. More often than not, it also comes under name ESP8266 Wireless Transceiver.

*> This module stays ahead of its predecessor in terms of processing speed and storage capability. It can be interfaced with the sensors and other devices and requires very little modification and development to make it compatible with other devices.

> Components and GPIO pins interfaced on the little chip are very compact that makes it suitable for hard to reach places.

*> It covers little space and everything is laid out on the PCB board quite precisely that no external circuitry is required to put this device in the running condition.

*> No external RF circuitry is required as this module comes with self-calibrated RF capability that makes it suitable to work under all operating conditions.

*> It is a very useful device for wireless networking, however, there are some limitations i.e. external logic level converter is needed as it doesn’t support 5-3V logic sh***ng.

//Technical Specifications //

*> It is also known as a system-on-chip (SoC) and comes with a 32-bit Tensilica microcontroller, antenna switches, RF balun, power amplifier, standard digital peripheral interfaces, low noise receive amplifier, power management module and filter capability.

*> The processor is based on Tensilica Xtensa Diamond Standard 106Micro and runs at 80 MHz.

*> It incorporates 64 KiB boot ROM, 80 KiB user data RAM and 32 KiB instruction RAM.

*> It supports Wi-Fi 802.11 b/g/n around 2.4 GHz and other features including 16 GPIO, Inter-Integrated Circuit (I²C), Serial Peripheral Interface (SPI), 10-bit ADC, and I²S interfaces with DMA.

*> External QSPI flash memory is accessed through SPI and supports up to 16 MiB and 512 KiB to 4 MiB is initially included in the module.

*> It is a major development in terms of wireless communication with little circuitry. and contains onboard regulator that helps in providing 3.3V consistent power to the board.

*> It supports APSD which makes it an ideal choice for VoIP applications and Bluetooth interfaces.

Pinout :-

ESP8266 comes with eight pins named:

* RX
* VCC (+3.3 V; can handle up to 3.6 V)
* GPIO 0 General-purpose I/O No. 0
* RST, Reset
* CH_PD (Chip power-down)
* GPIO 2 General-purpose I/O No. 2
* TX
* GND

:-

This module is widely used in many projects with the intention of WiFi capability, however following are the main applications.

1. Wireless Web Server

2. Geolocation using ESP8266

3. Pressure Sensors on Railway Tracks

4. Air Pollution Meter

5. Temperature logging system

6. World’s smallest IoT project

7. Wi-Fi controlled robot

8. Humidity and temperature monitoring

9. M2M using ESP8266

  to  -SR04 (     ) :-*>  HC-SR04 is an ultrasonic sensor mainly used to determine the distance of the target object.*> ...
20/03/2019

to -SR04 ( ) :-

*> HC-SR04 is an ultrasonic sensor mainly used to determine the distance of the target object.

*> It measures accurate distance using a non-contact technology – A technology that involves no physical contact between sensor and object.

*> Transmitter and receiver are two main parts of the sensor where former converts an electrical signal to ultrasonic waves while later converts that ultrasonic signals back to electrical signals.

*> These ultrasonic waves are nothing but sound signals that can be measured and displayed at the receiving end.

* -SR04 Pinout & Description :~

*> HC-SR04 contain 4 pins in total.

*> Following table shows the HC-SR04 Pinout & Description:

No. Pin Name Pin Description
1 VCC The power supply pin of the sensor that mainly operates at 5V DC.
2 Trig Pin It plays a vital role to initialize measurement for sending ultrasonic waves. It should be kept high for 10us for triggering the measurement.
3 Echo Pin
This pin remains high for short period based on the time taken by the ultrasonic waves to bounce back to the receiving end.
4 Ground This pin is connected to ground.

* does it work :~

1> The HC-SR04 Ultrasonic (US) sensor is an ultrasonic transducer that comes with 4 pin interface named as Vcc, Trigger, Echo, and Ground. It is very useful for accurate distance measurement of the target object and mainly works on the sound waves.

2> As we connect the module to 5V and initialize the input pin, it starts transmitting the sound waves which then travel through the air and hit the required object. These waves hit and bounce back from the object and then collected by the receiver of the module.

3> Distance is directly proportional to the time these waves require to come back at the receiving end. The more the time taken, more the distance will be.

4> The waves will be generating if the Trig pin is kept High for 10 µs. These waves will travel at the speed of sound, creating 8 cycle sonic burst that will be collected in the Echo pin.

5> The echo pin remains turned on for the time these waves take to travel and bounce back to the receiving end. This sensor is mainly incorporated with Arduino to measure the required distance.

  of  -SR501 :-*>  HC-SR501 is a Passive Infrared (PIR) motion detector sensor.*>  It is used for detection of moving ob...
19/03/2019

of -SR501 :-

*> HC-SR501 is a Passive Infrared (PIR) motion detector sensor.

*> It is used for detection of moving objects, particularly for human.

*> Such, device consists of such component and integrated as a component of system that automatically performs a task or alerts a user motion in that area.

*> They form a vital component of security, home control, energy efficiency, automatic light control and other useful systems.

*> Its module also contain time delay adjustment and trigger selection which allow for fine tuning with your application.

* -SR501 PINOUT :~

* HC-SR501 has total three pinout, which are:

PIN 1: This pin is Vcc, it is used for input voltage. Its input voltage varies from 5V to 12V.

PIN 2: It’s the OUT Pin which is fed to microcontroller.

PIN 3: We have to apply ground on this pin.

* of HC-SR501 :~

*> Every living object with temperature above Absolute Zero (0 Kelvin / -273.15 °C) emit heat energy in the form of infrared radiations.

*> The hotter an object is the more radiation it emits. Human body works on similar pattern and emits heat energy.

*> HC-SR 501 sensor is designed to detect such level of infrared radiation. It basically consists of two main parts:

*> A Pyroelectric Sensor.

"> A special lens called Fresnel lens which focuses the infrared signals onto the pyroelectric sensor.

*> A pyroelectric sensor has two rectangular slots in it, which made of such material which allow infrared radiation to pass through it.

  to   :-*>>  NRF24L01 is a wireless transceiver module (works on SPI Protocol), which is used for sending and receiving...
15/03/2019

to :-

*>> NRF24L01 is a wireless transceiver module (works on SPI Protocol), which is used for sending and receiving data at an operating radio frequency of 2.4 to 2.5 GHZ ISM band.

*>> This transceiver module consists of frequency generator, shock burst mode controller, power amplifier, crystal oscillator modulator and de-modulator.

*>> When transmitting power is zero dBm it uses only 11.3 mA of current, while during receiving mode, it uses 13.5 mA of current.

*>> This module is designed for long distance and fast transmission of data.

*>> It is designed to work through SPI protocol.

*>> Air data transmission rate of NRF24L01 is around 2 Mbps.

*>> Its high air data rate combined with power saving mode makes it very favorable for ultra low power applications.

*>> Its internal voltage regulator controls high power supply rejection ratio and power supply range.

*>> This module has compact size, and can easily be used in confined spaces.
This module is designed to operate on 3.3 volt.

*>> This module has address range of 125 and it can communicate with six other module. By using this feature, we can use it in mesh networks and other networking applications.

*> PINOUT & Description :-

*>> There are main eight pinout of NRF24L01 but it also has some additional pins.
*>> Lets discuss all of its pinout with detail:-
No. Pin Name Description
1 CE This pin is chip enable, it used for to activate RX or TX mode.
2 CSN This pin is used for SPI protocol interfacing
3 SCK This pin is used for serial clock provider.
4 MOSI This is used to get data from master microcontroller device and to send data to slave device.
5 MISO This pin is used to get data from slave device and to send data to master device.
6 IRQ This pin is used for interrupt data.
7 Vdd At this pin we apply 3.3V DC supply.
8 Vss This pin is for ground.
9 XC2 This pin is used for analogue out put crystal providing pin.
10 XC1 This pin is used for analogue input crystal pin.
11 VDD_PA This is pin is used to power amplifier.
12 ANT1 This pin is used for antenna interfacing.
13 ANT2 This pin is also used for antenna interfacing.
14 Vss This are two ground in NRF24L01, this is second one.
15 IREF This pin is used for reference current .
16 DVDD This pin is used for Positive Digital Supply output for de coupling purposes.
17 GROUND This is used for ground.

*> of NRF24L01 :-

These are some features of NRF24L01.

It is single chip GFSK transceiver.

It has complete OSI hardware layer.

It has on air data rate of 1 to 2 Mbps.

Its operation is 124 RF channel.

It is fully compatible with nRF24XX.

It has 20 pin package (QFN 20 4×4 mm).

It uses low cost +/- 60 ppm crystal.

It uses low cost chip inductors and two layer PCB.

Its power supply range is 1.9 to 3.6 V.

Its nominal current is 50 mA. Its operating current is 250 mA.

It uses SPI protocol for communication.

Its baud rate is 250 kbps to 2 Mbps.

Its channel range is 125.

Its Maximum Pipeline or node is six.

It is low cost wireless solution.

Its antenna can send and receive data up to 250 kb and it can cover a distance of 100 meters.

Its sensitivity is 85 dBm at 1 Mbps.

The communication mode it uses is Enhanced Shock Burst TM or Shock Burst TM.

The mode of wiring it follows is Power Down Mode or Standby Mode.

Its operating temperature is -40°C to 85°C and storage is 40°C to 125°C.

It has PA gain of 20 dB and LNA gain of 10 dB.

Its Emission Mode operating current is 115 mA and receive mode operating current is 45 mA.

This module can be easily programmed and can connect with microcontroller.

Its maximum output power is +20 DBm.

Its compact size is 18 mm * 30 mm.

Address


Alerts

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

  • Want your business to be the top-listed Engineering Company?

Share