Skip to main content

SWIPE ELITE POWER WITH 5 5 INCH HD DISPLAY, 4G VOLTE, 4000MAH BATTERY LA...





The swipe is A California based company finally Launched Swipe Elite Power  4G  VoLTE Support today In India.  The latest Swipe Elite Power is now listed on e-



commerce website Flipkart . the pricing of the smartphone has not been revealed as of now.  But It will be starts from Rs. 6,999.



The phone comes with a 5.50-inch touchscreen display with a resolution of 720 pixels by 1280 pixels.

The Swipe Elite Power is powered by 1.1GHz quad-core Qualcomm Snapdragon 210 MSM8909 processor and it comes with 2GB of RAM. The phone packs 16GB of



internal storage that can be expanded up to 32GB via a microSD card.

As far as the cameras are concerned, the Swipe Elite Power packs a 8-megapixel primary camera on the rear and a 5-megapixel front shooter for selfies.

The Swipe Elite Power runs Android 6.0 and is powered by a 4000mAh non removable battery. It measures 156.50 x 77.00 x 8.80 (height x width x thickness) .



This phone is a dual SIM (GSM and GSM) smartphone that accepts Micro-SIM and Regular. Connectivity options include Wi-Fi, GPS, Bluetooth, FM, 3G and 4G (with



support for Band 40 used by some LTE networks in India). Sensors on the phone include Proximity sensor, Accelerometer, Ambient light sensor and Gyroscope.

Comments

Popular posts from this blog

Clap On Off Switch Circuit Using Arduino

  Arduino Clap LED program #define MicAO 8 int ledPin = 13; int clap = 0; long detection_range_start = 0; long detection_range = 0; boolean status_lights = false; void setup() {   pinMode(MicAO, INPUT);   pinMode(ledPin,OUTPUT);   } void loop() { int status_MicAO = digitalRead(MicAO); if (status_MicAO == 0) { if (clap == 0) { detection_range_start = detection_range = millis(); clap++; } else if (clap > 0 && millis()-detection_range >= 50) { detection_range = millis(); clap++; } } if (millis()-detection_range_start >= 400) { if (clap == 2) { if (!status_lights) { status_lights = true; digitalWrite(ledPin, HIGH); } else if (status_lights) { status_lights = false; digitalWrite(ledPin, LOW); } } clap = 0; } }

Bluetooth Robot Car Using Arduino Project Step By Step

Bluetooth Controlled Robot Car Using Arduino Bluetooth Controlled Robot Car Using Arduino Project using LM298n motor deriver and hc-05 bluetooth module step by step tutorial. Code Download :- Click Here Arduino bluetooth controller app Arduino bluetooth controller App

How To Make Radar With Arduino UNO Using Ultrasonic Sensor

  Creating a radar system with an Arduino UNO and an ultrasonic sensor involves a few straight forward steps. First, you'll need to connect the ultrasonic sensor's trigger pin to one of the Arduino’s digital output pins and the echo pin to a digital input pin. Then, write a simple Arduino sketch to send a pulse from the trigger pin and measure the duration of the pulse received on the echo pin. This duration, proportional to the distance of an object from the sensor, can be calculated using the speed of sound. By continuously taking readings and mapping them to distances, you can plot these measurements to visualize objects in your environment, effectively creating a basic radar system. To display the results, you could use a serial monitor or even integrate an LCD display for real-time feedback. Here is the code below ,- //radar.ino #include <Servo.h>  const int trigPin = 9; const int echoPin = 8; long duration; int distance; Servo myServo;  void setup() {   p...