Skip to main content

Le 1s


Le 1s:

Introduction:Le 1s smartphone was launched in Oct 2015. The phone comes with a 5.50-inch touchscreen display with a resolution of 1080 pixels by 1920 pixels at a PPI of 403 pixels per in.. 

The Le 1s is hopped-up by two.2GHz octa-core MediaTek Helio X10 processor and it comes with 3GB of RAM. The phone packs 32GB of internal storage cannot be expanded. As far as the cameras square measure involved, the Le 1s packs a 13-megapixel primary camera on the rear and a 5-megapixel front shooter for selfies. 

The Le 1s runs robot five.0 and is hopped-up by a 3000mAh non removable battery. It measures 151.10 x 74.20 x 7.50 (height x dimension x thickness) and weighs 169.00 grams. 

The Le 1s is a twin SIM (GSM and GSM) smartphone that accepts Micro-SIM and Nano-SIM property choicesembrace Wi-Fi, GPS, Bluetooth, 4G (with support for Band 40 used by some LTE networks in India). Sensors on the phone include Proximity sensing element, Ambient lightweight sensing element, Accelerometer.


du smartphone offers, smartphone site, sustainable smartphone, buy phones, phone usa, mobile usa, phone.com, phone, cool phones, moble phones, company phone, phone website, t mobilw, phones website, unique phones, tmobille, e phones, phone specs, phone site, free mobile phone, free mobile phones, mobil phone, mobile phone.com, phones mobile, mobile phones in usa, mobile phone provider, latest mobile phones in usa, unique mobile phones, mobile phone companys, exclusive mobile phones, o mobile phone, 1 mobile phone, e ink mobile phone, phone mobil, phones mobiles, mobile phones logos, mobile phone with, mobile phone de, mobile phone company logos, mobile phones mobile phones, mobile phones de, le mobile phones, phone le, bluetooth le phones, le million phone, goldvish le million phone, low power bluetooth, lumia bluetooth, low power bluetooth module, bluetooth smartphone, bluetooth lumia, bluetooth 4 devices, bluetooth low power, bluetooth lte, bluetooth 4 range, bluetooth classic, bluetooth 4le, bluetooth latency, bluetooth lte range, bluetooth le, bluetooth 4.0 le, bluetooth le chip, bluetooth le device, bluetooth 4 le, bluetooth le range, bluetooth le 4.0, nexus 5 bluetooth le, bluetooth le ios, what is bluetooth le, what is bluetooth 4.0 le, bluetooth le nexus 5, bluetooth le app, bluetooth le support.


Full phone Specification: 


processor 2.2GHz  octa-core
RAM 3 GB
CAMERA Rear Camera:13 MP, Flash
Secondary 5 MP
Network GSM /4G LTE
Launch Oct-15
Body  Dimensions: 151.10 x 74.20 x 7.50
weight: 169 g
Dual SIM: Sim 1:Nano,Sim 2:Micro
Display 5.5"
Resolution: 1080 pixels by 1920 pixels at a PPI of 403 pixels per inch. 
Memory internal:16/32 GB
Software Android OS, v5.0
Sound Loud Speaker:Yes
3.5mm jack :Yes
Battery  3000 mAh battery
Communicate with another Network Wi-Fi 802.11 a/ b/ g/ n/ ac
Blutooth : v4.1, A2DP
GPS:Yes, with A-GPS, GLONASS/ BDS (market dependant)
NFC:No (market dependent)
USB:microUSB v2.0
Colors white,black,red
Sensors Compass/ Magnetometer: Yes
Proximity sensor:Yes
Accelerometer:Yes
Ambient light sensor: Yes
Gyroscope:No
 

Comments

Popular posts from this blog

OPERATION MANUAL FOR RS232 TO RS422/RS485 VICE-VERSA

INTRODUCTION: Milestone model LD-15U is a RS232,  to RS422/RS485 converter is designed for high-speed data transmission between computer system and or peripherals over Iong distance under high noise conditions. They provide dual line interface per signal. APPLICATIONS: Application for these converters can be for factory automation, Programmable logic controllers,, attendance recording systems, Barcode Readers, remote data transmission, remote terminals, EPABX etc. SPECIFICATIONS: Input: RS232-T×D, R×D, DSR (for control), GND (D9 Female connector) Output: RS422/RS485-Tx+, Tx-, Rx+. Rx-(D9 Male Connector). Each signal is protected by spike suppressor, fuse and has opto-isolation. Selection Switch: 1. Rear side has 2-way'SELECT' switch for selecting 2-Wire or 4-Wire mode in RS422/RS485 application. 2. (Optional) Rear side has 3-way'SELECT' switch for selecting AUTO Mode (No Handshake Signal), DSR+ Mode (+12V Control) and DSR-Model (-_12V Control) for co

Java Server page tutorial part 3: JSP Life Cycle

JSP Life Cycle: A JSP life cycle can be defined as the entire process from its creation till the destruction which is similar to a servlet life cycle with an additional step which is required to compile a JSP into servlet. Following are the steps followed by a JSP Container: ◦ Compilation  ◦ Parsing the JSP.  ◦ Turning the JSP into a servlet.  ◦ Compiling  the servlet.  ◦ Initialization ◦ Execution ◦ Cleanup Architecture: 1.       JSP Compilation: When a browser asks for a JSP, the JSP engine first checks to see whether it needs to compile the page.  If the page has never been compiled, or if the JSP has been modified since it was last compiled, the JSP engine compiles the page. The compilation process involves three steps: ◦ Parsing the JSP. ◦ Turning the JSP into a servlet.  ◦ Compiling the servlet.  2.       JSP Initialization: When a container loads a JSP it invokes the jspInit() method before servicing any requests.  If you need to perform

JSTL-JSP Standard Tag Library part 1

Evolution of JSTL: Java is a flexible, general-purpose programming language, JavaServer pages(JSP) depends on java but hides some of the hard details of writing full- fledged programs.  The JSP Standards Tag Library(JSTL) builds on top of JSP, making it even easier to use. Architecture : In this figure large web applications are designed using java, JSTL, and othe components like databases. In large applications, it's common for requests from web browser to be handled by a java program called a servlet, which interacts with databases and other Java code on the server. The servlet figures out how it wants a response be printed and then forwards the user to the right JSTL page, which takes care of nothing more than presenting information. As JSP grew in popularity, it became clear that different sites' custom tags fell into familiar, frequently used patterns.  For example, many pages needed to loop over data to print tables and lists. Vendors of JSP c