├── .gitignore ├── .prettierrc.json ├── README.md ├── config-overrides.js ├── package-lock.json ├── package.json ├── public ├── _redirects ├── favicon.ico ├── index.html ├── manifest.json └── whyiphonex.jpg ├── src ├── App.js ├── devices.js ├── devices │ ├── alcatel.js │ ├── apple.js │ ├── google.js │ ├── htc.js │ ├── huawei.js │ ├── lenovo.js │ ├── lg.js │ ├── motorola.js │ ├── nokia.js │ ├── oneplus.js │ ├── samsung.js │ ├── sony.js │ └── xiaomi.js ├── dxo-marks.js ├── filters.js ├── get-filtered-devices.js ├── index.css ├── index.js ├── mixins.js ├── models │ └── ToggleArray.js ├── state-utils.js └── styles.js └── yarn.lock /.gitignore: -------------------------------------------------------------------------------- 1 | # See https://help.github.com/ignore-files/ for more about ignoring files. 2 | 3 | # dependencies 4 | /node_modules 5 | 6 | .idea 7 | 8 | # testing 9 | /coverage 10 | 11 | # production 12 | /build 13 | 14 | # misc 15 | .DS_Store 16 | .env.local 17 | .env.development.local 18 | .env.test.local 19 | .env.production.local 20 | 21 | npm-debug.log* 22 | yarn-debug.log* 23 | yarn-error.log* 24 | -------------------------------------------------------------------------------- /.prettierrc.json: -------------------------------------------------------------------------------- 1 | { 2 | "useTabs": false, 3 | "tabWidth": 2, 4 | "singleQuote": true, 5 | "trailingComma": "none", 6 | "jsxBracketSameLine": false, 7 | "semi": true 8 | } 9 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | Source code for [why-iphone-x.netlify.com](http://why-iphone-x.netlify.com) 2 | Made by [@thekitze](https://twitter.com/thekitze) 3 | 4 | ## Devices 5 | The list of devices was last updated a few months ago. 6 | If you want to edit the devices or add a new device, [they're here](https://github.com/kitze/phone-browser/tree/master/src/devices). 7 | 8 | ## Filtering logic 9 | 10 | You can find the [filtering logic here](https://github.com/kitze/phone-browser/blob/master/src/filters.js). 11 | 12 | ## Camera DXO Marks 13 | 14 | You can find the [DXO marks here](https://github.com/kitze/phone-browser/blob/master/src/dxo-marks.js). 15 | -------------------------------------------------------------------------------- /config-overrides.js: -------------------------------------------------------------------------------- 1 | const { injectBabelPlugin } = require('react-app-rewired'); 2 | const rewireEslint = require('react-app-rewire-eslint'); 3 | 4 | module.exports = function override(config, env) { 5 | config = injectBabelPlugin('babel-plugin-transform-decorators-legacy', config); 6 | 7 | config = injectBabelPlugin('babel-plugin-glamorous-displayname', config); 8 | 9 | config = injectBabelPlugin('babel-plugin-preval', config); 10 | 11 | config = injectBabelPlugin('babel-plugin-emotion', config); 12 | 13 | config = injectBabelPlugin('babel-plugin-transform-do-expressions', config); 14 | config = rewireEslint(config, env); 15 | return config; 16 | }; 17 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "iphone-x", 3 | "version": "0.1.0", 4 | "private": true, 5 | "dependencies": { 6 | "emotion": "^9.1.1", 7 | "facepaint": "^1.2.1", 8 | "lodash": "^4.17.5", 9 | "modern-normalize": "^0.4.0", 10 | "react": "^16.3.1", 11 | "react-dom": "^16.3.1", 12 | "react-emotion": "^9.1.1", 13 | "react-scripts": "1.1.4", 14 | "superagent": "^3.8.2" 15 | }, 16 | "scripts": { 17 | "start": "react-app-rewired start", 18 | "build": "react-app-rewired build", 19 | "test": "react-app-rewired test --env=jsdom", 20 | "eject": "react-app-rewired eject" 21 | }, 22 | "devDependencies": { 23 | "babel-plugin-emotion": "^9.1.0", 24 | "babel-plugin-glamorous-displayname": "^2.2.0", 25 | "babel-plugin-preval": "^1.6.4", 26 | "babel-plugin-transform-decorators-legacy": "^1.3.4", 27 | "babel-plugin-transform-do-expressions": "^6.22.0", 28 | "react-app-rewire-eslint": "^0.2.3", 29 | "react-app-rewired": "^1.5.0" 30 | } 31 | } 32 | -------------------------------------------------------------------------------- /public/_redirects: -------------------------------------------------------------------------------- 1 | /* /index.html 200 -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kitze/phone-browser/8bdb491169323f343973deb0eef055b3f0f70648/public/favicon.ico -------------------------------------------------------------------------------- /public/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | Why iPhone X 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | Why iPhone X 35 | 36 | 37 | 38 | 41 |
42 | 43 | 44 | -------------------------------------------------------------------------------- /public/manifest.json: -------------------------------------------------------------------------------- 1 | { 2 | "short_name": "React App", 3 | "name": "Create React App Sample", 4 | "icons": [ 5 | { 6 | "src": "favicon.ico", 7 | "sizes": "64x64 32x32 24x24 16x16", 8 | "type": "image/x-icon" 9 | } 10 | ], 11 | "start_url": "./index.html", 12 | "display": "standalone", 13 | "theme_color": "#000000", 14 | "background_color": "#ffffff" 15 | } 16 | -------------------------------------------------------------------------------- /public/whyiphonex.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kitze/phone-browser/8bdb491169323f343973deb0eef055b3f0f70648/public/whyiphonex.jpg -------------------------------------------------------------------------------- /src/App.js: -------------------------------------------------------------------------------- 1 | import React, { Component } from 'react'; 2 | 3 | //styles 4 | import * as S from './styles'; 5 | 6 | //devices 7 | import allDevices from './devices'; 8 | 9 | //utils 10 | import { filters } from './filters'; 11 | import { getFilteredDevices } from './get-filtered-devices'; 12 | import { toggleInArray } from './state-utils'; 13 | import map from 'lodash/map'; 14 | 15 | class App extends Component { 16 | state = { 17 | pickedFilters: [] 18 | }; 19 | 20 | toggleId = id => this.setState(toggleInArray('pickedFilters', id)); 21 | 22 | render() { 23 | const { pickedFilters } = this.state; 24 | const filteredDevices = getFilteredDevices(allDevices, pickedFilters); 25 | 26 | return ( 27 | 28 | 29 | 30 | 31 | Made by 32 | 33 | @thekitze 34 | 35 | 36 | 37 | Why iPhone X? 38 | 39 | 40 | If you check all of them, there will be only one phone left. 41 | 42 | 43 | 44 | {map(filters, (filter, id) => ( 45 | this.toggleId(id)} 49 | > 50 | {filter.name} 51 | 52 | ))} 53 | 54 | 55 | 56 | 57 | 58 | {filteredDevices.map(device => ( 59 | 63 | {device.DeviceName} 64 | 65 | ))} 66 | 67 | 68 | 69 | ); 70 | } 71 | } 72 | 73 | export default App; 74 | -------------------------------------------------------------------------------- /src/devices.js: -------------------------------------------------------------------------------- 1 | //preval 2 | const apple = require('./devices/apple'); 3 | const sony = require('./devices/sony'); 4 | const htc = require('./devices/htc'); 5 | const google = require('./devices/google'); 6 | const lg = require('./devices/lg'); 7 | const oneplus = require('./devices/oneplus'); 8 | const samsung = require('./devices/samsung'); 9 | const xiaomi = require('./devices/xiaomi'); 10 | const motorola = require('./devices/motorola'); 11 | const alcatel = require('./devices/alcatel'); 12 | const nokia = require('./devices/nokia'); 13 | const lenovo = require('./devices/lenovo'); 14 | const huawei = require('./devices/huawei'); 15 | 16 | const devices = [ 17 | ...apple, 18 | ...sony, 19 | ...htc, 20 | ...google, 21 | ...lg, 22 | ...oneplus, 23 | ...samsung, 24 | ...xiaomi, 25 | ...nokia, 26 | ...lenovo, 27 | ...alcatel, 28 | ...motorola, 29 | ...huawei 30 | ]; 31 | 32 | const watchOs = ['tizen', 'watch', 'wear']; 33 | 34 | const deviceNames = [ 35 | 'smartwatch', 36 | 'tablet', 37 | 'watch', 38 | 'tab active', 39 | 'ipad', 40 | 'galaxy tab', 41 | 'lenovo tab', 42 | 'yoga tab' 43 | ]; 44 | 45 | //make sure to include these devices 46 | const exceptions = ['galaxy s9', 'oneplus 6', 'huawei p20 pro']; 47 | 48 | const filteredDevices = devices.filter(device => { 49 | const os = device && device.os ? device.os.toLowerCase() : ''; 50 | const name = 51 | device && device.DeviceName ? device.DeviceName.toLowerCase() : ''; 52 | const status = device && device.status ? device.status.toLowerCase() : ''; 53 | 54 | if (exceptions.some(e => name.includes(e))) { 55 | return true; 56 | } 57 | 58 | //ignored smartwatcheds, keep exceptions, remove rumored or cancelled devices 59 | const notSmartwatch = watchOs.every(o => !os.includes(o)); 60 | const notIgnoredName = deviceNames.every(n => !name.includes(n)); 61 | const notRumored = !status.includes('rumored'); 62 | const notCancelled = !status.includes('cancelled'); 63 | 64 | return notSmartwatch && notIgnoredName && notRumored && notCancelled; 65 | }); 66 | 67 | module.exports = filteredDevices; 68 | -------------------------------------------------------------------------------- /src/devices/apple.js: -------------------------------------------------------------------------------- 1 | module.exports = [ 2 | { 3 | DeviceName: 'Apple Watch Edition Series 3', 4 | Brand: 'Apple', 5 | technology: 'GSM / HSPA / LTE', 6 | gprs: 'Yes', 7 | edge: 'Yes', 8 | announced: '2017, September', 9 | status: 'Available. Released 2017, September', 10 | dimensions: '42.6 x 36.5 x 11.4 mm (1.68 x 1.44 x 0.45 in)', 11 | weight: '46.4 g (1.62 oz)', 12 | sim: 'Electronic SIM card (Apple e-SIM)', 13 | type: 'AMOLED capacitive touchscreen, 16M colors', 14 | size: '1.65 inches, 8.6 cm2 (~55.1% screen-to-body ratio)', 15 | resolution: '390 x 312 pixels (~303 ppi density)', 16 | display_c: '- 3D Touch display\r\n - 1000 nits', 17 | card_slot: 'No', 18 | camera_c: 'No', 19 | alert_types: 'Vibration; Ringtones', 20 | loudspeaker_: 'Yes', 21 | wlan: 'Wi-Fi 802.11 b/g/n', 22 | bluetooth: '4.2, A2DP, LE', 23 | gps: 'Yes, with A-GPS, GLONASS', 24 | radio: 'No', 25 | usb: 'No', 26 | messaging: 'SMS(threaded view), Email, Push Mail, IM', 27 | browser: 'No', 28 | java: 'No', 29 | features_c: 30 | '- MP3 player\r\n - Photo viewer\r\n - Siri natural language commands and dictation (talking mode)', 31 | battery_c: 'Non-removable Li-Ion 279 mAh battery (1.07 Wh) - 38mm version', 32 | stand_by: 'Up to 18 h (mixed usage)', 33 | colors: 'White, Gray', 34 | sensors: 'Accelerometer, gyro, heart rate, barometer', 35 | cpu: 'Dual-core', 36 | internal: '16 GB, 768 MB RAM (to be confirmed)', 37 | os: 'watchOS 4.0, upgradable to 4.1', 38 | body_c: '- 50m waterproof', 39 | speed: 'HSPA, LTE', 40 | network_c: 41 | 'LTE band 1(2100), 3(1800), 39(1900), 40(2300), 41(2500) - China (A1892)', 42 | chipset: 'Apple S3', 43 | protection: 'Sapphire crystal glass', 44 | gpu: 'PowerVR', 45 | multitouch: 'Yes', 46 | nfc: 'Yes', 47 | build: 'Ceramic case/back', 48 | price: 'About 1450 EUR', 49 | sar: '0.35 W/kg (head)     0.18 W/kg (body)     ', 50 | _2g_bands: 'GSM 850 / 900 / 1800 / 1900 ', 51 | _3_5mm_jack_: 'No', 52 | _3g_bands: 'HSDPA 850 / 900 / 2100 / 800 - Europe, Australia (A1891)', 53 | _4g_bands: 54 | 'LTE band 1(2100), 3(1800), 5(850), 7(2600), 8(900), 18(800), 19(800), 20(800), 26(850) - Europe, Australia (A1891)' 55 | }, 56 | { 57 | DeviceName: 'Apple Watch Series 3', 58 | Brand: 'Apple', 59 | technology: 'GSM / HSPA / LTE', 60 | gprs: 'Yes', 61 | edge: 'Yes', 62 | announced: '2017, September', 63 | status: 'Available. Released 2017, September', 64 | dimensions: '42.5 x 36.4 x 11.4 mm (1.67 x 1.43 x 0.45 in)', 65 | weight: '52.8 g (1.87 oz)', 66 | sim: 'Electronic SIM card (Apple e-SIM)', 67 | type: 'AMOLED capacitive touchscreen, 16M colors', 68 | size: '1.65 inches, 8.6 cm2 (~55.4% screen-to-body ratio)', 69 | resolution: '390 x 312 pixels (~303 ppi density)', 70 | display_c: '- 3D Touch display\r\n - 1000 nits', 71 | card_slot: 'No', 72 | camera_c: 'No', 73 | alert_types: 'Vibration; Ringtones', 74 | loudspeaker_: 'Yes', 75 | wlan: 'Wi-Fi 802.11 b/g/n', 76 | bluetooth: '4.2, A2DP, LE', 77 | gps: 'Yes, with A-GPS, GLONASS', 78 | radio: 'No', 79 | usb: 'No', 80 | messaging: 'SMS(threaded view), Email, Push Mail, IM', 81 | browser: 'No', 82 | java: 'No', 83 | features_c: 84 | '- MP3 player\r\n - Photo viewer\r\n - Siri natural language commands and dictation (talking mode)', 85 | battery_c: 'Non-removable Li-Ion 279 mAh battery (1.07 Wh) - 38mm version', 86 | stand_by: 'Up to 18 h (mixed usage)', 87 | colors: 'Space Black, Silver', 88 | sensors: 'Accelerometer, gyro, heart rate, barometer', 89 | cpu: 'Dual-core', 90 | internal: '16 GB, 768 MB RAM (to be confirmed)', 91 | os: 'watchOS 4.0, upgradable to 4.1', 92 | body_c: '- 50m waterproof', 93 | speed: 'HSPA, LTE', 94 | network_c: 95 | 'LTE band 1(2100), 3(1800), 39(1900), 40(2300), 41(2500) - China (A1892)', 96 | chipset: 'Apple S3', 97 | protection: 'Sapphire crystal glass', 98 | gpu: 'PowerVR', 99 | multitouch: 'Yes', 100 | nfc: 'Yes', 101 | build: 'Stainless Steel/Ceramic back', 102 | price: 'About 700 EUR', 103 | sar: '0.35 W/kg (head)     0.18 W/kg (body)     ', 104 | _2g_bands: 'GSM 850 / 900 / 1800 / 1900 ', 105 | _3_5mm_jack_: 'No', 106 | _3g_bands: 'HSDPA 850 / 900 / 2100 / 800 - Europe, Australia (A1891)', 107 | _4g_bands: 108 | 'LTE band 1(2100), 3(1800), 5(850), 7(2600), 8(900), 18(800), 19(800), 20(800), 26(850) - Europe, Australia (A1891)' 109 | }, 110 | { 111 | DeviceName: 'Apple Watch Series 3 Aluminum', 112 | Brand: 'Apple', 113 | technology: 'GSM / HSPA / LTE', 114 | gprs: 'Yes', 115 | edge: 'Yes', 116 | announced: '2017, September', 117 | status: 'Available. Released 2017, September', 118 | dimensions: '42.5 x 36.4 x 11.4 mm (1.67 x 1.43 x 0.45 in)', 119 | weight: '34.9 g (1.23 oz)', 120 | sim: 'Electronic SIM card (Apple e-SIM)', 121 | type: 'AMOLED capacitive touchscreen, 16M colors', 122 | size: '1.65 inches, 8.6 cm2 (~55.4% screen-to-body ratio)', 123 | resolution: '390 x 312 pixels (~303 ppi density)', 124 | display_c: '- 3D Touch display\r\n - 1000 nits', 125 | card_slot: 'No', 126 | camera_c: 'No', 127 | alert_types: 'Vibration; Ringtones', 128 | loudspeaker_: 'Yes', 129 | wlan: 'Wi-Fi 802.11 b/g/n', 130 | bluetooth: '4.2, A2DP, LE', 131 | gps: 'Yes, with A-GPS, GLONASS', 132 | radio: 'No', 133 | usb: 'No', 134 | messaging: 'SMS(threaded view), Email, Push Mail, IM', 135 | browser: 'No', 136 | java: 'No', 137 | features_c: 138 | '- MP3 player\r\n - Photo viewer\r\n - Siri natural language commands and dictation (talking mode)', 139 | battery_c: 'Non-removable Li-Ion 279 mAh battery (1.07 Wh) - 38mm version', 140 | stand_by: 'Up to 18 h (mixed usage)', 141 | colors: 'Silver, Gold, Space Gray', 142 | sensors: 'Accelerometer, gyro, heart rate, barometer', 143 | cpu: 'Dual-core', 144 | internal: '8/16 GB, 768 MB RAM (to be confirmed)', 145 | os: 'watchOS 4.0, upgradable to 4.1', 146 | body_c: '- 50m waterproof', 147 | speed: 'HSPA, LTE', 148 | network_c: 149 | 'LTE band 1(2100), 3(1800), 39(1900), 40(2300), 41(2500) - China (A1892)', 150 | chipset: 'Apple S3', 151 | protection: 'Ion-X strengthened glass', 152 | gpu: 'PowerVR', 153 | multitouch: 'Yes', 154 | nfc: 'Yes', 155 | build: 'Aluminum/Ceramic back', 156 | price: 'About 480 EUR', 157 | sar: '0.52 W/kg (head)     0.34 W/kg (body)     ', 158 | _2g_bands: 'GSM 850 / 900 / 1800 / 1900 ', 159 | _3_5mm_jack_: 'No', 160 | _3g_bands: 'HSDPA 850 / 900 / 2100 / 800 - Europe, Australia (A1891)', 161 | _4g_bands: 162 | 'LTE band 1(2100), 3(1800), 5(850), 7(2600), 8(900), 18(800), 19(800), 20(800), 26(850) - Europe, Australia (A1891)' 163 | }, 164 | { 165 | DeviceName: 'Apple iPhone X', 166 | Brand: 'Apple', 167 | technology: 'GSM / HSPA / LTE', 168 | gprs: 'Yes', 169 | edge: 'Yes', 170 | announced: '2017, September', 171 | status: 'Available. Released 2017, October', 172 | dimensions: '143.6 x 70.9 x 7.7 mm (5.65 x 2.79 x 0.30 in)', 173 | weight: '174 g (6.14 oz)', 174 | sim: 'Nano-SIM', 175 | type: 'Super AMOLED capacitive touchscreen, 16M colors', 176 | size: '5.8 inches, 84.4 cm2 (~82.9% screen-to-body ratio)', 177 | resolution: '1125 x 2436 pixels, 19.5:9 ratio (~458 ppi density)', 178 | display_c: 179 | '- Dolby Vision/HDR10 compliant\r\n - Wide color gamut display\r\n - 3D Touch display\r\n - True-tone display', 180 | card_slot: 'No', 181 | alert_types: 'Vibration, proprietary ringtones', 182 | loudspeaker_: 'Yes, with stereo speakers', 183 | sound_c: 184 | '- Active noise cancellation with dedicated mic\r\n - Lightning to 3.5 mm headphone jack adapter', 185 | wlan: 'Wi-Fi 802.11 a/b/g/n/ac, dual-band, hotspot', 186 | bluetooth: '5.0, A2DP, LE', 187 | gps: 'Yes, with A-GPS, GLONASS, GALILEO, QZSS', 188 | radio: 'No', 189 | usb: '2.0, proprietary reversible connector', 190 | messaging: 'iMessage, SMS (threaded view), MMS, Email, Push Email', 191 | browser: 'HTML5 (Safari)', 192 | java: 'No', 193 | features_c: 194 | '- Fast battery charging: 50% in 30 min\r\n - Qi wireless charging\r\n - Siri natural language commands and dictation\r\n - iCloud cloud service\r\n - MP3/WAV/AAX+/AIFF/Apple Lossless player\r\n - MP4/H.265 player\r\n - Audio/video/photo editor\r\n - Document editor', 195 | battery_c: 'Non-removable Li-Ion 2716 mAh battery (10.35 Wh)', 196 | talk_time: 'Up to 21 h (3G)', 197 | colors: 'Space Gray, Silver', 198 | sensors: 'Face ID, accelerometer, gyro, proximity, compass, barometer', 199 | cpu: 'Hexa-core 2.39 GHz (2x Monsoon + 4x Mistral)', 200 | internal: '64/256 GB, 3 GB RAM', 201 | os: 'iOS 11.1.1', 202 | body_c: 203 | '- IP67 certified - dust and water resistant\r\n - Water resistant up to 1 meter and 30 minutes\r\n - Apple Pay (Visa, MasterCard, AMEX certified)', 204 | primary_: 205 | 'Dual: 12 MP (f/1.8, 28mm) + 12 MP (f/2.4, 52mm), OIS, phase detection autofocus, 2x optical zoom, quad-LED dual-tone flash, check quality', 206 | video: '2160p@24/30/60fps, 1080p@30/60/120/240fps, check quality', 207 | secondary: 208 | '7 MP (f/2.2, 32mm), 1080p@30fps, 720p@240fps, face detection, HDR', 209 | speed: 210 | 'HSPA 42.2/5.76 Mbps, LTE-A (3CA) Cat12 600/150 Mbps, EV-DO Rev.A 3.1 Mbps', 211 | network_c: 'CDMA2000 1xEV-DO & TD-SCDMA - A1865', 212 | chipset: 'Apple A11 Bionic', 213 | features: 214 | 'Geo-tagging, simultaneous 4K video and 8MP image recording, touch focus, face/smile detection, HDR (photo/panorama)', 215 | music_play: 'Up to 60 h', 216 | protection: 'Scratch-resistant glass, oleophobic coating', 217 | gpu: 'Apple GPU (three-core graphics)', 218 | multitouch: 'Yes', 219 | loudspeaker: ' Voice 68dB / Noise 74dB / Ring 76dB ', 220 | audio_quality: ' Noise -93.7dB / Crosstalk -82.8dB', 221 | nfc: 'Yes (Apple Pay only)', 222 | camera: ' Photo / Video', 223 | display: ' Contrast ratio: Infinity (nominal), 5.013 (sunlight)', 224 | performance: ' Basemark OS II 2.0: 4708', 225 | build: 'Front/back glass, stainless steel frame', 226 | price: 'About 1150 EUR', 227 | _2g_bands: 'GSM 850 / 900 / 1800 / 1900 ', 228 | _3_5mm_jack_: 'No', 229 | _3g_bands: 'HSDPA 850 / 900 / 1700(AWS) / 1900 / 2100 ', 230 | _4g_bands: 231 | 'LTE band 1(2100), 2(1900), 3(1800), 4(1700/2100), 5(850), 7(2600), 8(900), 12(700), 13(700), 17(700), 18(800), 19(800), 20(800), 25(1900), 26(850), 28(700), 29(700), 30(2300), 34(2000), 38(2600), 39(1900), 40(2300), 41(2500), 66(1700/2100)' 232 | }, 233 | { 234 | DeviceName: 'Apple iPad Pro 12.9 (2017)', 235 | Brand: 'Apple', 236 | technology: 'GSM / CDMA / HSPA / EVDO / LTE', 237 | gprs: 'Yes', 238 | edge: 'Yes', 239 | announced: '2017, June', 240 | status: 'Available. Released 2017, June', 241 | dimensions: '305.7 x 220.6 x 6.9 mm (12.04 x 8.69 x 0.27 in)', 242 | weight: '677 g (Wi-Fi) / 692 g (LTE) (1.49 lb)', 243 | sim: 'Nano-SIM/ Electronic SIM card (Apple e-SIM)', 244 | type: 'LED-backlit IPS LCD, capacitive touchscreen, 16M colors', 245 | size: '12.9 inches, 515.3 cm2 (~76.4% screen-to-body ratio)', 246 | resolution: '2732 x 2048 pixels, 4:3 ratio (~265 ppi density)', 247 | display_c: '- True-tone display', 248 | card_slot: 'No', 249 | alert_types: 'Vibration; Ringtones', 250 | loudspeaker_: 'Yes, with stereo speakers (4 speakers)', 251 | sound_c: '- Active noise cancellation with dedicated mic', 252 | wlan: 'Wi-Fi 802.11 a/b/g/n/ac, dual-band, hotspot', 253 | bluetooth: '4.2, A2DP, EDR', 254 | gps: 'Yes, with A-GPS, GLONASS (Wi‑Fi + Cellular model only)', 255 | radio: 'No', 256 | usb: '3.0, proprietary reversible connector; magnetic connector', 257 | messaging: 'iMessage, Email, Push Email, IM', 258 | browser: 'HTML5 (Safari)', 259 | java: 'No', 260 | features_c: 261 | '- Siri natural language commands and dictation\r\n - iCloud cloud service\r\n - MP3/WAV/AAX+/AIFF/Apple Lossless player\r\n - MP4/H.264 player\r\n - Audio/video/photo editor\r\n - Document editor', 262 | battery_c: 'Non-removable Li-Ion battery (41 Wh)', 263 | talk_time: 'Up to 10 h (multimedia)', 264 | colors: 'Space Gray, Gold, Silver', 265 | sensors: 266 | 'Fingerprint (front-mounted), accelerometer, gyro, compass, barometer', 267 | internal: '64/256/512 GB, 4GB RAM', 268 | os: 'iOS 10.3.2, upgradable to iOS 11.2', 269 | body_c: '- Stylus', 270 | primary_: 271 | '12 MP (f/1.8, 1/3"), phase detection autofocus, OIS, quad-LED dual-tone flash', 272 | video: '2160p@30fps, 1080p@30/60fps, 1080p@120fps, 720p@240fps', 273 | secondary: 274 | '7 MP (f/2.2, 32mm), 1080p@30fps, 720p@240fps,, face detection, HDR, panorama', 275 | speed: 276 | 'HSPA 42.2/5.76 Mbps, LTE-A (3CA) Cat9 450/50 Mbps, EV-DO Rev.A 3.1 Mbps', 277 | network_c: 'CDMA2000 1xEV-DO ', 278 | chipset: 'Apple A10X Fusion', 279 | features: 280 | 'Geo-tagging, simultaneous 4K video and 8MP image recording, touch focus, face/smile detection, HDR (photo/panorama)', 281 | protection: 'Scratch-resistant glass, oleophobic coating', 282 | multitouch: 'Yes', 283 | nfc: 'NFC', 284 | price: 'About 900 EUR', 285 | _2g_bands: 'GSM 850 / 900 / 1800 / 1900 ', 286 | _3_5mm_jack_: 'Yes', 287 | _3g_bands: 'HSDPA 850 / 900 / 1700(AWS) / 1900 / 2100 ', 288 | _4g_bands: 289 | 'LTE band 1(2100), 2(1900), 3(1800), 4(1700/2100), 5(850), 7(2600), 8(900), 11(1500), 12(700), 13(700), 17(700), 18(800), 19(800), 20(800), 21(1500), 25(1900), 26(850), 27(800), 28(700), 29(700), 30(2300), 38(2600), 39(1900), 40(2300), 41(2500)' 290 | }, 291 | { 292 | DeviceName: 'Apple iPad Pro 10.5 (2017)', 293 | Brand: 'Apple', 294 | technology: 'GSM / CDMA / HSPA / EVDO / LTE', 295 | gprs: 'Yes', 296 | edge: 'Yes', 297 | announced: '2017, June', 298 | status: 'Available. Released 2017, June', 299 | dimensions: '250.6 x 174.1 x 6.1 mm (9.87 x 6.85 x 0.24 in)', 300 | weight: '469 g (Wi-Fi) / 477 g (LTE) (1.03 lb)', 301 | sim: 'Nano-SIM/ Electronic SIM card (Apple e-SIM)', 302 | type: 'LED-backlit IPS LCD, capacitive touchscreen, 16M colors', 303 | size: '10.5 inches, 341.4 cm2 (~78.3% screen-to-body ratio)', 304 | resolution: '1668 x 2224 pixels, 4:3 ratio (~265 ppi density)', 305 | display_c: '- True-tone display\r\n - 120 Hz', 306 | card_slot: 'No', 307 | alert_types: 'Vibration; Ringtones', 308 | loudspeaker_: 'Yes, with stereo speakers (4 speakers)', 309 | sound_c: '- Active noise cancellation with dedicated mic', 310 | wlan: 'Wi-Fi 802.11 a/b/g/n/ac, dual-band, hotspot', 311 | bluetooth: '4.2, A2DP, EDR', 312 | gps: 'Yes, with A-GPS, GLONASS (Wi‑Fi + Cellular model only)', 313 | radio: 'No', 314 | usb: '3.0, proprietary reversible connector; magnetic connector', 315 | messaging: 'iMessage, Email, Push Email, IM', 316 | browser: 'HTML5 (Safari)', 317 | java: 'No', 318 | features_c: 319 | '- Siri natural language commands and dictation\r\n - iCloud cloud service\r\n - MP3/WAV/AAX+/AIFF/Apple Lossless player\r\n - MP4/H.264 player\r\n - Audio/video/photo editor\r\n - Document editor', 320 | battery_c: 'Non-removable Li-Ion battery (30.4 Wh)', 321 | talk_time: 'Up to 10 h (multimedia)', 322 | colors: 'Space Gray, Rose Gold, Gold, Silver', 323 | sensors: 324 | 'Fingerprint (front-mounted), accelerometer, gyro, compass, barometer', 325 | internal: '64/256/512 GB, 4GB RAM', 326 | os: 'iOS 10.3.2, upgradable to iOS 11.2', 327 | body_c: '- Stylus', 328 | primary_: 329 | '12 MP (f/1.8, 1/3"), phase detection autofocus, OIS, quad-LED dual-tone flash', 330 | video: '2160p@30fps, 1080p@30/60fps, 1080p@120fps, 720p@240fps', 331 | secondary: 332 | '7 MP (f/2.2, 32mm), 1080p@30fps, 720p@240fps,, face detection, HDR, panorama', 333 | speed: 334 | 'HSPA 42.2/5.76 Mbps, LTE-A (3CA) Cat9 450/50 Mbps, EV-DO Rev.A 3.1 Mbps', 335 | network_c: 'CDMA2000 1xEV-DO ', 336 | chipset: 'Apple A10X Fusion', 337 | features: 338 | 'Geo-tagging, simultaneous 4K video and 8MP image recording, touch focus, face/smile detection, HDR (photo/panorama)', 339 | protection: 'Scratch-resistant glass, oleophobic coating', 340 | multitouch: 'Yes', 341 | nfc: 'NFC', 342 | price: 'About 730 EUR', 343 | _2g_bands: 'GSM 850 / 900 / 1800 / 1900 ', 344 | _3_5mm_jack_: 'Yes', 345 | _3g_bands: 'HSDPA 850 / 900 / 1700(AWS) / 1900 / 2100 ', 346 | _4g_bands: 347 | 'LTE band 1(2100), 2(1900), 3(1800), 4(1700/2100), 5(850), 7(2600), 8(900), 11(1500), 12(700), 13(700), 17(700), 18(800), 19(800), 20(800), 21(1500), 25(1900), 26(850), 27(800), 28(700), 29(700), 30(2300), 38(2600), 39(1900), 40(2300), 41(2500)' 348 | }, 349 | { 350 | DeviceName: 'Apple iPad 9.7 (2017)', 351 | Brand: 'Apple', 352 | technology: 'GSM / CDMA / HSPA / EVDO / LTE', 353 | gprs: 'Yes', 354 | edge: 'Yes', 355 | announced: '2017, March', 356 | status: 'Available. Released 2017, March', 357 | dimensions: '240 x 169.5 x 7.5 mm (9.45 x 6.67 x 0.30 in)', 358 | weight: '469 g (Wi-Fi) / 478 g (LTE) (1.05 lb)', 359 | sim: 'Nano-SIM/ Electronic SIM card (Apple e-SIM)', 360 | type: 'LED-backlit IPS LCD, capacitive touchscreen, 16M colors', 361 | size: '9.7 inches, 291.4 cm2 (~71.6% screen-to-body ratio)', 362 | resolution: '1536 x 2048 pixels, 4:3 ratio (~264 ppi density)', 363 | card_slot: 'No', 364 | alert_types: 'N/A', 365 | loudspeaker_: 'Yes, with stereo speakers', 366 | sound_c: '- Active noise cancellation with dedicated mic', 367 | wlan: 'Wi-Fi 802.11 a/b/g/n/ac, dual-band, hotspot', 368 | bluetooth: '4.2, A2DP, EDR, LE', 369 | gps: 'Yes, with A-GPS, GLONASS (Wi‑Fi + Cellular model only)', 370 | radio: 'No', 371 | usb: '2.0, proprietary reversible connector', 372 | messaging: 'iMessage, Email, Push Email, IM', 373 | browser: 'HTML5 (Safari)', 374 | java: 'No', 375 | features_c: 376 | '- Siri natural language commands and dictation\r\n - iCloud cloud service\r\n - MP3/WAV/AAX+/AIFF/Apple Lossless player\r\n - MP4/H.264 player\r\n - Audio/video/photo editor\r\n - Document editor', 377 | battery_c: 'Non-removable Li-Ion 8827 mAh battery (32.9 Wh)', 378 | talk_time: 'Up to 10 h (multimedia)', 379 | colors: 'Silver, Gold, Space Gray', 380 | sensors: 381 | 'Fingerprint (front-mounted), accelerometer, gyro, compass, barometer', 382 | cpu: 'Dual-core 1.84 GHz (Twister)', 383 | internal: '32/128 GB, 2 GB RAM', 384 | os: 'iOS 10.3, upgradable to iOS 11.2', 385 | primary_: '8 MP (f/2.4, 31mm, 1.12 \u00c2\u00b5m), autofocus', 386 | video: '1080p@30fps, 720p@120fps, HDR, stereo sound rec.', 387 | secondary: 388 | '1.2 MP (f/2.2, 31mm), 720p@30fps, face detection, HDR, FaceTime over Wi-Fi or Cellular', 389 | speed: 'HSPA 42.2/5.76 Mbps, LTE-A Cat4 150/50 Mbps, EV-DO Rev.A 3.1 Mbps', 390 | network_c: 'CDMA2000 1xEV-DO ', 391 | chipset: 'Apple A9', 392 | features: 393 | 'Geo-tagging, touch focus, face/smile detection, HDR (photo/panorama)', 394 | protection: 'Scratch-resistant glass, oleophobic coating', 395 | gpu: 'PowerVR GT7600 (six-core graphics)', 396 | multitouch: 'Yes', 397 | build: 'Front glass, aluminum body', 398 | price: 'About 390 EUR', 399 | _2g_bands: 'GSM 850 / 900 / 1800 / 1900 ', 400 | _3_5mm_jack_: 'Yes', 401 | _3g_bands: 'HSDPA 800 / 850 / 900 / 1700(AWS) / 1900 / 2100 ', 402 | _4g_bands: 403 | 'LTE band 1(2100), 2(1900), 3(1800), 4(1700/2100), 5(850), 7(2600), 8(900), 12(700), 13(700), 17(700), 18(800), 19(800), 20(800), 25(1900), 26(850), 28(700), 29(700), 38(2600), 39(1900), 40(2300), 41(2500)' 404 | }, 405 | { 406 | DeviceName: 'Apple iPhone 8', 407 | Brand: 'Apple', 408 | technology: 'GSM / HSPA / LTE', 409 | gprs: 'Yes', 410 | edge: 'Yes', 411 | announced: '2017, September', 412 | status: 'Available. Released 2017, September', 413 | dimensions: '138.4 x 67.3 x 7.3 mm (5.45 x 2.65 x 0.29 in)', 414 | weight: '148 g (5.22 oz)', 415 | sim: 'Nano-SIM', 416 | type: 'LED-backlit IPS LCD, capacitive touchscreen, 16M colors', 417 | size: '4.7 inches, 60.9 cm2 (~65.4% screen-to-body ratio)', 418 | resolution: '750 x 1334 pixels, 16:9 ratio (~326 ppi density)', 419 | display_c: 420 | '- Wide color gamut display\r\n - 3D Touch display & home button\r\n - True-tone display', 421 | card_slot: 'No', 422 | alert_types: 'Vibration, proprietary ringtones', 423 | loudspeaker_: 'Yes, with stereo speakers', 424 | sound_c: 425 | '- Active noise cancellation with dedicated mic\r\n - Lightning to 3.5 mm headphone jack adapter', 426 | wlan: 'Wi-Fi 802.11 a/b/g/n/ac, dual-band, hotspot', 427 | bluetooth: '5.0, A2DP, LE', 428 | gps: 'Yes, with A-GPS, GLONASS, GALILEO, QZSS', 429 | radio: 'No', 430 | usb: '2.0, proprietary reversible connector', 431 | messaging: 'iMessage, SMS (threaded view), MMS, Email, Push Email', 432 | browser: 'HTML5 (Safari)', 433 | java: 'No', 434 | features_c: 435 | '- Fast battery charging: 50% in 30 min\r\n - Qi wireless charging\r\n - Siri natural language commands and dictation\r\n - iCloud cloud service\r\n - MP3/WAV/AAX+/AIFF/Apple Lossless player\r\n - MP4/H.265 player\r\n - Audio/video/photo editor\r\n - Document editor', 436 | battery_c: 'Non-removable Li-Ion 1821 mAh battery (6.96 Wh)', 437 | talk_time: 'Up to 14 h (3G)', 438 | colors: 'Silver, Space Gray, Gold', 439 | sar_eu: '1.19 W/kg (head)     1.17 W/kg (body)     ', 440 | sensors: 441 | 'Fingerprint (front-mounted), accelerometer, gyro, proximity, compass, barometer', 442 | cpu: 'Hexa-core (2x Monsoon + 4x Mistral)', 443 | internal: '64/256 GB, 2 GB RAM', 444 | os: 'iOS 11, upgradable to iOS 11.2', 445 | body_c: 446 | '- IP67 certified - dust and water resistant\r\n - Water resistant up to 1 meter and 30 minutes\r\n - Apple Pay (Visa, MasterCard, AMEX certified)', 447 | primary_: 448 | '12 MP (f/1.8, 28mm), phase detection autofocus, OIS, quad-LED dual-tone flash, check quality', 449 | video: '2160p@24/30/60fps, 1080p@30/60/120/240fps, check quality', 450 | secondary: 451 | '7 MP, f/2.2, 1080p@30fps, 720p@240fps, face detection, HDR, panorama', 452 | speed: 453 | 'HSPA 42.2/5.76 Mbps, LTE-A (3CA) Cat12 600/150 Mbps, EV-DO Rev.A 3.1 Mbps', 454 | network_c: 'CDMA2000 1xEV-DO & TD-SCDMA - A1864', 455 | chipset: 'Apple A11 Bionic', 456 | features: 457 | 'Geo-tagging, simultaneous 4K video and 8MP image recording, touch focus, face/smile detection, HDR (photo/panorama)', 458 | music_play: 'Up to 40 h', 459 | protection: 'Ion-strengthened glass, oleophobic coating', 460 | gpu: 'Apple GPU (three-core graphics)', 461 | multitouch: 'Yes', 462 | loudspeaker: ' Voice 71dB / Noise 77dB / Ring 80dB ', 463 | audio_quality: ' Noise -93.5dB / Crosstalk -80.4dB', 464 | nfc: 'Yes (Apple Pay only)', 465 | camera: ' Photo / Video', 466 | display: ' Contrast ratio: 1395:1 (nominal), 3.957 (sunlight)', 467 | performance: ' Basemark OS II 2.0: 3934', 468 | build: 'Front/back glass, aluminum frame', 469 | price: 'About 800 EUR', 470 | sar: '1.32 W/kg (head)     1.36 W/kg (body)     ', 471 | _2g_bands: 'GSM 850 / 900 / 1800 / 1900 ', 472 | _3_5mm_jack_: 'No', 473 | _3g_bands: 'HSDPA 850 / 900 / 1700(AWS) / 1900 / 2100 ', 474 | _4g_bands: 475 | 'LTE band 1(2100), 2(1900), 3(1800), 4(1700/2100), 5(850), 7(2600), 8(900), 12(700), 13(700), 17(700), 18(800), 19(800), 20(800), 25(1900), 26(850), 28(700), 29(700), 30(2300), 34(2000), 38(2600), 39(1900), 40(2300), 41(2500), 66(1700/2100)' 476 | }, 477 | { 478 | DeviceName: 'Apple Watch Series 1 Sport 42mm', 479 | Brand: 'Apple', 480 | technology: 'No cellular connectivity', 481 | gprs: 'No', 482 | edge: 'No', 483 | announced: '2016, September', 484 | status: 'Available. Released 2016, December', 485 | dimensions: '42.5 x 36.4 x 10.5 mm (1.67 x 1.43 x 0.41 in)', 486 | weight: '30 g body (1.06 oz)', 487 | sim: 'No', 488 | type: 'AMOLED capacitive touchscreen, 16M colors', 489 | size: '1.65 inches (~55.4% screen-to-body ratio)', 490 | resolution: '390 x 312 pixels (~303 ppi pixel density)', 491 | display_c: '- 3D Touch display\r\n - 450 nits', 492 | card_slot: 'No', 493 | camera_c: 'No', 494 | alert_types: 'Vibration; Ringtones', 495 | loudspeaker_: 'Yes', 496 | wlan: 'Wi-Fi 802.11 b/g/n', 497 | bluetooth: '4.0, LE', 498 | gps: 'No', 499 | radio: 'No', 500 | usb: 'No', 501 | messaging: 'SMS(threaded view), Email, Push Mail, IM', 502 | browser: 'No', 503 | java: 'No', 504 | features_c: 505 | '- MP3 player\r\n - Photo viewer\r\n - Siri natural language commands and dictation', 506 | battery_c: 'Non-removable Li-Ion 250 mAh battery (0.94 Wh)', 507 | stand_by: 'Up to 22 h (mixed usage)', 508 | talk_time: 'Up to 3 h 40 min', 509 | colors: 510 | 'Case colors: silver, gold, rose gold, gray\r\n Band colors: brown, white, black, blue\r\n Band types: sport', 511 | sensors: 'Accelerometer, gyro, heart rate', 512 | cpu: 'Dual-core', 513 | internal: '8 GB, 512 MB RAM', 514 | os: 'watchOS 3.0, upgradable to 3.2.3', 515 | body_c: '- IPX7 certified - water resistant up to 1 meter and 30 minutes', 516 | chipset: 'Apple S1P', 517 | protection: 'Ion-X strengthened glass', 518 | multitouch: 'Yes', 519 | nfc: 'Yes', 520 | build: 'Aluminum/Composite back', 521 | price: 'About 350 EUR', 522 | _2g_bands: ' N/A', 523 | _3_5mm_jack_: 'No' 524 | }, 525 | { 526 | DeviceName: 'Apple Watch Series 1 Sport 38mm', 527 | Brand: 'Apple', 528 | technology: 'No cellular connectivity', 529 | gprs: 'No', 530 | edge: 'No', 531 | announced: '2016, September', 532 | status: 'Available. Released 2016, December', 533 | dimensions: '38.6 x 33.3 x 10.5 mm (1.52 x 1.31 x 0.41 in)', 534 | weight: '25 g body (0.88 oz)', 535 | sim: 'No', 536 | type: 'AMOLED capacitive touchscreen, 16M colors', 537 | size: '1.5 inches (~55.1% screen-to-body ratio)', 538 | resolution: '340 x 272 pixels (~290 ppi pixel density)', 539 | display_c: '- 3D Touch display\r\n - 450 nits', 540 | card_slot: 'No', 541 | camera_c: 'No', 542 | alert_types: 'Vibration; Ringtones', 543 | loudspeaker_: 'Yes', 544 | wlan: 'Wi-Fi 802.11 b/g/n', 545 | bluetooth: '4.0, LE', 546 | gps: 'No', 547 | radio: 'No', 548 | usb: 'No', 549 | messaging: 'SMS(threaded view), Email, Push Mail, IM', 550 | browser: 'No', 551 | java: 'No', 552 | features_c: 553 | '- MP3 player\r\n - Photo viewer\r\n - Siri natural language commands and dictation', 554 | battery_c: 'Non-removable Li-Ion 205 mAh battery (0.78 Wh)', 555 | stand_by: 'Up to 18 h (mixed usage)', 556 | talk_time: 'Up to 3 h', 557 | colors: 558 | 'Case colors: silver, gold, rose gold, gray\r\n Band colors: gray, white, black, pink\r\n Band types: sport', 559 | sensors: 'Accelerometer, gyro, heart rate', 560 | cpu: 'Dual-core', 561 | internal: '8 GB, 512 MB RAM', 562 | os: 'watchOS 3.0, upgradable to 3.2.3', 563 | body_c: '- IPX7 certified - water resistant up to 1 meter and 30 minutes', 564 | chipset: 'Apple S1P', 565 | protection: 'Ion-X strengthened glass', 566 | multitouch: 'Yes', 567 | nfc: 'Yes', 568 | build: 'Aluminum/Composite back', 569 | price: 'About 320 EUR', 570 | _2g_bands: ' N/A', 571 | _3_5mm_jack_: 'No' 572 | }, 573 | { 574 | DeviceName: 'Apple Watch Edition Series 2 38mm', 575 | Brand: 'Apple', 576 | technology: 'No cellular connectivity', 577 | gprs: 'No', 578 | edge: 'No', 579 | announced: '2016, September', 580 | status: 'Available. Released 2016, December', 581 | dimensions: '39.2 x 34 x 11.8 mm (1.54 x 1.34 x 0.46 in)', 582 | weight: '39.6 g body (1.41 oz)', 583 | sim: 'No', 584 | type: 'AMOLED capacitive touchscreen, 16M colors', 585 | size: '1.5 inches (~53.1% screen-to-body ratio)', 586 | resolution: '340 x 272 pixels (~290 ppi pixel density)', 587 | display_c: '- 3D Touch display\r\n - 1000 nits', 588 | card_slot: 'No', 589 | camera_c: 'No', 590 | alert_types: 'Vibration; Ringtones', 591 | loudspeaker_: 'Yes', 592 | wlan: 'Wi-Fi 802.11 b/g/n', 593 | bluetooth: '4.0, LE', 594 | gps: 'Yes', 595 | radio: 'No', 596 | usb: 'No', 597 | messaging: 'SMS(threaded view), Email, Push Mail, IM', 598 | browser: 'No', 599 | java: 'No', 600 | features_c: 601 | '- MP3 player\r\n - Photo viewer\r\n - Siri natural language commands and dictation', 602 | battery_c: 'Non-removable Li-Ion 273 mAh battery (1.03 Wh)', 603 | stand_by: 'Up to 18 h (mixed usage)', 604 | colors: 'Sport Band/White', 605 | sensors: 'Accelerometer, gyro, heart rate', 606 | cpu: 'Dual-core', 607 | os: 'watchOS 3.0, upgradable to 3.2.3', 608 | body_c: '- 50m waterproof', 609 | chipset: 'Apple S2', 610 | protection: 'Sapphire crystal glass', 611 | multitouch: 'Yes', 612 | nfc: 'Yes', 613 | build: 'Ceramic case/back', 614 | price: 'About 1450 EUR', 615 | _2g_bands: ' N/A', 616 | _3_5mm_jack_: 'No' 617 | }, 618 | { 619 | DeviceName: 'Apple Watch Edition Series 2 42mm', 620 | Brand: 'Apple', 621 | technology: 'No cellular connectivity', 622 | gprs: 'No', 623 | edge: 'No', 624 | announced: '2016, September', 625 | status: 'Available. Released 2016, December', 626 | dimensions: '42.6 x 36.5 x 11.4 mm (1.68 x 1.44 x 0.45 in)', 627 | weight: '45.6 g body (1.62 oz)', 628 | sim: 'No', 629 | type: 'AMOLED capacitive touchscreen, 16M colors', 630 | size: '1.65 inches (~55.1% screen-to-body ratio)', 631 | resolution: '390 x 312 pixels (~303 ppi pixel density)', 632 | display_c: '- 3D Touch display\r\n - 1000 nits', 633 | card_slot: 'No', 634 | camera_c: 'No', 635 | alert_types: 'Vibration; Ringtones', 636 | loudspeaker_: 'Yes', 637 | wlan: 'Wi-Fi 802.11 b/g/n', 638 | bluetooth: '4.0, LE', 639 | gps: 'Yes', 640 | radio: 'No', 641 | usb: 'No', 642 | messaging: 'SMS(threaded view), Email, Push Mail, IM', 643 | browser: 'No', 644 | java: 'No', 645 | features_c: 646 | '- MP3 player\r\n - Photo viewer\r\n - Siri natural language commands and dictation', 647 | battery_c: 'Non-removable Li-Ion battery', 648 | colors: 'Sport Band/White', 649 | sensors: 'Accelerometer, gyro, heart rate', 650 | cpu: 'Dual-core', 651 | os: 'watchOS 3.0, upgradable to 3.2.3', 652 | body_c: '- 50m waterproof', 653 | chipset: 'Apple S2', 654 | protection: 'Sapphire crystal glass', 655 | multitouch: 'Yes', 656 | nfc: 'Yes', 657 | build: 'Ceramic case/back', 658 | price: 'About 1500 EUR', 659 | _2g_bands: ' N/A', 660 | _3_5mm_jack_: 'No' 661 | }, 662 | { 663 | DeviceName: 'Apple Watch Series 2 38mm', 664 | Brand: 'Apple', 665 | technology: 'No cellular connectivity', 666 | gprs: 'No', 667 | edge: 'No', 668 | announced: '2016, September', 669 | status: 'Available. Released 2016, December', 670 | dimensions: '38.6 x 33.3 x 11.4 mm (1.52 x 1.31 x 0.45 in)', 671 | weight: '41.9 g body (1.48 oz)', 672 | sim: 'No', 673 | type: 'AMOLED capacitive touchscreen, 16M colors', 674 | size: '1.5 inches (~55.1% screen-to-body ratio)', 675 | resolution: '340 x 272 pixels (~290 ppi pixel density)', 676 | display_c: '- 3D Touch display\r\n - 1000 nits', 677 | card_slot: 'No', 678 | camera_c: 'No', 679 | alert_types: 'Vibration; Ringtones', 680 | loudspeaker_: 'Yes', 681 | wlan: 'Wi-Fi 802.11 b/g/n', 682 | bluetooth: '4.0, A2DP', 683 | gps: 'Yes', 684 | radio: 'No', 685 | usb: 'No', 686 | messaging: 'SMS(threaded view), Email, Push Mail, IM', 687 | browser: 'No', 688 | java: 'No', 689 | features_c: 690 | '- MP3 player\r\n - Photo viewer\r\n - Siri natural language commands and dictation', 691 | battery_c: 'Non-removable Li-Ion 273 mAh battery (1.03 Wh)', 692 | stand_by: 'Up to 18 h (mixed usage)', 693 | colors: 694 | 'Sport band: silver case/white, black case/black\r\nLeather band: silver case/blue, brown, gray, red\r\n Stainless Steel band: silver case/silver, black case/black', 695 | sensors: 'Accelerometer, gyro, heart rate', 696 | cpu: 'Dual-core', 697 | os: 'watchOS 3.0, upgradable to 3.2.3', 698 | body_c: '- 50m waterproof', 699 | chipset: 'Apple S2', 700 | protection: 'Sapphire crystal glass', 701 | multitouch: 'Yes', 702 | nfc: 'Yes', 703 | build: 'Stainless Steel/Ceramic back', 704 | price: 'About 650 EUR', 705 | _2g_bands: ' N/A', 706 | _3_5mm_jack_: 'No' 707 | }, 708 | { 709 | DeviceName: 'Apple Watch Series 2 42mm', 710 | Brand: 'Apple', 711 | technology: 'No cellular connectivity', 712 | gprs: 'No', 713 | edge: 'No', 714 | announced: '2016, September', 715 | status: 'Available. Released 2016, December', 716 | dimensions: '42.5 x 36.4 x 11.4 mm (1.67 x 1.43 x 0.45 in)', 717 | weight: '52.4 g body (1.83 oz)', 718 | sim: 'No', 719 | type: 'AMOLED capacitive touchscreen, 16M colors', 720 | size: '1.65 inches (~55.4% screen-to-body ratio)', 721 | resolution: '390 x 312 pixels (~303 ppi pixel density)', 722 | display_c: '- 3D Touch display\r\n - 1000 nits', 723 | card_slot: 'No', 724 | camera_c: 'No', 725 | alert_types: 'Vibration; Ringtones', 726 | loudspeaker_: 'Yes', 727 | wlan: 'Wi-Fi 802.11 b/g/n', 728 | bluetooth: '4.0, A2DP', 729 | gps: 'Yes', 730 | radio: 'No', 731 | usb: 'No', 732 | messaging: 'SMS(threaded view), Email, Push Mail, IM', 733 | browser: 'No', 734 | java: 'No', 735 | features_c: 736 | '- MP3 player\r\n - Photo viewer\r\n - Siri natural language commands and dictation', 737 | battery_c: 'Non-removable Li-Ion battery', 738 | colors: 739 | 'Sport band: silver case/white, black case/black\r\n Leather band: silver case/blue, brown, orange\r\n Stainless Steel band: silver case/silver, black case/black', 740 | sensors: 'Accelerometer, gyro, heart rate', 741 | cpu: 'Dual-core', 742 | os: 'watchOS 3.0, upgradable to 3.2.3', 743 | body_c: '- 50m waterproof', 744 | chipset: 'Apple S2', 745 | protection: 'Sapphire crystal glass', 746 | multitouch: 'Yes', 747 | nfc: 'Yes', 748 | build: 'Stainless Steel/Ceramic back', 749 | price: 'About 700 EUR', 750 | _2g_bands: ' N/A', 751 | _3_5mm_jack_: 'No' 752 | }, 753 | { 754 | DeviceName: 'Apple Watch Series 2 Sport 42mm', 755 | Brand: 'Apple', 756 | technology: 'No cellular connectivity', 757 | gprs: 'No', 758 | edge: 'No', 759 | announced: '2016, September', 760 | status: 'Available. Released 2016, December', 761 | dimensions: '42.5 x 36.4 x 11.4 mm (1.67 x 1.43 x 0.45 in)', 762 | weight: '34.2 g body (1.20 oz)', 763 | sim: 'No', 764 | type: 'AMOLED capacitive touchscreen, 16M colors', 765 | size: '1.65 inches (~55.4% screen-to-body ratio)', 766 | resolution: '390 x 312 pixels (~303 ppi pixel density)', 767 | display_c: '- 3D Touch display\r\n - 1000 nits', 768 | card_slot: 'No', 769 | camera_c: 'No', 770 | alert_types: 'Vibration; Ringtones', 771 | loudspeaker_: 'Yes', 772 | wlan: 'Wi-Fi 802.11 b/g/n', 773 | bluetooth: '4.0, A2DP', 774 | gps: 'Yes', 775 | radio: 'No', 776 | usb: 'No', 777 | messaging: 'SMS(threaded view), Email, Push Mail, IM', 778 | browser: 'No', 779 | java: 'No', 780 | features_c: 781 | '- MP3 player\r\n - Photo viewer\r\n - Siri natural language commands and dictation', 782 | battery_c: 'Non-removable Li-Ion battery', 783 | colors: 784 | 'Case colors: silver, gold, rose gold, gray\r\n Band colors: gray, white, blue, brown, orange, black\r\n Band types: sport, woven nylon', 785 | sensors: 'Accelerometer, gyro, heart rate', 786 | cpu: 'Dual-core', 787 | os: 'watchOS 3.0, upgradable to 3.2.3', 788 | body_c: '- 50m waterproof', 789 | chipset: 'Apple S2', 790 | protection: 'Ion-X strengthened glass', 791 | multitouch: 'Yes', 792 | nfc: 'Yes', 793 | build: 'Aluminum/Ceramic back', 794 | price: 'About 450 EUR', 795 | _2g_bands: ' N/A', 796 | _3_5mm_jack_: 'No' 797 | }, 798 | { 799 | DeviceName: 'Apple Watch Series 2 Sport 38mm', 800 | Brand: 'Apple', 801 | technology: 'No cellular connectivity', 802 | gprs: 'No', 803 | edge: 'No', 804 | announced: '2016, September', 805 | status: 'Available. Released 2016, December', 806 | dimensions: '38.6 x 33.3 x 11.4 mm (1.52 x 1.31 x 0.45 in)', 807 | weight: '28.2 g body (0.99 oz)', 808 | sim: 'No', 809 | type: 'AMOLED capacitive touchscreen, 16M colors', 810 | size: '1.5 inches (~55.1% screen-to-body ratio)', 811 | resolution: '340 x 272 pixels (~290 ppi pixel density)', 812 | display_c: '- 3D Touch display\r\n - 1000 nits', 813 | card_slot: 'No', 814 | camera_c: 'No', 815 | alert_types: 'Vibration; Ringtones', 816 | loudspeaker_: 'Yes', 817 | wlan: 'Wi-Fi 802.11 b/g/n', 818 | bluetooth: '4.0, A2DP', 819 | gps: 'Yes', 820 | radio: 'No', 821 | usb: 'No', 822 | messaging: 'SMS(threaded view), Email, Push Mail, IM', 823 | browser: 'No', 824 | java: 'No', 825 | features_c: 826 | '- MP3 player\r\n - Photo viewer\r\n - Siri natural language commands and dictation', 827 | battery_c: 'Non-removable Li-Ion 273 mAh battery (1.03 Wh)', 828 | stand_by: 'Up to 18 h (mixed usage)', 829 | colors: 830 | 'Case colors: silver, gold, rose gold, gray\r\n Band colors: gray, white, blue, yellow, pink, black\r\n Band types: sport, woven nylon', 831 | sensors: 'Accelerometer, gyro, heart rate', 832 | cpu: 'Dual-core', 833 | os: 'watchOS 3.0, upgradable to 3.2.3', 834 | body_c: '- 50m waterproof', 835 | chipset: 'Apple S2', 836 | protection: 'Ion-X strengthened glass', 837 | multitouch: 'Yes', 838 | nfc: 'Yes', 839 | build: 'Aluminum/Ceramic back', 840 | price: 'About 420 EUR', 841 | _2g_bands: ' N/A', 842 | _3_5mm_jack_: 'No' 843 | }, 844 | { 845 | DeviceName: 'Apple iPhone 8 Plus', 846 | Brand: 'Apple', 847 | technology: 'GSM / CDMA / HSPA / EVDO / LTE', 848 | gprs: 'Yes', 849 | edge: 'Yes', 850 | announced: 'Not announced yet', 851 | status: 'Rumored', 852 | dimensions: '6.1 mm thickness', 853 | weight: '-', 854 | sim: 'Nano-SIM', 855 | type: 'Super AMOLED capacitive touchscreen, 16M colors', 856 | size: '5.8 inches', 857 | resolution: '1080 x 1920 pixels (~380 ppi pixel density)', 858 | display_c: '- 3D Touch display & home button\r\n - Display Zoom', 859 | card_slot: 'No', 860 | alert_types: 'Vibration, proprietary ringtones', 861 | loudspeaker_: 'Yes, with stereo speakers', 862 | sound_c: '- Active noise cancellation with dedicated mic', 863 | wlan: 'Wi-Fi 802.11 a/b/g/n/ac, dual-band, hotspot', 864 | bluetooth: 'v4.2, A2DP, LE', 865 | gps: 'Yes, with A-GPS, GLONASS, GALILEO', 866 | radio: 'No', 867 | usb: 'v3.0, reversible connector; magnetic connector', 868 | messaging: 'iMessage, SMS (threaded view), MMS, Email, Push Email', 869 | browser: 'HTML5 (Safari)', 870 | java: 'No', 871 | features_c: 872 | '- Wireless charging\r\n - Siri natural language commands and dictation\r\n - iCloud cloud service\r\n - MP3/WAV/AAX+/AIFF/Apple Lossless player\r\n - MP4/H.264 player\r\n - Audio/video/photo editor\r\n - Document editor', 873 | battery_c: 'Non-removable Li-Ion battery', 874 | colors: 'Jet Black, Black, Silver, Gold, Rose Gold', 875 | sensors: 876 | 'Fingerprint (front-mounted), accelerometer, gyro, proximity, compass, barometer', 877 | cpu: 'Quad-core', 878 | internal: '32/128/256 GB, GB, 4 GB RAM', 879 | os: 'iOS 11', 880 | body_c: 881 | '- IP67 certified - dust and water resistant\r\n - Water resistant up to 1 meter and 30 minutes\r\n - Apple Pay (Visa, MasterCard, AMEX certified)', 882 | primary_: 883 | 'Dual 12 MP, (28mm, f/1.8, OIS & 56mm, f/2.8), phase detection autofocus, 2x optical zoom, quad-LED (dual tone) flash', 884 | video: '2160p@30fps, 1080p@60fps,1080p@120fps, 720p@240fps', 885 | secondary: 886 | '7 MP, f/1.8, 32mm, 1080p@30fps, 720p@240fps, face detection, HDR, panorama', 887 | speed: 888 | 'HSPA 42.2/5.76 Mbps, LTE-A (3CA) Cat9 450/50 Mbps, EV-DO Rev.A 3.1 Mbps', 889 | network_c: 890 | 'LTE band 1(2100), 2(1900), 3(1800), 4(1700/2100), 5(850), 7(2600), 8(900), 12(700), 13(700), 17(700), 18(800), 19(800), 20(800), 25(1900), 26(850), 28(700), 29(700), 30(2300), 38(2600), 39(1900), 40(2300), 41(2500)', 891 | chipset: 'Apple A11', 892 | features: 893 | '1/3" sensor size @ 28mm, 1/3.6" sensor size @ 56mm, geo-tagging, simultaneous 4K video and 8MP image recording, touch focus, face/smile detection, HDR (photo/panorama)', 894 | protection: 'Sapphire crystal glass, oleophobic coating', 895 | multitouch: 'Yes', 896 | nfc: 'Yes (Apple Pay only)', 897 | _2g_bands: 'GSM 850 / 900 / 1800 / 1900 ', 898 | _3_5mm_jack_: 'No', 899 | _3g_bands: 'HSDPA 850 / 900 / 1700 / 1900 / 2100 ', 900 | _4g_bands: 901 | 'LTE band 1(2100), 2(1900), 3(1800), 4(1700/2100), 5(850), 7(2600), 8(900), 12(700), 13(700), 17(700), 18(800), 19(800), 20(800), 25(1900), 26(850), 28(700), 29(700), 30(2300)' 902 | }, 903 | { 904 | DeviceName: 'Apple iPhone 7 Plus', 905 | Brand: 'Apple', 906 | technology: 'GSM / CDMA / HSPA / EVDO / LTE', 907 | gprs: 'Yes', 908 | edge: 'Yes', 909 | announced: '2016, September', 910 | status: 'Available. Released 2016, September', 911 | dimensions: '158.2 x 77.9 x 7.3 mm (6.23 x 3.07 x 0.29 in)', 912 | weight: '188 g (6.63 oz)', 913 | sim: 'Nano-SIM', 914 | type: 'LED-backlit IPS LCD, capacitive touchscreen, 16M colors', 915 | size: '5.5 inches (~67.7% screen-to-body ratio)', 916 | resolution: '1080 x 1920 pixels (~401 ppi pixel density)', 917 | display_c: 918 | '- Wide color gamut display\r\n - 3D Touch display & home button\r\n - Display Zoom', 919 | card_slot: 'No', 920 | alert_types: 'Vibration, proprietary ringtones', 921 | loudspeaker_: 'Yes, with stereo speakers', 922 | sound_c: 923 | '- Active noise cancellation with dedicated mic\r\n - Lightning to 3.5 mm headphone jack adapter incl.', 924 | wlan: 'Wi-Fi 802.11 a/b/g/n/ac, dual-band, hotspot', 925 | bluetooth: 'v4.2, A2DP, LE', 926 | gps: 'Yes, with A-GPS, GLONASS', 927 | radio: 'No', 928 | usb: 'v2.0, reversible connector', 929 | messaging: 'iMessage, SMS (threaded view), MMS, Email, Push Email', 930 | browser: 'HTML5 (Safari)', 931 | java: 'No', 932 | features_c: 933 | '- Siri natural language commands and dictation\r\n - iCloud cloud service\r\n - MP3/WAV/AAX+/AIFF/Apple Lossless player\r\n - MP4/H.264 player\r\n - Audio/video/photo editor\r\n - Document editor', 934 | battery_c: 'Non-removable Li-Ion 2900 mAh battery (11.1 Wh)', 935 | stand_by: 'Up to 384 h (3G)', 936 | talk_time: 'Up to 21 h (3G)', 937 | colors: 'Jet Black, Black, Silver, Gold, Rose Gold, Red', 938 | sar_us: ' 1.19 W/kg (head)     1.19 W/kg (body)     ', 939 | sar_eu: ' 1.24 W/kg (head)     1.00 W/kg (body)     ', 940 | sensors: 941 | 'Fingerprint (front-mounted), accelerometer, gyro, proximity, compass, barometer', 942 | cpu: 'Quad-core 2.34 GHz (2x Hurricane + 2x Zephyr)', 943 | internal: '32/128/256 GB, GB, 3 GB RAM', 944 | os: 'iOS 10.0.1, upgradable to iOS 10.3', 945 | body_c: 946 | '- IP67 certified - dust and water resistant\r\n - Water resistant up to 1 meter and 30 minutes\r\n - Apple Pay (Visa, MasterCard, AMEX certified)', 947 | primary_: 948 | 'Dual 12 MP, (28mm, f/1.8, OIS & 56mm, f/2.8), phase detection autofocus, 2x optical zoom, quad-LED (dual tone) flash, check quality', 949 | video: '2160p@30fps, 1080p@30/60/120fps, 720p@240fps, check quality', 950 | secondary: 951 | '7 MP, f/2.2, 32mm, 1080p@30fps, 720p@240fps, face detection, HDR, panorama', 952 | speed: 953 | 'HSPA 42.2/5.76 Mbps, LTE-A (3CA) Cat9 450/50 Mbps, EV-DO Rev.A 3.1 Mbps', 954 | network_c: 'CDMA2000 1xEV-DO & TD-SCDMA - A1661', 955 | chipset: 'Apple A10 Fusion', 956 | features: 957 | '1/3" sensor size @ 28mm, 1/3.6" sensor size @ 56mm, geo-tagging, simultaneous 4K video and 8MP image recording, touch focus, face/smile detection, HDR (photo/panorama)', 958 | music_play: 'Up to 60 h', 959 | protection: 'Ion-strengthened glass, oleophobic coating', 960 | gpu: 'PowerVR Series7XT Plus (six-core graphics)', 961 | multitouch: 'Yes', 962 | loudspeaker: ' Voice 68dB / Noise 72dB / Ring 72dB ', 963 | audio_quality: ' Noise -93.1dB / Crosstalk -80.5dB', 964 | nfc: 'Yes (Apple Pay only)', 965 | camera: ' Photo / Video', 966 | display: ' Contrast ratio: 1398:1 (nominal), 3.588 (sunlight)', 967 | performance: ' Basemark OS II 2.0: 3796', 968 | _2g_bands: 'GSM 850 / 900 / 1800 / 1900 - A1661, A1784', 969 | _3_5mm_jack_: 'No', 970 | _3g_bands: 'HSDPA 850 / 900 / 1700(AWS) / 1900 / 2100 - A1661, A1784', 971 | _4g_bands: 972 | 'LTE band 1(2100), 2(1900), 3(1800), 4(1700/2100), 5(850), 7(2600), 8(900), 12(700), 13(700), 17(700), 18(800), 19(800), 20(800), 25(1900), 26(850), 27(800), 28(700), 29(700), 30(2300), 38(2600), 39(1900), 40(2300), 41(2500) - A1661, A1784' 973 | }, 974 | { 975 | DeviceName: 'Apple iPhone 7', 976 | Brand: 'Apple', 977 | technology: 'GSM / CDMA / HSPA / EVDO / LTE', 978 | gprs: 'Yes', 979 | edge: 'Yes', 980 | announced: '2016, September', 981 | status: 'Available. Released 2016, September', 982 | dimensions: '138.3 x 67.1 x 7.1 mm (5.44 x 2.64 x 0.28 in)', 983 | weight: '138 g (4.87 oz)', 984 | sim: 'Nano-SIM', 985 | type: 'LED-backlit IPS LCD, capacitive touchscreen, 16M colors', 986 | size: '4.7 inches (~65.6% screen-to-body ratio)', 987 | resolution: '750 x 1334 pixels (~326 ppi pixel density)', 988 | display_c: 989 | '- Wide color gamut display\r\n - 3D Touch display & home button\r\n - Display Zoom', 990 | card_slot: 'No', 991 | alert_types: 'Vibration, proprietary ringtones', 992 | loudspeaker_: 'Yes, with stereo speakers', 993 | sound_c: 994 | '- Active noise cancellation with dedicated mic\r\n - Lightning to 3.5 mm headphone jack adapter incl.', 995 | wlan: 'Wi-Fi 802.11 a/b/g/n/ac, dual-band, hotspot', 996 | bluetooth: 'v4.2, A2DP, LE', 997 | gps: 'Yes, with A-GPS, GLONASS', 998 | radio: 'No', 999 | usb: 'v2.0, reversible connector', 1000 | messaging: 'iMessage, SMS (threaded view), MMS, Email, Push Email', 1001 | browser: 'HTML5 (Safari)', 1002 | java: 'No', 1003 | features_c: 1004 | '- Siri natural language commands and dictation\r\n - iCloud cloud service\r\n - MP3/WAV/AAX+/AIFF/Apple Lossless player\r\n - MP4/H.264 player\r\n - Audio/video/photo editor\r\n - Document editor', 1005 | battery_c: 'Non-removable Li-Ion 1960 mAh battery (7.45 Wh)', 1006 | talk_time: 'Up to 14 h (3G)', 1007 | colors: 'Jet Black, Black, Silver, Gold, Rose Gold, Red', 1008 | sar_us: ' 1.19 W/kg (head)     1.19 W/kg (body)     ', 1009 | sar_eu: ' 1.38 W/kg (head)     1.34 W/kg (body)     ', 1010 | sensors: 1011 | 'Fingerprint (front-mounted), accelerometer, gyro, proximity, compass, barometer', 1012 | cpu: 'Quad-core 2.34 GHz (2x Hurricane + 2x Zephyr)', 1013 | internal: '32/128/256 GB, GB, 2 GB RAM', 1014 | os: 'iOS 10.0.1, upgradable to iOS 10.3', 1015 | body_c: 1016 | '- IP67 certified - dust and water resistant\r\n - Water resistant up to 1 meter and 30 minutes\r\n - Apple Pay (Visa, MasterCard, AMEX certified)', 1017 | primary_: 1018 | '12 MP, f/1.8, 28mm, phase detection autofocus, OIS, quad-LED (dual tone) flash, check quality', 1019 | video: '2160p@30fps, 1080p@30/60/120fps, 720p@240fps, check quality', 1020 | secondary: 1021 | '7 MP, f/2.2, 32mm, 1080p@30fps, 720p@240fps, face detection, HDR, panorama', 1022 | speed: 1023 | 'HSPA 42.2/5.76 Mbps, LTE-A (3CA) Cat9 450/50 Mbps, EV-DO Rev.A 3.1 Mbps', 1024 | network_c: 'CDMA2000 1xEV-DO & TD-SCDMA - A1660', 1025 | chipset: 'Apple A10 Fusion', 1026 | features: 1027 | '1/3" sensor size, geo-tagging, simultaneous 4K video and 8MP image recording, touch focus, face/smile detection, HDR (photo/panorama)', 1028 | music_play: 'Up to 40 h', 1029 | protection: 'Ion-strengthened glass, oleophobic coating', 1030 | gpu: 'PowerVR Series7XT Plus (six-core graphics)', 1031 | multitouch: 'Yes', 1032 | loudspeaker: ' Voice 67dB / Noise 73dB / Ring 75dB ', 1033 | audio_quality: ' Noise -92.4dB / Crosstalk -80.9dB', 1034 | nfc: 'Yes (Apple Pay only)', 1035 | camera: ' Photo / Video', 1036 | display: ' Contrast ratio: 1603:1 (nominal), 3.964 (sunlight)', 1037 | performance: ' Basemark OS II 2.0: 3416', 1038 | _2g_bands: 'GSM 850 / 900 / 1800 / 1900 - A1660, A1778', 1039 | _3_5mm_jack_: 'No', 1040 | _3g_bands: 'HSDPA 850 / 900 / 1700(AWS) / 1900 / 2100 - A1660, A1778', 1041 | _4g_bands: 1042 | 'LTE band 1(2100), 2(1900), 3(1800), 4(1700/2100), 5(850), 7(2600), 8(900), 12(700), 13(700), 17(700), 18(800), 19(800), 20(800), 25(1900), 26(850), 27(800), 28(700), 29(700), 30(2300), 38(2600), 39(1900), 40(2300), 41(2500) - A1660, A1778' 1043 | }, 1044 | { 1045 | DeviceName: 'Apple iPad Pro 9.7', 1046 | Brand: 'Apple', 1047 | technology: 'GSM / CDMA / HSPA / EVDO / LTE', 1048 | gprs: 'Yes', 1049 | edge: 'Yes', 1050 | announced: '2016, March', 1051 | status: 'Available. Released 2016, March', 1052 | dimensions: '240 x 169.5 x 6.1 mm (9.45 x 6.67 x 0.24 in)', 1053 | weight: '437 g (Wi-Fi) / 444 g (LTE) (15.66 oz)', 1054 | sim: 'Nano-SIM/ Electronic SIM card (e-SIM)', 1055 | type: 'LED-backlit IPS LCD, capacitive touchscreen, 16M colors', 1056 | size: '9.7 inches (~71.6% screen-to-body ratio)', 1057 | resolution: '1536 x 2048 pixels (~264 ppi pixel density)', 1058 | display_c: '- True-tone display', 1059 | card_slot: 'No', 1060 | alert_types: 'N/A', 1061 | loudspeaker_: 'Yes, with stereo speakers (4 speakers)', 1062 | sound_c: '- Active noise cancellation with dedicated mic', 1063 | wlan: 'Wi-Fi 802.11 a/b/g/n/ac, dual-band, hotspot', 1064 | bluetooth: 'v4.2, A2DP, EDR', 1065 | gps: 'Yes, with A-GPS, GLONASS (Wi‑Fi + Cellular model only)', 1066 | radio: 'No', 1067 | usb: 'v2.0, reversible connector; magnetic connector', 1068 | messaging: 'iMessage, Email, Push Email, IM', 1069 | browser: 'HTML5 (Safari)', 1070 | java: 'No', 1071 | features_c: 1072 | '- Siri natural language commands and dictation\r\n - iCloud cloud service\r\n - MP3/WAV/AAX+/AIFF/Apple Lossless player\r\n - MP4/H.264 player\r\n - Audio/video/photo editor\r\n - Document editor', 1073 | battery_c: 'Non-removable Li-Ion battery (27.9 Wh)', 1074 | talk_time: 'Up to 10 h (multimedia)', 1075 | colors: 'Silver, Gold, Space Gray, Rose Gold', 1076 | sensors: 'Fingerprint, accelerometer, gyro, compass, barometer', 1077 | cpu: 'Dual-core 2.16 GHz (Twister)', 1078 | internal: '32/128/256 GB, 2 GB RAM', 1079 | os: 'iOS 9.3.2, upgradable to iOS 10.1', 1080 | body_c: '- Stylus', 1081 | primary_: 1082 | '12 MP, f/2.2, 29mm, phase detection autofocus, dual-LED (dual tone) flash', 1083 | video: '2160p@30fps, 1080p@30/60fps, 1080p@120fps, 720p@240fps', 1084 | secondary: 1085 | '5 MP, f/2.2, 31mm, 1080p@30fps, 720p@240fps, face detection, HDR, panorama', 1086 | speed: 'HSPA 42.2/5.76 Mbps, LTE-A Cat4 150/50 Mbps, EV-DO Rev.A 3.1 Mbps', 1087 | network_c: 'CDMA2000 1xEV-DO ', 1088 | chipset: 'Apple A9X', 1089 | features: 1090 | '1/3" sensor size, 1.22 \u00c2\u00b5m pixel size, geo-tagging, simultaneous 4K video and 8MP image recording, touch focus, face/smile detection, HDR (photo/panorama)', 1091 | protection: 'Scratch-resistant glass, oleophobic coating', 1092 | gpu: 'PowerVR Series 7 (12-core graphics)', 1093 | multitouch: 'Yes', 1094 | nfc: 'NFC', 1095 | _2g_bands: 'GSM 850 / 900 / 1800 / 1900 ', 1096 | _3_5mm_jack_: 'Yes', 1097 | _3g_bands: 'HSDPA 800 / 850 / 900 / 1700(AWS) / 1900 / 2100 ', 1098 | _4g_bands: 1099 | 'LTE band 1(2100), 2(1900), 3(1800), 4(1700/2100), 5(850), 7(2600), 8(900), 12(700), 13(700), 17(700), 18(800), 19(800), 20(800), 25(1900), 26(850), 27(800), 28(700), 29(700), 30(2300), 38(2600), 39(1900), 40(2300), 41(2500)' 1100 | }, 1101 | { 1102 | DeviceName: 'Apple iPhone SE', 1103 | Brand: 'Apple', 1104 | technology: 'GSM / CDMA / HSPA / EVDO / LTE', 1105 | gprs: 'Yes', 1106 | edge: 'Yes', 1107 | announced: '2016, March', 1108 | status: 'Available. Released 2016, March', 1109 | dimensions: '123.8 x 58.6 x 7.6 mm (4.87 x 2.31 x 0.30 in)', 1110 | weight: '113 g (3.99 oz)', 1111 | sim: 'Nano-SIM', 1112 | type: 'LED-backlit IPS LCD, capacitive touchscreen, 16M colors', 1113 | size: '4.0 inches (~60.8% screen-to-body ratio)', 1114 | resolution: '640 x 1136 pixels (~326 ppi pixel density)', 1115 | card_slot: 'No', 1116 | alert_types: 'Vibration, proprietary ringtones', 1117 | loudspeaker_: 'Yes', 1118 | sound_c: 1119 | '- 16-bit/44.1kHz audio\r\n - Active noise cancellation with dedicated mic', 1120 | wlan: 'Wi-Fi 802.11 a/b/g/n/ac, hotspot', 1121 | bluetooth: 'v4.2, A2DP, LE', 1122 | gps: 'Yes, with A-GPS, GLONASS', 1123 | radio: 'No', 1124 | usb: 'v2.0, reversible connector', 1125 | messaging: 'iMessage, SMS (threaded view), MMS, Email, Push Email', 1126 | browser: 'HTML5 (Safari)', 1127 | java: 'No', 1128 | features_c: 1129 | '- Siri natural language commands and dictation\r\n - iCloud cloud service\r\n - MP3/WAV/AAX+/AIFF/Apple Lossless player\r\n - MP4/H.264 player\r\n - Audio/video/photo editor\r\n - Document editor', 1130 | battery_c: 'Non-removable Li-Po 1624 mAh battery (6.21 Wh)', 1131 | stand_by: 'Up to 240 h (2G) / Up to 240 h (3G)', 1132 | talk_time: 'Up to 14 h (3G)', 1133 | colors: 'Space Gray, Silver, Gold, Rose Gold', 1134 | sar_us: ' 1.17 W/kg (head)     1.19 W/kg (body)     ', 1135 | sar_eu: ' 0.97 W/kg (head)     0.99 W/kg (body)     ', 1136 | sensors: 'Fingerprint, accelerometer, gyro, proximity, compass', 1137 | cpu: 'Dual-core 1.84 GHz Twister', 1138 | internal: '16/64 GB, 2 GB RAM', 1139 | os: 'iOS 9.3.2, upgradable to iOS 10.1', 1140 | body_c: '- Apple Pay (Visa, MasterCard, AMEX certified)', 1141 | primary_: 1142 | '12 MP, f/2.2, 29mm, phase detection autofocus, dual-LED (dual tone) flash', 1143 | video: '2160p@30fps, 1080p@30/60fps, 1080p@120fps, 720p@240fps', 1144 | secondary: 1145 | '1.2 MP, f/2.4, 31mm, 720p@30fps, face detection, HDR, FaceTime over Wi-Fi or Cellular', 1146 | speed: 'HSPA, LTE-A Cat4 150/50 Mbps', 1147 | network_c: 1148 | 'LTE band 1(2100), 2(1900), 3(1800), 4(1700/2100), 5(850), 7(2600), 8(900), 12(700), 17(700), 18(800), 19(800), 20(800), 25(1900), 26(850), 28(700), 38(2600), 39(1900), 40(2300), 41(2500) - A1723', 1149 | chipset: 'Apple A9', 1150 | features: 1151 | '1/3" sensor size, 1.22 \u00c2\u00b5m pixel size, geo-tagging, simultaneous 4K video and 8MP image recording, touch focus, face/smile detection, HDR (photo/panorama)', 1152 | music_play: 'Up to 50 h', 1153 | gpu: 'PowerVR GT7600 (six-core graphics)', 1154 | multitouch: 'Yes', 1155 | loudspeaker: ' Voice 66dB / Noise 65dB / Ring 69dB ', 1156 | audio_quality: ' Noise -93.0dB / Crosstalk -72.9dB', 1157 | nfc: 'Yes (Apple Pay only)', 1158 | camera: ' Photo / Video', 1159 | display: ' Contrast ratio: 804:1 (nominal), 3.681 (sunlight)', 1160 | performance: ' Basemark OS II 2.0: 2163', 1161 | _2g_bands: 'GSM 850 / 900 / 1800 / 1900 - A1662, A1723', 1162 | _3_5mm_jack_: 'Yes', 1163 | _3g_bands: 'HSDPA 800 / 850 / 900 / 1700(AWS) / 1900 / 2100 - A1662, A1723', 1164 | _4g_bands: 1165 | 'LTE band 1(2100), 2(1900), 3(1800), 4(1700/2100), 5(850), 8(900), 12(700), 13(700), 17(700), 18(800), 19(800), 20(800), 25(1900), 26(850), 29(700) - A1662' 1166 | }, 1167 | { 1168 | DeviceName: 'Apple Watch Edition 42mm', 1169 | Brand: 'Apple', 1170 | technology: 'No cellular connectivity', 1171 | gprs: 'No', 1172 | edge: 'No', 1173 | announced: '2014, September', 1174 | status: 'Available. Released 2015, July', 1175 | dimensions: '42 x 35.9 x 10.5 mm (1.65 x 1.41 x 0.41 in)', 1176 | weight: '69 g body (3.53 oz)', 1177 | sim: 'No', 1178 | type: 'AMOLED capacitive touchscreen, 16M colors', 1179 | size: '1.65 inches (~56.8% screen-to-body ratio)', 1180 | resolution: '390 x 312 pixels (~303 ppi pixel density)', 1181 | display_c: '- Force Touch display', 1182 | card_slot: 'No', 1183 | camera_c: 'No', 1184 | alert_types: 'Vibration; Ringtones', 1185 | loudspeaker_: 'Yes', 1186 | wlan: 'Wi-Fi 802.11 b/g/n', 1187 | bluetooth: 'v4.0, LE', 1188 | gps: 'No', 1189 | radio: 'No', 1190 | usb: 'No', 1191 | messaging: 'SMS(threaded view), Email, Push Mail, IM', 1192 | browser: 'No', 1193 | java: 'No', 1194 | features_c: '- MP3 player\r\n - Photo viewer\r\n - Voice dial/commands', 1195 | battery_c: 'Non-removable Li-Ion 250 mAh battery (0.94 Wh)', 1196 | stand_by: 'Up to 22 h (mixed usage)', 1197 | talk_time: 'Up to 3 h 40 min', 1198 | colors: 1199 | '18-karat Rose Gold/White, Midnight Blue Buckle \r\n18-karat Yellow Gold/Black, Black Buckle', 1200 | sensors: 'Accelerometer, gyro, heart rate', 1201 | cpu: '520 MHz', 1202 | internal: '8 GB, 512 MB RAM', 1203 | os: 'watchOS 1.0, upgradable to v2.1', 1204 | body_c: '- IPX7 certified - water resistant up to 1 meter and 30 minutes', 1205 | chipset: 'Apple S1', 1206 | protection: 'Sapphire crystal glass', 1207 | gpu: 'PowerVR SGX543', 1208 | multitouch: 'Yes', 1209 | nfc: 'Yes', 1210 | build: '18-karat yellow/rose gold case, ceramic back', 1211 | _2g_bands: ' N/A', 1212 | _3_5mm_jack_: 'No' 1213 | }, 1214 | { 1215 | DeviceName: 'Apple Watch Edition 38mm', 1216 | Brand: 'Apple', 1217 | technology: 'No cellular connectivity', 1218 | gprs: 'No', 1219 | edge: 'No', 1220 | announced: '2014, September', 1221 | status: 'Available. Released 2015, July', 1222 | dimensions: '38.6 x 33.3 x 10.5 mm (1.52 x 1.31 x 0.41 in)', 1223 | weight: '55 g body (3.35 oz)', 1224 | sim: 'No', 1225 | type: 'AMOLED capacitive touchscreen, 16M colors', 1226 | size: '1.5 inches (~55.1% screen-to-body ratio)', 1227 | resolution: '340 x 272 pixels (~290 ppi pixel density)', 1228 | display_c: '- Force Touch display', 1229 | card_slot: 'No', 1230 | camera_c: 'No', 1231 | alert_types: 'Vibration; Ringtones', 1232 | loudspeaker_: 'Yes', 1233 | wlan: 'Wi-Fi 802.11 b/g/n', 1234 | bluetooth: 'v4.0, LE', 1235 | gps: 'No', 1236 | radio: 'No', 1237 | usb: 'No', 1238 | messaging: 'SMS(threaded view), Email, Push Mail, IM', 1239 | browser: 'No', 1240 | java: 'No', 1241 | features_c: '- MP3 player\r\n - Photo viewer\r\n - Voice dial/commands', 1242 | battery_c: 'Non-removable Li-Ion 205 mAh battery (0.78 Wh)', 1243 | stand_by: 'Up to 18 h (mixed usage)', 1244 | talk_time: 'Up to 3 h', 1245 | colors: 1246 | '18-karat Rose Gold/White, Rose Gray Buckle\r\n18-karat Yellow Gold/Black, Red Buckle', 1247 | sensors: 'Accelerometer, gyro, heart rate', 1248 | cpu: '520 MHz', 1249 | internal: '8 GB, 512 MB RAM', 1250 | os: 'watchOS 1.0, upgradable to v2.1', 1251 | body_c: '- IPX7 certified - water resistant up to 1 meter and 30 minutes', 1252 | chipset: 'Apple S1', 1253 | protection: 'Sapphire crystal glass', 1254 | gpu: 'PowerVR SGX543', 1255 | multitouch: 'Yes', 1256 | nfc: 'Yes', 1257 | build: '18-karat yellow/rose gold case, ceramic back', 1258 | _2g_bands: ' N/A', 1259 | _3_5mm_jack_: 'No' 1260 | }, 1261 | { 1262 | DeviceName: 'Apple Watch 42mm', 1263 | Brand: 'Apple', 1264 | technology: 'No cellular connectivity', 1265 | gprs: 'No', 1266 | edge: 'No', 1267 | announced: '2014, September', 1268 | status: 'Available. Released 2015, April', 1269 | dimensions: '42 x 35.9 x 10.5 mm (1.65 x 1.41 x 0.41 in)', 1270 | weight: '50 g body (2.82 oz)', 1271 | sim: 'No', 1272 | type: 'AMOLED capacitive touchscreen, 16M colors', 1273 | size: '1.65 inches (~56.8% screen-to-body ratio)', 1274 | resolution: '390 x 312 pixels (~303 ppi pixel density)', 1275 | display_c: '- Force Touch display', 1276 | card_slot: 'No', 1277 | camera_c: 'No', 1278 | alert_types: 'Vibration; Ringtones', 1279 | loudspeaker_: 'Yes', 1280 | wlan: 'Wi-Fi 802.11 b/g/n', 1281 | bluetooth: 'v4.0, LE', 1282 | gps: 'No', 1283 | radio: 'No', 1284 | usb: 'No', 1285 | messaging: 'SMS(threaded view), Email, Push Mail, IM', 1286 | browser: 'No', 1287 | java: 'No', 1288 | features_c: '- MP3 player\r\n - Photo viewer\r\n - Voice dial/commands', 1289 | battery_c: 'Non-removable Li-Ion 250 mAh battery (0.94 Wh)', 1290 | stand_by: 'Up to 22 h (mixed usage)', 1291 | talk_time: 'Up to 3 h 40 min', 1292 | colors: 1293 | 'Stainless Steel/Red, White, Brown/Black/Blue Buckle, Blue/Stone Leather Loop, Milanese Loop, Link Bracelet, Space Black Stainless Steel/Black, Black Link Bracelet, Space Black Milanese Loop', 1294 | sensors: 'Accelerometer, gyro, heart rate', 1295 | cpu: '520 MHz', 1296 | internal: '8 GB, 512 MB RAM', 1297 | os: 'watchOS 1.0, upgradable to v2.1', 1298 | body_c: '- IPX7 certified - water resistant up to 1 meter and 30 minutes', 1299 | chipset: 'Apple S1', 1300 | protection: 'Sapphire crystal glass', 1301 | gpu: 'PowerVR SGX543', 1302 | multitouch: 'Yes', 1303 | nfc: 'Yes', 1304 | build: 'Stainless Steel', 1305 | _2g_bands: ' N/A', 1306 | _3_5mm_jack_: 'No' 1307 | }, 1308 | { 1309 | DeviceName: 'Apple Watch 38mm', 1310 | Brand: 'Apple', 1311 | technology: 'No cellular connectivity', 1312 | gprs: 'No', 1313 | edge: 'No', 1314 | announced: '2014, September', 1315 | status: 'Available. Released 2015, May', 1316 | dimensions: '38.6 x 33.3 x 10.5 mm (1.52 x 1.31 x 0.41 in)', 1317 | weight: '40 g body (2.72 oz)', 1318 | sim: 'No', 1319 | type: 'AMOLED capacitive touchscreen, 16M colors', 1320 | size: '1.5 inches (~55.1% screen-to-body ratio)', 1321 | resolution: '340 x 272 pixels (~290 ppi pixel density)', 1322 | display_c: '- Force Touch display', 1323 | card_slot: 'No', 1324 | camera_c: 'No', 1325 | alert_types: 'Vibration; Ringtones', 1326 | loudspeaker_: 'Yes', 1327 | wlan: 'Wi-Fi 802.11 b/g/n', 1328 | bluetooth: 'v4.0, LE', 1329 | gps: 'No', 1330 | radio: 'No', 1331 | usb: 'No', 1332 | messaging: 'SMS(threaded view), Email, Push Mail, IM', 1333 | browser: 'No', 1334 | java: 'No', 1335 | features_c: '- MP3 player\r\n - Photo viewer\r\n - Voice dial/commands', 1336 | battery_c: 'Non-removable Li-Ion 205 mAh battery (0.78 Wh)', 1337 | stand_by: 'Up to 18 h (mixed usage)', 1338 | talk_time: 'Up to 3 h', 1339 | colors: 1340 | 'Stainless Steel/Red, White, Brown/Black/Blue Buckle, Blue/Stone Leather Loop, Milanese Loop, Link Bracelet\r\nSpace Black Stainless Steel/Black, Black Link Bracelet, Space Black Milanese Loop', 1341 | sensors: 'Accelerometer, gyro, heart rate', 1342 | cpu: '520 MHz', 1343 | internal: '8 GB, 512 MB RAM', 1344 | os: 'watchOS 1.0, upgradable to v2.1', 1345 | body_c: '- IPX7 certified - water resistant up to 1 meter and 30 minutes', 1346 | chipset: 'Apple S1', 1347 | protection: 'Sapphire crystal glass', 1348 | gpu: 'PowerVR SGX543', 1349 | multitouch: 'Yes', 1350 | nfc: 'Yes', 1351 | build: 'Stainless Steel', 1352 | _2g_bands: ' N/A', 1353 | _3_5mm_jack_: 'No' 1354 | }, 1355 | { 1356 | DeviceName: 'Apple Watch Sport 42mm', 1357 | Brand: 'Apple', 1358 | technology: 'No cellular connectivity', 1359 | gprs: 'No', 1360 | edge: 'No', 1361 | announced: '2014, September', 1362 | status: 'Available. Released 2015, April', 1363 | dimensions: '42 x 35.9 x 10.5 mm (1.65 x 1.41 x 0.41 in)', 1364 | weight: '70 g (30 g body) (2.47 oz)', 1365 | sim: 'No', 1366 | type: 'AMOLED capacitive touchscreen, 16M colors', 1367 | size: '1.65 inches (~57.2% screen-to-body ratio)', 1368 | resolution: '390 x 312 pixels (~302 ppi pixel density)', 1369 | display_c: '- Force Touch display', 1370 | card_slot: 'No', 1371 | camera_c: 'No', 1372 | alert_types: 'Vibration; Ringtones', 1373 | loudspeaker_: 'Yes', 1374 | wlan: 'Wi-Fi 802.11 b/g/n', 1375 | bluetooth: 'v4.0, LE', 1376 | gps: 'No', 1377 | radio: 'No', 1378 | usb: 'No', 1379 | messaging: 'SMS(threaded view), Email, Push Mail, IM', 1380 | browser: 'No', 1381 | java: 'No', 1382 | features_c: '- MP3 player\r\n - Photo viewer\r\n - Voice dial/commands', 1383 | battery_c: 'Non-removable Li-Ion 250 mAh battery (0.94 Wh)', 1384 | stand_by: 'Up to 22 h (mixed usage)', 1385 | talk_time: 'Up to 3 h 40 min', 1386 | colors: 1387 | 'Silver/White, Orange, Blue; Gray/Black; Rose Gold/Lavender, Stone; Gold/White, Blue', 1388 | sensors: 'Accelerometer, gyro, heart rate', 1389 | cpu: '520 MHz', 1390 | internal: '8 GB, 512 MB RAM', 1391 | os: 'watchOS 1.0, upgradable to v2.1', 1392 | body_c: '- IPX7 certified - water resistant up to 1 meter and 30 minutes', 1393 | chipset: 'Apple S1', 1394 | protection: 'Ion-X strengthened glass', 1395 | gpu: 'PowerVR SGX543', 1396 | multitouch: 'Yes', 1397 | nfc: 'Yes', 1398 | build: 'Aluminum', 1399 | _2g_bands: ' N/A', 1400 | _3_5mm_jack_: 'No' 1401 | }, 1402 | { 1403 | DeviceName: 'Apple Watch Sport 38mm', 1404 | Brand: 'Apple', 1405 | technology: 'No cellular connectivity', 1406 | gprs: 'No', 1407 | edge: 'No', 1408 | announced: '2014, September', 1409 | status: 'Available. Released 2015, April', 1410 | dimensions: '38.6 x 33.3 x 10.5 mm (1.52 x 1.31 x 0.41 in)', 1411 | weight: '62 g (25 g body) (2.19 oz)', 1412 | sim: 'No', 1413 | type: 'AMOLED capacitive touchscreen, 16M colors', 1414 | size: '1.5 inches (~55.1% screen-to-body ratio)', 1415 | resolution: '340 x 272 pixels (~290 ppi pixel density)', 1416 | display_c: '- Force Touch display', 1417 | card_slot: 'No', 1418 | camera_c: 'No', 1419 | alert_types: 'Vibration; Ringtones', 1420 | loudspeaker_: 'Yes', 1421 | wlan: 'Wi-Fi 802.11 b/g/n', 1422 | bluetooth: 'v4.0, LE', 1423 | gps: 'No', 1424 | radio: 'No', 1425 | usb: 'No', 1426 | messaging: 'SMS(threaded view), Email, Push Mail, IM', 1427 | browser: 'No', 1428 | java: 'No', 1429 | features_c: '- MP3 player\r\n - Photo viewer\r\n - Voice dial/commands', 1430 | battery_c: 'Non-removable Li-Ion 205 mAh battery (0.78 Wh)', 1431 | stand_by: 'Up to 18 h (mixed usage)', 1432 | talk_time: 'Up to 3 h', 1433 | colors: 1434 | 'Silver/White, Orange, Blue; Gray/Black; Rose Gold/Lavender, Stone; Gold/White, Blue', 1435 | sensors: 'Accelerometer, gyro, heart rate', 1436 | cpu: '520 MHz', 1437 | internal: '8 GB, 512 MB RAM', 1438 | os: 'watchOS 1.0, upgradable to v2.1', 1439 | body_c: '- IPX7 certified - water resistant up to 1 meter and 30 minutes', 1440 | chipset: 'Apple S1', 1441 | protection: 'Ion-X strengthened glass', 1442 | gpu: 'PowerVR SGX543', 1443 | multitouch: 'Yes', 1444 | nfc: 'Yes', 1445 | build: 'Aluminum', 1446 | _2g_bands: ' N/A', 1447 | _3_5mm_jack_: 'No' 1448 | }, 1449 | { 1450 | DeviceName: 'Apple iPad Pro', 1451 | Brand: 'Apple', 1452 | technology: 'GSM / CDMA / HSPA / EVDO / LTE', 1453 | gprs: 'Yes', 1454 | edge: 'Yes', 1455 | announced: '2015, September', 1456 | status: 'Available. Released 2015, November', 1457 | dimensions: '305.7 x 220.6 x 6.9 mm (12.04 x 8.69 x 0.27 in)', 1458 | weight: '713 g (Wi-Fi) / 723 g (LTE) (1.57 lb)', 1459 | sim: 'Nano-SIM/ Apple SIM (US & UK)', 1460 | type: 'LED-backlit IPS LCD, capacitive touchscreen, 16M colors', 1461 | size: '12.9 inches (~77.0% screen-to-body ratio)', 1462 | resolution: '2048 x 2732 pixels (~264 ppi pixel density)', 1463 | card_slot: 'No', 1464 | alert_types: 'N/A', 1465 | loudspeaker_: 'Yes, with stereo speakers (4 speakers)', 1466 | wlan: 'Wi-Fi 802.11 a/b/g/n/ac, dual-band, hotspot', 1467 | bluetooth: 'v4.0, A2DP, EDR', 1468 | gps: 'Yes, with A-GPS, GLONASS (Wi‑Fi + Cellular model only)', 1469 | radio: 'No', 1470 | usb: 'v3.0, reversible connector', 1471 | messaging: 'iMessage, Email, Push Email, IM', 1472 | browser: 'HTML5 (Safari)', 1473 | java: 'No', 1474 | features_c: 1475 | '- Apple Smart Keyboard magnetic dock (optional)\r\n - Active noise cancellation with dedicated mic\r\n - Siri natural language commands and dictation\r\n - iCloud cloud service\r\n - iCloud Keychain\r\n - TV-out\r\n - Maps\r\n - Audio/video player/editor\r\n - Organizer\r\n - Document viewer/editor\r\n - Photo viewer/editor\r\n - Voice memo/dial/command\r\n - Predictive text input', 1476 | battery_c: 'Non-removable Li-Ion 10,307 mAh battery (38.8 Wh)', 1477 | talk_time: 'Up to 10 h (multimedia)', 1478 | colors: 'Space Gray, Silver, Gold', 1479 | sensors: 'Fingerprint, accelerometer, gyro, compass, barometer', 1480 | cpu: 'Dual-core 2.26 GHz (Twister)', 1481 | internal: '32/128 GB, 4 GB RAM', 1482 | os: 'iOS 9, upgradable to iOS 9.2', 1483 | body_c: '- Apple Pencil stylus', 1484 | primary_: '8 MP, f/2.4, 31mm, autofocus', 1485 | video: '1080p@30fps, 720p@120fps, HDR, stereo sound rec.', 1486 | secondary: 1487 | '1.2 MP, 720p@30fps, face detection, HDR, FaceTime over Wi-Fi or Cellular', 1488 | speed: 'HSPA 42.2/5.76 Mbps, LTE Cat4 150/50 Mbps, EV-DO Rev.A 3.1 Mbps', 1489 | network_c: 'CDMA2000 1xEV-DO ', 1490 | chipset: 'Apple A9X', 1491 | features: 1492 | '1.12\u00c2\u00b5m pixel size, geo-tagging, touch focus, face/smile detection, HDR (photo/panorama)', 1493 | protection: 'Scratch-resistant glass, oleophobic coating', 1494 | multitouch: 'Yes', 1495 | nfc: 'NFC', 1496 | camera: ' Photo / Video', 1497 | _2g_bands: 'GSM 850 / 900 / 1800 / 1900 ', 1498 | _3_5mm_jack_: 'Yes', 1499 | _3g_bands: 'HSDPA 850 / 900 / 1700 / 1900 / 2100 ', 1500 | _4g_bands: 1501 | 'LTE band 1(2100), 2(1900), 3(1800), 4(1700/2100), 5(850), 7(2600), 8(900), 13(700), 17(700), 18(800), 19(800), 20(800), 25(1900), 26(850), 28(700), 29(700), 38(2600), 39(1900), 40(2300), 41(2500)' 1502 | }, 1503 | { 1504 | DeviceName: 'Apple iPad mini 4', 1505 | Brand: 'Apple', 1506 | technology: 'GSM / CDMA / HSPA / EVDO / LTE', 1507 | gprs: 'Yes', 1508 | edge: 'Yes', 1509 | announced: '2015, September', 1510 | status: 'Available. Released 2015, September', 1511 | dimensions: '203.2 x 134.8 x 6.1 mm (8.0 x 5.31 x 0.24 in)', 1512 | weight: '299 g (Wi-Fi) / 304 g (3G/LTE) (10.55 oz)', 1513 | sim: 'Nano-SIM/ Apple SIM (US & UK)', 1514 | type: 'LED-backlit IPS LCD, capacitive touchscreen, 16M colors', 1515 | size: '7.9 inches (~70.6% screen-to-body ratio)', 1516 | resolution: '1536 x 2048 pixels (~324 ppi pixel density)', 1517 | card_slot: 'No', 1518 | alert_types: 'N/A', 1519 | loudspeaker_: 'Yes, with stereo speakers', 1520 | wlan: 'Wi-Fi 802.11 a/b/g/n/ac, dual-band, hotspot', 1521 | bluetooth: 'v4.0, A2DP, EDR', 1522 | gps: 'Yes, with A-GPS, GLONASS (3G/LTE model only)', 1523 | radio: 'No', 1524 | usb: 'v2.0, reversible connector', 1525 | messaging: 'iMessage, Email, Push Email, IM', 1526 | browser: 'HTML5 (Safari)', 1527 | java: 'No', 1528 | features_c: 1529 | '- Active noise cancellation with dedicated mic\r\n - Siri natural language commands and dictation\r\n - iCloud cloud service\r\n - iCloud Keychain\r\n - TV-out\r\n - Maps\r\n - Audio/video player/editor\r\n - Organizer\r\n - Document viewer/editor\r\n - Photo viewer/editor\r\n - Voice memo/dial/command\r\n - Predictive text input', 1530 | battery_c: 'Non-removable Li-Ion 5124 mAh battery (19.1 Wh)', 1531 | talk_time: 'Up to 10 h (multimedia)', 1532 | colors: 'Space Gray, Silver, Gold', 1533 | sensors: 'Fingerprint, accelerometer, gyro, compass, barometer', 1534 | cpu: 'Dual-core 1.5 GHz Typhoon', 1535 | internal: '16/64/128 GB, 2 GB RAM', 1536 | os: 'iOS 9, upgradable to iOS 9.2', 1537 | primary_: '8 MP, f/2.4, 32mm, autofocus', 1538 | video: '1080p@30fps, 720p@120fps, HDR, stereo sound rec.', 1539 | secondary: 1540 | '1.2 MP, 720p@30fps, face detection, HDR, FaceTime over Wi-Fi or Cellular', 1541 | speed: 'HSPA 42.2/5.76 Mbps, LTE Cat4 150/50 Mbps, EV-DO Rev.A 3.1 Mbps', 1542 | network_c: 'CDMA2000 1xEV-DO ', 1543 | chipset: 'Apple A8', 1544 | features: 1545 | '1.12\u00c2\u00b5m pixel size, geo-tagging, touch focus, face/smile detection, HDR (photo/panorama)', 1546 | protection: 'Scratch-resistant glass, oleophobic coating', 1547 | gpu: 'PowerVR GX6450 (quad-core graphics)', 1548 | multitouch: 'Yes', 1549 | _2g_bands: 'GSM 850 / 900 / 1800 / 1900 ', 1550 | _3_5mm_jack_: 'Yes', 1551 | _3g_bands: 'HSDPA 850 / 900 / 1700 / 1900 / 2100 ', 1552 | _4g_bands: 1553 | 'LTE band 1(2100), 2(1900), 3(1800), 4(1700/2100), 5(850), 7(2600), 8(900), 13(700), 17(700), 18(800), 19(800), 20(800), 25(1900), 26(850), 28(700), 29(700), 38(2600), 39(1900), 40(2300), 41(2500) - Cellular version only' 1554 | }, 1555 | { 1556 | DeviceName: 'Apple iPhone 6s Plus', 1557 | Brand: 'Apple', 1558 | technology: 'GSM / CDMA / HSPA / EVDO / LTE', 1559 | gprs: 'Yes', 1560 | edge: 'Yes', 1561 | announced: '2015, September', 1562 | status: 'Available. Released 2015, September', 1563 | dimensions: '158.2 x 77.9 x 7.3 mm (6.23 x 3.07 x 0.29 in)', 1564 | weight: '192 g (6.77 oz)', 1565 | sim: 'Nano-SIM', 1566 | type: 'LED-backlit IPS LCD, capacitive touchscreen, 16M colors', 1567 | size: '5.5 inches (~67.7% screen-to-body ratio)', 1568 | resolution: '1080 x 1920 pixels (~401 ppi pixel density)', 1569 | display_c: '- Force Touch display\r\n - Display Zoom', 1570 | card_slot: 'No', 1571 | alert_types: 'Vibration, proprietary ringtones', 1572 | loudspeaker_: 'Yes', 1573 | wlan: 'Wi-Fi 802.11 a/b/g/n/ac, dual-band, hotspot', 1574 | bluetooth: 'v4.2, A2DP, LE', 1575 | gps: 'Yes, with A-GPS, GLONASS', 1576 | radio: 'No', 1577 | usb: 'v2.0, reversible connector', 1578 | messaging: 'iMessage, SMS (threaded view), MMS, Email, Push Email', 1579 | browser: 'HTML5 (Safari)', 1580 | java: 'No', 1581 | features_c: 1582 | '- Active noise cancellation with dedicated mic\r\n - Siri natural language commands and dictation\r\n - iCloud cloud service\r\n - iCloud Keychain\r\n - TV-out\r\n - Maps\r\n - Organizer\r\n - Document editor\r\n - Photo/video editor', 1583 | battery_c: 'Non-removable Li-Po 2750 mAh battery (10.45 Wh)', 1584 | stand_by: 'Up to 384 h (3G)', 1585 | talk_time: 'Up to 24 h (3G)', 1586 | colors: 'Space Gray, Silver, Gold, Rose Gold', 1587 | sar_us: ' 1.12 W/kg (head)     1.14 W/kg (body)     ', 1588 | sar_eu: ' 0.93 W/kg (head)     0.98 W/kg (body)     ', 1589 | sensors: 'Fingerprint, accelerometer, gyro, proximity, compass, barometer', 1590 | cpu: 'Dual-core 1.84 GHz Twister', 1591 | internal: '16/64/128 GB, 2 GB RAM', 1592 | os: 'iOS 9, upgradable to iOS 9.2', 1593 | body_c: '- Apple Pay (Visa, MasterCard, AMEX certified)', 1594 | primary_: 1595 | '12 MP, f/2.2, 29mm, phase detection autofocus, dual-LED (dual tone) flash', 1596 | video: '2160p@30fps, 1080p@60fps,1080p@120fps, 720p@240fps', 1597 | secondary: 1598 | '5 MP, f/2.2, 31mm, 1080p@30fps, 720p@240fps, face detection, HDR, panorama', 1599 | speed: 'HSPA 42.2/5.76 Mbps, LTE Cat6 300/50 Mbps, EV-DO Rev.A 3.1 Mbps', 1600 | network_c: 1601 | 'LTE band 1(2100), 2(1900), 3(1800), 4(1700/2100), 5(850), 7(2600), 8(900), 12(700), 13(700), 17(700), 18(800), 19(800), 20(800), 25(1900), 26(850), 28(700), 29(700), 30(2300), 38(2600), 39(1900), 40(2300), 41(2500) - A1634', 1602 | chipset: 'Apple A9', 1603 | features: 1604 | '1/3" sensor size, 1.22 \u00c2\u00b5m pixel size, geo-tagging, simultaneous 4K video and 8MP image recording, touch focus, face/smile detection, HDR (photo/panorama)', 1605 | music_play: 'Up to 80 h', 1606 | protection: 'Ion-strengthened glass, oleophobic coating', 1607 | gpu: 'PowerVR GT7600 (six-core graphics)', 1608 | multitouch: 'Yes', 1609 | loudspeaker: ' Voice 65dB / Noise 65dB / Ring 64dB', 1610 | audio_quality: ' Noise -93.4dB / Crosstalk -71.1dB', 1611 | nfc: 'Yes (Apple Pay only)', 1612 | camera: ' Photo / Video', 1613 | display: ' Contrast ratio: 1382:1 (nominal), 3.530 (sunlight)', 1614 | performance: ' Basemark OS II 2.0: 2261', 1615 | _2g_bands: 'GSM 850 / 900 / 1800 / 1900 ', 1616 | _3_5mm_jack_: 'Yes', 1617 | _3g_bands: 'HSDPA 850 / 900 / 1700 / 1900 / 2100 ', 1618 | _4g_bands: 1619 | 'LTE band 1(2100), 2(1900), 3(1800), 4(1700/2100), 5(850), 7(2600), 8(900), 12(700), 13(700), 17(700), 18(800), 19(800), 20(800), 25(1900), 26(850), 28(700), 29(700), 30(2300) - A1633' 1620 | }, 1621 | { 1622 | DeviceName: 'Apple iPhone 6s', 1623 | Brand: 'Apple', 1624 | technology: 'GSM / CDMA / HSPA / EVDO / LTE', 1625 | gprs: 'Yes', 1626 | edge: 'Yes', 1627 | announced: '2015, September', 1628 | status: 'Available. Released 2015, September', 1629 | dimensions: '138.3 x 67.1 x 7.1 mm (5.44 x 2.64 x 0.28 in)', 1630 | weight: '143 g (5.04 oz)', 1631 | sim: 'Nano-SIM', 1632 | type: 'LED-backlit IPS LCD, capacitive touchscreen, 16M colors', 1633 | size: '4.7 inches (~65.6% screen-to-body ratio)', 1634 | resolution: '750 x 1334 pixels (~326 ppi pixel density)', 1635 | display_c: '- Force Touch display\r\n - Display Zoom', 1636 | card_slot: 'No', 1637 | alert_types: 'Vibration, proprietary ringtones', 1638 | loudspeaker_: 'Yes', 1639 | wlan: 'Wi-Fi 802.11 a/b/g/n/ac, dual-band, hotspot', 1640 | bluetooth: 'v4.2, A2DP, LE', 1641 | gps: 'Yes, with A-GPS, GLONASS', 1642 | radio: 'No', 1643 | usb: 'v2.0, reversible connector', 1644 | messaging: 'iMessage, SMS (threaded view), MMS, Email, Push Email', 1645 | browser: 'HTML5 (Safari)', 1646 | java: 'No', 1647 | features_c: 1648 | '- Active noise cancellation with dedicated mic\r\n - Siri natural language commands and dictation\r\n - iCloud cloud service\r\n - iCloud Keychain\r\n - TV-out\r\n - Maps\r\n - Organizer\r\n - Document editor\r\n - Photo/video editor', 1649 | battery_c: 'Non-removable Li-Po 1715 mAh battery (6.9 Wh)', 1650 | stand_by: 'Up to 240 h (3G)', 1651 | talk_time: 'Up to 14 h (3G)', 1652 | colors: 'Space Gray, Silver, Gold, Rose Gold', 1653 | sar_us: ' 1.14 W/kg (head)     1.14 W/kg (body)     ', 1654 | sar_eu: ' 0.87 W/kg (head)     0.98 W/kg (body)     ', 1655 | sensors: 'Fingerprint, accelerometer, gyro, proximity, compass, barometer', 1656 | cpu: 'Dual-core 1.84 GHz Twister', 1657 | internal: '16/64/128 GB, 2 GB RAM', 1658 | os: 'iOS 9, upgradable to iOS 9.2', 1659 | body_c: '- Apple Pay (Visa, MasterCard, AMEX certified)', 1660 | primary_: 1661 | '12 MP, f/2.2, 29mm, phase detection autofocus, dual-LED (dual tone) flash', 1662 | video: '2160p@30fps, 1080p@60fps,1080p@120fps, 720p@240fps', 1663 | secondary: 1664 | '5 MP, f/2.2, 31mm, 1080p@30fps, 720p@240fps, face detection, HDR, panorama', 1665 | speed: 'HSPA 42.2/5.76 Mbps, LTE Cat6 300/50 Mbps, EV-DO Rev.A 3.1 Mbps', 1666 | network_c: 1667 | 'LTE band 1(2100), 2(1900), 3(1800), 4(1700/2100), 5(850), 7(2600), 8(900), 12(700), 13(700), 17(700), 18(800), 19(800), 20(800), 25(1900), 26(850), 28(700), 29(700), 30(2300), 38(2600), 39(1900), 40(2300), 41(2500) - A1687', 1668 | chipset: 'Apple A9', 1669 | features: 1670 | '1/3" sensor size, 1.22 \u00c2\u00b5m pixel size, geo-tagging, simultaneous 4K video and 8MP image recording, touch focus, face/smile detection, HDR (photo/panorama)', 1671 | music_play: 'Up to 50 h', 1672 | protection: 'Ion-strengthened glass, oleophobic coating', 1673 | gpu: 'PowerVR GT7600 (six-core graphics)', 1674 | multitouch: 'Yes', 1675 | loudspeaker: ' Voice 66dB / Noise 64dB / Ring 65dB', 1676 | audio_quality: ' Noise -93.8dB / Crosstalk -73.2dB', 1677 | nfc: 'Yes (Apple Pay only)', 1678 | camera: ' Photo / Video', 1679 | display: ' Contrast ratio: 1481 (nominal), 3.783 (sunlight)', 1680 | performance: ' Basemark OS II 2.0: 2195', 1681 | _2g_bands: 'GSM 850 / 900 / 1800 / 1900 ', 1682 | _3_5mm_jack_: 'Yes', 1683 | _3g_bands: 'HSDPA 850 / 900 / 1700 / 1900 / 2100 ', 1684 | _4g_bands: 1685 | 'LTE band 1(2100), 2(1900), 3(1800), 4(1700/2100), 5(850), 7(2600), 8(900), 12(700), 13(700), 17(700), 18(800), 19(800), 20(800), 25(1900), 26(850), 28(700), 29(700) - A1688' 1686 | }, 1687 | { 1688 | DeviceName: 'Apple iPad Air 2', 1689 | Brand: 'Apple', 1690 | technology: 'GSM / CDMA / HSPA / EVDO / LTE', 1691 | gprs: 'Yes', 1692 | edge: 'Yes', 1693 | announced: '2014, October', 1694 | status: 'Available. Released 2014, October', 1695 | dimensions: '240 x 169.5 x 6.1 mm (9.45 x 6.67 x 0.24 in)', 1696 | weight: '437 g (Wi-Fi) / 444 g (3G/LTE) (15.41 oz)', 1697 | sim: 'Nano-SIM/ Apple SIM (US & UK)', 1698 | type: 'LED-backlit IPS LCD, capacitive touchscreen, 16M colors', 1699 | size: '9.7 inches (~71.6% screen-to-body ratio)', 1700 | resolution: '1536 x 2048 pixels (~264 ppi pixel density)', 1701 | card_slot: 'No', 1702 | alert_types: 'N/A', 1703 | loudspeaker_: 'Yes, with stereo speakers', 1704 | wlan: 'Wi-Fi 802.11 a/b/g/n/ac, dual-band, hotspot', 1705 | bluetooth: 'v4.0, A2DP, EDR', 1706 | gps: 'Yes, with A-GPS, GLONASS (3G/LTE model only)', 1707 | radio: 'No', 1708 | usb: 'v2.0, reversible connector', 1709 | messaging: 'iMessage, Email, Push Email, IM', 1710 | browser: 'HTML5 (Safari)', 1711 | java: 'No', 1712 | features_c: 1713 | '- Active noise cancellation with dedicated mic\r\n - Siri natural language commands and dictation\r\n - iCloud cloud service\r\n - iCloud Keychain\r\n - TV-out\r\n - Maps\r\n - Audio/video player/editor\r\n - Organizer\r\n - Document viewer/editor\r\n - Photo viewer/editor\r\n - Voice memo/dial/command\r\n - Predictive text input', 1714 | battery_c: 'Non-removable Li-Po battery (27.3 Wh)', 1715 | talk_time: 'Up to 10 h (multimedia)', 1716 | colors: 'Space Gray, Silver, Gold', 1717 | sensors: 'Fingerprint, accelerometer, gyro, compass, barometer', 1718 | cpu: 'Triple-core 1.5 GHz Typhoon', 1719 | internal: '16/64/128 GB, 2 GB RAM', 1720 | os: 'iOS 8.1, upgradable to iOS 9.2', 1721 | primary_: '8 MP, f/2.4, 31mm, autofocus', 1722 | video: '1080p@30fps, 720p@120fps, HDR, stereo sound rec.', 1723 | secondary: 1724 | '1.2 MP, f/2.2, 31mm, 720p@30fps, face detection, HDR, FaceTime over Wi-Fi or Cellular', 1725 | speed: 'HSPA 42.2/5.76 Mbps, LTE Cat4 150/50 Mbps, EV-DO Rev.A 3.1 Mbps', 1726 | network_c: 'CDMA2000 1xEV-DO ', 1727 | chipset: 'Apple A8X', 1728 | features: 1729 | '1.12\u00c2\u00b5m pixel size, geo-tagging, touch focus, face/smile detection, HDR (photo/panorama)', 1730 | protection: 'Scratch-resistant glass, oleophobic coating', 1731 | gpu: 'PowerVR GXA6850 (octa-core graphics)', 1732 | multitouch: 'Yes', 1733 | loudspeaker: ' Voice 75dB / Noise 70dB / Ring 78dB', 1734 | audio_quality: ' Noise -93.9dB / Crosstalk -83.9dB', 1735 | camera: ' Photo / Video', 1736 | display: ' Contrast ratio: 1048 (nominal)', 1737 | performance: ' Basemark OS II: 1937 / Basemark X: 29753', 1738 | _2g_bands: 'GSM 850 / 900 / 1800 / 1900 ', 1739 | _3_5mm_jack_: 'Yes', 1740 | _3g_bands: 'HSDPA 850 / 900 / 1700 / 1900 / 2100 ', 1741 | _4g_bands: 1742 | 'LTE band 1(2100), 2(1900), 3(1800), 4(1700/2100), 5(850), 7(2600), 8(900), 13(700), 17(700), 18(800), 19(800), 20(800), 25(1900), 26(850), 28(700), 29(700), 38(2600), 39(1900), 40(2300), 41(2500) - A1567' 1743 | }, 1744 | { 1745 | DeviceName: 'Apple iPad mini 3', 1746 | Brand: 'Apple', 1747 | technology: 'GSM / CDMA / HSPA / EVDO / LTE', 1748 | gprs: 'Yes', 1749 | edge: 'Yes', 1750 | announced: '2014, October', 1751 | status: 'Available. Released 2014, October', 1752 | dimensions: '200 x 134.7 x 7.5 mm (7.87 x 5.30 x 0.30 in)', 1753 | weight: '331 g (Wi-Fi) / 341 g (3G/LTE) (11.68 oz)', 1754 | sim: 'Nano-SIM/ Apple SIM (US & UK)', 1755 | type: 'LED-backlit IPS LCD capacitive touchscreen, 16M colors', 1756 | size: '7.9 inches (~71.7% screen-to-body ratio)', 1757 | resolution: '1536 x 2048 pixels (~324 ppi pixel density)', 1758 | card_slot: 'No', 1759 | alert_types: 'N/A', 1760 | loudspeaker_: 'Yes, with stereo speakers', 1761 | wlan: 'Wi-Fi 802.11 a/b/g/n, dual-band', 1762 | bluetooth: 'v4.0, A2DP, EDR', 1763 | gps: 'Yes, with A-GPS, GLONASS', 1764 | radio: 'No', 1765 | usb: 'v2.0, reversible connector', 1766 | messaging: 'iMessage, Email, Push Email, IM', 1767 | browser: 'HTML5 (Safari)', 1768 | java: 'No', 1769 | features_c: 1770 | '- Active noise cancellation with dedicated mic\r\n - Siri natural language commands and dictation\r\n - iCloud cloud service\r\n - iCloud Keychain\r\n - TV-out\r\n - Maps\r\n - Audio/video player/editor\r\n - Organizer\r\n - Photo viewer/editor\r\n - Document viewer/editor\r\n - Voice memo\r\n - Predictive text input', 1771 | battery_c: 'Non-removable Li-Po 6470 mAh battery (24.3 Wh)', 1772 | talk_time: 'Up to 10 h (multimedia)', 1773 | colors: 'Space Gray/Black, Silver/White, Gold', 1774 | sensors: 'Fingerprint, accelerometer, gyro, compass', 1775 | cpu: 'Dual-core 1.3 GHz Cyclone (ARM v8-based)', 1776 | internal: '16/64/128 GB, 1 GB RAM DDR3', 1777 | os: 'iOS 8.1, upgradable to iOS 9.2', 1778 | primary_: '5 MP, f/2.4, 32mm, autofocus', 1779 | video: '1080p@30fps', 1780 | secondary: 1781 | '1.2 MP, 720p@30fps, face detection, FaceTime over Wi-Fi or Cellular', 1782 | speed: 'HSPA 42.2/5.76 Mbps, LTE Cat3 100/50 Mbps, EV-DO Rev.A 3.1 Mbps', 1783 | network_c: 1784 | 'LTE band 1(2100), 2(1900), 3(1800), 5(850), 7(2600), 8(900), 18(800), 19(800), 20(800), 38(2600), 39(1900), 40(2300) - A1601', 1785 | chipset: 'Apple A7', 1786 | features: 'Geo-tagging, touch focus, face/smile detection, HDR photo', 1787 | protection: 'Oleophobic coating', 1788 | gpu: 'PowerVR G6430 (quad-core graphics)', 1789 | multitouch: 'Yes', 1790 | loudspeaker: ' Voice 65dB / Noise 63dB / Ring 70dB', 1791 | audio_quality: ' Noise -93.7dB / Crosstalk -85.2dB', 1792 | camera: ' Photo / Video', 1793 | display: ' Contrast ratio: 812 (nominal)', 1794 | performance: ' Basemark OS II: 1099 / Basemark X: 14781', 1795 | _2g_bands: 'GSM 850 / 900 / 1800 / 1900 ', 1796 | _3_5mm_jack_: 'Yes', 1797 | _3g_bands: 'HSDPA 850 / 900 / 1700 / 1900 / 2100 ', 1798 | _4g_bands: 1799 | 'LTE band 1(2100), 2(1900), 3(1800), 4(1700/2100), 5(850), 7(2600), 8(900), 13(700), 17(700), 18(800), 19(800), 20(800), 25(1900), 26(850) - A1600' 1800 | }, 1801 | { 1802 | DeviceName: 'Apple iPhone 6 Plus', 1803 | Brand: 'Apple', 1804 | technology: 'GSM / CDMA / HSPA / EVDO / LTE', 1805 | gprs: 'Yes', 1806 | edge: 'Yes', 1807 | announced: '2014, September', 1808 | status: 'Available. Released 2014, September', 1809 | dimensions: '158.1 x 77.8 x 7.1 mm (6.22 x 3.06 x 0.28 in)', 1810 | weight: '172 g (6.07 oz)', 1811 | sim: 'Nano-SIM', 1812 | type: 'LED-backlit IPS LCD, capacitive touchscreen, 16M colors', 1813 | size: '5.5 inches (~67.8% screen-to-body ratio)', 1814 | resolution: '1080 x 1920 pixels (~401 ppi pixel density)', 1815 | display_c: '- Display Zoom', 1816 | card_slot: 'No', 1817 | alert_types: 'Vibration, proprietary ringtones', 1818 | loudspeaker_: 'Yes', 1819 | wlan: 'Wi-Fi 802.11 a/b/g/n/ac, dual-band, hotspot', 1820 | bluetooth: 'v4.0, A2DP, LE', 1821 | gps: 'Yes, with A-GPS, GLONASS', 1822 | radio: 'No', 1823 | usb: 'v2.0, reversible connector', 1824 | messaging: 'iMessage, SMS (threaded view), MMS, Email, Push Email', 1825 | browser: 'HTML5 (Safari)', 1826 | java: 'No', 1827 | features_c: 1828 | '- Active noise cancellation with dedicated mic\r\n - Siri natural language commands and dictation\r\n - iCloud cloud service\r\n - iCloud Keychain\r\n - TV-out\r\n - Maps\r\n - iBooks PDF reader\r\n - Audio/video player/editor\r\n - Organizer\r\n - Document viewer/editor\r\n - Photo viewer/editor\r\n - Voice memo/dial/command\r\n - Predictive text input', 1829 | battery_c: 'Non-removable Li-Po 2915 mAh battery (11.1 Wh)', 1830 | stand_by: 'Up to 384 h (3G)', 1831 | talk_time: 'Up to 24 h (3G)', 1832 | colors: 'Space Gray, Silver, Gold', 1833 | sar_us: ' 1.19 W/kg (head)     1.19 W/kg (body)     ', 1834 | sar_eu: ' 0.99 W/kg (head)     0.91 W/kg (body)     ', 1835 | sensors: 'Fingerprint, accelerometer, gyro, proximity, compass, barometer', 1836 | cpu: 'Dual-core 1.4 GHz Typhoon (ARM v8-based)', 1837 | internal: '16/64/128 GB, 1 GB RAM DDR3', 1838 | os: 'iOS 8, upgradable to iOS 9.2', 1839 | body_c: '- Apple Pay (Visa, MasterCard, AMEX certified)', 1840 | primary_: 1841 | '8 MP, f/2.2, 29mm, OIS, phase detection autofocus, dual-LED (dual tone) flash', 1842 | video: '1080p@60fps, 720p@240fps', 1843 | secondary: 1844 | '1.2 MP, f/2.2, 31mm, 720p@30fps, face detection, HDR, FaceTime over Wi-Fi or Cellular', 1845 | speed: 'HSPA 42.2/5.76 Mbps, LTE Cat4 150/50 Mbps, EV-DO Rev.A 3.1 Mbps', 1846 | network_c: 1847 | 'LTE band 1(2100), 2(1900), 3(1800), 4(1700/2100), 5(850), 7(2600), 8(900), 13(700), 17(700), 18(800), 19(800), 20(800), 25(1900), 26(850), 28(700), 29(700), 38(2600), 39(1900), 40(2300), 41(2500) - A1524', 1848 | chipset: 'Apple A8', 1849 | features: 1850 | '1/3" sensor size, 1.5 \u00c2\u00b5m pixel size, touch focus, geo-tagging, face/smile detection, HDR (photo/panorama)', 1851 | music_play: 'Up to 80 h', 1852 | protection: 'Ion-strengthened glass, oleophobic coating', 1853 | gpu: 'PowerVR GX6450 (quad-core graphics)', 1854 | multitouch: 'Yes', 1855 | loudspeaker: ' Voice 67dB / Noise 65dB / Ring 66dB', 1856 | audio_quality: ' Noise -94dB / Crosstalk -72dB', 1857 | nfc: 'Yes (Apple Pay only)', 1858 | camera: ' Photo / Video', 1859 | display: ' Contrast ratio: 1361 (nominal), 3.023 (sunlight)', 1860 | performance: ' Basemark OS II: 1222', 1861 | _2g_bands: 'GSM 850 / 900 / 1800 / 1900 - A1522 (GSM), A1522 (CDMA), A1524', 1862 | _3_5mm_jack_: 'Yes', 1863 | _3g_bands: 1864 | 'HSDPA 850 / 900 / 1700 / 1900 / 2100 - A1522 (GSM), A1522 (CDMA), A1524', 1865 | _4g_bands: 1866 | 'LTE band 1(2100), 2(1900), 3(1800), 4(1700/2100), 5(850), 7(2600), 8(900), 13(700), 17(700), 18(800), 19(800), 20(800), 25(1900), 26(850), 28(700), 29(700) - A1522 GSM, A1522 CDMA' 1867 | }, 1868 | { 1869 | DeviceName: 'Apple iPhone 6', 1870 | Brand: 'Apple', 1871 | technology: 'GSM / CDMA / HSPA / EVDO / LTE', 1872 | gprs: 'Yes', 1873 | edge: 'Yes', 1874 | announced: '2014, September', 1875 | status: 'Available. Released 2014, September', 1876 | dimensions: '138.1 x 67 x 6.9 mm (5.44 x 2.64 x 0.27 in)', 1877 | weight: '129 g (4.55 oz)', 1878 | sim: 'Nano-SIM', 1879 | type: 'LED-backlit IPS LCD, capacitive touchscreen, 16M colors', 1880 | size: '4.7 inches (~65.8% screen-to-body ratio)', 1881 | resolution: '750 x 1334 pixels (~326 ppi pixel density)', 1882 | display_c: '- Display Zoom', 1883 | card_slot: 'No', 1884 | alert_types: 'Vibration, proprietary ringtones', 1885 | loudspeaker_: 'Yes', 1886 | wlan: 'Wi-Fi 802.11 a/b/g/n/ac, dual-band, hotspot', 1887 | bluetooth: 'v4.0, A2DP, LE', 1888 | gps: 'Yes, with A-GPS, GLONASS', 1889 | radio: 'No', 1890 | usb: 'v2.0, reversible connector', 1891 | messaging: 'iMessage, SMS (threaded view), MMS, Email, Push Email', 1892 | browser: 'HTML5 (Safari)', 1893 | java: 'No', 1894 | features_c: 1895 | '- Active noise cancellation with dedicated mic\r\n - Siri natural language commands and dictation\r\n - iCloud cloud service\r\n - iCloud Keychain\r\n - TV-out\r\n - Maps\r\n - Audio/video player/editor\r\n - Organizer\r\n - Document viewer/editor\r\n - Photo viewer/editor\r\n - Voice memo/dial/command\r\n - Predictive text input', 1896 | battery_c: 'Non-removable Li-Po 1810 mAh battery (6.9 Wh)', 1897 | stand_by: 'Up to 250 h (3G)', 1898 | talk_time: 'Up to 14 h (3G)', 1899 | colors: 'Space Gray, Silver, Gold', 1900 | sar_us: ' 1.18 W/kg (head)     1.18 W/kg (body)     ', 1901 | sar_eu: ' 0.98 W/kg (head)     0.97 W/kg (body)     ', 1902 | sensors: 'Fingerprint, accelerometer, gyro, proximity, compass, barometer', 1903 | cpu: 'Dual-core 1.4 GHz Typhoon (ARM v8-based)', 1904 | internal: '16/64/128 GB, 1 GB RAM DDR3', 1905 | os: 'iOS 8, upgradable to iOS 9.2', 1906 | body_c: '- Apple Pay (Visa, MasterCard, AMEX certified)', 1907 | primary_: 1908 | '8 MP, f/2.2, 29mm, phase detection autofocus, dual-LED (dual tone) flash', 1909 | video: '1080p@60fps, 720p@240fps', 1910 | secondary: 1911 | '1.2 MP, f/2.2, 31mm, 720p@30fps, face detection, HDR, FaceTime over Wi-Fi or Cellular', 1912 | speed: 'HSPA 42.2/5.76 Mbps, LTE Cat4 150/50 Mbps, EV-DO Rev.A 3.1 Mbps', 1913 | network_c: 1914 | 'LTE band 1(2100), 2(1900), 3(1800), 4(1700/2100), 5(850), 7(2600), 8(900), 13(700), 17(700), 18(800), 19(800), 20(800), 25(1900), 26(850), 28(700), 29(700), 38(2600), 39(1900), 40(2300), 41(2500) - A1586', 1915 | chipset: 'Apple A8', 1916 | features: 1917 | '1/3" sensor size, 1.5 \u00c2\u00b5m pixel size, touch focus, geo-tagging, face/smile detection, HDR (photo/panorama)', 1918 | music_play: 'Up to 50 h', 1919 | protection: 'Ion-strengthened glass, oleophobic coating', 1920 | gpu: 'PowerVR GX6450 (quad-core graphics)', 1921 | multitouch: 'Yes', 1922 | loudspeaker: ' Voice 66dB / Noise 65dB / Ring 72dB', 1923 | audio_quality: ' Noise -94dB / Crosstalk -73.4dB', 1924 | nfc: 'Yes (Apple Pay only)', 1925 | camera: ' Photo / Video', 1926 | display: ' Contrast ratio: 1213 (nominal), 3.838 (sunlight)', 1927 | performance: ' Basemark OS II: 1252 / Basemark X: 15841', 1928 | _2g_bands: 'GSM 850 / 900 / 1800 / 1900 - A1549 (GSM), A1549 (CDMA), A1586', 1929 | _3_5mm_jack_: 'Yes', 1930 | _3g_bands: 1931 | 'HSDPA 850 / 900 / 1700 / 1900 / 2100 - A1549 (GSM), A1549 (CDMA), A1586', 1932 | _4g_bands: 1933 | 'LTE band 1(2100), 2(1900), 3(1800), 4(1700/2100), 5(850), 7(2600), 8(900), 13(700), 17(700), 18(800), 19(800), 20(800), 25(1900), 26(850), 28(700), 29(700) - A1549 GSM, A1549 CDMA' 1934 | }, 1935 | { 1936 | DeviceName: 'Apple iPad Air', 1937 | Brand: 'Apple', 1938 | technology: 'GSM / CDMA / HSPA / EVDO / LTE', 1939 | gprs: 'Yes', 1940 | edge: 'Yes', 1941 | announced: '2013, October', 1942 | status: 'Available. Released November 2013', 1943 | dimensions: '240 x 169.5 x 7.5 mm (9.45 x 6.67 x 0.30 in)', 1944 | weight: '469 g (Wi-Fi) / 478 g (3G/LTE) (1.03 lb)', 1945 | sim: 'Nano-SIM', 1946 | type: 'LED-backlit IPS LCD, capacitive touchscreen, 16M colors', 1947 | size: '9.7 inches (~71.6% screen-to-body ratio)', 1948 | resolution: '1536 x 2048 pixels (~264 ppi pixel density)', 1949 | card_slot: 'No', 1950 | alert_types: 'N/A', 1951 | loudspeaker_: 'Yes, with stereo speakers', 1952 | wlan: 'Wi-Fi 802.11 a/b/g/n, dual-band, hotspot', 1953 | bluetooth: 'v4.0, A2DP, EDR', 1954 | gps: 'Yes, with A-GPS, GLONASS (3G/LTE model only)', 1955 | radio: 'No', 1956 | usb: 'v2.0, reversible connector', 1957 | messaging: 'iMessage, Email, Push Email, IM', 1958 | browser: 'HTML5 (Safari)', 1959 | java: 'No', 1960 | features_c: 1961 | '- Active noise cancellation with dedicated mic\r\n - Siri natural language commands and dictation\r\n - iCloud cloud service\r\n - iCloud Keychain\r\n - TV-out\r\n - Maps\r\n - Audio/video player/editor\r\n - Organizer\r\n - Photo viewer/editor\r\n - Document viewer/editor\r\n - Voice memo\r\n - Predictive text input', 1962 | battery_c: 'Non-removable Li-Po 8600 mAh battery (32.4 Wh)', 1963 | talk_time: 'Up to 10 h (multimedia)', 1964 | colors: 'Space Gray, Silver', 1965 | sar_us: ' 1.18 W/kg (body)     ', 1966 | sar_eu: ' 0.99 W/kg (body)     ', 1967 | sensors: 'Accelerometer, gyro, compass', 1968 | cpu: 'Dual-core 1.3 GHz Cyclone (ARM v8-based)', 1969 | internal: '16/32/64/128 GB, 1 GB RAM DDR3', 1970 | os: 'iOS 7, upgradable to iOS 9.2', 1971 | primary_: '5 MP, f/2.4, 33mm, autofocus', 1972 | video: '1080p@30fps', 1973 | secondary: 1974 | '1.2 MP, 720p@30fps, face detection, FaceTime over Wi-Fi or Cellular', 1975 | speed: 'HSPA 42.2/5.76 Mbps, LTE Cat3 100/50 Mbps, EV-DO Rev.A 3.1 Mbps', 1976 | network_c: 'CDMA2000 1xEV-DO ', 1977 | chipset: 'Apple A7', 1978 | features: 1979 | 'Geo-tagging, touch focus, face/smile detection, HDR (photo/panorama)', 1980 | protection: 'Scratch-resistant glass, oleophobic coating', 1981 | gpu: 'PowerVR G6430 (quad-core graphics)', 1982 | multitouch: 'Yes', 1983 | loudspeaker: ' Voice 67dB / Noise 65dB / Ring 76dB', 1984 | audio_quality: ' Noise -93.9dB / Crosstalk -89.9dB', 1985 | camera: ' Photo / Video', 1986 | display: ' Contrast ratio: 968:1 (nominal) / 2.504:1 (sunlight)', 1987 | performance: ' Basemark OS II: 1128 / Basemark X: 13597', 1988 | _2g_bands: 'GSM 850 / 900 / 1800 / 1900 ', 1989 | _3_5mm_jack_: 'Yes', 1990 | _3g_bands: 'HSDPA 850 / 900 / 1900 / 2100 ', 1991 | _4g_bands: ' LTE' 1992 | }, 1993 | { 1994 | DeviceName: 'Apple iPad mini 2', 1995 | Brand: 'Apple', 1996 | technology: 'GSM / CDMA / HSPA / EVDO / LTE', 1997 | gprs: 'Yes', 1998 | edge: 'Yes', 1999 | announced: '2013, October', 2000 | status: 'Available. Released 2013, November', 2001 | dimensions: '200 x 134.7 x 7.5 mm (7.87 x 5.30 x 0.30 in)', 2002 | weight: '331 g (Wi-Fi) / 341 g (3G/LTE) (11.68 oz)', 2003 | sim: 'Nano-SIM', 2004 | type: 'LED-backlit IPS LCD capacitive touchscreen, 16M colors', 2005 | size: '7.9 inches (~71.7% screen-to-body ratio)', 2006 | resolution: '1536 x 2048 pixels (~324 ppi pixel density)', 2007 | card_slot: 'No', 2008 | alert_types: 'N/A', 2009 | loudspeaker_: 'Yes, with stereo speakers', 2010 | wlan: 'Wi-Fi 802.11 a/b/g/n, dual-band', 2011 | bluetooth: 'v4.0, A2DP, EDR', 2012 | gps: 'Yes, with A-GPS, GLONASS', 2013 | radio: 'No', 2014 | usb: 'v2.0, reversible connector', 2015 | messaging: 'iMessage, Email, Push Email, IM', 2016 | browser: 'HTML5 (Safari)', 2017 | java: 'No', 2018 | features_c: 2019 | '- Active noise cancellation with dedicated mic\r\n - Siri natural language commands and dictation\r\n - iCloud cloud service\r\n - iCloud Keychain\r\n - TV-out\r\n - Maps\r\n - Audio/video player/editor\r\n - Organizer\r\n - Photo viewer/editor\r\n - Document viewer/editor\r\n - Voice memo\r\n - Predictive text input', 2020 | battery_c: 'Non-removable Li-Po 6470 mAh battery (24.3 Wh)', 2021 | talk_time: 'Up to 10 h (multimedia)', 2022 | colors: 'Space Gray/Black, Silver/White', 2023 | sar_us: ' 1.19 W/kg (body)     ', 2024 | sar_eu: ' 0.99 W/kg (body)     ', 2025 | sensors: 'Accelerometer, gyro, compass', 2026 | cpu: 'Dual-core 1.3 GHz Cyclone (ARM v8-based)', 2027 | internal: '16/32/64/128 GB, 1 GB RAM DDR3', 2028 | os: 'iOS 7, upgradable to iOS 9.2', 2029 | primary_: '5 MP, f/2.4, 33mm, autofocus', 2030 | video: '1080p@30fps', 2031 | secondary: 2032 | '1.2 MP, 720p@30fps, face detection, FaceTime over Wi-Fi or Cellular', 2033 | speed: 'HSPA 42.2/5.76 Mbps, LTE Cat3 100/50 Mbps, EV-DO Rev.A 3.1 Mbps', 2034 | network_c: 2035 | 'LTE band 1(2100), 2(1900), 3(1800), 5(850), 7(2600), 8(900), 18(800), 19(800), 20(800), 38(2600), 39(1900), 40(2300) - A1491', 2036 | chipset: 'Apple A7', 2037 | features: 'Geo-tagging, touch focus, face/smile detection, HDR photo', 2038 | protection: 'Oleophobic coating', 2039 | gpu: 'PowerVR G6430 (quad-core graphics)', 2040 | multitouch: 'Yes', 2041 | loudspeaker: ' Voice 65dB / Noise 62dB / Ring 72dB', 2042 | audio_quality: ' Noise -93.8dB / Crosstalk -82.9dB', 2043 | camera: ' Photo / Video', 2044 | display: ' Contrast ratio: 804:1 (nominal)', 2045 | performance: ' Basemark OS II: 1073 / Basemark X: 13286', 2046 | _2g_bands: 'GSM 850 / 900 / 1800 / 1900 ', 2047 | _3_5mm_jack_: 'Yes', 2048 | _3g_bands: 'HSDPA 850 / 900 / 1900 / 2100 ', 2049 | _4g_bands: 2050 | 'LTE band 1(2100), 2(1900), 3(1800), 4(1700/2100), 5(850), 7(2600), 8(900), 13(700), 17(700), 18(800), 19(800), 20(800), 25(1900), 26(850) - A1490' 2051 | }, 2052 | { 2053 | DeviceName: 'Apple iPhone 5c', 2054 | Brand: 'Apple', 2055 | technology: 'GSM / CDMA / HSPA / LTE', 2056 | gprs: 'Yes', 2057 | edge: 'Yes', 2058 | announced: '2013, September', 2059 | status: 'Available. Released 2013, September', 2060 | dimensions: '124.4 x 59.2 x 9 mm (4.90 x 2.33 x 0.35 in)', 2061 | weight: '132 g (4.66 oz)', 2062 | sim: 'Nano-SIM', 2063 | type: 'LED-backlit IPS LCD, capacitive touchscreen, 16M colors', 2064 | size: '4.0 inches (~59.9% screen-to-body ratio)', 2065 | resolution: '640 x 1136 pixels (~326 ppi pixel density)', 2066 | card_slot: 'No', 2067 | alert_types: 'Vibration, proprietary ringtones', 2068 | loudspeaker_: 'Yes', 2069 | bluetooth: 'v4.0, A2DP, LE', 2070 | gps: 'Yes, with A-GPS, GLONASS', 2071 | radio: 'No', 2072 | usb: 'v2.0, reversible connector', 2073 | messaging: 'iMessage, SMS (threaded view), MMS, Email, Push Email', 2074 | browser: 'HTML5 (Safari)', 2075 | java: 'No', 2076 | features_c: 2077 | '- Active noise cancellation with dedicated mic\r\n - Siri natural language commands and dictation\r\n - iCloud cloud service\r\n - TV-out\r\n - Maps\r\n - Audio/video player/editor\r\n - Organizer\r\n - Document viewer/editor\r\n - Photo viewer/editor\r\n - Voice memo/dial/command\r\n - Predictive text input', 2078 | battery_c: 'Non-removable Li-Po 1510 mAh battery (5.73 Wh)', 2079 | stand_by: 'Up to 250 h (2G) / Up to 250 h (3G)', 2080 | talk_time: 'Up to 10 h (3G)', 2081 | colors: ' White, Blue, Green, Yellow, Pink', 2082 | sar_us: ' 1.15 W/kg (head)     1.17 W/kg (body)     ', 2083 | sar_eu: ' 1.00 W/kg (head)     0.96 W/kg (body)     ', 2084 | sensors: 'Accelerometer, gyro, proximity, compass', 2085 | cpu: 'Dual-core 1.3 GHz Swift (ARM v7-based)', 2086 | internal: '8/16/32 GB, 1 GB RAM', 2087 | os: 'iOS 7, upgradable to iOS 9.2', 2088 | primary_: '8 MP, f/2.4, 33mm, autofocus, LED flash', 2089 | video: '1080p@30fps', 2090 | secondary: 2091 | '1.2 MP, 720p@30fps, face detection, FaceTime over Wi-Fi or Cellular', 2092 | speed: 'HSPA 42.2/5.76 Mbps, LTE Cat3 100/50 Mbps, EV-DO Rev.A 3.1 Mbps', 2093 | network_c: 2094 | 'LTE band 1(2100), 2(1900), 3(1800), 5(850), 7(2600), 8(900), 20(800), 38(2600), 39(1900), 40(2300) - A1529', 2095 | chipset: 'Apple A6', 2096 | features: 2097 | '1/3.2" sensor size, 1.4 \u00c2\u00b5m pixel size, touch focus, geo-tagging, face detection, panorama, HDR (photo/panorama)', 2098 | music_play: 'Up to 40 h', 2099 | gpu: 'PowerVR SGX 543MP3 (triple-core graphics)', 2100 | multitouch: 'Yes', 2101 | loudspeaker: ' Voice 66dB / Noise 65dB / Ring 66dB', 2102 | audio_quality: ' Noise -93.9dB / Crosstalk -80.3dB', 2103 | camera: ' Photo / Video', 2104 | display: ' Contrast ratio: 1233:1 (nominal) / 3.512:1 (sunlight)', 2105 | performance: ' Basemark OS II: 573 / Basemark X: 2225', 2106 | _2g_bands: 'GSM 850 / 900 / 1800 / 1900 - all versions', 2107 | _3_5mm_jack_: 'Yes', 2108 | _3g_bands: 2109 | 'HSDPA 850 / 900 / 1700 / 1900 / 2100 - A1532 (GSM), A1532 (CDMA), A1456', 2110 | _4g_bands: 2111 | 'LTE band 1(2100), 2(1900), 3(1800), 4(1700/2100), 5(850), 8(900), 13(700), 17(700), 19(800), 20(800), 25(1900) - A1532 GSM, A1532 CDMA' 2112 | }, 2113 | { 2114 | DeviceName: 'Apple iPhone 5s', 2115 | Brand: 'Apple', 2116 | technology: 'GSM / CDMA / HSPA / EVDO / LTE', 2117 | gprs: 'Yes', 2118 | edge: 'Yes', 2119 | announced: '2013, September', 2120 | status: 'Available. Released 2013, September', 2121 | dimensions: '123.8 x 58.6 x 7.6 mm (4.87 x 2.31 x 0.30 in)', 2122 | weight: '112 g (3.95 oz)', 2123 | sim: 'Nano-SIM', 2124 | type: 'LED-backlit IPS LCD, capacitive touchscreen, 16M colors', 2125 | size: '4.0 inches (~60.8% screen-to-body ratio)', 2126 | resolution: '640 x 1136 pixels (~326 ppi pixel density)', 2127 | card_slot: 'No', 2128 | alert_types: 'Vibration, proprietary ringtones', 2129 | loudspeaker_: 'Yes', 2130 | wlan: 'Wi-Fi 802.11 a/b/g/n, dual-band, hotspot', 2131 | bluetooth: 'v4.0, A2DP', 2132 | gps: 'Yes, with A-GPS, GLONASS', 2133 | radio: 'No', 2134 | usb: 'v2.0, reversible connector', 2135 | messaging: 'iMessage, SMS (threaded view), MMS, Email, Push Email', 2136 | browser: 'HTML5 (Safari)', 2137 | java: 'No', 2138 | features_c: 2139 | '- Active noise cancellation with dedicated mic\r\n - Siri natural language commands and dictation\r\n - iCloud cloud service\r\n - iCloud Keychain\r\n - TV-out\r\n - Maps\r\n - Audio/video player/editor\r\n - Organizer\r\n - Document viewer/editor\r\n - Photo viewer/editor\r\n - Voice memo/dial/command\r\n - Predictive text input', 2140 | battery_c: 'Non-removable Li-Po 1560 mAh battery (5.92 Wh)', 2141 | stand_by: 'Up to 250 h (2G) / Up to 250 h (3G)', 2142 | talk_time: 'Up to 10 h (2G) / Up to 10 h (3G)', 2143 | colors: 'Space Gray, White/Silver, Gold', 2144 | sar_us: ' 1.12 W/kg (head)     1.18 W/kg (body)     ', 2145 | sar_eu: ' 1.00 W/kg (head)     0.80 W/kg (body)     ', 2146 | sensors: 'Fingerprint, accelerometer, gyro, proximity, compass', 2147 | cpu: 'Dual-core 1.3 GHz Cyclone (ARM v8-based)', 2148 | internal: '16/32/64 GB, 1 GB RAM DDR3', 2149 | os: 'iOS 7, upgradable to iOS 9.2', 2150 | primary_: '8 MP, f/2.2, 29mm, autofocus, dual-LED (dual tone) flash', 2151 | video: '1080p@30fps, 720p@120fps', 2152 | secondary: 2153 | '1.2 MP, f/2.2, 31mm, 720p@30fps, face detection, HDR, FaceTime over Wi-Fi or Cellular', 2154 | speed: 'HSPA 42.2/5.76 Mbps, LTE Cat3 100/50 Mbps, EV-DO Rev.A 3.1 Mbps', 2155 | network_c: 2156 | 'LTE band 1(2100), 2(1900), 3(1800), 5(850), 7(2600), 8(900), 20(800), 38(2600), 39(1900), 40(2300) - A1530', 2157 | chipset: 'Apple A7', 2158 | features: 2159 | '1/3" sensor size, 1.5 \u00c2\u00b5m pixel size, touch focus, geo-tagging, face/smile detection, HDR (photo/panorama)', 2160 | music_play: 'Up to 40 h', 2161 | protection: 'Corning Gorilla Glass, oleophobic coating', 2162 | gpu: 'PowerVR G6430 (quad-core graphics)', 2163 | multitouch: 'Yes', 2164 | loudspeaker: ' Voice 68dB / Noise 66dB / Ring 69dB', 2165 | audio_quality: ' Noise -93.6dB / Crosstalk -90.3dB', 2166 | camera: ' Photo / Video', 2167 | display: ' Contrast ratio: 1219:1 (nominal) / 3.565:1 (sunlight)', 2168 | performance: ' Basemark OS II: 1077 / Basemark X: 14341', 2169 | _2g_bands: 'GSM 850 / 900 / 1800 / 1900 - all models', 2170 | _3_5mm_jack_: 'Yes', 2171 | _3g_bands: 'HSDPA 850 / 900 / 1700 / 1900 / 2100 - A1533 (GSM), A1453', 2172 | _4g_bands: 2173 | 'LTE band 1(2100), 2(1900), 3(1800), 4(1700/2100), 5(850), 8(900), 13(700), 17(700), 19(800), 20(800), 25(1900) - A1533 GSM, A1533 CDMA' 2174 | }, 2175 | { 2176 | DeviceName: 'Apple iPad 4 Wi-Fi', 2177 | Brand: 'Apple', 2178 | technology: 'No cellular connectivity', 2179 | gprs: 'No', 2180 | edge: 'No', 2181 | announced: '2012, October', 2182 | status: 'Available. Released 2012, November', 2183 | dimensions: '241.2 x 185.7 x 9.4 mm (9.50 x 7.31 x 0.37 in)', 2184 | weight: '652 g (1.44 lb)', 2185 | sim: 'No', 2186 | type: 'LED-backlit IPS LCD, capacitive touchscreen, 16M colors', 2187 | size: '9.7 inches (~65.1% screen-to-body ratio)', 2188 | resolution: '1536 x 2048 pixels (~264 ppi pixel density)', 2189 | card_slot: 'No', 2190 | alert_types: 'N/A', 2191 | loudspeaker_: 'Yes', 2192 | wlan: 'Wi-Fi 802.11 a/b/g/n, dual-band', 2193 | bluetooth: 'v4.0, A2DP', 2194 | gps: 'No', 2195 | radio: 'No', 2196 | usb: 'v2.0, reversible connector', 2197 | messaging: 'iMessage, Email, Push Email, IM', 2198 | browser: 'HTML5 (Safari)', 2199 | java: 'No', 2200 | features_c: 2201 | '- iCloud cloud service\r\n - TV-out\r\n - Maps\r\n - Audio/video player/editor\r\n - Organizer\r\n - Document viewer/editor\r\n - Photo viewer/editor\r\n - Voice memo\r\n - Predictive text input', 2202 | battery_c: 'Non-removable Li-Po 11560 mAh battery (42.5 Wh)', 2203 | stand_by: 'Up to 720 h', 2204 | talk_time: 'Up to 10 h', 2205 | colors: 'Black, White', 2206 | sensors: 'Accelerometer, gyro, compass', 2207 | cpu: 'Dual-core 1.4 GHz', 2208 | internal: '16/32/64/128 GB, 1 GB RAM', 2209 | os: 'iOS 6, upgradable to iOS 9.2', 2210 | primary_: '5 MP, autofocus', 2211 | video: '1080p@30fps', 2212 | secondary: '1.2 MP, 720p@30fps, face detection, FaceTime over Wi-Fi', 2213 | chipset: 'Apple A6X', 2214 | features: 'Geo-tagging, touch focus, face detection', 2215 | protection: 'Scratch-resistant glass, oleophobic coating', 2216 | gpu: 'PowerVR SGX554MP4 (quad-core graphics)', 2217 | multitouch: 'Yes', 2218 | camera: ' Photo / Video', 2219 | _2g_bands: ' N/A', 2220 | _3_5mm_jack_: 'Yes' 2221 | }, 2222 | { 2223 | DeviceName: 'Apple iPad 4 Wi-Fi + Cellular', 2224 | Brand: 'Apple', 2225 | technology: 'GSM / CDMA / HSPA / EVDO / LTE', 2226 | gprs: 'Yes', 2227 | edge: 'Yes', 2228 | announced: '2012, October', 2229 | status: 'Available. Released 2012, November', 2230 | dimensions: '241.2 x 185.7 x 9.4 mm (9.50 x 7.31 x 0.37 in)', 2231 | weight: '662 g (1.46 lb)', 2232 | sim: 'Micro-SIM', 2233 | type: 'LED-backlit IPS LCD, capacitive touchscreen, 16M colors', 2234 | size: '9.7 inches (~65.1% screen-to-body ratio)', 2235 | resolution: '1536 x 2048 pixels (~264 ppi pixel density)', 2236 | card_slot: 'No', 2237 | alert_types: 'N/A', 2238 | loudspeaker_: 'Yes', 2239 | wlan: 'Wi-Fi 802.11 a/b/g/n, dual-band, hotspot', 2240 | bluetooth: 'v4.0, A2DP', 2241 | gps: 'Yes, with A-GPS, GLONASS', 2242 | radio: 'No', 2243 | usb: 'v2.0, reversible connector', 2244 | messaging: 'iMessage, Email, Push Email, IM', 2245 | browser: 'HTML5 (Safari)', 2246 | java: 'No', 2247 | features_c: 2248 | '- iCloud cloud service\r\n - Twitter and Facebook integration\r\n - TV-out\r\n - Maps\r\n - Audio/video player/editor\r\n - Organizer\r\n - Document viewer/editor\r\n - Photo viewer/editor\r\n - Voice memo\r\n - Predictive text input', 2249 | battery_c: 'Non-removable Li-Po 11560 mAh battery (42.5 Wh)', 2250 | stand_by: 'Up to 720 h', 2251 | talk_time: 'Up to 9 h', 2252 | colors: 'Black, White', 2253 | sensors: 'Accelerometer, gyro, compass', 2254 | cpu: 'Dual-core 1.4 GHz', 2255 | internal: '16/32/64/128 GB, 1 GB RAM', 2256 | os: 'iOS 6, upgradable to iOS 9.2', 2257 | primary_: '5 MP, autofocus', 2258 | video: '1080p@30fps', 2259 | secondary: 2260 | '1.2 MP, 720p@30fps, face detection, FaceTime over Wi-Fi or Cellular', 2261 | speed: 'HSPA 42.2/5.76 Mbps, LTE, EV-DO Rev.A 3.1 Mbps', 2262 | network_c: ' LTE 700 / 850 / 1800 / 1900 / 2100 - A1460', 2263 | chipset: 'Apple A6X', 2264 | features: 'Geo-tagging, touch focus, face detection', 2265 | protection: 'Scratch-resistant glass, oleophobic coating', 2266 | gpu: 'PowerVR SGX554MP4 (quad-core graphics)', 2267 | multitouch: 'Yes', 2268 | loudspeaker: ' Voice 67dB / Noise 66dB / Ring 75dB', 2269 | audio_quality: ' Noise -85.7dB / Crosstalk -85.2dB', 2270 | display: ' Contrast ratio: 762:1 (nominal)', 2271 | _2g_bands: 'GSM 850 / 900 / 1800 / 1900 - A1459/ A1460', 2272 | _3_5mm_jack_: 'Yes', 2273 | _3g_bands: 'HSDPA 850 / 900 / 1900 / 2100 - A1459/ A1460', 2274 | _4g_bands: 'LTE band 4(1700/2100), 17(700) - A1459' 2275 | }, 2276 | { 2277 | DeviceName: 'Apple iPad mini Wi-Fi', 2278 | Brand: 'Apple', 2279 | technology: 'No cellular connectivity', 2280 | gprs: 'No', 2281 | edge: 'No', 2282 | announced: '2012, October', 2283 | status: 'Available. Released 2012, November', 2284 | dimensions: '200 x 134.7 x 7.2 mm (7.87 x 5.30 x 0.28 in)', 2285 | weight: '308 g (10.86 oz)', 2286 | sim: 'No', 2287 | type: 'LED-backlit IPS LCD capacitive touchscreen, 16M colors', 2288 | size: '7.9 inches (~71.7% screen-to-body ratio)', 2289 | resolution: '768 x 1024 pixels (~162 ppi pixel density)', 2290 | card_slot: 'No', 2291 | alert_types: 'N/A', 2292 | loudspeaker_: 'Yes, with stereo speakers', 2293 | wlan: 'Wi-Fi 802.11 a/b/g/n, dual-band', 2294 | bluetooth: 'v4.0, A2DP, EDR', 2295 | gps: 'No', 2296 | radio: 'No', 2297 | usb: 'v2.0, reversible connector', 2298 | messaging: 'iMessage, Email, Push Email, IM', 2299 | browser: 'HTML5 (Safari)', 2300 | java: 'No', 2301 | features_c: 2302 | '- Siri natural language commands and dictation\r\n - iCloud cloud service\r\n - Maps\r\n - Audio/video player/editor\r\n - Photo viewer/editor\r\n - Voice memo\r\n - TV-out\r\n - Document viewer/editor\r\n - Predictive text input', 2303 | battery_c: 'Non-removable Li-Po 4490 mAh battery (16.7 Wh)', 2304 | talk_time: 'Up to 10 h (multimedia)', 2305 | colors: 'Black/Slate, White/Silver', 2306 | sensors: 'Accelerometer, gyro, compass', 2307 | cpu: 'Dual-core 1.0 GHz Cortex-A9', 2308 | internal: '16/32/64 GB, 512 MB RAM', 2309 | os: 'iOS 6, upgradable to iOS 9.2', 2310 | primary_: '5 MP, autofocus', 2311 | video: '1080p@30fps', 2312 | secondary: '1.2 MP, 720p@30fps, face detection, FaceTime over Wi-Fi', 2313 | chipset: 'Apple A5', 2314 | features: 'Geo-tagging, touch focus, face detection', 2315 | protection: 'Oleophobic coating', 2316 | gpu: 'PowerVR SGX543MP2', 2317 | multitouch: 'Yes', 2318 | camera: ' Photo / Video', 2319 | performance: ' Basemark OS II: 336', 2320 | _2g_bands: ' N/A', 2321 | _3_5mm_jack_: 'Yes' 2322 | }, 2323 | { 2324 | DeviceName: 'Apple iPad mini Wi-Fi + Cellular', 2325 | Brand: 'Apple', 2326 | technology: 'GSM / CDMA / HSPA / LTE', 2327 | gprs: 'Yes', 2328 | edge: 'Yes', 2329 | announced: '2012, October', 2330 | status: 'Available. Released 2012, November', 2331 | dimensions: '200 x 134.7 x 7.2 mm (7.87 x 5.30 x 0.28 in)', 2332 | weight: '312 g (11.01 oz)', 2333 | sim: 'Nano-SIM', 2334 | type: 'LED-backlit IPS LCD capacitive touchscreen, 16M colors', 2335 | size: '7.9 inches (~71.7% screen-to-body ratio)', 2336 | resolution: '768 x 1024 pixels (~162 ppi pixel density)', 2337 | card_slot: 'No', 2338 | alert_types: 'N/A', 2339 | loudspeaker_: 'Yes, with stereo speakers', 2340 | wlan: 'Wi-Fi 802.11 a/b/g/n, dual-band', 2341 | bluetooth: 'v4.0, A2DP, EDR', 2342 | gps: 'Yes, with A-GPS, GLONASS', 2343 | radio: 'No', 2344 | usb: 'v2.0, reversible connector', 2345 | messaging: 'iMessage, Email, Push Email, IM', 2346 | browser: 'HTML5 (Safari)', 2347 | java: 'No', 2348 | features_c: 2349 | '- Siri natural language commands and dictation\r\n - iCloud cloud service\r\n - Twitter and Facebook integration\r\n - Maps\r\n - Audio/video player/editor\r\n - Photo viewer/editor\r\n - Voice memo\r\n - TV-out\r\n - Document viewer\r\n - Predictive text input', 2350 | battery_c: 'Non-removable Li-Po 4490 mAh battery (16.7 Wh)', 2351 | talk_time: 'Up to 10 h (multimedia)', 2352 | colors: 'Black/Slate, White/Silver', 2353 | sensors: 'Accelerometer, gyro, compass', 2354 | cpu: 'Dual-core 1.0 GHz Cortex-A9', 2355 | internal: '16/32/64 GB, 512 MB RAM', 2356 | os: 'iOS 6, upgradable to iOS 9.2', 2357 | primary_: '5 MP, autofocus', 2358 | video: '1080p@30fps', 2359 | secondary: 2360 | '1.2 MP, 720p@30fps, face detection, FaceTime over Wi-Fi or Cellular', 2361 | speed: 'HSPA 42.2/5.76 Mbps, LTE Cat3 100/50 Mbps, EV-DO Rev.A 3.1 Mbps', 2362 | network_c: ' LTE 700 / 850 / 1800 / 1900 / 2100 - A1455', 2363 | chipset: 'Apple A5', 2364 | features: 'Geo-tagging, touch focus, face detection', 2365 | protection: 'Oleophobic coating', 2366 | gpu: 'PowerVR SGX543MP2', 2367 | multitouch: 'Yes', 2368 | loudspeaker: ' Voice 68dB / Noise 65dB / Ring 75dB', 2369 | audio_quality: ' Noise -82.8dB / Crosstalk -80.8dB', 2370 | display: ' Contrast ratio: 812:1 (nominal)', 2371 | _2g_bands: 'GSM 850 / 900 / 1800 / 1900 - A1454; A1455', 2372 | _3_5mm_jack_: 'Yes', 2373 | _3g_bands: 'HSDPA 850 / 900 / 1900 / 2100 - A1454; A1455', 2374 | _4g_bands: 'LTE band 4(1700/2100), 17(700) - A1454' 2375 | }, 2376 | { 2377 | DeviceName: 'Apple iPhone 5', 2378 | Brand: 'Apple', 2379 | technology: 'GSM / CDMA / HSPA / EVDO / LTE', 2380 | gprs: 'Yes', 2381 | edge: 'Yes', 2382 | announced: '2012, September', 2383 | status: 'Available. Released 2012, September ', 2384 | dimensions: '123.8 x 58.6 x 7.6 mm (4.87 x 2.31 x 0.30 in)', 2385 | weight: '112 g (3.95 oz)', 2386 | sim: 'Nano-SIM', 2387 | type: 'LED-backlit IPS LCD, capacitive touchscreen, 16M colors', 2388 | size: '4.0 inches (~60.8% screen-to-body ratio)', 2389 | resolution: '640 x 1136 pixels (~326 ppi pixel density)', 2390 | card_slot: 'No', 2391 | alert_types: 'Vibration, proprietary ringtones', 2392 | loudspeaker_: 'Yes', 2393 | wlan: 'Wi-Fi 802.11 a/b/g/n, dual-band, hotspot', 2394 | bluetooth: 'v4.0, A2DP, LE', 2395 | gps: 'Yes, with A-GPS, GLONASS', 2396 | radio: 'No', 2397 | usb: 'v2.0, reversible connector', 2398 | messaging: 'iMessage, SMS (threaded view), MMS, Email, Push Email', 2399 | browser: 'HTML5 (Safari)', 2400 | java: 'No', 2401 | features_c: 2402 | '- Active noise cancellation with dedicated mic\r\n - AirDrop file sharing\r\n - Siri natural language commands and dictation\r\n - iCloud cloud service\r\n - TV-out\r\n - Maps\r\n - Audio/video player/editor\r\n - Organizer\r\n - Document viewer/editor\r\n - Photo viewer/editor\r\n - Voice memo/dial/command\r\n - Predictive text input', 2403 | battery_c: 'Non-removable Li-Po 1440 mAh battery (5.45 Wh)', 2404 | stand_by: 'Up to 225 h (2G) / Up to 225 h (3G)', 2405 | talk_time: 'Up to 8 h (2G) / Up to 8 h (3G)', 2406 | colors: 'Black/Slate, White/Silver', 2407 | sar_us: ' 1.18 W/kg (head)     1.18 W/kg (body)     ', 2408 | sar_eu: ' 0.95 W/kg (head)     0.90 W/kg (body)     ', 2409 | sensors: 'Accelerometer, gyro, proximity, compass', 2410 | cpu: 'Dual-core 1.3 GHz Swift (ARM v7-based)', 2411 | internal: '16/32/64 GB, 1 GB RAM DDR2', 2412 | os: 'iOS 6, upgradable to iOS 9.2', 2413 | primary_: '8 MP, f/2.4, 33mm, autofocus, LED flash', 2414 | video: '1080p@30fps', 2415 | secondary: 2416 | '1.2 MP, f/2.4, 35mm, 720p@30fps, face detection, FaceTime over Wi-Fi or Cellular', 2417 | speed: 'HSPA 42.2/5.76 Mbps, LTE Cat3 100/50 Mbps, EV-DO Rev.A 3.1 Mbps', 2418 | network_c: ' LTE 850 / 1800 / 2100 - GSM A1429', 2419 | chipset: 'Apple A6', 2420 | features: 2421 | '1/3.2" sensor size, 1.4 \u00c2\u00b5m pixel size, touch focus, geo-tagging, face detection, panorama, HDR (photo)', 2422 | music_play: 'Up to 40 h', 2423 | protection: 'Corning Gorilla Glass, oleophobic coating', 2424 | gpu: 'PowerVR SGX 543MP3 (triple-core graphics)', 2425 | multitouch: 'Yes', 2426 | loudspeaker: ' Voice 66dB / Noise 66dB / Ring 67dB', 2427 | audio_quality: ' Noise -91.3dB / Crosstalk -76.5dB', 2428 | camera: ' Photo / Video', 2429 | display: ' Contrast ratio: 1320:1 (nominal) / 3.997:1 (sunlight)', 2430 | performance: ' Basemark OS II: 589 / Basemark X: 2229', 2431 | _2g_bands: 'GSM 850 / 900 / 1800 / 1900 - GSM A1428', 2432 | _3_5mm_jack_: 'Yes', 2433 | _3g_bands: 'HSDPA 850 / 900 / 1700 / 1900 / 2100 - GSM A1428', 2434 | _4g_bands: 'LTE band 4(1700/2100), 17(700) - GSM A1428' 2435 | }, 2436 | { 2437 | DeviceName: 'Apple iPad 3 Wi-Fi', 2438 | Brand: 'Apple', 2439 | technology: 'No cellular connectivity', 2440 | gprs: 'No', 2441 | edge: 'No', 2442 | announced: '2012, March', 2443 | status: 'Available. Released 2012, March 16th', 2444 | dimensions: '241.2 x 185.7 x 9.4 mm (9.50 x 7.31 x 0.37 in)', 2445 | weight: '652 g (1.44 lb)', 2446 | sim: 'No', 2447 | type: 'LED-backlit IPS LCD, capacitive touchscreen, 16M colors', 2448 | size: '9.7 inches (~65.1% screen-to-body ratio)', 2449 | resolution: '1536 x 2048 pixels (~264 ppi pixel density)', 2450 | card_slot: 'No', 2451 | alert_types: 'N/A', 2452 | loudspeaker_: 'Yes', 2453 | wlan: 'Wi-Fi 802.11 a/b/g/n, dual-band', 2454 | bluetooth: 'v4.0, A2DP', 2455 | gps: 'No', 2456 | radio: 'No', 2457 | usb: 'v2.0', 2458 | messaging: 'iMessage, Email, Push Email, IM', 2459 | browser: 'HTML5 (Safari)', 2460 | java: 'No', 2461 | features_c: 2462 | '- iCloud cloud service\r\n - TV-out\r\n - Maps\r\n - Audio/video player/editor\r\n - Organizer\r\n - Document viewer\r\n - Photo viewer/editor\r\n - Voice memo\r\n - Predictive text input', 2463 | battery_c: 'Non-removable Li-Po 11560 mAh battery (42.5 Wh)', 2464 | stand_by: 'Up to 720 h', 2465 | talk_time: 'Up to 10 h', 2466 | colors: 'Black, White', 2467 | sensors: 'Accelerometer, gyro, compass', 2468 | cpu: 'Dual-core 1.0 GHz Cortex-A9', 2469 | internal: '16/32/64 GB, 1 GB RAM', 2470 | os: 'iOS 5.1, upgradable to iOS 9.2', 2471 | primary_: '5 MP, autofocus', 2472 | video: '1080p@30fps', 2473 | secondary: 'VGA, 480p@30fps, videocalling over Wi-Fi only', 2474 | chipset: 'Apple A5X', 2475 | features: 'Geo-tagging, touch focus, face detection', 2476 | protection: 'Scratch-resistant glass, oleophobic coating', 2477 | gpu: 'PowerVR SGX543MP4 (quad-core graphics)', 2478 | multitouch: 'Yes', 2479 | loudspeaker: ' Voice 66dB / Noise 66dB / Ring 77dB', 2480 | audio_quality: ' Noise -90.9dB / Crosstalk -92.7dB', 2481 | display: ' Contrast ratio: 779:1 (nominal)', 2482 | _2g_bands: ' N/A', 2483 | _3_5mm_jack_: 'Yes' 2484 | }, 2485 | { 2486 | DeviceName: 'Apple iPad 3 Wi-Fi + Cellular', 2487 | Brand: 'Apple', 2488 | technology: 'GSM / CDMA / HSPA / EVDO / LTE', 2489 | gprs: 'Yes', 2490 | edge: 'Yes', 2491 | announced: '2012, March', 2492 | status: 'Available. Released 2012, March 16th', 2493 | dimensions: '241.2 x 185.7 x 9.4 mm (9.50 x 7.31 x 0.37 in)', 2494 | weight: '662 g (1.46 lb)', 2495 | sim: 'Micro-SIM', 2496 | type: 'LED-backlit IPS LCD, capacitive touchscreen, 16M colors', 2497 | size: '9.7 inches (~65.1% screen-to-body ratio)', 2498 | resolution: '1536 x 2048 pixels (~264 ppi pixel density)', 2499 | card_slot: 'No', 2500 | alert_types: 'N/A', 2501 | loudspeaker_: 'Yes', 2502 | wlan: 'Wi-Fi 802.11 a/b/g/n, dual-band, hotspot', 2503 | bluetooth: 'v4.0, A2DP', 2504 | gps: 'Yes, with A-GPS', 2505 | radio: 'No', 2506 | usb: 'v2.0', 2507 | messaging: 'iMessage, Email, Push Email, IM', 2508 | browser: 'HTML5 (Safari)', 2509 | java: 'No', 2510 | features_c: 2511 | '- iCloud cloud service\r\n - TV-out\r\n - Maps\r\n - Audio/video player/editor\r\n - Organizer\r\n - Document viewer\r\n - Photo viewer/editor\r\n - Voice memo\r\n - Predictive text input', 2512 | battery_c: 'Non-removable Li-Po 11560 mAh battery (42.5 Wh)', 2513 | stand_by: 'Up to 720 h', 2514 | talk_time: 'Up to 9 h', 2515 | colors: 'Black, White', 2516 | sensors: 'Accelerometer, gyro, compass', 2517 | cpu: 'Dual-core 1.0 GHz Cortex-A9', 2518 | internal: '16/32/64 GB, 1 GB RAM', 2519 | os: 'iOS 5.1, upgradable to iOS 9.2', 2520 | primary_: '5 MP, autofocus', 2521 | video: '1080p@30fps', 2522 | secondary: 'VGA, 480p@30fps, videocalling over Wi-Fi only', 2523 | speed: 'HSPA 42.2/5.76 Mbps, LTE, EV-DO Rev.A 3.1 Mbps', 2524 | network_c: 'LTE band 13(700) - for Verizon', 2525 | chipset: 'Apple A5X', 2526 | features: 'Geo-tagging, touch focus, face detection', 2527 | protection: 'Scratch-resistant glass, oleophobic coating', 2528 | gpu: 'PowerVR SGX543MP4 (quad-core graphics)', 2529 | multitouch: 'Yes', 2530 | camera: ' Photo / Video', 2531 | _2g_bands: 'GSM 850 / 900 / 1800 / 1900 ', 2532 | _3_5mm_jack_: 'Yes', 2533 | _3g_bands: 'HSDPA 850 / 900 / 1900 / 2100 ', 2534 | _4g_bands: 'LTE band 4(1700/2100), 17(700) - AT&T' 2535 | }, 2536 | { 2537 | DeviceName: 'Apple iPhone 4s', 2538 | Brand: 'Apple', 2539 | technology: 'GSM / CDMA / HSPA / EVDO', 2540 | gprs: 'Yes', 2541 | edge: 'Yes', 2542 | announced: '2011, October', 2543 | status: 'Available. Released 2011, October', 2544 | dimensions: '115.2 x 58.6 x 9.3 mm (4.54 x 2.31 x 0.37 in)', 2545 | weight: '140 g (4.94 oz)', 2546 | sim: 'Micro-SIM', 2547 | type: 'LED-backlit IPS LCD, capacitive touchscreen, 16M colors', 2548 | size: '3.5 inches (~54.0% screen-to-body ratio)', 2549 | resolution: '640 x 960 pixels (~330 ppi pixel density)', 2550 | card_slot: 'No', 2551 | alert_types: 'Vibration, proprietary ringtones', 2552 | loudspeaker_: 'Yes', 2553 | wlan: 'Wi-Fi 802.11 b/g/n, hotspot', 2554 | bluetooth: 'v4.0, A2DP, LE', 2555 | gps: 'Yes, with A-GPS, GLONASS', 2556 | radio: 'No', 2557 | usb: 'v2.0', 2558 | messaging: 'iMessage, SMS (threaded view), MMS, Email, Push Email', 2559 | browser: 'HTML5 (Safari)', 2560 | java: 'No', 2561 | features_c: 2562 | '- Active noise cancellation with dedicated mic\r\n - Siri natural language commands and dictation\r\n - iCloud cloud service\r\n - TV-out\r\n - Maps\r\n - Audio/video player/editor\r\n - Organizer\r\n - Document viewer\r\n - Photo viewer/editor\r\n - Voice memo/dial/command\r\n - Predictive text input', 2563 | battery_c: 'Non-removable Li-Po 1432 mAh battery (5.3 Wh)', 2564 | stand_by: 'Up to 200 h (2G) / Up to 200 h (3G)', 2565 | talk_time: 'Up to 14 h (2G) / Up to 8 h (3G)', 2566 | colors: 'Black, White', 2567 | sar_us: ' 1.18 W/kg (head)     0.98 W/kg (body)     ', 2568 | sar_eu: ' 0.99 W/kg (head)     0.99 W/kg (body)     ', 2569 | sensors: 'Accelerometer, gyro, proximity, compass', 2570 | cpu: 'Dual-core 1.0 GHz Cortex-A9', 2571 | internal: '8/16/32/64 GB, 512 MB RAM', 2572 | os: 'iOS 5, upgradable to iOS 9.2', 2573 | body_c: '- Scratch-resistant glass back panel', 2574 | primary_: '8 MP, f/2.4, 35mm, autofocus, LED flash', 2575 | video: '1080p@30fps', 2576 | secondary: 'VGA, 480p@30fps, videocalling over Wi-Fi and 3G', 2577 | speed: 'HSPA 14.4/5.76 Mbps', 2578 | network_c: 'CDMA2000 1xEV-DO ', 2579 | chipset: 'Apple A5', 2580 | features: 2581 | '1/3.2" sensor size, 1.4 \u00c2\u00b5m pixel size, geo-tagging, touch focus, face detection, panorama, HDR photo', 2582 | music_play: 'Up to 40 h', 2583 | protection: 'Corning Gorilla Glass, oleophobic coating', 2584 | gpu: 'PowerVR SGX543MP2', 2585 | multitouch: 'Yes', 2586 | loudspeaker: ' Voice 65dB / Noise 64dB / Ring 74dB', 2587 | audio_quality: ' Noise -91.2dB / Crosstalk -93.0dB', 2588 | camera: ' Photo / Video', 2589 | display: ' Contrast ratio: 1261:1 (nominal) / 2.269:1 (sunlight)', 2590 | _2g_bands: 'GSM 850 / 900 / 1800 / 1900 ', 2591 | _3_5mm_jack_: 'Yes', 2592 | _3g_bands: 'HSDPA 850 / 900 / 1900 / 2100 ' 2593 | }, 2594 | { 2595 | DeviceName: 'Apple iPad 2 CDMA', 2596 | Brand: 'Apple', 2597 | technology: 'CDMA / EVDO', 2598 | gprs: 'No', 2599 | edge: 'No', 2600 | announced: '2011, March', 2601 | status: 'Available. Released 2011, March', 2602 | dimensions: '241.2 x 185.7 x 8.8 mm (9.50 x 7.31 x 0.35 in)', 2603 | weight: '607 g (1.34 lb)', 2604 | sim: 'Mini-SIM', 2605 | type: 'LED-backlit IPS LCD, capacitive touchscreen, 16M colors', 2606 | size: '9.7 inches (~65.1% screen-to-body ratio)', 2607 | resolution: '768 x 1024 pixels (~132 ppi pixel density)', 2608 | card_slot: 'No', 2609 | alert_types: 'N/A', 2610 | loudspeaker_: 'Yes', 2611 | wlan: 'Wi-Fi 802.11 a/b/g/n, dual-band', 2612 | bluetooth: 'v2.1, A2DP, EDR', 2613 | gps: 'Yes, with A-GPS', 2614 | radio: 'No', 2615 | usb: 'v2.0', 2616 | messaging: 'iMessage, Email, Push Email, IM', 2617 | browser: 'HTML (Safari)', 2618 | java: 'No', 2619 | features_c: 2620 | '- iCloud cloud service\r\n - Maps\r\n - Audio/video player/editor\r\n - Photo viewer/editor\r\n - Voice memo\r\n - TV-out\r\n - Document viewer\r\n - Predictive text input', 2621 | battery_c: 'Non-removable Li-Po 6930 mAh battery (25 Wh)', 2622 | colors: 'Black, White', 2623 | sensors: 'Accelerometer, gyro, compass', 2624 | cpu: 'Dual-core 1.0 GHz Cortex-A9', 2625 | internal: '16/32/64 GB, 512 MB RAM', 2626 | os: 'iOS 4, upgradable to iOS 9.2', 2627 | primary_: '0.7 MP', 2628 | video: '720p@30fps', 2629 | secondary: 'VGA', 2630 | speed: 'EV-DO Rev.A 3.1 Mbps', 2631 | chipset: 'Apple A5', 2632 | features: 'No', 2633 | protection: 'Scratch-resistant glass, oleophobic coating', 2634 | gpu: 'PowerVR SGX543MP2', 2635 | multitouch: 'Yes', 2636 | _2g_bands: 'CDMA 800 / 1900 ', 2637 | _3_5mm_jack_: 'Yes', 2638 | _3g_bands: 'CDMA2000 1xEV-DO ' 2639 | }, 2640 | { 2641 | DeviceName: 'Apple iPad 2 Wi-Fi + 3G', 2642 | Brand: 'Apple', 2643 | technology: 'GSM / HSPA', 2644 | gprs: 'Yes', 2645 | edge: 'Yes', 2646 | announced: '2011, March', 2647 | status: 'Available. Released 2011, March', 2648 | dimensions: '241.2 x 185.7 x 8.8 mm (9.50 x 7.31 x 0.35 in)', 2649 | weight: '607 g (1.34 lb)', 2650 | sim: 'Micro-SIM', 2651 | type: 'LED-backlit IPS LCD, capacitive touchscreen, 16M colors', 2652 | size: '9.7 inches (~65.1% screen-to-body ratio)', 2653 | resolution: '768 x 1024 pixels (~132 ppi pixel density)', 2654 | card_slot: 'No', 2655 | alert_types: 'N/A', 2656 | loudspeaker_: 'Yes', 2657 | wlan: 'Wi-Fi 802.11 a/b/g/n, dual-band', 2658 | bluetooth: 'v2.1, A2DP, EDR', 2659 | gps: 'Yes, with A-GPS', 2660 | radio: 'No', 2661 | usb: 'v2.0', 2662 | messaging: 'iMessage, Email, Push Email, IM', 2663 | browser: 'HTML (Safari)', 2664 | java: 'No', 2665 | features_c: 2666 | '- iCloud cloud service\r\n - Maps\r\n - Audio/video player/editor\r\n - Photo viewer/editor\r\n - Voice memo\r\n - TV-out\r\n - Document viewer\r\n - Predictive text input', 2667 | battery_c: 'Non-removable Li-Po 6930 mAh battery (25 Wh)', 2668 | stand_by: 'Up to 720 h', 2669 | talk_time: 'Up to 9 h', 2670 | colors: 'Black, White', 2671 | sar_eu: ' 1.19 W/kg (body)     ', 2672 | sensors: 'Accelerometer, gyro, compass', 2673 | cpu: 'Dual-core 1.0 GHz Cortex-A9', 2674 | internal: '16/32/64 GB, 512 MB RAM', 2675 | os: 'iOS 4, upgradable to iOS 9.2', 2676 | primary_: '0.7 MP', 2677 | video: '720p@30fps', 2678 | secondary: 'VGA', 2679 | speed: 'HSPA 14.4/2 Mbps', 2680 | chipset: 'Apple A5', 2681 | features: 'No', 2682 | protection: 'Scratch-resistant glass, oleophobic coating', 2683 | gpu: 'PowerVR SGX543MP2', 2684 | multitouch: 'Yes', 2685 | loudspeaker: ' Voice 65dB / Noise 65dB / Ring 75dB', 2686 | audio_quality: ' Noise -91.0dB / Crosstalk -93.0dB', 2687 | camera: ' Video', 2688 | display: ' Contrast ratio: 775:1 (nominal)', 2689 | _2g_bands: 'GSM 850 / 900 / 1800 / 1900 ', 2690 | _3_5mm_jack_: 'Yes', 2691 | _3g_bands: 'HSDPA 850 / 900 / 1900 / 2100 ' 2692 | }, 2693 | { 2694 | DeviceName: 'Apple iPad 2 Wi-Fi', 2695 | Brand: 'Apple', 2696 | technology: 'No cellular connectivity', 2697 | gprs: 'No', 2698 | edge: 'No', 2699 | announced: '2011, March. Released 2011, March', 2700 | status: 'Discontinued', 2701 | dimensions: '241.2 x 185.7 x 8.8 mm (9.50 x 7.31 x 0.35 in)', 2702 | weight: '601 g (1.32 lb)', 2703 | sim: 'No', 2704 | type: 'LED-backlit IPS LCD, capacitive touchscreen, 16M colors', 2705 | size: '9.7 inches (~65.1% screen-to-body ratio)', 2706 | resolution: '768 x 1024 pixels (~132 ppi pixel density)', 2707 | card_slot: 'No', 2708 | alert_types: 'N/A', 2709 | loudspeaker_: 'Yes', 2710 | wlan: 'Wi-Fi 802.11 a/b/g/n, dual-band', 2711 | bluetooth: 'v2.1, A2DP, EDR', 2712 | gps: 'No', 2713 | radio: 'No', 2714 | usb: 'v2.0', 2715 | messaging: 'iMessage, Email, Push Email, IM', 2716 | browser: 'HTML (Safari)', 2717 | java: 'No', 2718 | features_c: 2719 | '- iCloud cloud service\r\n - Maps\r\n - Audio/video player/editor\r\n - Photo viewer/editor\r\n - Voice memo\r\n - TV-out\r\n - Document viewer\r\n - Predictive text input', 2720 | battery_c: 'Non-removable Li-Po 6930 mAh battery (25 Wh)', 2721 | stand_by: 'Up to 720 h', 2722 | talk_time: 'Up to 10 h', 2723 | colors: 'Black, White', 2724 | sensors: 'Accelerometer, gyro, compass', 2725 | cpu: 'Dual-core 1.0 GHz Cortex-A9', 2726 | internal: '16/32/64 GB, 512 MB RAM', 2727 | os: 'iOS 4, upgradable to iOS 9.2', 2728 | primary_: '0.7 MP', 2729 | video: '720p@30fps', 2730 | secondary: 'VGA', 2731 | chipset: 'Apple A5', 2732 | features: 'No', 2733 | protection: 'Scratch-resistant glass, oleophobic coating', 2734 | gpu: 'PowerVR SGX543MP2', 2735 | multitouch: 'Yes', 2736 | _2g_bands: ' N/A', 2737 | _3_5mm_jack_: 'Yes' 2738 | }, 2739 | { 2740 | DeviceName: 'Apple iPad Wi-Fi', 2741 | Brand: 'Apple', 2742 | technology: 'No cellular connectivity', 2743 | gprs: 'No', 2744 | edge: 'No', 2745 | announced: '2010, January. Released 2010, March', 2746 | status: 'Discontinued', 2747 | dimensions: '242.8 x 189.7 x 13.4 mm (9.56 x 7.47 x 0.53 in)', 2748 | weight: '680 g (1.50 lb)', 2749 | sim: 'No', 2750 | type: 'LED-backlit IPS LCD, capacitive touchscreen, 16M colors', 2751 | size: '9.7 inches (~63.3% screen-to-body ratio)', 2752 | resolution: '768 x 1024 pixels (~132 ppi pixel density)', 2753 | card_slot: 'No', 2754 | camera_c: 'No', 2755 | alert_types: 'N/A', 2756 | loudspeaker_: 'Yes', 2757 | wlan: 'Wi-Fi 802.11 a/b/g/n, dual-band', 2758 | bluetooth: 'v2.1, A2DP, EDR', 2759 | gps: 'No', 2760 | radio: 'No', 2761 | usb: 'v2.0', 2762 | messaging: 'iMessage, Email, Push Email, IM', 2763 | browser: 'HTML (Safari)', 2764 | java: 'No', 2765 | features_c: 2766 | '- iCloud cloud service\r\n - Organizer\r\n - MP4/MP3/WAV/AAC player\r\n - Photo viewer/editor\r\n - Audio/video player/editor\r\n - Document viewer\r\n - Predictive text input', 2767 | battery_c: 'Non-removable Li-Po 6600 mAh battery (24.8 Wh)', 2768 | colors: 'Silver', 2769 | sensors: 'Accelerometer', 2770 | cpu: '1.0 GHz Cortex-A8', 2771 | internal: '16/32/64 GB, 256 MB RAM', 2772 | os: 'iOS 4, upgradable to iOS 5.1.1', 2773 | chipset: 'Apple A4', 2774 | protection: 'Scratch-resistant glass, oleophobic coating', 2775 | gpu: 'PowerVR SGX535', 2776 | multitouch: 'Yes', 2777 | display: ' Contrast ratio: 776:1 (nominal)', 2778 | _2g_bands: ' N/A', 2779 | _3_5mm_jack_: 'Yes' 2780 | }, 2781 | { 2782 | DeviceName: 'Apple iPad Wi-Fi + 3G', 2783 | Brand: 'Apple', 2784 | technology: 'GSM / HSPA', 2785 | gprs: 'Yes', 2786 | edge: 'Yes', 2787 | announced: '2010, January', 2788 | status: 'Available. Released 2010, March', 2789 | dimensions: '242.8 x 189.7 x 13.4 mm (9.56 x 7.47 x 0.53 in)', 2790 | weight: '730 g (1.61 lb)', 2791 | sim: 'Micro-SIM', 2792 | type: 'LED-backlit IPS LCD, capacitive touchscreen, 16M colors', 2793 | size: '9.7 inches (~63.3% screen-to-body ratio)', 2794 | resolution: '768 x 1024 pixels (~132 ppi pixel density)', 2795 | card_slot: 'No', 2796 | camera_c: 'No', 2797 | alert_types: 'N/A', 2798 | loudspeaker_: 'Yes', 2799 | wlan: 'Wi-Fi 802.11 a/b/g/n, dual-band', 2800 | bluetooth: 'v2.1, A2DP, EDR', 2801 | gps: 'Yes, with A-GPS', 2802 | radio: 'No', 2803 | usb: 'v2.0', 2804 | messaging: 'iMessage, Email, Push Email, IM', 2805 | browser: 'HTML (Safari)', 2806 | java: 'No', 2807 | features_c: 2808 | '- iCloud cloud service\r\n - Organizer\r\n - MP4/MP3/WAV/AAC player\r\n - Photo viewer/editor\r\n - Audio/video player/editor\r\n - Document viewer\r\n - Predictive text input', 2809 | battery_c: 'Non-removable Li-Po 6600 mAh battery (24.8 Wh)', 2810 | colors: 'Silver', 2811 | sensors: 'Accelerometer, compass', 2812 | cpu: '1.0 GHz Cortex-A8', 2813 | internal: '16/32/64 GB, 256 MB RAM', 2814 | os: 'iOS 4, upgradable to iOS 5.1.1', 2815 | speed: 'HSPA', 2816 | chipset: 'Apple A4', 2817 | protection: 'Scratch-resistant glass, oleophobic coating', 2818 | gpu: 'PowerVR SGX535', 2819 | multitouch: 'Yes', 2820 | _2g_bands: 'GSM 850 / 900 / 1800 / 1900 ', 2821 | _3_5mm_jack_: 'Yes', 2822 | _3g_bands: 'HSDPA 850 / 1900 / 2100 ' 2823 | }, 2824 | { 2825 | DeviceName: 'Apple iPhone 4 CDMA', 2826 | Brand: 'Apple', 2827 | technology: 'CDMA / EVDO', 2828 | gprs: 'No', 2829 | edge: 'No', 2830 | announced: '2011, January', 2831 | status: 'Available. Released 2011, February', 2832 | dimensions: '115.2 x 58.6 x 9.3 mm (4.54 x 2.31 x 0.37 in)', 2833 | weight: '137 g (4.83 oz)', 2834 | sim: 'Micro-SIM', 2835 | type: 'LED-backlit IPS LCD, capacitive touchscreen, 16M colors', 2836 | size: '3.5 inches (~54.0% screen-to-body ratio)', 2837 | resolution: '640 x 960 pixels (~330 ppi pixel density)', 2838 | card_slot: 'No', 2839 | alert_types: 'Vibration, proprietary ringtones', 2840 | loudspeaker_: 'Yes', 2841 | wlan: 'Wi-Fi 802.11 b/g/n', 2842 | bluetooth: 'v2.1, A2DP', 2843 | gps: 'Yes, with A-GPS', 2844 | radio: 'No', 2845 | usb: 'v2.0', 2846 | messaging: 'iMessage, SMS (threaded view), MMS, Email, Push Email', 2847 | browser: 'HTML5 (Safari)', 2848 | java: 'No', 2849 | features_c: 2850 | '- Scratch-resistant glass back panel\r\n - Active noise cancellation with dedicated mic\r\n - iCloud cloud service\r\n - Maps\r\n - Audio/video player/editor\r\n - Photo viewer/editor\r\n Voice memo/dial/command\r\n - TV-out\r\n - Document viewer\r\n - Predictive text input', 2851 | battery_c: 'Non-removable Li-Po 1420 mAh battery', 2852 | colors: 'Black, White', 2853 | sar_us: ' 1.18 W/kg (head)     0.87 W/kg (body)     ', 2854 | sensors: 'Accelerometer, gyro, proximity, compass', 2855 | cpu: '1.0 GHz Cortex-A8', 2856 | internal: '16/32 GB, 512 MB RAM', 2857 | os: 'iOS 4, upgradable to iOS 7.1.1', 2858 | primary_: '5 MP, autofocus, LED flash', 2859 | video: '720p@30fps', 2860 | secondary: 'Videocalling over Wi-Fi only', 2861 | speed: 'EV-DO Rev.A 3.1 Mbps', 2862 | chipset: 'Apple A4', 2863 | features: 'Geo-tagging, touch focus, HDR', 2864 | protection: 'Corning Gorilla Glass, oleophobic coating', 2865 | gpu: 'PowerVR SGX535', 2866 | multitouch: 'Yes', 2867 | _2g_bands: 'CDMA 800 / 1900 ', 2868 | _3_5mm_jack_: 'Yes', 2869 | _3g_bands: 'CDMA2000 1xEV-DO ' 2870 | }, 2871 | { 2872 | DeviceName: 'Apple iPhone 4', 2873 | Brand: 'Apple', 2874 | technology: 'GSM / HSPA', 2875 | gprs: 'Class 10', 2876 | edge: 'Class 10', 2877 | announced: '2010, June', 2878 | status: 'Available. Released 2010, June', 2879 | dimensions: '115.2 x 58.6 x 9.3 mm (4.54 x 2.31 x 0.37 in)', 2880 | weight: '137 g (4.83 oz)', 2881 | sim: 'Micro-SIM', 2882 | type: 'LED-backlit IPS LCD, capacitive touchscreen, 16M colors', 2883 | size: '3.5 inches (~54.0% screen-to-body ratio)', 2884 | resolution: '640 x 960 pixels (~330 ppi pixel density)', 2885 | card_slot: 'No', 2886 | alert_types: 'Vibration, proprietary ringtones', 2887 | loudspeaker_: 'Yes', 2888 | wlan: 'Wi-Fi 802.11 b/g/n, hotspot', 2889 | bluetooth: 'v2.1, A2DP', 2890 | gps: 'Yes, with A-GPS', 2891 | radio: 'No', 2892 | usb: 'v2.0', 2893 | messaging: 'iMessage, SMS (threaded view), MMS, Email, Push Email', 2894 | browser: 'HTML5 (Safari)', 2895 | java: 'No', 2896 | features_c: 2897 | '- Active noise cancellation with dedicated mic\r\n - iCloud cloud service\r\n - Maps\r\n - Audio/video player/editor\r\n - Photo viewer/editor\r\n - Voice memo\r\n - TV-out\r\n - Document viewer\r\n - Predictive text input', 2898 | battery_c: 'Non-removable Li-Po 1420 mAh battery', 2899 | stand_by: 'Up to 300 h (2G) / Up to 300 h (3G)', 2900 | talk_time: 'Up to 14 h (2G) / Up to 7 h (3G)', 2901 | colors: 'Black, White', 2902 | sar_us: ' 1.17 W/kg (head)     1.11 W/kg (body)     ', 2903 | sar_eu: ' 0.93 W/kg (head)     0.74 W/kg (body)     ', 2904 | sensors: 'Accelerometer, gyro, proximity, compass', 2905 | cpu: '1.0 GHz Cortex-A8', 2906 | internal: '8/16/32 GB, 512 MB RAM', 2907 | os: 'iOS 4, upgradable to iOS 7.1.1', 2908 | body_c: '- Scratch-resistant glass back panel', 2909 | primary_: '5 MP, f/2.8, autofocus, LED flash', 2910 | video: '720p@30fps', 2911 | secondary: 'VGA, 480p@30fps, videocalling over Wi-Fi only', 2912 | speed: 'HSPA 7.2/5.76 Mbps', 2913 | chipset: 'Apple A4', 2914 | features: 2915 | '1/3.2" sensor size, 1.75 \u00c2\u00b5m pixel size, geo-tagging, touch focus, HDR photo', 2916 | music_play: 'Up to 40 h', 2917 | protection: 'Corning Gorilla Glass, oleophobic coating', 2918 | gpu: 'PowerVR SGX535', 2919 | multitouch: 'Yes', 2920 | loudspeaker: ' Voice 65dB / Noise 60dB / Ring 66dB', 2921 | audio_quality: ' Noise -90.1dB / Crosstalk -89.6dB', 2922 | camera: ' Photo / Video', 2923 | display: ' Contrast ratio: 1242:1 (nominal) / 2.016:1 (sunlight)', 2924 | _2g_bands: 'GSM 850 / 900 / 1800 / 1900 ', 2925 | _3_5mm_jack_: 'Yes', 2926 | _3g_bands: 'HSDPA 850 / 900 / 1900 / 2100 ' 2927 | }, 2928 | { 2929 | DeviceName: 'Apple iPhone 3GS', 2930 | Brand: 'Apple', 2931 | technology: 'GSM / HSPA', 2932 | gprs: 'Yes', 2933 | edge: 'Yes', 2934 | announced: '2009, June. Released 2009, June', 2935 | status: 'Discontinued', 2936 | dimensions: '115.5 x 62.1 x 12.3 mm (4.55 x 2.44 x 0.48 in)', 2937 | weight: '135 g (4.76 oz)', 2938 | sim: 'Mini-SIM', 2939 | type: 'TFT capacitive touchscreen, 16M colors', 2940 | size: '3.5 inches (~50.9% screen-to-body ratio)', 2941 | resolution: '320 x 480 pixels (~165 ppi pixel density)', 2942 | card_slot: 'No', 2943 | alert_types: 'Vibration, proprietary ringtones', 2944 | loudspeaker_: 'Yes', 2945 | wlan: 'Wi-Fi 802.11 b/g', 2946 | bluetooth: 'v2.1, A2DP (headset support only)', 2947 | gps: 'Yes, with A-GPS', 2948 | radio: 'No', 2949 | usb: 'v2.0', 2950 | messaging: 'iMessage, SMS (threaded view), MMS, Email', 2951 | browser: 'HTML (Safari)', 2952 | java: 'No', 2953 | features_c: 2954 | '- iCloud cloud service\r\n - Maps\r\n - Organizer\r\n - TV-out\r\n - Audio/video player/editor\r\n - Photo viewer/editor\r\n - Voice command/dial\r\n - Predictive text input', 2955 | battery_c: 'Non-removable Li-Ion battery', 2956 | stand_by: 'Up to 300 h', 2957 | talk_time: 'Up to 12 h (2G) / Up to 5 h (3G)', 2958 | colors: 'Black, White ', 2959 | sar_us: ' 0.26 W/kg (head)     0.79 W/kg (body)     ', 2960 | sar_eu: ' 0.45 W/kg (head)     0.40 W/kg (body)     ', 2961 | sensors: 'Accelerometer, proximity, compass', 2962 | cpu: '600 MHz Cortex-A8', 2963 | internal: '8/16/32 GB, 256 MB RAM', 2964 | os: 'iOS 3, upgradable to iOS 6.1.6', 2965 | primary_: '3.15 MP, f/2.8, autofocus', 2966 | video: '480p@30fps', 2967 | secondary: 'No', 2968 | speed: 'HSPA 7.2/0.384 Mbps', 2969 | features: 'Geo-tagging, touch focus', 2970 | music_play: 'Up to 30 h', 2971 | protection: 'Corning Gorilla Glass, oleophobic coating', 2972 | gpu: 'PowerVR SGX535', 2973 | multitouch: 'Yes', 2974 | loudspeaker: ' Voice 69dB / Noise 69dB / Ring 71dB', 2975 | audio_quality: ' Noise -92.1dB / Crosstalk -95.0dB', 2976 | camera: ' Photo', 2977 | display: ' Contrast ratio: 201:1 (nominal)', 2978 | _2g_bands: 'GSM 850 / 900 / 1800 / 1900 ', 2979 | _3_5mm_jack_: 'Yes', 2980 | _3g_bands: 'HSDPA 850 / 1900 / 2100 ' 2981 | }, 2982 | { 2983 | DeviceName: 'Apple iPhone 3G', 2984 | Brand: 'Apple', 2985 | technology: 'GSM / HSPA', 2986 | gprs: 'Yes', 2987 | edge: 'Yes', 2988 | announced: '2008, June. Released 2008, July', 2989 | status: 'Discontinued', 2990 | dimensions: '115.5 x 62.1 x 12.3 mm (4.55 x 2.44 x 0.48 in)', 2991 | weight: '133 g (4.69 oz)', 2992 | sim: 'Mini-SIM', 2993 | type: 'TFT capacitive touchscreen, 16M colors', 2994 | size: '3.5 inches (~50.9% screen-to-body ratio)', 2995 | resolution: '320 x 480 pixels (~165 ppi pixel density)', 2996 | card_slot: 'No', 2997 | alert_types: 'Vibration, proprietary ringtones', 2998 | loudspeaker_: 'Yes', 2999 | wlan: 'Wi-Fi 802.11b/g', 3000 | bluetooth: 'v2.0, A2DP (headset support only)', 3001 | gps: 'Yes, with A-GPS', 3002 | radio: 'No', 3003 | usb: 'v2.0', 3004 | messaging: 'SMS (threaded view), MMS(threaded view), Email', 3005 | browser: 'HTML (Safari)', 3006 | java: 'No', 3007 | features_c: 3008 | '- Audio/video player\r\n - TV-out\r\n - Organizer\r\n - Document viewer\r\n - Photo viewer\r\n - Predictive text input', 3009 | battery_c: 'Non-removable Li-Ion battery', 3010 | stand_by: 'Up to 300 h', 3011 | talk_time: 'Up to 10 h', 3012 | colors: 'Black(8/16 GB), White (16 GB)', 3013 | sar_us: ' 0.52 W/kg (head)     1.29 W/kg (body)     ', 3014 | sar_eu: ' 0.56 W/kg (head)     0.23 W/kg (body)     ', 3015 | sensors: 'Accelerometer, proximity', 3016 | cpu: '412 MHz ARM 11', 3017 | internal: '8/16 GB, 128 MB RAM', 3018 | os: 'iOS, upgradable to iOS 4.2.1', 3019 | primary_: '2 MP', 3020 | video: 'No', 3021 | secondary: 'No', 3022 | speed: 'HSPA', 3023 | music_play: 'Up to 24 h', 3024 | protection: 'Corning Gorilla Glass, oleophobic coating', 3025 | gpu: 'PowerVR MBX', 3026 | multitouch: 'Yes', 3027 | loudspeaker: ' Voice 66dB / Noise 62dB / Ring 71dB', 3028 | audio_quality: ' Noise -89.9dB / Crosstalk -93.1dB', 3029 | _2g_bands: 'GSM 850 / 900 / 1800 / 1900 ', 3030 | _3_5mm_jack_: 'Yes', 3031 | _3g_bands: 'HSDPA 850 / 1900 / 2100 ' 3032 | }, 3033 | { 3034 | DeviceName: 'Apple iPhone', 3035 | Brand: 'Apple', 3036 | technology: 'GSM', 3037 | gprs: 'Yes', 3038 | edge: 'Yes', 3039 | announced: '2007, January. Released 2007, June', 3040 | status: 'Discontinued', 3041 | dimensions: '115 x 61 x 11.6 mm (4.53 x 2.40 x 0.46 in)', 3042 | weight: '135 g (4.76 oz)', 3043 | sim: 'Mini-SIM', 3044 | type: 'TFT capacitive touchscreen, 16M colors', 3045 | size: '3.5 inches (~52.0% screen-to-body ratio)', 3046 | resolution: '320 x 480 pixels (~165 ppi pixel density)', 3047 | card_slot: 'No', 3048 | alert_types: 'Vibration, proprietary ringtones', 3049 | loudspeaker_: 'Yes', 3050 | wlan: 'Wi-Fi 802.11b/g', 3051 | bluetooth: 'v2.0 (headset support only)', 3052 | gps: 'No', 3053 | radio: 'No', 3054 | usb: 'v2.0', 3055 | messaging: 'SMS (threaded view), Email', 3056 | browser: 'HTML (Safari)', 3057 | java: 'No', 3058 | features_c: 3059 | '- Google Maps\r\n - Audio/video player\r\n - TV-out\r\n - Organizer\r\n - Document viewer\r\n - Photo viewer\r\n - Predictive text input', 3060 | battery_c: 'Non-removable Li-Ion battery', 3061 | stand_by: 'Up to 250 h', 3062 | talk_time: 'Up to 8 h', 3063 | colors: 'Black', 3064 | sar_us: ' 0.97 W/kg (head)     0.38 W/kg (body)     ', 3065 | sar_eu: ' 0.97 W/kg (head)     0.69 W/kg (body)     ', 3066 | sensors: 'Accelerometer, proximity', 3067 | cpu: '412 MHz ARM 11', 3068 | internal: '4/8/16 GB', 3069 | os: 'iOS, upgradable to iOS 3.1.3', 3070 | primary_: '2 MP', 3071 | video: 'No', 3072 | secondary: 'No', 3073 | music_play: 'Up to 24 h', 3074 | protection: 'Corning Gorilla Glass, oleophobic coating', 3075 | gpu: 'PowerVR MBX', 3076 | multitouch: 'Yes', 3077 | _2g_bands: 'GSM 850 / 900 / 1800 / 1900 ', 3078 | _3_5mm_jack_: 'Yes' 3079 | } 3080 | ]; 3081 | -------------------------------------------------------------------------------- /src/devices/google.js: -------------------------------------------------------------------------------- 1 | module.exports = [ 2 | { 3 | DeviceName: 'Google Pixel 2', 4 | Brand: 'Google', 5 | technology: 'GSM / CDMA / HSPA / EVDO / LTE', 6 | gprs: 'Yes', 7 | edge: 'Yes', 8 | announced: '2017, October', 9 | status: 'Available. Released 2017, October', 10 | dimensions: '145.7 x 69.7 x 7.8 mm (5.74 x 2.74 x 0.31 in)', 11 | weight: '143 g (5.04 oz)', 12 | sim: 'Nano-SIM card & eSIM', 13 | type: 'AMOLED capacitive touchscreen, 16M colors', 14 | size: '5.0 inches, 68.9 cm2 (~67.9% screen-to-body ratio)', 15 | resolution: '1080 x 1920 pixels, 16:9 ratio (~441 ppi density)', 16 | display_c: '- Always-on display\r\n - 95% DCI-P3 coverage', 17 | card_slot: 'No', 18 | alert_types: 'Vibration; MP3, WAV ringtones', 19 | loudspeaker_: 'Yes, with stereo speakers', 20 | sound_c: 21 | '- Active noise cancellation with dedicated mic\r\n - Type-C to 3.5 mm headphone jack adapter', 22 | wlan: 'Wi-Fi 802.11 a/b/g/n/ac, dual-band, Wi-Fi Direct, DLNA, hotspot', 23 | bluetooth: '5.0, A2DP, LE, aptX HD', 24 | gps: 'Yes, with A-GPS, GLONASS, BDS, GALILEO', 25 | radio: 'No', 26 | usb: '3.1, Type-C 1.0 reversible connector (PowerDelivery 2.0)', 27 | messaging: 'SMS(threaded view), MMS, Email, Push Mail, IM', 28 | browser: 'HTML5', 29 | java: 'No', 30 | features_c: 31 | '- Fast battery charging (capped at 10.5 W)\r\n - MP4/H.264 player\r\n - MP3/WAV/eAAC+ player\r\n - Photo/video editor\r\n - Document editor', 32 | battery_c: 'Non-removable Li-Ion 2700 mAh battery', 33 | colors: 'Kinda Blue, Just Black, Clearly White', 34 | sensors: 35 | 'Fingerprint (rear-mounted), accelerometer, gyro, proximity, compass, barometer', 36 | cpu: 'Octa-core (4x2.35 GHz Kryo & 4x1.9 GHz Kryo)', 37 | internal: '64/128 GB, 4 GB RAM', 38 | os: 'Android 8.0', 39 | body_c: 40 | '- IP67 certified - dust and water resistant\r\n - Water resistant up to 1 meter and 30 minutes', 41 | primary_: 42 | '12.2 MP (f/1.8, 27mm, 1/2.6", 1.4 \u00c2\u00b5m, Dual Pixel PDAF), OIS, phase detection & laser autofocus, dual-LED flash, check quality', 43 | video: '2160p@30fps, 1080p@30/60/120fps, 720p@240fps, check quality', 44 | secondary: '8 MP (f/2.4, 27mm, 1/3.2", 1.4 \u00c2\u00b5m), 1080p', 45 | speed: 'HSPA 42.2/5.76 Mbps, LTE-A (3CA) Cat15 800/75 Mbps', 46 | network_c: 'CDMA2000 1xEV-DO ', 47 | chipset: 'Qualcomm MSM8998 Snapdragon 835', 48 | features: 'Geo-tagging, touch focus, face detection, HDR, panorama', 49 | protection: 'Corning Gorilla Glass 5', 50 | gpu: 'Adreno 540', 51 | multitouch: 'Yes', 52 | loudspeaker: ' Voice 70dB / Noise 77dB / Ring 81dB ', 53 | audio_quality: ' Noise -93.3dB / Crosstalk -66.2dB', 54 | nfc: 'Yes', 55 | camera: ' Photo / Video', 56 | display: ' Contrast ratio: Infinite (nominal), 4.023 (sunlight)', 57 | performance: 58 | ' Basemark OS II: 3387 / Basemark OS II 2.0: 4131\r\nBasemark X: 38794', 59 | build: 'Front glass, aluminum body, partial glass back', 60 | price: 'About 800 EUR', 61 | _2g_bands: 'GSM 850 / 900 / 1800 / 1900 ', 62 | _3_5mm_jack_: 'No', 63 | _3g_bands: 'HSDPA 850 / 900 / 1700(AWS) / 1900 / 2100 ', 64 | _4g_bands: 65 | 'LTE band 1(2100), 2(1900), 3(1800), 4(1700/2100), 5(850), 7(2600), 8(900), 12(700), 13(700), 17(700), 20(800), 25(1900), 26(850), 28(700), 29(700), 30(2300), 32(1500), 38(2600), 40(2300), 41(2500), 66(1700/2100)' 66 | }, 67 | { 68 | DeviceName: 'Google Pixel 2 XL', 69 | Brand: 'Google', 70 | technology: 'GSM / CDMA / HSPA / EVDO / LTE', 71 | gprs: 'Yes', 72 | edge: 'Yes', 73 | announced: '2017, October', 74 | status: 'Available. Released 2017, October', 75 | dimensions: '157.9 x 76.7 x 7.9 mm (6.22 x 3.02 x 0.31 in)', 76 | weight: '175 g (6.17 oz)', 77 | sim: 'Nano-SIM card & eSIM', 78 | type: 'P-OLED capacitive touchscreen, 16M colors', 79 | size: '6.0 inches, 92.6 cm2 (~76.4% screen-to-body ratio)', 80 | resolution: '1440 x 2880 pixels, 18:9 ratio (~538 ppi density)', 81 | display_c: '- Always-on display\r\n - 100% DCI-P3 coverage', 82 | card_slot: 'No', 83 | alert_types: 'Vibration; MP3, WAV ringtones', 84 | loudspeaker_: 'Yes, with stereo speakers', 85 | sound_c: 86 | '- Active noise cancellation with dedicated mic\r\n - Type-C to 3.5 mm headphone jack adapter', 87 | wlan: 'Wi-Fi 802.11 a/b/g/n/ac, dual-band, Wi-Fi Direct, DLNA, hotspot', 88 | bluetooth: '5.0, A2DP, LE, aptX HD', 89 | gps: 'Yes, with A-GPS, GLONASS, BDS, GALILEO', 90 | radio: 'No', 91 | usb: '3.1, Type-C 1.0 reversible connector (PowerDelivery 2.0)', 92 | messaging: 'SMS(threaded view), MMS, Email, Push Mail, IM', 93 | browser: 'HTML5', 94 | java: 'No', 95 | features_c: 96 | '- Fast battery charging (capped at 10.5 W)\r\n - MP4/H.264 player\r\n - MP3/WAV/eAAC+ player\r\n - Photo/video editor\r\n - Document editor', 97 | battery_c: 'Non-removable Li-Ion 3520 mAh battery', 98 | colors: 'Just Black, Black & White', 99 | sensors: 100 | 'Fingerprint (rear-mounted), accelerometer, gyro, proximity, compass, barometer', 101 | cpu: 'Octa-core (4x2.35 GHz Kryo & 4x1.9 GHz Kryo)', 102 | internal: '64/128 GB, 4 GB RAM', 103 | os: 'Android 8.0 (Oreo)', 104 | body_c: 105 | '- IP67 certified - dust and water resistant\r\n - Water resistant up to 1 meter and 30 minutes', 106 | primary_: 107 | '12.2 MP (f/1.8, 27mm, 1/2.6", 1.4 \u00c2\u00b5m, Dual Pixel PDAF), OIS, phase detection & laser autofocus, dual-LED flash, check quality', 108 | video: '2160p@30fps, 1080p@30/60/120fps, 720p@240fps, check quality', 109 | secondary: '8 MP (f/2.4, 27mm, 1/3.2", 1.4 \u00c2\u00b5m), 1080p', 110 | speed: 'HSPA 42.2/5.76 Mbps, LTE-A (3CA) Cat15 800/75 Mbps', 111 | network_c: 'CDMA2000 1xEV-DO ', 112 | chipset: 'Qualcomm MSM8998 Snapdragon 835', 113 | features: 'Geo-tagging, touch focus, face detection, HDR, panorama', 114 | protection: 'Corning Gorilla Glass 5', 115 | gpu: 'Adreno 540', 116 | multitouch: 'Yes', 117 | loudspeaker: ' Voice 66dB / Noise 70dB / Ring 78dB ', 118 | audio_quality: ' Noise - 93.7 / Crosstalk - 79.7', 119 | nfc: 'Yes', 120 | camera: ' Photo / Video', 121 | display: ' Contrast ratio: ∞', 122 | performance: 123 | ' Basemark OS II: 4167 / Basemark OS II 2.0: 3379\r\nBasemark X: 39143', 124 | build: 'Front glass, aluminum body, partial glass back', 125 | price: 'About 940 EUR', 126 | _2g_bands: 'GSM 850 / 900 / 1800 / 1900 ', 127 | _3_5mm_jack_: 'No', 128 | _3g_bands: 'HSDPA 850 / 900 / 1700(AWS) / 1900 / 2100 ', 129 | _4g_bands: 130 | 'LTE band 1(2100), 2(1900), 3(1800), 4(1700/2100), 5(850), 7(2600), 8(900), 12(700), 13(700), 17(700), 20(800), 25(1900), 26(850), 28(700), 29(700), 30(2300), 32(1500), 38(2600), 40(2300), 41(2500), 66(1700/2100)' 131 | }, 132 | { 133 | DeviceName: 'Google Pixel', 134 | Brand: 'Google', 135 | technology: 'GSM / HSPA / LTE', 136 | gprs: 'Yes', 137 | edge: 'Yes', 138 | announced: '2016, October', 139 | status: 'Available. Released 2016, October', 140 | dimensions: '143.8 x 69.5 x 8.5 mm (5.66 x 2.74 x 0.33 in)', 141 | weight: '143 g (5.04 oz)', 142 | sim: 'Nano-SIM', 143 | type: 'AMOLED capacitive touchscreen, 16M colors', 144 | size: '5.0 inches (~69.0% screen-to-body ratio)', 145 | resolution: '1080 x 1920 pixels (~441 ppi pixel density)', 146 | card_slot: 'No', 147 | alert_types: 'Vibration; MP3, WAV ringtones', 148 | loudspeaker_: 'Yes', 149 | sound_c: '- Active noise cancellation with dedicated mic', 150 | wlan: 'Wi-Fi 802.11 a/b/g/n/ac, dual-band, Wi-Fi Direct, DLNA, hotspot', 151 | bluetooth: '4.2, A2DP, LE', 152 | gps: 'Yes, with A-GPS, GLONASS', 153 | radio: 'No', 154 | usb: '3.0, Type-C 1.0 reversible connector', 155 | messaging: 'SMS(threaded view), MMS, Email, Push Mail, IM', 156 | browser: 'HTML5', 157 | java: 'No', 158 | features_c: 159 | '- Fast battery charging\r\n - MP4/H.264 player\r\n - MP3/WAV/eAAC+ player\r\n - Photo/video editor\r\n - Document editor', 160 | battery_c: 'Non-removable Li-Ion 2770 mAh battery', 161 | stand_by: 'Up to 456 h (3G)', 162 | talk_time: 'Up to 26 h (3G)', 163 | colors: 'Quite Black, Very Silver, Really Blue', 164 | sar_us: ' 0.92 W/kg (head)     0.58 W/kg (body)     ', 165 | sar_eu: '0.33 W/kg (head)     0.61 W/kg (body)     ', 166 | sensors: 167 | 'Fingerprint (rear-mounted), accelerometer, gyro, proximity, compass, barometer', 168 | cpu: 'Quad-core (2x2.15 GHz Kryo & 2x1.6 GHz Kryo)', 169 | internal: '32/128 GB, 4 GB RAM', 170 | os: 'Android 7.1 (Nougat)', 171 | body_c: '- Splash and dust resistant', 172 | primary_: 173 | '12.3 MP, f/2.0, EIS (gyro), phase detection & laser autofocus, dual-LED (dual tone) flash', 174 | video: '2160p@30fps, 1080p@30/60/120fps, 720p@240fps', 175 | secondary: 176 | '8 MP, f/2.4, 1/3.2" sensor size, 1.4 \u00c2\u00b5m pixel size, 1080p', 177 | speed: 178 | 'HSPA 42.2/5.76 Mbps, LTE-A (3CA) Cat9 450/50 Mbps or LTE-A (3CA) Cat11 600/75 Mbps', 179 | network_c: 180 | 'LTE band 1(2100), 2(1900), 3(1800), 4(1700/2100), 5(850), 7(2600), 8(900), 12(700), 13(700), 17(700), 20(800), 25(1900), 26(850), 28(700), 29(700), 30(2300), 41(2500) - USA, North America', 181 | chipset: 'Qualcomm MSM8996 Snapdragon 821', 182 | features: 183 | '1/2.3" sensor size, 1.55\u00c2\u00b5m pixel size, geo-tagging, touch focus, face detection, HDR, panorama', 184 | music_play: 'Up to 110 h', 185 | protection: 'Corning Gorilla Glass 4', 186 | gpu: 'Adreno 530', 187 | multitouch: 'Yes', 188 | loudspeaker: ' Voice 74dB / Noise 68dB / Ring 78dB ', 189 | audio_quality: ' Noise -93.0dB / Crosstalk -92.6dB', 190 | nfc: 'Yes', 191 | display: ' Contrast ratio: ∞', 192 | performance: 193 | ' Basemark OS II: 2901 / Basemark OS II 2.0: 2461\r\nBasemark X: 33023', 194 | price: 'About 770 EUR', 195 | sar: '0.92 W/kg (head)     0.58 W/kg (body)     ', 196 | _2g_bands: 'GSM 850 / 900 / 1800 / 1900 ', 197 | _3_5mm_jack_: 'Yes', 198 | _3g_bands: 'HSDPA 800 / 850 / 900 / 1700(AWS) / 1900 / 2100 ', 199 | _4g_bands: 200 | 'LTE band 1(2100), 2(1900), 3(1800), 4(1700/2100), 5(850), 7(2600), 8(900), 12(700), 13(700), 17(700), 18(800), 19(800), 20(800), 21(1500), 26(850), 28(700), 32(1500), 38(2600), 39(1900), 40(2300), 41(2500)' 201 | }, 202 | { 203 | DeviceName: 'Google Pixel XL', 204 | Brand: 'Google', 205 | technology: 'GSM / HSPA / LTE', 206 | gprs: 'Yes', 207 | edge: 'Yes', 208 | announced: '2016, October', 209 | status: 'Available. Released 2016, October', 210 | dimensions: '154.7 x 75.7 x 8.5 mm (6.09 x 2.98 x 0.33 in)', 211 | weight: '168 g (5.93 oz)', 212 | sim: 'Nano-SIM', 213 | type: 'AMOLED capacitive touchscreen, 16M colors', 214 | size: '5.5 inches (~71.2% screen-to-body ratio)', 215 | resolution: '1440 x 2560 pixels (~534 ppi pixel density)', 216 | card_slot: 'No', 217 | alert_types: 'Vibration; MP3, WAV ringtones', 218 | loudspeaker_: 'Yes', 219 | sound_c: '- Active noise cancellation with dedicated mic', 220 | wlan: 'Wi-Fi 802.11 a/b/g/n/ac, dual-band, Wi-Fi Direct, DLNA, hotspot', 221 | bluetooth: '4.2, A2DP, LE', 222 | gps: 'Yes, with A-GPS, GLONASS', 223 | radio: 'No', 224 | usb: '3.0, Type-C 1.0 reversible connector', 225 | messaging: 'SMS(threaded view), MMS, Email, Push Mail, IM', 226 | browser: 'HTML5', 227 | java: 'No', 228 | features_c: 229 | '- Fast battery charging\r\n - MP4/H.264 player\r\n - MP3/WAV/eAAC+ player\r\n - Photo/video editor\r\n - Document editor', 230 | battery_c: 'Non-removable Li-Ion 3450 mAh battery', 231 | stand_by: 'Up to 552 h (3G)', 232 | talk_time: 'Up to 32 h (3G)', 233 | colors: 'Quite Black, Very Silver, Really Blue', 234 | sar_us: ' 0.89 W/kg (head)     0.56 W/kg (body)     ', 235 | sar_eu: '0.25 W/kg (head)     0.44 W/kg (body)     ', 236 | sensors: 237 | 'Fingerprint (rear-mounted), accelerometer, gyro, proximity, compass, barometer', 238 | cpu: 'Quad-core (2x2.15 GHz Kryo & 2x1.6 GHz Kryo)', 239 | internal: '32/128 GB, 4 GB RAM', 240 | os: 'Android 7.1 (Nougat)', 241 | body_c: '- Splash and dust resistant', 242 | primary_: 243 | '12.3 MP, f/2.0, EIS (gyro), phase detection & laser autofocus, dual-LED (dual tone) flash, check quality', 244 | video: '2160p@30fps, 1080p@30/60/120fps, 720p@240fps, check quality', 245 | secondary: 246 | '8 MP, f/2.4, 1/3.2" sensor size, 1.4 \u00c2\u00b5m pixel size, 1080p', 247 | speed: 248 | 'HSPA 42.2/5.76 Mbps, LTE-A (3CA) Cat9 450/50 Mbps or LTE-A (3CA) Cat11 600/75 Mbps', 249 | network_c: 'HSDPA 800 / 850 / 900 / 1700(AWS) / 1900 / 2100 ', 250 | chipset: 'Qualcomm MSM8996 Snapdragon 821', 251 | features: 252 | '1/2.3" sensor size, 1.55\u00c2\u00b5m pixel size, geo-tagging, touch focus, face detection, HDR, panorama', 253 | music_play: 'Up to 130 h', 254 | protection: 'Corning Gorilla Glass 4', 255 | gpu: 'Adreno 530', 256 | multitouch: 'Yes', 257 | nfc: 'Yes', 258 | camera: ' Photo / Video', 259 | display: ' Contrast ratio: Infinite (nominal), 4.164 (sunlight)', 260 | performance: ' Basemark OS II 2.0: 2281 / Basemark X: 30861', 261 | price: 'About 880 EUR', 262 | sar: '0.89 W/kg (head)     0.56 W/kg (body)     ', 263 | _2g_bands: 'GSM 850 / 900 / 1800 / 1900 ', 264 | _3_5mm_jack_: 'Yes', 265 | _3g_bands: 'HSDPA 850 / 1700(AWS) / 1900 / 2100 - USA', 266 | _4g_bands: 267 | 'LTE band 1(2100), 2(1900), 3(1800), 4(1700/2100), 5(850), 7(2600), 8(900), 12(700), 13(700), 17(700), 18(800), 19(800), 20(800), 21(1500), 26(850), 28(700), 32(1500), 38(2600), 39(1900), 40(2300), 41(2500)' 268 | }, 269 | { 270 | DeviceName: 'Google Pixel C', 271 | Brand: 'Google', 272 | technology: 'No cellular connectivity', 273 | gprs: 'No', 274 | edge: 'No', 275 | announced: '2015, October', 276 | status: 'Available. Released 2015, December', 277 | dimensions: '242 x 179 x 7 mm (9.53 x 7.05 x 0.28 in)', 278 | weight: '517 g (1.14 lb)', 279 | sim: 'No', 280 | type: 'LTPS IPS LCD capacitive touchscreen, 16M colors', 281 | size: '10.2 inches (~72.4% screen-to-body ratio)', 282 | resolution: '2560 x 1800 pixels (~308 ppi pixel density)', 283 | card_slot: 'No', 284 | alert_types: 'Vibration; MP3, WAV ringtones', 285 | loudspeaker_: 'Yes, with stereo speakers', 286 | wlan: 'Wi-Fi 802.11 a/b/g/n, dual-band, Wi-Fi Direct, hotspot', 287 | bluetooth: 'v4.1, A2DP', 288 | radio: 'No', 289 | usb: 'v3.0, Type-C reversible connector', 290 | messaging: 'Email, Push Mail, IM', 291 | browser: 'HTML5', 292 | java: 'No', 293 | features_c: 294 | '- Active noise cancellation with dedicated mics\r\n - MP4/H.264 player\r\n - MP3/WAV/eAAC+/Flac player\r\n - Photo/video editor\r\n - Document viewer', 295 | battery_c: 'Non-removable battery (34.2 Wh)', 296 | colors: 'Silver Aluminum', 297 | sensors: 'Accelerometer, gyro, proximity, compass', 298 | cpu: 'Quad-core 1.9 GHz', 299 | internal: '32/64 GB, 3 GB RAM', 300 | os: 'Android OS, v6.0.1 (Marshmallow)', 301 | primary_: '8 MP, f/2.4', 302 | video: 'Yes', 303 | secondary: '2 MP', 304 | chipset: 'Nvidia Tegra X1', 305 | features: 'Yes', 306 | gpu: 'Nvidia Maxwell', 307 | multitouch: 'Yes', 308 | _2g_bands: ' N/A', 309 | _3_5mm_jack_: 'Yes' 310 | } 311 | ]; 312 | -------------------------------------------------------------------------------- /src/devices/oneplus.js: -------------------------------------------------------------------------------- 1 | module.exports = [ 2 | { 3 | DeviceName: 'OnePlus 6', 4 | Brand: 'OnePlus', 5 | technology: 'GSM / CDMA / HSPA / LTE', 6 | gprs: 'Yes', 7 | edge: 'Yes', 8 | dimensions: '7.5 mm thickness', 9 | weight: '175 g (5.71 oz)', 10 | sim: 'Dual SIM (Nano-SIM, dual stand-by)', 11 | type: 'Optic AMOLED capacitive touchscreen, 16M colors', 12 | size: '6.28 inches, 98.4 cm2 (~83.8% screen-to-body ratio)', 13 | resolution: '1080 x 2280 pixels, 19:9 ratio (~402 ppi density)', 14 | display_c: '- DCI-P3\r\n - Oxygen OS', 15 | card_slot: 'No', 16 | alert_types: 'Vibration; MP3, WAV ringtones', 17 | loudspeaker_: 'Yes', 18 | sound_c: 19 | '- Active noise cancellation with dedicated mic\r\n - Dirac HD sound', 20 | wlan: 'Wi-Fi 802.11 a/b/g/n/ac, dual-band, WiFi Direct, DLNA, hotspot', 21 | bluetooth: '5.0, A2DP, LE, aptX HD', 22 | gps: 'Yes, with A-GPS, GLONASS, BDS, GALILEO', 23 | radio: 'No', 24 | usb: '2.0, Type-C 1.0 reversible connector', 25 | messaging: 'SMS(threaded view), MMS, Email, IM, Push Email', 26 | browser: 'HTML5', 27 | features_c: 28 | '- Fast battery charging 5V 4A 20W (Dash Charge)\r\n - DivX/Xvid/MP4/H.265 player\r\n - MP3/eAAC+/WMA/WAV/FLAC player\r\n - Document viewer\r\n - Photo/video editor', 29 | battery_c: 'Non-removable Li-Po 3450 mAh battery', 30 | colors: 'Midnight Black, Lava Red, Sandstone White', 31 | sensors: 32 | 'Fingerprint (rear-mounted), accelerometer, gyro, proximity, compass', 33 | cpu: 'Octa-core (4x2.7 GHz Kryo 385 Gold & 4x1.7 GHz Kryo 385 Silver)', 34 | internal: '256 GB, 8 GB RAM or 64/128 GB, 6 GB RAM', 35 | os: 'Android 8.1 (Oreo)', 36 | primary_: 37 | 'Dual: 16 MP (f/1.7, 27mm, 1/2.8", 1.12\u00c2\u00b5m, gyro EIS) + 20 MP (f/1.7), phase detection autofocus, dual-LED flash', 38 | video: '2160p@30fps, 1080p@30/60fps, 720p@30/120fps', 39 | secondary: 40 | '16 MP (f/2.0, 20mm, 1.0\u00c2\u00b5m), gyro EIS, Auto HDR, 1080p', 41 | speed: 'HSPA 42.2/5.76 Mbps, LTE-A (6CA) Cat18 1200/200 Mbps', 42 | network_c: 'CDMA 800 & TD-SCDMA', 43 | chipset: 'Qualcomm SDM845 Snapdragon 845', 44 | features: 'Geo-tagging, touch focus, face detection, HDR, panorama', 45 | protection: 'Corning Gorilla Glass 5', 46 | gpu: 'Adreno 630', 47 | multitouch: 'Yes', 48 | nfc: 'Yes', 49 | build: 'Front glass, aluminum body', 50 | price: 'About 500 EUR', 51 | _2g_bands: 'GSM 850 / 900 / 1800 / 1900 - SIM 1 & SIM 2', 52 | _3_5mm_jack_: 'Yes', 53 | _3g_bands: 'HSDPA 850 / 900 / 1700(AWS) / 1900 / 2100 ', 54 | _4g_bands: ' LTE' 55 | }, 56 | { 57 | DeviceName: 'OnePlus 5T', 58 | Brand: 'OnePlus', 59 | technology: 'GSM / CDMA / HSPA / LTE', 60 | gprs: 'Yes', 61 | edge: 'Yes', 62 | announced: '2017, November', 63 | status: 'Available. Released 2017, November', 64 | dimensions: '156.1 x 75 x 7.3 mm (6.15 x 2.95 x 0.29 in)', 65 | weight: '162 g (5.71 oz)', 66 | sim: 'Dual SIM (Nano-SIM, dual stand-by)', 67 | type: 'Optic AMOLED capacitive touchscreen, 16M colors', 68 | size: '6.01 inches, 93.7 cm2 (~80.0% screen-to-body ratio)', 69 | resolution: '1080 x 2160 pixels, 18:9 ratio (~401 ppi density)', 70 | display_c: '- DCI-P3\r\n - Oxygen OS 5.1', 71 | card_slot: 'No', 72 | alert_types: 'Vibration; MP3, WAV ringtones', 73 | loudspeaker_: 'Yes', 74 | sound_c: 75 | '- Active noise cancellation with dedicated mic\r\n - Dirac HD sound', 76 | wlan: 'Wi-Fi 802.11 a/b/g/n/ac, dual-band, WiFi Direct, DLNA, hotspot', 77 | bluetooth: '5.0, A2DP, LE, aptX HD', 78 | gps: 'Yes, with A-GPS, GLONASS, BDS, GALILEO', 79 | radio: 'No', 80 | usb: '2.0, Type-C 1.0 reversible connector', 81 | messaging: 'SMS(threaded view), MMS, Email, IM, Push Email', 82 | browser: 'HTML5', 83 | java: 'No', 84 | features_c: 85 | '- Fast battery charging 5V 4A 20W (Dash Charge)\r\n - DivX/Xvid/MP4/H.265 player\r\n - MP3/eAAC+/WMA/WAV/FLAC player\r\n - Document viewer\r\n - Photo/video editor', 86 | battery_c: 'Non-removable Li-Po 3300 mAh battery', 87 | colors: 'Midnight Black, Lava Red, Sandstone White (128/8GB only)', 88 | sensors: 89 | 'Fingerprint (rear-mounted), accelerometer, gyro, proximity, compass', 90 | cpu: 'Octa-core (4x2.45 GHz Kryo & 4x1.9 GHz Kryo)', 91 | internal: '128 GB, 8 GB RAM or 64 GB, 6 GB RAM', 92 | os: 'Android 7.1.1 (Nougat), upgradable to Android 8.1 (Oreo)', 93 | primary_: 94 | 'Dual: 16 MP (f/1.7, 27mm, 1/2.8", 1.12\u00c2\u00b5m, gyro EIS) + 20 MP (f/1.7, 27mm, 1/2.8", 1\u00c2\u00b5m), phase detection autofocus, dual-LED flash, check quality', 95 | video: '2160p@30fps, 1080p@30/60fps, 720p@30/120fps, check quality', 96 | secondary: 97 | '16 MP (f/2.0, 20mm, 1.0\u00c2\u00b5m), gyro EIS, Auto HDR, 1080p', 98 | speed: 'HSPA, LTE-A (3CA) Cat12 600/150 Mbps', 99 | network_c: 'CDMA 800 & TD-SCDMA', 100 | chipset: 'Qualcomm MSM8998 Snapdragon 835', 101 | features: 'Geo-tagging, touch focus, face detection, HDR, panorama', 102 | protection: 'Corning Gorilla Glass 5', 103 | gpu: 'Adreno 540', 104 | multitouch: 'Yes', 105 | loudspeaker: ' Voice 68dB / Noise 73dB / Ring 69dB ', 106 | audio_quality: ' Noise -94.0dB / Crosstalk -93.7dB', 107 | nfc: 'Yes', 108 | camera: ' Photo / Video', 109 | display: ' Contrast ratio: Infinite (nominal), 4.789 (sunlight)', 110 | performance: 111 | ' Basemark OS II: 4235 / Basemark OS II 2.0: 3632\r\nBasemark X: 38656', 112 | build: 'Front glass, aluminum frame, back', 113 | price: 'About 500 EUR', 114 | _2g_bands: 'GSM 850 / 900 / 1800 / 1900 - SIM 1 & SIM 2', 115 | _3_5mm_jack_: 'Yes', 116 | _3g_bands: 'HSDPA 850 / 900 / 1700(AWS) / 1900 / 2100 ', 117 | _4g_bands: 118 | 'LTE band 1(2100), 2(1900), 3(1800), 4(1700/2100), 5(850), 7(2600), 8(900), 12(700), 17(700), 18(800), 19(800), 20(800), 25(1900), 26(850), 28(700), 29(700), 30(2300), 34(2000), 38(2600), 39(1900), 40(2300), 41(2500), 66(1700/2100)' 119 | }, 120 | { 121 | DeviceName: 'OnePlus 5', 122 | Brand: 'OnePlus', 123 | technology: 'GSM / CDMA / HSPA / LTE', 124 | gprs: 'Yes', 125 | edge: 'Yes', 126 | announced: '2017, June. Released 2017, June', 127 | status: 'Discontinued', 128 | dimensions: '154.2 x 74.1 x 7.3 mm (6.07 x 2.92 x 0.29 in)', 129 | weight: '153 g (5.40 oz)', 130 | sim: 'Dual SIM (Nano-SIM, dual stand-by)', 131 | type: 'Optic AMOLED capacitive touchscreen, 16M colors', 132 | size: '5.5 inches, 83.4 cm2 (~73.0% screen-to-body ratio)', 133 | resolution: '1080 x 1920 pixels, 16:9 ratio (~401 ppi density)', 134 | display_c: '- Oxygen OS 4.5.10', 135 | card_slot: 'No', 136 | alert_types: 'Vibration; MP3, WAV ringtones', 137 | loudspeaker_: 'Yes', 138 | sound_c: 139 | '- Active noise cancellation with dedicated mic\r\n - Dirac HD sound', 140 | wlan: 'Wi-Fi 802.11 a/b/g/n/ac, Wi-Fi Direct, DLNA, hotspot', 141 | bluetooth: '5.0, A2DP, LE, aptX HD', 142 | gps: 'Yes, with A-GPS, GLONASS, BDS, GALILEO', 143 | radio: 'No', 144 | usb: '2.0, Type-C 1.0 reversible connector', 145 | messaging: 'SMS (threaded view), MMS, Email, IM, Push Email', 146 | browser: 'HTML5', 147 | java: 'No', 148 | features_c: 149 | '- Fast battery charging (Dash Charge)\r\n - DivX/Xvid/MP4/H.265 player\r\n - MP3/eAAC+/WMA/WAV/FLAC player\r\n - Document viewer\r\n - Photo/video editor', 150 | battery_c: 'Non-removable Li-Po 3300 mAh battery', 151 | colors: 'Midnight Black, Slate Gray', 152 | sensors: 153 | 'Fingerprint (front-mounted), accelerometer, gyro, proximity, compass', 154 | cpu: 'Octa-core (4x2.45 GHz Kryo & 4x1.9 GHz Kryo)', 155 | internal: '128 GB, 8 GB RAM or 64 GB, 6 GB RAM', 156 | os: 'Android 7.1.1 (Nougat)', 157 | primary_: 158 | 'Dual: 16 MP (f/1.7, 24mm, 1/2.8", 1.12 \u00c2\u00b5m, gyro EIS) + 20 MP (f/2.6, 36mm, 1/2.8", 1 \u00c2\u00b5m) phase detection autofocus, 1.6x optical zoom, dual-LED flash, check quality', 159 | video: '2160p@30fps, 1080p@30/60fps, 720p@30/120fps, check quality', 160 | secondary: 161 | '16 MP (f/2.0, 20mm, 1.0 \u00c2\u00b5m), gyro EIS, 1080p, Auto HDR', 162 | speed: 'HSPA, LTE-A (3CA) Cat12 600/150 Mbps', 163 | network_c: 'CDMA 800 & TD-SCDMA', 164 | chipset: 'Qualcomm MSM8998 Snapdragon 835', 165 | features: 'Geo-tagging, touch focus, face detection, HDR, panorama', 166 | protection: 'Corning Gorilla Glass 5', 167 | gpu: 'Adreno 540', 168 | multitouch: 'Yes', 169 | loudspeaker: ' Voice 69dB / Noise 72dB / Ring 77dB ', 170 | audio_quality: ' Noise -94.1dB / Crosstalk -94.2dB', 171 | nfc: 'Yes', 172 | camera: ' Photo / Video', 173 | display: ' Contrast ratio: Infinite (nominal), 3.914 (sunlight)', 174 | performance: 175 | ' Basemark OS II: 4300 / Basemark OS II 2.0: 3601\r\nBasemark X: 38844', 176 | build: 'Front glass, aluminum frame & back', 177 | price: 'About 500 EUR', 178 | _2g_bands: 'GSM 850 / 900 / 1800 / 1900 - SIM 1 & SIM 2', 179 | _3_5mm_jack_: 'Yes', 180 | _3g_bands: 'HSDPA 850 / 900 / 1700(AWS) / 1900 / 2100 ', 181 | _4g_bands: 182 | 'LTE band 1(2100), 2(1900), 3(1800), 4(1700/2100), 5(850), 7(2600), 8(900), 12(700), 17(700), 18(800), 19(800), 20(800), 25(1900), 26(850), 28(700), 29(700), 30(2300), 38(2600), 39(1900), 40(2300), 41(2500), 66(1700/2100)' 183 | }, 184 | { 185 | DeviceName: 'OnePlus 3T', 186 | Brand: 'OnePlus', 187 | technology: 'GSM / HSPA / EVDO / LTE', 188 | gprs: 'Yes', 189 | edge: 'Yes', 190 | announced: '2016, November', 191 | status: 'Available. Released 2016, November', 192 | dimensions: '152.7 x 74.7 x 7.4 mm (6.01 x 2.94 x 0.29 in)', 193 | weight: '158 g (5.57 oz)', 194 | sim: 'Dual SIM (Nano-SIM, dual stand-by)', 195 | type: 'Optic AMOLED capacitive touchscreen, 16M colors', 196 | size: '5.5 inches, 83.4 cm2 (~73.1% screen-to-body ratio)', 197 | resolution: '1080 x 1920 pixels, 16:9 ratio (~401 ppi density)', 198 | display_c: '- Oxygen OS 4.1.5', 199 | card_slot: 'No', 200 | alert_types: 'Vibration; MP3, WAV ringtones', 201 | loudspeaker_: 'Yes', 202 | sound_c: '- Active noise cancellation with dedicated mic', 203 | wlan: 'Wi-Fi 802.11 a/b/g/n/ac, Wi-Fi Direct, DLNA, hotspot', 204 | bluetooth: '4.2, A2DP, LE', 205 | gps: 'Yes, with A-GPS, GLONASS, BDS', 206 | radio: 'No', 207 | usb: '2.0, Type-C 1.0 reversible connector', 208 | messaging: 'SMS (threaded view), MMS, Email, IM, Push Email', 209 | browser: 'HTML5', 210 | java: 'No', 211 | features_c: 212 | '- Fast battery charging (Dash Charge) \r\n - DivX/Xvid/MP4/H.265 player\r\n - MP3/eAAC+/WMA/WAV/FLAC player\r\n - Document viewer\r\n - Photo/video editor', 213 | battery_c: 'Non-removable Li-Ion 3400 mAh battery', 214 | colors: 'Gunmetal, Soft Gold, Midnight Black', 215 | sar_us: ' 0.99 W/kg (head)     0.65 W/kg (body)     ', 216 | sensors: 217 | 'Fingerprint (front-mounted), accelerometer, gyro, proximity, compass', 218 | cpu: 'Quad-core (2x2.35 GHz Kryo & 2x1.6 GHz Kryo)', 219 | internal: '64/128 GB, 6 GB RAM', 220 | os: 'Android 6.0.1 (Marshmallow), upgradable to 7.1.1 (Nougat)', 221 | primary_: 222 | '16 MP, f/2.0, phase detection autofocus, OIS, LED flash, check quality', 223 | video: '2160p@30fps, 720p@120fps, Auto HDR, check quality', 224 | secondary: '16 MP, f/2.0, 1.0 \u00c2\u00b5m pixel size, 1080p', 225 | speed: 'HSPA 42.2/5.76 Mbps, LTE-A (2CA) Cat6 300/50 Mbps', 226 | network_c: 227 | 'LTE band 1(2100), 3(1800), 5(850), 7(2600), 8(900), 20(800), 38(2600), 40(2300) - Global model', 228 | chipset: 'Qualcomm MSM8996 Snapdragon 821', 229 | features: 230 | '1/2.8" sensor size, 1.12 \u00c2\u00b5m pixel size, geo-tagging, touch focus, face detection, panorama, HDR', 231 | protection: 'Corning Gorilla Glass 4', 232 | gpu: 'Adreno 530', 233 | multitouch: 'Yes', 234 | loudspeaker: ' Voice 61dB / Noise 69dB / Ring 78dB ', 235 | audio_quality: ' Noise-94.3dB / Crosstalk -93.4dB', 236 | nfc: 'Yes', 237 | camera: ' Photo / Video', 238 | display: ' Contrast ratio: Infinite (nominal), 4.232 (sunlight)', 239 | performance: 240 | ' Basemark OS II: 3328 / Basemark OS II 2.0: 2678\r\nBasemark X: 36958', 241 | price: 'About 440 EUR', 242 | sar: '0.99 W/kg (head)     0.65 W/kg (body)     ', 243 | _2g_bands: 'GSM 850 / 900 / 1800 / 1900 - SIM 1 & SIM 2', 244 | _3_5mm_jack_: 'Yes', 245 | _3g_bands: 'HSDPA 850 / 900 / 1700(AWS) / 1900 / 2100 - North America', 246 | _4g_bands: 247 | 'LTE band 1(2100), 2(1900), 4(1700/2100), 5(850), 7(2600), 8(900), 12(700), 17(700), 30(2300) - North America' 248 | }, 249 | { 250 | DeviceName: 'OnePlus 3', 251 | Brand: 'OnePlus', 252 | technology: 'GSM / HSPA / EVDO / LTE', 253 | gprs: 'Yes', 254 | edge: 'Yes', 255 | announced: '2016, June', 256 | status: 'Available. Released 2016, June', 257 | dimensions: '152.7 x 74.7 x 7.4 mm (6.01 x 2.94 x 0.29 in)', 258 | weight: '158 g (5.57 oz)', 259 | sim: 'Dual SIM (Nano-SIM, dual stand-by)', 260 | type: 'Optic AMOLED capacitive touchscreen, 16M colors', 261 | size: '5.5 inches (~73.1% screen-to-body ratio)', 262 | resolution: '1080 x 1920 pixels (~401 ppi pixel density)', 263 | display_c: '- Oxygen OS 3.2.8', 264 | card_slot: 'No', 265 | alert_types: 'Vibration; MP3, WAV ringtones', 266 | loudspeaker_: 'Yes', 267 | sound_c: '- Active noise cancellation with dedicated mic', 268 | wlan: 'Wi-Fi 802.11 a/b/g/n/ac, Wi-Fi Direct, DLNA, hotspot', 269 | bluetooth: 'v4.2, A2DP, LE', 270 | gps: 'Yes, with A-GPS, GLONASS, BDS', 271 | radio: 'No', 272 | usb: 'v2.0, Type-C 1.0 reversible connector', 273 | messaging: 'SMS (threaded view), MMS, Email, IM, Push Email', 274 | browser: 'HTML5', 275 | java: 'No', 276 | features_c: 277 | '- Fast battery charging: 60% in 30 min (Dash Charge) \r\n - DivX/Xvid/MP4/H.265 player\r\n - MP3/eAAC+/WMA/WAV/FLAC player\r\n - Document viewer\r\n - Photo/video editor', 278 | battery_c: 'Non-removable Li-Ion 3000 mAh battery', 279 | colors: 'Graphite, soft gold', 280 | sar_eu: ' 0.39 W/kg (head)     0.32 W/kg (body)     ', 281 | sensors: 'Fingerprint, accelerometer, gyro, proximity, compass', 282 | cpu: 'Quad-core (2x2.15 GHz Kryo & 2x1.6 GHz Kryo)', 283 | internal: '64 GB, 6 GB RAM', 284 | os: 'Android OS, v6.0.1 (Marshmallow)', 285 | primary_: '16 MP, f/2.0, phase detection autofocus, OIS, LED flash', 286 | video: '2160p@30fps, 720p@120fps, Auto HDR', 287 | secondary: 288 | '8 MP, f/2.0, 1/3.2" sensor size, 1.4 \u00c2\u00b5m pixel size, 1080p', 289 | speed: 'HSPA 42.2/5.76 Mbps, LTE-A (2CA) Cat6 300/50 Mbps', 290 | network_c: 291 | 'LTE band 1(2100), 3(1800), 5(850), 7(2600), 8(900), 20(800), 38(2600), 40(2300) - Global model', 292 | chipset: 'Qualcomm MSM8996 Snapdragon 820', 293 | features: 294 | '1/2.8" sensor size, 1.12 \u00c2\u00b5m pixel size, geo-tagging, touch focus, face detection, panorama, HDR', 295 | protection: 'Corning Gorilla Glass 4', 296 | gpu: 'Adreno 530', 297 | multitouch: 'Yes', 298 | loudspeaker: ' Voice 62dB / Noise 71dB / Ring 77dB ', 299 | audio_quality: ' Noise -93.4dB / Crosstalk -94.4dB', 300 | nfc: 'Yes', 301 | camera: ' Photo / Video', 302 | display: ' Contrast ratio: Infinite (nominal), 4.424(sunlight)', 303 | performance: 304 | ' Basemark OS II: 2677 / Basemark OS II 2.0: 2365\r\nBasemark X: 32715', 305 | _2g_bands: 'GSM 850 / 900 / 1800 / 1900 - SIM 1 & SIM 2', 306 | _3_5mm_jack_: 'Yes', 307 | _3g_bands: 'HSDPA 850 / 900 / 1700(AWS) / 1900 / 2100 - North America', 308 | _4g_bands: 309 | 'LTE band 1(2100), 2(1900), 4(1700/2100), 5(850), 7(2600), 8(900), 12(700), 17(700), 30(2300) - North America' 310 | }, 311 | { 312 | DeviceName: 'OnePlus X', 313 | Brand: 'OnePlus', 314 | technology: 'GSM / HSPA / LTE', 315 | gprs: 'Yes', 316 | edge: 'Yes', 317 | announced: '2015, October', 318 | status: 'Available. Released 2015, November', 319 | dimensions: '140 x 69 x 6.9 mm (5.51 x 2.72 x 0.27 in)', 320 | weight: '138 g / 160 g (4.87 oz)', 321 | sim: 'Dual SIM (Nano-SIM, dual stand-by)', 322 | type: 'AMOLED capacitive touchscreen, 16M colors', 323 | size: '5.0 inches (~71.3% screen-to-body ratio)', 324 | resolution: '1080 x 1920 pixels (~441 ppi pixel density)', 325 | display_c: '- OxygenOS 2.2.0', 326 | card_slot: 'microSD, up to 128 GB (uses SIM 2 slot)', 327 | alert_types: 'Vibration; MP3, WAV ringtones', 328 | loudspeaker_: 'Yes', 329 | wlan: 'Wi-Fi 802.11 b/g/n, hotspot', 330 | bluetooth: 'v4.0, A2DP', 331 | gps: 'Yes, with A-GPS, GLONASS, BDS', 332 | radio: 'FM radio', 333 | usb: 'microUSB v2.0', 334 | messaging: 'SMS (threaded view), MMS, Email, IM, Push Email', 335 | browser: 'HTML5', 336 | java: 'No', 337 | features_c: 338 | '- Active noise cancellation with dedicated mic\r\n - DivX/Xvid/MP4/H.265 player\r\n - MP3/eAAC+/WMA/WAV/FLAC player\r\n - Document viewer\r\n - Photo/video editor\r\n - Notification profiles hardware switch', 339 | battery_c: 'Non-removable Li-Po 2525 mAh battery', 340 | colors: 'Onyx, Ceramic, Champagne', 341 | sar_us: ' 1.11 W/kg (head)     1.11 W/kg (body)     ', 342 | sar_eu: ' 0.32 W/kg (head)     0.42 W/kg (body)     ', 343 | sensors: 'Accelerometer, gyro, proximity', 344 | cpu: 'Quad-core 2.3 GHz Krait 400', 345 | internal: '16 GB, 3 GB RAM', 346 | os: 'Android OS, v5.1.1 (Lollipop)', 347 | primary_: '13 MP, f/2.2, phase detection autofocus, LED flash', 348 | video: '1080p@30fps, 720p@120fps', 349 | secondary: '8 MP, f/2.4', 350 | speed: 'HSPA, LTE', 351 | network_c: 352 | 'LTE band 1(2100), 2(1900), 4(1700/2100), 5(850), 7(2600), 8(900) - USA', 353 | chipset: 'Qualcomm Snapdragon 801', 354 | features: 355 | '1/3" sensor size, 1.14 \u00c2\u00b5m pixel size, geo-tagging, touch focus, face detection, panorama, HDR', 356 | protection: 'Corning Gorilla Glass 3', 357 | gpu: 'Adreno 330', 358 | multitouch: 'Yes', 359 | loudspeaker: ' Voice 65dB / Noise 66dB / Ring 70dB', 360 | audio_quality: ' Noise -94.4dB / Crosstalk -94.3dB', 361 | display: ' Contrast ratio: Infinite (nominal), 3.983 (sunlight)', 362 | performance: 363 | ' Basemark OS II: 1290 / Basemark OS II 2.0: 1213\r\nBasemark X: 10572', 364 | _2g_bands: 'GSM 850 / 900 / 1800 / 1900 - SIM 1 & SIM 2', 365 | _3_5mm_jack_: 'Yes', 366 | _3g_bands: 'HSDPA 850 / 900 / 1900 / 2100 - Europe', 367 | _4g_bands: 368 | 'LTE band 1(2100), 3(1800), 5(850), 7(2600), 8(900), 20(800), 38(2600), 40(2300) - Europe' 369 | }, 370 | { 371 | DeviceName: 'OnePlus 2', 372 | Brand: 'OnePlus', 373 | technology: 'GSM / HSPA / LTE', 374 | gprs: 'Yes', 375 | edge: 'Yes', 376 | announced: '2015, July', 377 | status: 'Available. Released 2015, August', 378 | dimensions: '151.8 x 74.9 x 9.9 mm (5.98 x 2.95 x 0.39 in)', 379 | weight: '175 g (6.17 oz)', 380 | sim: 'Dual SIM (Nano-SIM, dual stand-by)', 381 | type: 'LTPS IPS LCD capacitive touchscreen, 16M colors', 382 | size: '5.5 inches (~73.3% screen-to-body ratio)', 383 | resolution: '1080 x 1920 pixels (~401 ppi pixel density)', 384 | display_c: '- Oxygen 3.5.5 UI', 385 | card_slot: 'No', 386 | alert_types: 'Vibration; MP3, WAV ringtones', 387 | loudspeaker_: 'Yes', 388 | sound_c: '- Active noise cancellation with dedicated mic', 389 | wlan: 'Wi-Fi 802.11 a/b/g/n/ac, Wi-Fi Direct, DLNA, hotspot', 390 | bluetooth: 'v4.1, A2DP', 391 | gps: 'Yes, with A-GPS, GLONASS', 392 | radio: 'No', 393 | usb: 'v2.0, Type-C 1.0 reversible connector', 394 | messaging: 'SMS (threaded view), MMS, Email, IM, Push Email', 395 | browser: 'HTML5', 396 | java: 'No', 397 | features_c: 398 | '- DivX/Xvid/MP4/H.265 player\r\n - MP3/eAAC+/WMA/WAV/FLAC player\r\n - Document viewer\r\n - Photo/video editor', 399 | battery_c: 'Non-removable Li-Po 3300 mAh battery', 400 | colors: 'Sandstone Black', 401 | sar_eu: ' 0.43 W/kg (head)     0.20 W/kg (body)     ', 402 | sensors: 403 | 'Fingerprint (front-mounted), accelerometer, gyro, proximity, compass', 404 | cpu: 'Octa-core (4x1.56 GHz Cortex-A53 & 4x1.82 GHz Cortex-A57)', 405 | internal: '16 GB, 3 GB RAM\r\n64 GB, 4 GB RAM', 406 | os: 'Android OS, v5.1 (Lollipop), upgradable to v6.0.1 (Marshmallow)', 407 | primary_: 408 | '13 MP, f/2.0, OIS, laser autofocus, dual-LED flash, check quality', 409 | video: '2160p@30fps, 720p@120fps, check quality', 410 | secondary: '5 MP, f/2.4, 1080p@30fps', 411 | speed: 'HSPA 42.2/5.76 Mbps, LTE Cat4 150/50 Mbps', 412 | network_c: 413 | 'LTE band 1(2100), 3(1800), 5(850), 7(2600), 8(900), 20(800), 38(2600), 40(2300), 41(2500) - Global model', 414 | chipset: 'Qualcomm MSM8994 Snapdragon 810', 415 | features: 416 | '1/2.6" sensor size, 1.3 \u00c2\u00b5m pixel size, geo-tagging, touch focus, face detection, panorama, HDR', 417 | protection: 'Corning Gorilla Glass 3', 418 | gpu: 'Adreno 430', 419 | multitouch: 'Yes', 420 | loudspeaker: ' Voice 75dB / Noise 73dB / Ring 80dB ', 421 | audio_quality: ' Noise -94.2dB / Crosstalk -94.3dB', 422 | camera: ' Photo / Video', 423 | display: ' Contrast ratio: 1187 (nominal), 2.165 (sunlight)', 424 | performance: 425 | ' Basemark OS II: 1942 / Basemark OS II 2.0: 1622\r\nBasemark X: 21937', 426 | _2g_bands: 'GSM 850 / 900 / 1800 / 1900 - SIM 1 & SIM 2', 427 | _3_5mm_jack_: 'Yes', 428 | _3g_bands: 'HSDPA 850 / 900 / 1700(AWS) / 1900 / 2100 - North America', 429 | _4g_bands: 430 | 'LTE band 1(2100), 2(1900), 4(1700/2100), 5(850), 7(2600), 8(900), 12(700), 17(700) - North America' 431 | }, 432 | { 433 | DeviceName: 'OnePlus One', 434 | Brand: 'OnePlus', 435 | technology: 'GSM / HSPA / LTE', 436 | gprs: 'Yes', 437 | edge: 'Yes', 438 | announced: '2014, April', 439 | status: 'Available. Released 2014, June', 440 | dimensions: '152.9 x 75.9 x 8.9 mm (6.02 x 2.99 x 0.35 in)', 441 | weight: '162 g (5.71 oz)', 442 | sim: 'Micro-SIM', 443 | type: 'LTPS IPS LCD capacitive touchscreen, 16M colors', 444 | size: '5.5 inches (~71.9% screen-to-body ratio)', 445 | resolution: '1080 x 1920 pixels (~401 ppi pixel density)', 446 | display_c: '- CyanogenMod 12.1.1\r\n - Oxygen 2.1.4', 447 | card_slot: 'No', 448 | alert_types: 'Vibration; MP3, WAV ringtones', 449 | loudspeaker_: 'Yes, dual mono speakers', 450 | wlan: 'Wi-Fi 802.11 a/b/g/n/ac, Wi-Fi Direct, DLNA, hotspot', 451 | bluetooth: 'v4.1, A2DP', 452 | gps: 'Yes, with A-GPS, GLONASS', 453 | radio: 'No', 454 | usb: 'microUSB v2.0, USB Host', 455 | messaging: 'SMS (threaded view), MMS, Email, IM, Push Email', 456 | browser: 'HTML5', 457 | java: 'No', 458 | features_c: 459 | '- ANT+ support\r\n - Active noise cancellation with dedicated mic\r\n - MP4/H.264/WMV player\r\n - MP3/eAAC+/WMA/WAV/FLAC player\r\n - Document viewer\r\n - Photo viewer/editor\r\n - Voice memo/dial/commands', 460 | battery_c: 'Non-removable Li-Po 3100 mAh battery', 461 | colors: 'Silk White, Sandstone Black', 462 | sar_us: ' 0.62 W/kg (head)     0.75 W/kg (body)     ', 463 | sensors: 'Accelerometer, gyro, proximity, compass', 464 | cpu: 'Quad-core 2.5 GHz Krait 400', 465 | internal: '16/64 GB, 3 GB RAM', 466 | os: 'Android OS, v4.4.2 (KitKat), upgradable to v5.1.1 (Lollipop)', 467 | primary_: '13 MP, f/2.0, autofocus, dual-LED flash', 468 | video: 469 | '2160p@30fps, 2160p(DCI)@24fps, 1080p@60fps, 720p@120fps, HDR, stereo sound rec.', 470 | secondary: '5 MP, f/2.0, 1080p@30fps', 471 | speed: 'HSPA 42.2/5.76 Mbps, LTE Cat4 150/50 Mbps', 472 | chipset: 'Qualcomm MSM8974AC Snapdragon 801', 473 | features: 474 | '1/3" sensor size, 1.12 \u00c2\u00b5m pixel size, geo-tagging, touch focus, face detection, panorama, HDR', 475 | protection: 'Corning Gorilla Glass 3', 476 | gpu: 'Adreno 330', 477 | multitouch: 'Yes, up to 10 fingers', 478 | loudspeaker: ' Voice 74dB / Noise 73dB / Ring 80dB', 479 | audio_quality: ' Noise -94.1dB / Crosstalk -94.3dB', 480 | nfc: 'Yes', 481 | camera: ' Photo / Video', 482 | display: ' Contrast ratio: 799 (nominal), 1.961 (sunlight)', 483 | performance: 484 | ' Basemark OS II: 1196 / Basemark OS II 2.0: 1230\r\nBasemark X: 13129', 485 | _2g_bands: 'GSM 850 / 900 / 1800 / 1900 ', 486 | _3_5mm_jack_: 'Yes', 487 | _3g_bands: 'HSDPA 850 / 900 / 1700 / 1900 / 2100 ', 488 | _4g_bands: 489 | 'LTE band 1(2100), 3(1800), 4(1700/2100), 7(2600), 17(700), 38(2600), 40(2300)' 490 | } 491 | ]; 492 | -------------------------------------------------------------------------------- /src/dxo-marks.js: -------------------------------------------------------------------------------- 1 | /* 2 | 3 | Run this in the console to get the latest ranks from dxomark.com 4 | 5 | (function(){ 6 | const list = document.querySelector('#mobilesTopScoringTab'); 7 | console.log(list); 8 | const phones = [...list.querySelectorAll('.listElement')]; 9 | const ranks = phones.map(p => { 10 | const score = parseInt(p.querySelector('.deviceScore').innerHTML); 11 | const name = p.querySelector('.deviceName a').innerHTML; 12 | return { 13 | score, 14 | name 15 | } 16 | }); 17 | const filtered = ranks.filter(r => r.score >= 90); 18 | console.log('filtered', filtered); 19 | })() 20 | 21 | */ 22 | 23 | export default [ 24 | { 25 | score: 109, 26 | name: 'Huawei P20 Pro' 27 | }, 28 | { 29 | score: 103, 30 | name: 'HTC U12+' 31 | }, 32 | { 33 | score: 102, 34 | name: 'Huawei P20' 35 | }, 36 | { 37 | score: 99, 38 | name: 'Samsung Galaxy S9+' 39 | }, 40 | { 41 | score: 99, 42 | name: 'Samsung Galaxy S9' 43 | }, 44 | { 45 | score: 99, 46 | name: 'Xiaomi Mi 8' 47 | }, 48 | { 49 | score: 98, 50 | name: 'Google Pixel 2' 51 | }, 52 | { 53 | score: 97, 54 | name: 'Apple iPhone X' 55 | }, 56 | { 57 | score: 97, 58 | name: 'Huawei Mate 10 Pro' 59 | }, 60 | { 61 | score: 97, 62 | name: 'Xiaomi Mi MIX 2S' 63 | }, 64 | { 65 | score: 94, 66 | name: 'Apple iPhone 8 Plus' 67 | }, 68 | { 69 | score: 94, 70 | name: 'Samsung Galaxy Note 8' 71 | }, 72 | { 73 | score: 92, 74 | name: 'Apple iPhone 8' 75 | }, 76 | { 77 | score: 90, 78 | name: 'Google Pixel' 79 | }, 80 | { 81 | score: 90, 82 | name: 'Google Pixel XL' 83 | }, 84 | { 85 | score: 90, 86 | name: 'HTC U11' 87 | }, 88 | 89 | { 90 | score: 90, 91 | name: 'Xiaomi Mi Note 3' 92 | } 93 | ]; 94 | -------------------------------------------------------------------------------- /src/filters.js: -------------------------------------------------------------------------------- 1 | import dxoMarks from './dxo-marks'; 2 | 3 | const getBodyRatio = device => { 4 | if ( 5 | !( 6 | device && 7 | device.size && 8 | device.size.includes('~') && 9 | device.size.includes('%') 10 | ) 11 | ) { 12 | return false; 13 | } 14 | const size = device.size.split('~')[1]; 15 | return parseFloat(size.split('%')); 16 | }; 17 | 18 | export const filters = { 19 | bodyRatio: { 20 | name: 'Good screen to body ratio', 21 | filter: device => getBodyRatio(device) >= 80 22 | }, 23 | goodCamera: { 24 | name: 'Great camera', 25 | filter: device => dxoMarks.find(d => d.name === device.DeviceName) 26 | }, 27 | instantUpdates: { 28 | name: `Receives updates instantly`, 29 | filter: device => { 30 | let brand = device.Brand ? device.Brand.toLowerCase() : ''; 31 | return brand === 'apple' || brand === 'google'; 32 | } 33 | }, 34 | tooSmall: { 35 | name: 'Not too small', 36 | filter: device => { 37 | if (!(device && device.size && device.size.includes('inches'))) { 38 | return false; 39 | } 40 | let size = device.size.split(' inches')[0]; 41 | let inches = parseFloat(size); 42 | return inches >= 5; 43 | } 44 | }, 45 | tooBig: { 46 | name: 'Can use with 1 hand', 47 | filter: device => { 48 | if (!(device && device.size && device.size.includes('inches'))) { 49 | return false; 50 | } 51 | 52 | let size = device.size.split(' inches')[0]; 53 | let inches = parseFloat(size); 54 | let ratio = getBodyRatio(device); 55 | let bigWithGoodRatio = inches <= 5.8 && ratio > 80; 56 | let smallScreenWithOkRatio = inches <= 5.2 && ratio > 65; 57 | 58 | return bigWithGoodRatio || smallScreenWithOkRatio; 59 | } 60 | }, 61 | latestVersion: { 62 | name: 'Latest version of OS', 63 | filter: device => { 64 | let brand = device.Brand ? device.Brand.toLowerCase() : ''; 65 | 66 | const iOSdevices = [ 67 | 'Apple iPhone X', 68 | 'Apple iPhone 8', 69 | 'Apple iPhone 8 Plus', 70 | 'Apple iPhone 7', 71 | 'Apple iPhone 7 Plus', 72 | 'Apple iPhone 6s', 73 | 'Apple iPhone 6s Plus', 74 | 'Apple iPhone 6', 75 | 'Apple iPhone 6 Plus', 76 | 'Apple iPhone SE', 77 | 'Apple iPhone 5s' 78 | ]; 79 | 80 | return iOSdevices.includes(device.DeviceName) || brand === 'google'; 81 | } 82 | }, 83 | superAmoled: { 84 | name: 'OLED screen', 85 | filter: device => { 86 | let screenType = device.type ? device.type.toLowerCase() : ''; 87 | return screenType.includes('oled'); 88 | } 89 | }, 90 | wirelessCharging: { 91 | name: 'Wireless charging', 92 | filter: device => { 93 | let features = device.features_c ? device.features_c.toLowerCase() : ''; 94 | return features.includes('wireless charging'); 95 | } 96 | }, 97 | waterResistant: { 98 | name: 'Water resistant', 99 | filter: device => { 100 | let features = device.body_c ? device.body_c.toLowerCase() : ''; 101 | return features.includes('water'); 102 | } 103 | }, 104 | fullHd: { 105 | name: 'HQ screen resolution', 106 | filter: device => { 107 | const resolution = device.resolution 108 | ? device.resolution.toLowerCase() 109 | : ''; 110 | let splitted = resolution.split(' x '); 111 | let a = splitted[0]; 112 | let b = splitted[1] && splitted[1].split(' ')[0]; 113 | if (a && b) { 114 | const x = parseInt(a.trim()); 115 | const y = parseInt(b.trim()); 116 | return y > 2400 && x > 1100; 117 | } 118 | } 119 | }, 120 | recent: { 121 | name: 'Recently released', 122 | //make sure to include these phones because their date is 123 | exceptions: ['Galaxy S9', 'Galaxy Note 8'], 124 | filter: device => { 125 | let status = device.status ? device.status.toLowerCase() : ''; 126 | return ( 127 | status.includes('released') && 128 | ['2017', '2018', '2019'].some(year => status.includes(year)) 129 | ); 130 | } 131 | } 132 | }; 133 | -------------------------------------------------------------------------------- /src/get-filtered-devices.js: -------------------------------------------------------------------------------- 1 | import every from 'lodash/every'; 2 | import { filters } from './filters'; 3 | 4 | export const getFilteredDevices = (devices, pickedFilters) => 5 | devices.filter(device => { 6 | return every(pickedFilters, filterId => { 7 | const name = device.DeviceName ? device.DeviceName.toLowerCase() : ''; 8 | const filter = filters[filterId]; 9 | const rule = filter.filter(device); 10 | const exceptions = filter.exceptions || []; 11 | const isException = exceptions.some(exception => 12 | name.includes(exception.toLowerCase()) 13 | ); 14 | return rule || isException; 15 | }); 16 | }); 17 | -------------------------------------------------------------------------------- /src/index.css: -------------------------------------------------------------------------------- 1 | body { 2 | min-height: 100vh; 3 | overflow-y: scroll; 4 | } 5 | 6 | * { 7 | box-sizing: border-box; 8 | font-family: 'Roboto', sans-serif; 9 | } 10 | -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- 1 | import React from 'react'; 2 | import ReactDOM from 'react-dom'; 3 | import App from './App'; 4 | 5 | //css 6 | import 'modern-normalize/modern-normalize.css'; 7 | import './index.css'; 8 | 9 | ReactDOM.render(, document.getElementById('root')); 10 | -------------------------------------------------------------------------------- /src/mixins.js: -------------------------------------------------------------------------------- 1 | export const whiteish = (opacity = 1) => `rgba(255,255,255, ${opacity})`; 2 | export const blackish = (opacity = 1) => `rgba(0,0,0, ${opacity})`; 3 | -------------------------------------------------------------------------------- /src/models/ToggleArray.js: -------------------------------------------------------------------------------- 1 | import { types } from 'mobx-state-tree'; 2 | 3 | export default types 4 | .model('ToggleArray', { 5 | items: types.optional(types.array(types.string), []) 6 | }) 7 | .actions(self => ({ 8 | toggle: id => { 9 | if (self.items.includes(id)) { 10 | self.remove(id); 11 | } else { 12 | self.add(id); 13 | } 14 | }, 15 | remove: id => { 16 | self.items = self.items.filter(i => i !== id); 17 | }, 18 | add: id => { 19 | self.items.push(id); 20 | }, 21 | reset: () => { 22 | self.items = []; 23 | } 24 | })); 25 | -------------------------------------------------------------------------------- /src/state-utils.js: -------------------------------------------------------------------------------- 1 | export const toggleInArray = (stateKey, id) => state => { 2 | const newArray = state[stateKey].includes(id) 3 | ? state[stateKey].filter(f => f !== id) 4 | : [...state[stateKey], id]; 5 | return { [stateKey]: newArray }; 6 | }; 7 | -------------------------------------------------------------------------------- /src/styles.js: -------------------------------------------------------------------------------- 1 | import glamorous from 'react-emotion'; 2 | import { whiteish } from './mixins'; 3 | import facepaint from 'facepaint'; 4 | 5 | const mq = facepaint([ 6 | '@media(min-width: 420px)', 7 | '@media(min-width: 920px)', 8 | '@media(min-width: 1120px)' 9 | ]); 10 | 11 | export const Background = glamorous.div` 12 | background-color: #ff9d00; 13 | background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100%25' height='100%25' viewBox='0 0 1600 800'%3E%3Cg stroke='%23000' stroke-width='66.7' stroke-opacity='0.05' %3E%3Ccircle fill='%23ff9d00' cx='0' cy='0' r='1800'/%3E%3Ccircle fill='%23fb8d17' cx='0' cy='0' r='1700'/%3E%3Ccircle fill='%23f47d24' cx='0' cy='0' r='1600'/%3E%3Ccircle fill='%23ed6e2d' cx='0' cy='0' r='1500'/%3E%3Ccircle fill='%23e35f34' cx='0' cy='0' r='1400'/%3E%3Ccircle fill='%23d85239' cx='0' cy='0' r='1300'/%3E%3Ccircle fill='%23cc453e' cx='0' cy='0' r='1200'/%3E%3Ccircle fill='%23be3941' cx='0' cy='0' r='1100'/%3E%3Ccircle fill='%23b02f43' cx='0' cy='0' r='1000'/%3E%3Ccircle fill='%23a02644' cx='0' cy='0' r='900'/%3E%3Ccircle fill='%23901e44' cx='0' cy='0' r='800'/%3E%3Ccircle fill='%23801843' cx='0' cy='0' r='700'/%3E%3Ccircle fill='%236f1341' cx='0' cy='0' r='600'/%3E%3Ccircle fill='%235e0f3d' cx='0' cy='0' r='500'/%3E%3Ccircle fill='%234e0c38' cx='0' cy='0' r='400'/%3E%3Ccircle fill='%233e0933' cx='0' cy='0' r='300'/%3E%3Ccircle fill='%232e062c' cx='0' cy='0' r='200'/%3E%3Ccircle fill='%23210024' cx='0' cy='0' r='100'/%3E%3C/g%3E%3C/svg%3E"); 14 | background-attachment: fixed; 15 | background-size: cover; 16 | background-position: center; 17 | position: fixed; 18 | top: 0; 19 | left: 0; 20 | height: 100vh; 21 | max-height: 100vh; 22 | max-width: 100vw; 23 | width: 100vw; 24 | z-index: 0; 25 | `; 26 | 27 | export const App = glamorous.div` 28 | display: flex; 29 | flex-direction: column; 30 | align-items: center; 31 | min-height: 100vh; 32 | `; 33 | 34 | export const Header = glamorous.div( 35 | { 36 | color: 'white', 37 | width: '100%', 38 | zIndex: 1 39 | // backgroundColor: 'rgba(0,0,0,0.5)' 40 | }, 41 | mq({ 42 | padding: [`20px 10px`, `20px 20px`, `20px 20px`] 43 | }) 44 | ); 45 | 46 | export const Space = glamorous.div( 47 | mq({ 48 | height: [20, 30, 30] 49 | }) 50 | ); 51 | 52 | export const Content = glamorous.div({ 53 | display: 'flex', 54 | flexDirection: 'column', 55 | alignItems: 'center', 56 | justifyContent: 'center' 57 | }); 58 | 59 | export const Title = glamorous.div({ 60 | fontSize: 30, 61 | fontWeight: '400', 62 | lineHeight: '25px' 63 | }); 64 | 65 | export const Link = glamorous.a({ 66 | fontWeight: 400, 67 | textDecoration: 'none', 68 | transition: 'all 150ms linear', 69 | color: 'white', 70 | borderBottom: '1px dotted white', 71 | paddingBottom: 4 72 | }); 73 | 74 | export const Subtitle = glamorous.div({ 75 | color: 'white', 76 | fontWeight: '300', 77 | fontSize: 18, 78 | textAlign: 'center' 79 | }); 80 | 81 | export const MadeBy = glamorous.div( 82 | { 83 | color: 'white', 84 | fontWeight: '300', 85 | marginBottom: 30 86 | }, 87 | mq({ 88 | textAlign: ['center', 'center', 'end'] 89 | }) 90 | ); 91 | 92 | export const FilterButton = glamorous.button( 93 | { 94 | outline: 'none', 95 | border: `1px solid ${whiteish(0.2)}`, 96 | backgroundColor: whiteish(0.1), 97 | color: whiteish(1), 98 | borderRadius: 3, 99 | cursor: 'pointer', 100 | fontWeight: 300, 101 | transition: 'all 100ms linear', 102 | userSelect: 'none' 103 | }, 104 | ({ active }) => ({ 105 | ...(active && { backgroundColor: 'white', color: '#2d2b58' }), 106 | ...(!active && { 107 | '&:hover': { 108 | border: `1px solid ${whiteish(0.4)}`, 109 | backgroundColor: whiteish(0.3) 110 | } 111 | }) 112 | }), 113 | mq({ 114 | marginRight: [10, 15, 15], 115 | marginBottom: [10, 15, 15], 116 | fontSize: [14, 16, 16], 117 | padding: ['4px 5px', '4px 8px', '4px 8px'] 118 | }) 119 | ); 120 | 121 | export const FilterList = glamorous.div({ 122 | display: 'flex', 123 | alignItems: 'center', 124 | justifyContent: 'center', 125 | flexWrap: 'wrap', 126 | maxWidth: 1000 127 | }); 128 | 129 | export const Wrapper = glamorous.div({ 130 | display: 'flex', 131 | flexWrap: 'wrap', 132 | alignItems: 'flex-start', 133 | maxWidth: 1200, 134 | justifyContent: 'center' 135 | }); 136 | 137 | export const Devices = glamorous.div( 138 | { 139 | display: 'flex', 140 | flexDirection: 'column', 141 | alignItems: 'center', 142 | width: '100%', 143 | flex: 1, 144 | zIndex: 1, 145 | backgroundColor: 'rgba(74, 12, 53, 0.66)' 146 | }, 147 | mq({ 148 | padding: ['30px 10px', 20, 40] 149 | }) 150 | ); 151 | 152 | export const Device = { 153 | Wrap: glamorous.div( 154 | { 155 | userSelect: 'none', 156 | cursor: 'default', 157 | marginBottom: 12, 158 | marginRight: 12, 159 | border: `1px dashed ${whiteish(0.4)}`, 160 | borderRadius: 5, 161 | padding: '5px 7px', 162 | fontWeight: 300, 163 | transition: 'all 250ms ease-in', 164 | color: 'white' 165 | }, 166 | mq({ 167 | fontSize: [14, 16, 16] 168 | }), 169 | ({ only }) => ({ 170 | ...(only === true && { 171 | fontSize: '30px !important', 172 | border: `2px dashed ${whiteish(0.8)}`, 173 | padding: '15px 25px' 174 | }) 175 | }) 176 | ), 177 | Name: glamorous.div({}) 178 | }; 179 | --------------------------------------------------------------------------------