<?xml version="1.0" encoding="UTF-8" ?>
<rss version="2.0" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:atom="http://www.w3.org/2005/Atom">
	<channel>
		<title>ANDROID-FAN</title>
		<link>http://android-fan.at.ua/</link>
		<description>Блог</description>
		<lastBuildDate>Fri, 30 Mar 2012 09:58:54 GMT</lastBuildDate>
		<generator>uCoz Web-Service</generator>
		<atom:link href="https://android-fan.at.ua/blog/rss" rel="self" type="application/rss+xml" />
		
		<item>
			<title>Получение фото с android-смартфона прямо в html форму</title>
			<description>&lt;div&gt;Здравствуйте!&lt;/div&gt;&lt;div&gt;&lt;br&gt;&lt;/div&gt;&lt;div&gt;Возникла задача для интернет-магазина сфотографировать большое количество товаров. Специфика товара такова, что не столько важна красивая картинка, сколько особенности конструкции товара (с какой стороны находится шлейф, есть ли петли крепления и т.п.)&lt;/div&gt;&lt;div&gt;&lt;br&gt;&lt;/div&gt;&lt;div&gt;Фотографировать обычным фотоаппаратом, потом заливать фото на компьютер, искать каждый товар в админке, потом искать соответствующее фото, показалось очень долго. Гораздо проще открыть товар в админке и навести телефон на товар. Тем более, что при хорошо выставленном освещении, современные смартфоны выдают вполне качественную картинку.&lt;/div&gt;&lt;div&gt;&lt;br&gt;&lt;/div&gt;&lt;div&gt;Теория&lt;/div&gt;&lt;div&gt;&lt;br&gt;&lt;/div&gt;&lt;div&gt;В андроид-маркете лежит замечательная программа IpWebCam, которая позволяет превратить свой телефон в полноценную веб-камеру. Кроме того у нее есть api для получения фотографий с автофокусом. При запуске IpWebCam, на телефоне поднимается web-сервер, который позволяет с локальной машины по wi-fi получать текущий кадр с телефона по адресу вида 192.168.0.14:8080/shot.jpg&lt;/div&gt;&lt;div&gt;&lt;br&gt;&lt;/div&gt;&lt;div&gt;Идея была следующая:&lt;/div&gt;&lt;div&gt;Вставить в форму &lt;img&amp;gt; с адресом фотографии со смартфона&lt;/div&gt;&lt;div&gt;Создать canvas и в него скопировать содержимое &lt;img&amp;gt;&lt;/div&gt;&lt;div&gt;Сохранить данные при помощи canvas.toDataURL()&lt;/div&gt;&lt;div&gt;Отправить данные на сервер при помощи ajax&lt;/div&gt;&lt;div&gt;&lt;br&gt;&lt;/div&gt;&lt;div&gt;&lt;br&gt;&lt;/div&gt;&lt;div&gt;К сожалению, из-за кросс-доменных политик метод toDataURL() сохраняет только черный квадрат вместо изображения. Поэтому canvas надо создавать на том же домене, из которого берется изображение. Сходив на сайт программы, я узнал, что IpWebCam позволяет создавать собственные html-страницы на своем внутреннем сервере. Для этого их достаточно залить на sd-карту и указать программе, в какой папке их искать.&lt;/div&gt;&lt;div&gt;&lt;br&gt;&lt;/div&gt;&lt;div&gt;Алгоритм следующий:&lt;/div&gt;&lt;div&gt;На смартфоне создаем специальную страницу (например my.html)&lt;/div&gt;&lt;div&gt;В форме на нашем сайте создаем &lt;iframe&amp;gt;, в который грузим html-страницу со смартфона.&lt;/div&gt;&lt;div&gt;На телефоне в html странице создаем canvas, в который грузим изображение с камеры.&lt;/div&gt;&lt;div&gt;Сохраняем данные при помощи canvas.toDataURL() в переменную&lt;/div&gt;&lt;div&gt;Передаем данные в родительскую страницу при помощи window.postMessage()&lt;/div&gt;&lt;div&gt;В родительской странице получаем изображение и отправляем данные на сервер при помощи ajax&lt;/div&gt;&lt;div&gt;На сервере сохраняем изображение в файл.&lt;/div&gt;&lt;div&gt;&lt;br&gt;&lt;/div&gt;&lt;div&gt;Решение&lt;/div&gt;&lt;div&gt;&lt;br&gt;&lt;/div&gt;&lt;div&gt;Во-первых, ставим на смартфон программу IpWebCam из маркета.&lt;/div&gt;&lt;div&gt;&lt;br&gt;&lt;/div&gt;&lt;div&gt;Создаем на смартфоне папку webcam, а в ней создаем файл my.html со следующим содержимым:&lt;/div&gt;&lt;div&gt;Content-Type: text/html&lt;/div&gt;&lt;div&gt;&lt;br&gt;&lt;/div&gt;&lt;div&gt;&lt;html&amp;gt;&lt;/div&gt;&lt;div&gt;&lt;head&amp;gt;&lt;/div&gt;&lt;div&gt;&lt;script type=&quot;text/javascript&quot; src=&quot;jquery.min.js&quot;&amp;gt;&lt;/script&amp;gt;&lt;/div&gt;&lt;div&gt;&lt;script type=&quot;text/javascript&quot; src=&quot;jquery.jplayer.min.js&quot;&amp;gt;&lt;/script&amp;gt;&lt;/div&gt;&lt;div&gt;&lt;script type=&quot;text/javascript&quot; src=&quot;common.js&quot;&amp;gt;&lt;/script&amp;gt;&lt;/div&gt;&lt;div&gt;&lt;style&amp;gt;&lt;/div&gt;&lt;div&gt;&amp;nbsp; &amp;nbsp; * { margin: 0; padding: 0}&lt;/div&gt;&lt;div&gt;&lt;/style&amp;gt;&lt;/div&gt;&lt;div&gt;&amp;nbsp; &amp;nbsp;&amp;nbsp;&lt;/div&gt;&lt;div&gt;&lt;script type=&quot;text/javascript&quot;&amp;gt;&lt;/div&gt;&lt;div&gt;$(loadJsWindowed);&lt;/div&gt;&lt;div&gt;function shot()&lt;/div&gt;&lt;div&gt;{&lt;/div&gt;&lt;div&gt;&amp;nbsp; &amp;nbsp; $(&apos;#msg&apos;).text(&apos;Please wait...&apos;);&lt;/div&gt;&lt;div&gt;&amp;nbsp; &amp;nbsp; var img = new Image();&lt;/div&gt;&lt;div&gt;&amp;nbsp; &amp;nbsp; img.onload = &amp;nbsp;function(){&lt;/div&gt;&lt;div&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; var canvas = $(&apos;&lt;canvas width=&quot;&apos; + img.width + &apos;&quot; height=&quot;&apos; + img.height + &apos;&quot;&amp;gt;&apos;);&lt;/div&gt;&lt;div&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; canvas[0].getContext(&apos;2d&apos;).drawImage(img, 0, 0);&lt;/div&gt;&lt;div&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; var data = canvas[0].toDataURL(&apos;image/jpeg&apos;).replace(/data:image&amp;#92;/jpeg;base64,/, &apos;&apos;);&lt;/div&gt;&lt;div&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; canvas.remove();&lt;/div&gt;&lt;div&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; //засылаем картинку на сервер&lt;/div&gt;&lt;div&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; window.parent.postMessage(data, &apos;*&apos;);&lt;/div&gt;&lt;div&gt;&amp;nbsp; &amp;nbsp; }&lt;/div&gt;&lt;div&gt;&amp;nbsp; &amp;nbsp; img.src = &apos;photoaf.jpg&apos;;&lt;/div&gt;&lt;div&gt;}&lt;/div&gt;&lt;div&gt;&lt;/script&amp;gt;&lt;/div&gt;&lt;div&gt;&lt;br&gt;&lt;/div&gt;&lt;div&gt;&lt;/head&amp;gt;&lt;/div&gt;&lt;div&gt;&lt;body&amp;gt;&lt;/div&gt;&lt;div&gt;&lt;div id=&quot;msg&quot; style=&quot;text-align: center; background-color: #000000; color: #FFFFFF; font-weight: bold; cursor: pointer;&quot; onclick=&quot;shot();&quot;&amp;gt;Click to take a shot..&lt;/div&amp;gt;&lt;/div&gt;&lt;div&gt;&lt;img id=&quot;img1&quot; src=&quot;https://android-fan.at.ua/shot.jpg?1&quot; style=&quot;cursor: pointer; position:absolute;&quot;/&amp;gt;&lt;/div&gt;&lt;div&gt;&lt;img id=&quot;img2&quot; src=&quot;https://android-fan.at.ua/shot.jpg?2&quot; style=&quot;cursor: pointer; position:absolute;&quot;/&amp;gt;&lt;/div&gt;&lt;div&gt;&lt;/body&amp;gt;&lt;/div&gt;&lt;div&gt;&lt;/html&amp;gt;&lt;/div&gt;&lt;div&gt;&lt;br&gt;&lt;/div&gt;&lt;div&gt;Обратите внимание, что в начале файла идут HTTP заголовки и пустая строка перед основным содержимым страницы. За основу был взят javascript видео-проигрыватель из самой программы.&lt;/div&gt;&lt;div&gt;&lt;br&gt;&lt;/div&gt;&lt;div&gt;Теперь надо указать, где искать файлы для веб-сервера приложения. Для этого откройте программу на телефоне, нажмите хардварную кнопку меню и выберите единственный пункт Cheats. Теперь введите в открывшемся диалоговом окне команду set(HtmlPath,/sdcard/webcam). Обратите внимание, что после запятой не допускаются пробелы.&lt;/div&gt;&lt;div&gt;&lt;br&gt;&lt;/div&gt;&lt;div&gt;Теперь на нашем сервере создаем файл jquery плагина jquery.ipwebcam.js:&lt;/div&gt;&lt;div&gt;(function($) {&lt;/div&gt;&lt;div&gt;&amp;nbsp; &amp;nbsp; $.fn.ipWebCam = function(options) {&lt;/div&gt;&lt;div&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; var settings = $.extend( {&lt;/div&gt;&lt;div&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; ip: &apos;&apos;,&lt;/div&gt;&lt;div&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; width: 640,&lt;/div&gt;&lt;div&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; height: 480,&lt;/div&gt;&lt;div&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; action: &apos;?&apos;,&lt;/div&gt;&lt;div&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; callback: function(){}&lt;/div&gt;&lt;div&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; }, options);&lt;/div&gt;&lt;div&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;nbsp;&lt;/div&gt;&lt;div&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; function ipWebCam_listener(event){&lt;/div&gt;&lt;div&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; $(&apos;#ipWebCam_wnd&apos;).prev().remove();&lt;/div&gt;&lt;div&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; $(&apos;#ipWebCam_wnd&apos;).remove();&lt;/div&gt;&lt;div&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; $.post(settings.action, {data:event.data}, settings.callback);&lt;/div&gt;&lt;div&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; }&lt;/div&gt;&lt;div&gt;&lt;br&gt;&lt;/div&gt;&lt;div&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; if (window.addEventListener){&lt;/div&gt;&lt;div&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; window.addEventListener(&apos;message&apos;, ipWebCam_listener,false);&lt;/div&gt;&lt;div&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; } else {&lt;/div&gt;&lt;div&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; window.attachEvent(&apos;onmessage&apos;, ipWebCam_listener);&lt;/div&gt;&lt;div&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; }&lt;/div&gt;&lt;div&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;nbsp;&lt;/div&gt;&lt;div&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; return this.each(function() {&lt;/div&gt;&lt;div&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; $(this).click(function(){&lt;/div&gt;&lt;div&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;nbsp;&lt;/div&gt;&lt;div&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; if(settings.ip==&apos;&apos;)&lt;/div&gt;&lt;div&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; settings.ip = prompt(&apos;IP Webcam address:&apos;);&lt;/div&gt;&lt;div&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;nbsp;&lt;/div&gt;&lt;div&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; $(&apos;&lt;iframe&amp;gt;&apos;).css({&lt;/div&gt;&lt;div&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; position: &apos;fixed&apos;,&lt;/div&gt;&lt;div&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; width: settings.width + &apos;px&apos;,&lt;/div&gt;&lt;div&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; marginLeft: &apos;-&apos; + (settings.width/2) + &apos;px&apos;,&lt;/div&gt;&lt;div&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; left: &apos;50%&apos;,&lt;/div&gt;&lt;div&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; height: settings.height + &apos;px&apos;,&lt;/div&gt;&lt;div&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; marginTop: &apos;-&apos; + (settings.height/2) + &apos;px&apos;,&lt;/div&gt;&lt;div&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; top: &apos;50%&apos;,&lt;/div&gt;&lt;div&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; border: 0,&lt;/div&gt;&lt;div&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; overflow: &apos;hidden&apos;,&lt;/div&gt;&lt;div&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; backgroundColor: &apos;#777777&apos;&lt;/div&gt;&lt;div&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; })&lt;/div&gt;&lt;div&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; .attr(&apos;width&apos;, settings.width)&lt;/div&gt;&lt;div&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; .attr(&apos;height&apos;, settings.height)&lt;/div&gt;&lt;div&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; .attr(&apos;src&apos;, &apos;http://&apos; + settings.ip + &apos;:8080/my.html&apos;)&lt;/div&gt;&lt;div&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; .attr(&apos;id&apos;, &apos;ipWebCam_wnd&apos;)&lt;/div&gt;&lt;div&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; .prependTo(&apos;body&apos;);&lt;/div&gt;&lt;div&gt;&lt;br&gt;&lt;/div&gt;&lt;div&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; $(&apos;&lt;div&amp;gt;&apos;).css({&lt;/div&gt;&lt;div&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; position:&apos;fixed&apos;,&lt;/div&gt;&lt;div&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; left: 0,&lt;/div&gt;&lt;div&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; top: 0,&lt;/div&gt;&lt;div&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; right:0,&lt;/div&gt;&lt;div&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; bottom:0,&lt;/div&gt;&lt;div&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; backgroundColor: &apos;#000000&apos;,&lt;/div&gt;&lt;div&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; opacity: 0.5&lt;/div&gt;&lt;div&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; }).click(function(){&lt;/div&gt;&lt;div&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; $(&apos;#ipWebCam_wnd&apos;).prev().remove();&lt;/div&gt;&lt;div&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; $(&apos;#ipWebCam_wnd&apos;).remove();&lt;/div&gt;&lt;div&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; }).prependTo(&apos;body&apos;);&lt;/d...</description>
			<content:encoded>&lt;div&gt;Здравствуйте!&lt;/div&gt;&lt;div&gt;&lt;br&gt;&lt;/div&gt;&lt;div&gt;Возникла задача для интернет-магазина сфотографировать большое количество товаров. Специфика товара такова, что не столько важна красивая картинка, сколько особенности конструкции товара (с какой стороны находится шлейф, есть ли петли крепления и т.п.)&lt;/div&gt;&lt;div&gt;&lt;br&gt;&lt;/div&gt;&lt;div&gt;Фотографировать обычным фотоаппаратом, потом заливать фото на компьютер, искать каждый товар в админке, потом искать соответствующее фото, показалось очень долго. Гораздо проще открыть товар в админке и навести телефон на товар. Тем более, что при хорошо выставленном освещении, современные смартфоны выдают вполне качественную картинку.&lt;/div&gt;&lt;div&gt;&lt;br&gt;&lt;/div&gt;&lt;div&gt;Теория&lt;/div&gt;&lt;div&gt;&lt;br&gt;&lt;/div&gt;&lt;div&gt;В андроид-маркете лежит замечательная программа IpWebCam, которая позволяет превратить свой телефон в полноценную веб-камеру. Кроме того у нее есть api для получения фотографий с автофокусом. При запуске IpWebCam, на телефоне поднимается web-сервер, который позволяет с локальной машины по wi-fi получать текущий кадр с телефона по адресу вида 192.168.0.14:8080/shot.jpg&lt;/div&gt;&lt;div&gt;&lt;br&gt;&lt;/div&gt;&lt;div&gt;Идея была следующая:&lt;/div&gt;&lt;div&gt;Вставить в форму &lt;img&amp;gt; с адресом фотографии со смартфона&lt;/div&gt;&lt;div&gt;Создать canvas и в него скопировать содержимое &lt;img&amp;gt;&lt;/div&gt;&lt;div&gt;Сохранить данные при помощи canvas.toDataURL()&lt;/div&gt;&lt;div&gt;Отправить данные на сервер при помощи ajax&lt;/div&gt;&lt;div&gt;&lt;br&gt;&lt;/div&gt;&lt;div&gt;&lt;br&gt;&lt;/div&gt;&lt;div&gt;К сожалению, из-за кросс-доменных политик метод toDataURL() сохраняет только черный квадрат вместо изображения. Поэтому canvas надо создавать на том же домене, из которого берется изображение. Сходив на сайт программы, я узнал, что IpWebCam позволяет создавать собственные html-страницы на своем внутреннем сервере. Для этого их достаточно залить на sd-карту и указать программе, в какой папке их искать.&lt;/div&gt;&lt;div&gt;&lt;br&gt;&lt;/div&gt;&lt;div&gt;Алгоритм следующий:&lt;/div&gt;&lt;div&gt;На смартфоне создаем специальную страницу (например my.html)&lt;/div&gt;&lt;div&gt;В форме на нашем сайте создаем &lt;iframe&amp;gt;, в который грузим html-страницу со смартфона.&lt;/div&gt;&lt;div&gt;На телефоне в html странице создаем canvas, в который грузим изображение с камеры.&lt;/div&gt;&lt;div&gt;Сохраняем данные при помощи canvas.toDataURL() в переменную&lt;/div&gt;&lt;div&gt;Передаем данные в родительскую страницу при помощи window.postMessage()&lt;/div&gt;&lt;div&gt;В родительской странице получаем изображение и отправляем данные на сервер при помощи ajax&lt;/div&gt;&lt;div&gt;На сервере сохраняем изображение в файл.&lt;/div&gt;&lt;div&gt;&lt;br&gt;&lt;/div&gt;&lt;div&gt;Решение&lt;/div&gt;&lt;div&gt;&lt;br&gt;&lt;/div&gt;&lt;div&gt;Во-первых, ставим на смартфон программу IpWebCam из маркета.&lt;/div&gt;&lt;div&gt;&lt;br&gt;&lt;/div&gt;&lt;div&gt;Создаем на смартфоне папку webcam, а в ней создаем файл my.html со следующим содержимым:&lt;/div&gt;&lt;div&gt;Content-Type: text/html&lt;/div&gt;&lt;div&gt;&lt;br&gt;&lt;/div&gt;&lt;div&gt;&lt;html&amp;gt;&lt;/div&gt;&lt;div&gt;&lt;head&amp;gt;&lt;/div&gt;&lt;div&gt;&lt;script type=&quot;text/javascript&quot; src=&quot;jquery.min.js&quot;&amp;gt;&lt;/script&amp;gt;&lt;/div&gt;&lt;div&gt;&lt;script type=&quot;text/javascript&quot; src=&quot;jquery.jplayer.min.js&quot;&amp;gt;&lt;/script&amp;gt;&lt;/div&gt;&lt;div&gt;&lt;script type=&quot;text/javascript&quot; src=&quot;common.js&quot;&amp;gt;&lt;/script&amp;gt;&lt;/div&gt;&lt;div&gt;&lt;style&amp;gt;&lt;/div&gt;&lt;div&gt;&amp;nbsp; &amp;nbsp; * { margin: 0; padding: 0}&lt;/div&gt;&lt;div&gt;&lt;/style&amp;gt;&lt;/div&gt;&lt;div&gt;&amp;nbsp; &amp;nbsp;&amp;nbsp;&lt;/div&gt;&lt;div&gt;&lt;script type=&quot;text/javascript&quot;&amp;gt;&lt;/div&gt;&lt;div&gt;$(loadJsWindowed);&lt;/div&gt;&lt;div&gt;function shot()&lt;/div&gt;&lt;div&gt;{&lt;/div&gt;&lt;div&gt;&amp;nbsp; &amp;nbsp; $(&apos;#msg&apos;).text(&apos;Please wait...&apos;);&lt;/div&gt;&lt;div&gt;&amp;nbsp; &amp;nbsp; var img = new Image();&lt;/div&gt;&lt;div&gt;&amp;nbsp; &amp;nbsp; img.onload = &amp;nbsp;function(){&lt;/div&gt;&lt;div&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; var canvas = $(&apos;&lt;canvas width=&quot;&apos; + img.width + &apos;&quot; height=&quot;&apos; + img.height + &apos;&quot;&amp;gt;&apos;);&lt;/div&gt;&lt;div&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; canvas[0].getContext(&apos;2d&apos;).drawImage(img, 0, 0);&lt;/div&gt;&lt;div&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; var data = canvas[0].toDataURL(&apos;image/jpeg&apos;).replace(/data:image&amp;#92;/jpeg;base64,/, &apos;&apos;);&lt;/div&gt;&lt;div&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; canvas.remove();&lt;/div&gt;&lt;div&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; //засылаем картинку на сервер&lt;/div&gt;&lt;div&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; window.parent.postMessage(data, &apos;*&apos;);&lt;/div&gt;&lt;div&gt;&amp;nbsp; &amp;nbsp; }&lt;/div&gt;&lt;div&gt;&amp;nbsp; &amp;nbsp; img.src = &apos;photoaf.jpg&apos;;&lt;/div&gt;&lt;div&gt;}&lt;/div&gt;&lt;div&gt;&lt;/script&amp;gt;&lt;/div&gt;&lt;div&gt;&lt;br&gt;&lt;/div&gt;&lt;div&gt;&lt;/head&amp;gt;&lt;/div&gt;&lt;div&gt;&lt;body&amp;gt;&lt;/div&gt;&lt;div&gt;&lt;div id=&quot;msg&quot; style=&quot;text-align: center; background-color: #000000; color: #FFFFFF; font-weight: bold; cursor: pointer;&quot; onclick=&quot;shot();&quot;&amp;gt;Click to take a shot..&lt;/div&amp;gt;&lt;/div&gt;&lt;div&gt;&lt;img id=&quot;img1&quot; src=&quot;https://android-fan.at.ua/shot.jpg?1&quot; style=&quot;cursor: pointer; position:absolute;&quot;/&amp;gt;&lt;/div&gt;&lt;div&gt;&lt;img id=&quot;img2&quot; src=&quot;https://android-fan.at.ua/shot.jpg?2&quot; style=&quot;cursor: pointer; position:absolute;&quot;/&amp;gt;&lt;/div&gt;&lt;div&gt;&lt;/body&amp;gt;&lt;/div&gt;&lt;div&gt;&lt;/html&amp;gt;&lt;/div&gt;&lt;div&gt;&lt;br&gt;&lt;/div&gt;&lt;div&gt;Обратите внимание, что в начале файла идут HTTP заголовки и пустая строка перед основным содержимым страницы. За основу был взят javascript видео-проигрыватель из самой программы.&lt;/div&gt;&lt;div&gt;&lt;br&gt;&lt;/div&gt;&lt;div&gt;Теперь надо указать, где искать файлы для веб-сервера приложения. Для этого откройте программу на телефоне, нажмите хардварную кнопку меню и выберите единственный пункт Cheats. Теперь введите в открывшемся диалоговом окне команду set(HtmlPath,/sdcard/webcam). Обратите внимание, что после запятой не допускаются пробелы.&lt;/div&gt;&lt;div&gt;&lt;br&gt;&lt;/div&gt;&lt;div&gt;Теперь на нашем сервере создаем файл jquery плагина jquery.ipwebcam.js:&lt;/div&gt;&lt;div&gt;(function($) {&lt;/div&gt;&lt;div&gt;&amp;nbsp; &amp;nbsp; $.fn.ipWebCam = function(options) {&lt;/div&gt;&lt;div&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; var settings = $.extend( {&lt;/div&gt;&lt;div&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; ip: &apos;&apos;,&lt;/div&gt;&lt;div&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; width: 640,&lt;/div&gt;&lt;div&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; height: 480,&lt;/div&gt;&lt;div&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; action: &apos;?&apos;,&lt;/div&gt;&lt;div&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; callback: function(){}&lt;/div&gt;&lt;div&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; }, options);&lt;/div&gt;&lt;div&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;nbsp;&lt;/div&gt;&lt;div&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; function ipWebCam_listener(event){&lt;/div&gt;&lt;div&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; $(&apos;#ipWebCam_wnd&apos;).prev().remove();&lt;/div&gt;&lt;div&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; $(&apos;#ipWebCam_wnd&apos;).remove();&lt;/div&gt;&lt;div&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; $.post(settings.action, {data:event.data}, settings.callback);&lt;/div&gt;&lt;div&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; }&lt;/div&gt;&lt;div&gt;&lt;br&gt;&lt;/div&gt;&lt;div&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; if (window.addEventListener){&lt;/div&gt;&lt;div&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; window.addEventListener(&apos;message&apos;, ipWebCam_listener,false);&lt;/div&gt;&lt;div&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; } else {&lt;/div&gt;&lt;div&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; window.attachEvent(&apos;onmessage&apos;, ipWebCam_listener);&lt;/div&gt;&lt;div&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; }&lt;/div&gt;&lt;div&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;nbsp;&lt;/div&gt;&lt;div&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; return this.each(function() {&lt;/div&gt;&lt;div&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; $(this).click(function(){&lt;/div&gt;&lt;div&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;nbsp;&lt;/div&gt;&lt;div&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; if(settings.ip==&apos;&apos;)&lt;/div&gt;&lt;div&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; settings.ip = prompt(&apos;IP Webcam address:&apos;);&lt;/div&gt;&lt;div&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;nbsp;&lt;/div&gt;&lt;div&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; $(&apos;&lt;iframe&amp;gt;&apos;).css({&lt;/div&gt;&lt;div&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; position: &apos;fixed&apos;,&lt;/div&gt;&lt;div&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; width: settings.width + &apos;px&apos;,&lt;/div&gt;&lt;div&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; marginLeft: &apos;-&apos; + (settings.width/2) + &apos;px&apos;,&lt;/div&gt;&lt;div&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; left: &apos;50%&apos;,&lt;/div&gt;&lt;div&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; height: settings.height + &apos;px&apos;,&lt;/div&gt;&lt;div&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; marginTop: &apos;-&apos; + (settings.height/2) + &apos;px&apos;,&lt;/div&gt;&lt;div&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; top: &apos;50%&apos;,&lt;/div&gt;&lt;div&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; border: 0,&lt;/div&gt;&lt;div&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; overflow: &apos;hidden&apos;,&lt;/div&gt;&lt;div&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; backgroundColor: &apos;#777777&apos;&lt;/div&gt;&lt;div&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; })&lt;/div&gt;&lt;div&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; .attr(&apos;width&apos;, settings.width)&lt;/div&gt;&lt;div&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; .attr(&apos;height&apos;, settings.height)&lt;/div&gt;&lt;div&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; .attr(&apos;src&apos;, &apos;http://&apos; + settings.ip + &apos;:8080/my.html&apos;)&lt;/div&gt;&lt;div&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; .attr(&apos;id&apos;, &apos;ipWebCam_wnd&apos;)&lt;/div&gt;&lt;div&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; .prependTo(&apos;body&apos;);&lt;/div&gt;&lt;div&gt;&lt;br&gt;&lt;/div&gt;&lt;div&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; $(&apos;&lt;div&amp;gt;&apos;).css({&lt;/div&gt;&lt;div&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; position:&apos;fixed&apos;,&lt;/div&gt;&lt;div&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; left: 0,&lt;/div&gt;&lt;div&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; top: 0,&lt;/div&gt;&lt;div&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; right:0,&lt;/div&gt;&lt;div&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; bottom:0,&lt;/div&gt;&lt;div&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; backgroundColor: &apos;#000000&apos;,&lt;/div&gt;&lt;div&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; opacity: 0.5&lt;/div&gt;&lt;div&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; }).click(function(){&lt;/div&gt;&lt;div&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; $(&apos;#ipWebCam_wnd&apos;).prev().remove();&lt;/div&gt;&lt;div&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; $(&apos;#ipWebCam_wnd&apos;).remove();&lt;/div&gt;&lt;div&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; }).prependTo(&apos;body&apos;);&lt;/div&gt;&lt;div&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;nbsp;&lt;/div&gt;&lt;div&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; });&lt;/div&gt;&lt;div&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; });&lt;/div&gt;&lt;div&gt;&amp;nbsp; &amp;nbsp; };&lt;/div&gt;&lt;div&gt;})( jQuery )&lt;/div&gt;&lt;div&gt;&lt;br&gt;&lt;/div&gt;&lt;div&gt;Плагин цепляется к кнопке вызова диалога. Например:&lt;/div&gt;&lt;div&gt;$(&apos;#camera_button&apos;).ipWebCam({&lt;/div&gt;&lt;div&gt;&amp;nbsp; &amp;nbsp; ip: &apos;&apos;, //ip адрес камеры, если не задан, то попросит ввести через prompt&lt;/div&gt;&lt;div&gt;&amp;nbsp; &amp;nbsp; action: &apos;save_img.php&apos;, //адрес скрипта сохранения картинки, по умолчанию та же страница&lt;/div&gt;&lt;div&gt;&amp;nbsp; &amp;nbsp; callback: function(rep){ // будет вызвана после отправки данных на сервер&lt;/div&gt;&lt;div&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; window.location.reload();&lt;/div&gt;&lt;div&gt;&amp;nbsp; &amp;nbsp; },&lt;/div&gt;&lt;div&gt;&amp;nbsp; &amp;nbsp; width: 640, // размеры iframe&lt;/div&gt;&lt;div&gt;&amp;nbsp; &amp;nbsp; height: 480&lt;/div&gt;&lt;div&gt;});&lt;/div&gt;&lt;div&gt;&lt;br&gt;&lt;/div&gt;&lt;div&gt;Плагин передает данные на сервер методом POST в переменной data. Сохранить файл на php:&lt;/div&gt;&lt;div&gt;if(isset($_POST[&apos;data&apos;]))&lt;/div&gt;&lt;div&gt;{&lt;/div&gt;&lt;div&gt;&amp;nbsp; &amp;nbsp; $name = &apos;img/shot.jpg&apos;;&lt;/div&gt;&lt;div&gt;&amp;nbsp; &amp;nbsp; //записываем, не забывая перекодировать из base64&lt;/div&gt;&lt;div&gt;&amp;nbsp; &amp;nbsp; file_put_contents($name, base64_decode($_POST[&apos;data&apos;] ));&lt;/div&gt;&lt;div&gt;&amp;nbsp; &amp;nbsp;&amp;nbsp;&lt;/div&gt;&lt;div&gt;&amp;nbsp; &amp;nbsp; echo &apos;ok&apos;;&lt;/div&gt;&lt;div&gt;}&lt;/div&gt;&lt;div&gt;&lt;br&gt;&lt;/div&gt;&lt;div&gt;На этом все, если кому-нибудь пригодится, буду рад.&lt;/div&gt;&lt;div&gt;&lt;br&gt;&lt;/div&gt;&lt;div&gt;upd Идея была в том, что администратор работает в админке за большим компом, так удобнее (он ведь не только фотки делает). А смартфон кладется на штатив и не трогается. Непосредственно фотографирование (предпросмотр и нажатие спуска) происходит на большом компе, чтобы лишний раз к телефону не бегать. Поэтому саму фотографию придется передавать непосредственно в html форму на большом компе. Это можно сделать только подняв веб-сервер на смарте. Можно было бы написать программу самому, но зачем если уже есть готовое решение — IpWebCam.&lt;/div&gt;</content:encoded>
			<link>https://android-fan.at.ua/blog/poluchenie_foto_s_android_smartfona_prjamo_v_html_formu/2012-03-30-12</link>
			<category>Программирование</category>
			<dc:creator>ywor</dc:creator>
			<guid>https://android-fan.at.ua/blog/poluchenie_foto_s_android_smartfona_prjamo_v_html_formu/2012-03-30-12</guid>
			<pubDate>Fri, 30 Mar 2012 09:58:54 GMT</pubDate>
		</item>
		<item>
			<title>Восстановление китайского планшета MID X5A</title>
			<description>&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0.8em; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; background-color: rgb(255, 255, 255); &quot;&gt;&lt;/p&gt;&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0.8em; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; &quot;&gt;&lt;/p&gt;&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0.8em; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; font-family: &apos;Segoe UI&apos;, Calibri, &apos;Myriad Pro&apos;, Myriad, &apos;Trebuchet MS&apos;, Helvetica, Arial, sans-serif; line-height: 19px; font-size: 13px; &quot;&gt;Хотел бы поделиться опытом восстановления китайского планшета&amp;nbsp;&lt;strong style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; &quot;&gt;MID X5A&lt;/strong&gt;, хотя у этой модели есть еще другие названия но принцип остается тем-же.&lt;/p&gt;&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0.8em; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; font-family: &apos;Segoe UI&apos;, Calibri, &apos;Myriad Pro&apos;, Myriad, &apos;Trebuchet MS&apos;, Helvetica, Arial, sans-serif; line-height: 19px; font-size: 13px; &quot;&gt;&lt;span id=&quot;more-2970&quot; style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; &quot;&gt;&lt;/span&gt;&lt;/p&gt;&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0.8em; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; font-family: &apos;Segoe UI&apos;, Calibri, &apos;Myriad Pro&apos;, Myriad, &apos;Trebuchet MS&apos;, Helvetica, Arial, sans-serif; line-height: 19px; font-size: 13px; &quot;&gt;Первым делом необходимо убедиться в версии &quot;железа” вашего планшета, изначально их было два типа, мне попался на ремонт планшетник со старым &quot;железом”. Он отличается тем что на плате установлен переключатель для ввода планшета с&amp;nbsp;&lt;strong style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; &quot;&gt;FWDN&lt;/strong&gt;&amp;nbsp;режим т.е. режим прошивки. Ох немало времени он у меня отнял, для этого я решил сложить всю найденную информацию воедино.&lt;/p&gt;&lt;h2 style=&quot;margin-top: 0.7em; margin-right: 0px; margin-bottom: 0.2em; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; font-family: &apos;Segoe UI&apos;, Calibri, &apos;Myriad Pro&apos;, Myriad, &apos;Trebuchet MS&apos;, Helvetica, Arial, sans-serif; font-weight: normal; font-size: 26px; line-height: 28px; color: rgb(0, 100, 0); &quot;&gt;X5A (старое железо)&lt;/h2&gt;&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0.8em; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; font-family: &apos;Segoe UI&apos;, Calibri, &apos;Myriad Pro&apos;, Myriad, &apos;Trebuchet MS&apos;, Helvetica, Arial, sans-serif; line-height: 19px; font-size: 13px; &quot;&gt;&lt;strong style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; &quot;&gt;Оснащение:&lt;/strong&gt;&lt;br style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; &quot;&gt;— нет&amp;nbsp;&lt;strong style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; &quot;&gt;G&lt;/strong&gt;-сенсора&lt;br style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; &quot;&gt;—&amp;nbsp;&lt;strong style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; &quot;&gt;HDMI&lt;/strong&gt;&amp;nbsp;выход&lt;br style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; &quot;&gt;—&amp;nbsp;&lt;strong style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; &quot;&gt;FWDN&lt;/strong&gt;&amp;nbsp;переключатель на плате&lt;/p&gt;&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0.8em; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; font-family: &apos;Segoe UI&apos;, Calibri, &apos;Myriad Pro&apos;, Myriad, &apos;Trebuchet MS&apos;, Helvetica, Arial, sans-serif; line-height: 19px; font-size: 13px; &quot;&gt;Последняя официальная прошивка, упоминание на которую я нашел в интернете –&amp;nbsp;&lt;a href=&quot;http://www.huashiguang.com/down/Android-2010-9-01.rar&quot; style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; color: blue; outline-style: none; outline-width: initial; outline-color: initial; &quot;&gt;#369&lt;/a&gt;&amp;nbsp;(ссылка не работает), по комментариям в ней не работает Андроид Маркет, по этому все рекомендуют использовать версию пониже –&amp;nbsp;&lt;a href=&quot;http://www.huashiguang.com/down/Android-2010-8-16.rar&quot; style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; color: blue; outline-style: none; outline-width: initial; outline-color: initial; &quot;&gt;#348&lt;/a&gt;&amp;nbsp;(которую тоже нигде не удалось найти).&lt;/p&gt;&lt;h2 style=&quot;margin-top: 0.7em; margin-right: 0px; margin-bottom: 0.2em; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; font-family: &apos;Segoe UI&apos;, Calibri, &apos;Myriad Pro&apos;, Myriad, &apos;Trebuchet MS&apos;, Helvetica, Arial, sans-serif; font-weight: normal; font-size: 26px; line-height: 28px; color: rgb(0, 100, 0); &quot;&gt;Что нужно для прошивки планшета MID X5A&lt;/h2&gt;&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0.8em; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; font-family: &apos;Segoe UI&apos;, Calibri, &apos;Myriad Pro&apos;, Myriad, &apos;Trebuchet MS&apos;, Helvetica, Arial, sans-serif; line-height: 19px; font-size: 13px; &quot;&gt;—&amp;nbsp;&lt;strong style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; &quot;&gt;Mini USB&lt;/strong&gt;&amp;nbsp;кабель&lt;br style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; &quot;&gt;— программа загрузчик&amp;nbsp;&lt;strong style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; &quot;&gt;&lt;img alt=&quot;zip&quot; title=&quot;zip&quot; class=&quot;download-icon&quot; src=&quot;http://progulki.com.ua/wp-content/plugins/download-monitor/img/filetype_icons/document-zipper.png&quot; style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-style: initial; border-color: initial; border-image: initial; &quot;&gt;&amp;nbsp;&lt;a href=&quot;http://progulki.com.ua/download/FWDN_V7_v2.10&quot; title=&quot;Скачали 10 раз(а)&quot; style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; color: blue; outline-style: none; outline-width: initial; outline-color: initial; &quot;&gt;FWDN_V7_v2.10&lt;/a&gt;&amp;nbsp;- 818.24 kB (10 раз(а))&lt;/strong&gt;&lt;br style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; &quot;&gt;— файлы прошивки для старой версии железа&amp;nbsp;&lt;a rel=&quot;nofollow&quot; href=&quot;http://ul.to/jtn61hpr&quot; target=&quot;_blank&quot; style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; color: blue; outline-style: none; outline-width: initial; outline-color: initial; &quot;&gt;&lt;strong style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; &quot;&gt;X5A-FWDN-image.zip&lt;/strong&gt;&lt;/a&gt;&lt;/p&gt;&lt;h2 style=&quot;margin-top: 0.7em; margin-right: 0px; margin-bottom: 0.2em; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; font-family: &apos;Segoe UI&apos;, Calibri, &apos;Myriad Pro&apos;, Myriad, &apos;Trebuchet MS&apos;, Helvetica, Arial, sans-serif; font-weight: normal; font-size: 26px; line-height: 28px; color: rgb(0, 100, 0); &quot;&gt;Процесс прошивки MID X5A&lt;/h2&gt;&lt;ol style=&quot;margin-top: 0.4em; margin-right: 0px; margin-bottom: 1em; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; font-family: &apos;Segoe UI&apos;, Calibri, &apos;Myriad Pro&apos;, Myriad, &apos;Trebuchet MS&apos;, Helvetica, Arial, sans-serif; line-height: 19px; font-size: 13px; &quot;&gt;&lt;li style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 2.5em; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; list-style-position: outside; &quot;&gt;Снимаем заднюю крышку корпуса планшета и переводим переключатель в режим&amp;nbsp;&lt;strong style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; &quot;&gt;FWDN&lt;/strong&gt;.&lt;br style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; &quot;&gt;&lt;a href=&quot;http://progulki.com.ua/wp-content/uploads/2011/11/pcb-fwdn.jpg&quot; style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; color: blue; outline-style: none; outline-width: initial; outline...</description>
			<content:encoded>&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0.8em; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; background-color: rgb(255, 255, 255); &quot;&gt;&lt;/p&gt;&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0.8em; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; &quot;&gt;&lt;/p&gt;&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0.8em; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; font-family: &apos;Segoe UI&apos;, Calibri, &apos;Myriad Pro&apos;, Myriad, &apos;Trebuchet MS&apos;, Helvetica, Arial, sans-serif; line-height: 19px; font-size: 13px; &quot;&gt;Хотел бы поделиться опытом восстановления китайского планшета&amp;nbsp;&lt;strong style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; &quot;&gt;MID X5A&lt;/strong&gt;, хотя у этой модели есть еще другие названия но принцип остается тем-же.&lt;/p&gt;&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0.8em; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; font-family: &apos;Segoe UI&apos;, Calibri, &apos;Myriad Pro&apos;, Myriad, &apos;Trebuchet MS&apos;, Helvetica, Arial, sans-serif; line-height: 19px; font-size: 13px; &quot;&gt;&lt;span id=&quot;more-2970&quot; style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; &quot;&gt;&lt;/span&gt;&lt;/p&gt;&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0.8em; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; font-family: &apos;Segoe UI&apos;, Calibri, &apos;Myriad Pro&apos;, Myriad, &apos;Trebuchet MS&apos;, Helvetica, Arial, sans-serif; line-height: 19px; font-size: 13px; &quot;&gt;Первым делом необходимо убедиться в версии &quot;железа” вашего планшета, изначально их было два типа, мне попался на ремонт планшетник со старым &quot;железом”. Он отличается тем что на плате установлен переключатель для ввода планшета с&amp;nbsp;&lt;strong style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; &quot;&gt;FWDN&lt;/strong&gt;&amp;nbsp;режим т.е. режим прошивки. Ох немало времени он у меня отнял, для этого я решил сложить всю найденную информацию воедино.&lt;/p&gt;&lt;h2 style=&quot;margin-top: 0.7em; margin-right: 0px; margin-bottom: 0.2em; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; font-family: &apos;Segoe UI&apos;, Calibri, &apos;Myriad Pro&apos;, Myriad, &apos;Trebuchet MS&apos;, Helvetica, Arial, sans-serif; font-weight: normal; font-size: 26px; line-height: 28px; color: rgb(0, 100, 0); &quot;&gt;X5A (старое железо)&lt;/h2&gt;&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0.8em; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; font-family: &apos;Segoe UI&apos;, Calibri, &apos;Myriad Pro&apos;, Myriad, &apos;Trebuchet MS&apos;, Helvetica, Arial, sans-serif; line-height: 19px; font-size: 13px; &quot;&gt;&lt;strong style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; &quot;&gt;Оснащение:&lt;/strong&gt;&lt;br style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; &quot;&gt;— нет&amp;nbsp;&lt;strong style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; &quot;&gt;G&lt;/strong&gt;-сенсора&lt;br style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; &quot;&gt;—&amp;nbsp;&lt;strong style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; &quot;&gt;HDMI&lt;/strong&gt;&amp;nbsp;выход&lt;br style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; &quot;&gt;—&amp;nbsp;&lt;strong style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; &quot;&gt;FWDN&lt;/strong&gt;&amp;nbsp;переключатель на плате&lt;/p&gt;&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0.8em; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; font-family: &apos;Segoe UI&apos;, Calibri, &apos;Myriad Pro&apos;, Myriad, &apos;Trebuchet MS&apos;, Helvetica, Arial, sans-serif; line-height: 19px; font-size: 13px; &quot;&gt;Последняя официальная прошивка, упоминание на которую я нашел в интернете –&amp;nbsp;&lt;a href=&quot;http://www.huashiguang.com/down/Android-2010-9-01.rar&quot; style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; color: blue; outline-style: none; outline-width: initial; outline-color: initial; &quot;&gt;#369&lt;/a&gt;&amp;nbsp;(ссылка не работает), по комментариям в ней не работает Андроид Маркет, по этому все рекомендуют использовать версию пониже –&amp;nbsp;&lt;a href=&quot;http://www.huashiguang.com/down/Android-2010-8-16.rar&quot; style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; color: blue; outline-style: none; outline-width: initial; outline-color: initial; &quot;&gt;#348&lt;/a&gt;&amp;nbsp;(которую тоже нигде не удалось найти).&lt;/p&gt;&lt;h2 style=&quot;margin-top: 0.7em; margin-right: 0px; margin-bottom: 0.2em; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; font-family: &apos;Segoe UI&apos;, Calibri, &apos;Myriad Pro&apos;, Myriad, &apos;Trebuchet MS&apos;, Helvetica, Arial, sans-serif; font-weight: normal; font-size: 26px; line-height: 28px; color: rgb(0, 100, 0); &quot;&gt;Что нужно для прошивки планшета MID X5A&lt;/h2&gt;&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0.8em; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; font-family: &apos;Segoe UI&apos;, Calibri, &apos;Myriad Pro&apos;, Myriad, &apos;Trebuchet MS&apos;, Helvetica, Arial, sans-serif; line-height: 19px; font-size: 13px; &quot;&gt;—&amp;nbsp;&lt;strong style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; &quot;&gt;Mini USB&lt;/strong&gt;&amp;nbsp;кабель&lt;br style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; &quot;&gt;— программа загрузчик&amp;nbsp;&lt;strong style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; &quot;&gt;&lt;img alt=&quot;zip&quot; title=&quot;zip&quot; class=&quot;download-icon&quot; src=&quot;http://progulki.com.ua/wp-content/plugins/download-monitor/img/filetype_icons/document-zipper.png&quot; style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-style: initial; border-color: initial; border-image: initial; &quot;&gt;&amp;nbsp;&lt;a href=&quot;http://progulki.com.ua/download/FWDN_V7_v2.10&quot; title=&quot;Скачали 10 раз(а)&quot; style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; color: blue; outline-style: none; outline-width: initial; outline-color: initial; &quot;&gt;FWDN_V7_v2.10&lt;/a&gt;&amp;nbsp;- 818.24 kB (10 раз(а))&lt;/strong&gt;&lt;br style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; &quot;&gt;— файлы прошивки для старой версии железа&amp;nbsp;&lt;a rel=&quot;nofollow&quot; href=&quot;http://ul.to/jtn61hpr&quot; target=&quot;_blank&quot; style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; color: blue; outline-style: none; outline-width: initial; outline-color: initial; &quot;&gt;&lt;strong style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; &quot;&gt;X5A-FWDN-image.zip&lt;/strong&gt;&lt;/a&gt;&lt;/p&gt;&lt;h2 style=&quot;margin-top: 0.7em; margin-right: 0px; margin-bottom: 0.2em; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; font-family: &apos;Segoe UI&apos;, Calibri, &apos;Myriad Pro&apos;, Myriad, &apos;Trebuchet MS&apos;, Helvetica, Arial, sans-serif; font-weight: normal; font-size: 26px; line-height: 28px; color: rgb(0, 100, 0); &quot;&gt;Процесс прошивки MID X5A&lt;/h2&gt;&lt;ol style=&quot;margin-top: 0.4em; margin-right: 0px; margin-bottom: 1em; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; font-family: &apos;Segoe UI&apos;, Calibri, &apos;Myriad Pro&apos;, Myriad, &apos;Trebuchet MS&apos;, Helvetica, Arial, sans-serif; line-height: 19px; font-size: 13px; &quot;&gt;&lt;li style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 2.5em; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; list-style-position: outside; &quot;&gt;Снимаем заднюю крышку корпуса планшета и переводим переключатель в режим&amp;nbsp;&lt;strong style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; &quot;&gt;FWDN&lt;/strong&gt;.&lt;br style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; &quot;&gt;&lt;a href=&quot;http://progulki.com.ua/wp-content/uploads/2011/11/pcb-fwdn.jpg&quot; style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; color: blue; outline-style: none; outline-width: initial; outline-color: initial; &quot;&gt;&lt;img title=&quot;Enter MID X5A in FWDN mode&quot; src=&quot;http://progulki.com.ua/wp-content/uploads/2011/11/pcb-fwdn_thumb.jpg&quot; border=&quot;0&quot; alt=&quot;Enter MID X5A in FWDN mode&quot; width=&quot;397&quot; height=&quot;221&quot; style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-style: initial; border-color: initial; border-image: initial; background-image: none; display: inline; &quot;&gt;&lt;/a&gt;&lt;/li&gt;&lt;li style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 2.5em; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; list-style-position: outside; &quot;&gt;Переходим в папку, куда извлекли программу загрузчик, и устанавливаем драйвера для прошивки&amp;nbsp;&lt;strong style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; &quot;&gt;C:&amp;#92;FWDN_V7_v2.10&amp;#92;vtcdrv&amp;#92;VTC Driver Installer v5.00 for 2000_XP.EXE&lt;/strong&gt;&lt;/li&gt;&lt;li style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 2.5em; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; list-style-position: outside; &quot;&gt;Подключаем планшет к компьютеру и ждем когда установятся необходимые драйвера для устройства&amp;nbsp;&lt;strong style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; &quot;&gt;Android Sooner Single ADB Interface&lt;/strong&gt;&lt;br style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; &quot;&gt;&lt;a href=&quot;http://progulki.com.ua/wp-content/uploads/2011/11/device.png&quot; style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; color: blue; outline-style: none; outline-width: initial; outline-color: initial; &quot;&gt;&lt;img title=&quot;Android Sooner Single ADB Interface&quot; src=&quot;http://progulki.com.ua/wp-content/uploads/2011/11/device_thumb.png&quot; border=&quot;0&quot; alt=&quot;Android Sooner Single ADB Interface&quot; width=&quot;349&quot; height=&quot;76&quot; style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-style: initial; border-color: initial; border-image: initial; background-image: none; display: inline; &quot;&gt;&lt;/a&gt;&lt;br style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; &quot;&gt;В результате должно появится устройство&amp;nbsp;&lt;strong style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; &quot;&gt;Telechips TCC89xx VTC USB Driver&lt;/strong&gt;&lt;br style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; &quot;&gt;&lt;a href=&quot;http://progulki.com.ua/wp-content/uploads/2011/11/telechips-device.png&quot; style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; color: blue; outline-style: none; outline-width: initial; outline-color: initial; &quot;&gt;&lt;img title=&quot;Telechips TCC89xx VTC USB Driver&quot; src=&quot;http://progulki.com.ua/wp-content/uploads/2011/11/telechips-device_thumb.png&quot; border=&quot;0&quot; alt=&quot;Telechips TCC89xx VTC USB Driver&quot; width=&quot;348&quot; height=&quot;81&quot; style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-style: initial; border-color: initial; border-image: initial; background-image: none; display: inline; &quot;&gt;&lt;/a&gt;&lt;/li&gt;&lt;li style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 2.5em; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; list-style-position: outside; &quot;&gt;Когда все готово, запускаем программу загрузчик&amp;nbsp;&lt;strong style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; &quot;&gt;&lt;img title=&quot;fwdn-ico&quot; src=&quot;http://progulki.com.ua/wp-content/uploads/2011/11/fwdn-ico_thumb.png&quot; border=&quot;0&quot; alt=&quot;fwdn-ico&quot; width=&quot;11&quot; height=&quot;10&quot; style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-style: initial; border-color: initial; border-image: initial; background-image: none; display: inline; &quot;&gt;&lt;/strong&gt;&lt;strong style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; &quot;&gt;&amp;nbsp;FWDN_V7_v2.10.exe&amp;nbsp;&lt;/strong&gt;и поочередно выбираем файлы для прошивки&lt;br style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; &quot;&gt;&lt;a href=&quot;http://progulki.com.ua/wp-content/uploads/2011/11/fwdn-start.png&quot; style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; color: blue; outline-style: none; outline-width: initial; outline-color: initial; &quot;&gt;&lt;img title=&quot;fwdn-start&quot; src=&quot;http://progulki.com.ua/wp-content/uploads/2011/11/fwdn-start_thumb.png&quot; border=&quot;0&quot; alt=&quot;fwdn-start&quot; width=&quot;352&quot; height=&quot;65&quot; style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-style: initial; border-color: initial; border-image: initial; background-image: none; display: inline; &quot;&gt;&lt;/a&gt;&lt;br style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; &quot;&gt;а) Файл бута&amp;nbsp;&lt;strong style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; &quot;&gt;lk.rom&lt;br style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; &quot;&gt;&lt;/strong&gt;б) Образ самой прошивки&amp;nbsp;&lt;strong style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; &quot;&gt;tcc8902_mtd.img&lt;br style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; &quot;&gt;&lt;/strong&gt;Должно выглядеть как на картинке&lt;br style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; &quot;&gt;&lt;a href=&quot;http://progulki.com.ua/wp-content/uploads/2011/11/fwdn-start1.png&quot; style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; color: blue; outline-style: none; outline-width: initial; outline-color: initial; &quot;&gt;&lt;strong style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; &quot;&gt;&lt;img title=&quot;fwdn-start&quot; src=&quot;http://progulki.com.ua/wp-content/uploads/2011/11/fwdn-start_thumb1.png&quot; border=&quot;0&quot; alt=&quot;fwdn-start&quot; width=&quot;425&quot; height=&quot;73&quot; style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-style: initial; border-color: initial; border-image: initial; background-image: none; display: inline; &quot;&gt;&lt;/strong&gt;&lt;/a&gt;&lt;/li&gt;&lt;li style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 2.5em; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; list-style-position: outside; &quot;&gt;Нажимаем на кнопку&amp;nbsp;&lt;strong style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; &quot;&gt;Start&lt;/strong&gt;&lt;br style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; &quot;&gt;&lt;a href=&quot;http://progulki.com.ua/wp-content/uploads/2011/11/fwdn-start2.png&quot; style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; color: blue; outline-style: none; outline-width: initial; outline-color: initial; &quot;&gt;&lt;img title=&quot;fwdn-start&quot; src=&quot;http://progulki.com.ua/wp-content/uploads/2011/11/fwdn-start_thumb2.png&quot; border=&quot;0&quot; alt=&quot;fwdn-start&quot; width=&quot;244&quot; height=&quot;117&quot; style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-style: initial; border-color: initial; border-image: initial; background-image: none; display: inline; &quot;&gt;&lt;/a&gt;&lt;/li&gt;&lt;li style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 2.5em; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; list-style-position: outside; &quot;&gt;На этом все приготовления окончены и можно смело приступать к самому процессу прошивки, снова подключаем планшет к компьютеру в&amp;nbsp;&lt;strong style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; &quot;&gt;FWDN&lt;/strong&gt;&amp;nbsp;режиме.&lt;/li&gt;&lt;li style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 2.5em; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; list-style-position: outside; &quot;&gt;На экране устройства появится картинка с надписью &quot;&lt;strong style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; &quot;&gt;I Love You&lt;/strong&gt;”&lt;br style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; &quot;&gt;&lt;a href=&quot;http://progulki.com.ua/wp-content/uploads/2011/11/i-love-you.jpg&quot; style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; color: blue; outline-style: none; outline-width: initial; outline-color: initial; &quot;&gt;&lt;img title=&quot;i-love-you&quot; src=&quot;http://progulki.com.ua/wp-content/uploads/2011/11/i-love-you_thumb.jpg&quot; border=&quot;0&quot; alt=&quot;i-love-you&quot; width=&quot;589&quot; height=&quot;353&quot; style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-style: initial; border-color: initial; border-image: initial; background-image: none; display: inline; &quot;&gt;&lt;/a&gt;&lt;/li&gt;&lt;li style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 2.5em; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; list-style-position: outside; &quot;&gt;Процесс прошивки начнется автоматически после обнаружения устройства компьютером.&lt;span style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; color: rgb(255, 0, 0); &quot;&gt;&lt;strong style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; &quot;&gt;Больше ничего нажимать не надо!&lt;br style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; &quot;&gt;&lt;/strong&gt;&lt;a href=&quot;http://progulki.com.ua/wp-content/uploads/2011/11/single-download-process.png&quot; style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; color: blue; outline-style: none; outline-width: initial; outline-color: initial; &quot;&gt;&lt;strong style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; &quot;&gt;&lt;img title=&quot;single-download-process&quot; src=&quot;http://progulki.com.ua/wp-content/uploads/2011/11/single-download-process_thumb.png&quot; border=&quot;0&quot; alt=&quot;single-download-process&quot; width=&quot;384&quot; height=&quot;259&quot; style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-style: initial; border-color: initial; border-image: initial; background-image: none; &quot;&gt;&lt;/strong&gt;&lt;/a&gt;&lt;br style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; &quot;&gt;&lt;span style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; color: rgb(0, 0, 0); &quot;&gt;По завершении прошивки, будет выдано сообщение&amp;nbsp;&lt;strong style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; &quot;&gt;Download is complete!&lt;/strong&gt;&lt;/span&gt;&lt;br style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; &quot;&gt;&lt;a href=&quot;http://progulki.com.ua/wp-content/uploads/2011/11/single-download-complete.png&quot; style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; color: blue; outline-style: none; outline-width: initial; outline-color: initial; &quot;&gt;&lt;strong style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; &quot;&gt;&lt;img title=&quot;single-download-complete&quot; src=&quot;http://progulki.com.ua/wp-content/uploads/2011/11/single-download-complete_thumb.png&quot; border=&quot;0&quot; alt=&quot;single-download-complete&quot; width=&quot;384&quot; height=&quot;259&quot; style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-style: initial; border-color: initial; border-image: initial; background-image: none; display: inline; &quot;&gt;&lt;/strong&gt;&lt;/a&gt;&lt;/span&gt;&lt;/li&gt;&lt;li style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 2.5em; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; list-style-position: outside; &quot;&gt;&lt;strong style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; &quot;&gt;&lt;/strong&gt;Теперь отключаем устройство от компьютера, переводим переключатель&amp;nbsp;&lt;strong style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; &quot;&gt;FWDN&lt;/strong&gt;&amp;nbsp;в нормальный режим и смело включаем его.&lt;/li&gt;&lt;li style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 2.5em; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; list-style-position: outside; &quot;&gt;После полной загрузки, необходимо пройти калибровку тачпада, после чего планшет снова произведет перезагрузку.&lt;/li&gt;&lt;li style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 2.5em; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; list-style-position: outside; &quot;&gt;Все, на этом все необходимые операции выполнены и можно наслаждаться нормальной работой устройства&lt;br style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; &quot;&gt;&lt;a href=&quot;http://progulki.com.ua/wp-content/uploads/2011/11/screenshot-1251891960623.png&quot; style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; color: blue; outline-style: none; outline-width: initial; outline-color: initial; &quot;&gt;&lt;img title=&quot;screenshot-1251891960623&quot; src=&quot;http://progulki.com.ua/wp-content/uploads/2011/11/screenshot-1251891960623_thumb.png&quot; border=&quot;0&quot; alt=&quot;screenshot-1251891960623&quot; width=&quot;284&quot; height=&quot;172&quot; style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-style: initial; border-color: initial; border-image: initial; background-image: none; display: inline; &quot;&gt;&lt;/a&gt;&lt;a href=&quot;http://progulki.com.ua/wp-content/uploads/2011/11/screenshot-1251891762909.png&quot; style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; color: blue; outline-style: none; outline-width: initial; outline-color: initial; &quot;&gt;&lt;img title=&quot;screenshot-1251891762909&quot; src=&quot;http://progulki.com.ua/wp-content/uploads/2011/11/screenshot-1251891762909_thumb.png&quot; border=&quot;0&quot; alt=&quot;screenshot-1251891762909&quot; width=&quot;284&quot; height=&quot;172&quot; style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-style: initial; border-color: initial; border-image: initial; background-image: none; display: inline; &quot;&gt;&lt;/a&gt;&lt;/li&gt;&lt;/ol&gt;&lt;h2 style=&quot;margin-top: 0.7em; margin-right: 0px; margin-bottom: 0.2em; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; font-family: &apos;Segoe UI&apos;, Calibri, &apos;Myriad Pro&apos;, Myriad, &apos;Trebuchet MS&apos;, Helvetica, Arial, sans-serif; font-weight: normal; font-size: 26px; line-height: 28px; color: rgb(0, 100, 0); &quot;&gt;Последовательный интерфейс&lt;/h2&gt;&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0.8em; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; font-family: &apos;Segoe UI&apos;, Calibri, &apos;Myriad Pro&apos;, Myriad, &apos;Trebuchet MS&apos;, Helvetica, Arial, sans-serif; line-height: 19px; font-size: 13px; &quot;&gt;Если вы хотите просмотреть весь лог загрузки аппарата то можно воспользоваться подключением к последовательному интерфейсу, который есть на плате. Просто подпаяйте&amp;nbsp;&lt;strong style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; &quot;&gt;COM/USB&lt;/strong&gt;&amp;nbsp;переходник к сигнальным контактам&amp;nbsp;&lt;strong style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; &quot;&gt;RX&lt;/strong&gt;&amp;nbsp;и&amp;nbsp;&lt;strong style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; &quot;&gt;TX&lt;/strong&gt;, со скоростью подключения 115200 bps.&lt;/p&gt;&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0.8em; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; font-family: &apos;Segoe UI&apos;, Calibri, &apos;Myriad Pro&apos;, Myriad, &apos;Trebuchet MS&apos;, Helvetica, Arial, sans-serif; line-height: 19px; font-size: 13px; &quot;&gt;&lt;a href=&quot;http://progulki.com.ua/wp-content/uploads/2011/11/serial.jpg&quot; style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; color: blue; outline-style: none; outline-width: initial; outline-color: initial; &quot;&gt;&lt;img title=&quot;serial&quot; src=&quot;http://progulki.com.ua/wp-content/uploads/2011/11/serial_thumb.jpg&quot; border=&quot;0&quot; alt=&quot;serial&quot; width=&quot;601&quot; height=&quot;268&quot; style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-style: initial; border-color: initial; border-image: initial; &quot;&gt;&lt;/a&gt;&lt;/p&gt;&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0.8em; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; font-family: &apos;Segoe UI&apos;, Calibri, &apos;Myriad Pro&apos;, Myriad, &apos;Trebuchet MS&apos;, Helvetica, Arial, sans-serif; line-height: 19px; font-size: 13px; &quot;&gt;&lt;strong style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; &quot;&gt;Распиновка (тестовая)&lt;/strong&gt;&lt;/p&gt;&lt;ol style=&quot;margin-top: 0.4em; margin-right: 0px; margin-bottom: 1em; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; font-family: &apos;Segoe UI&apos;, Calibri, &apos;Myriad Pro&apos;, Myriad, &apos;Trebuchet MS&apos;, Helvetica, Arial, sans-serif; line-height: 19px; font-size: 13px; &quot;&gt;&lt;li style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 2.5em; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; list-style-position: outside; &quot;&gt;1.8V&lt;/li&gt;&lt;li style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 2.5em; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; list-style-position: outside; &quot;&gt;TX&lt;/li&gt;&lt;li style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 2.5em; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; list-style-position: outside; &quot;&gt;RX&lt;/li&gt;&lt;li style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 2.5em; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; list-style-position: outside; &quot;&gt;GND&lt;/li&gt;&lt;/ol&gt;&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0.8em; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; font-family: &apos;Segoe UI&apos;, Calibri, &apos;Myriad Pro&apos;, Myriad, &apos;Trebuchet MS&apos;, Helvetica, Arial, sans-serif; line-height: 19px; font-size: 13px; &quot;&gt;Можно использовать конвертер на&amp;nbsp;&lt;a rel=&quot;nofollow&quot; href=&quot;http://www.prolific.com.tw/eng/products.asp?id=59&quot; target=&quot;_blank&quot; style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; color: blue; outline-style: none; outline-width: initial; outline-color: initial; &quot;&gt;Prolific PL-2303&lt;/a&gt;&amp;nbsp;RS232/USB, который часто используется в старых кабелях для мобильных телефонов.&lt;/p&gt;&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0.8em; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; font-family: &apos;Segoe UI&apos;, Calibri, &apos;Myriad Pro&apos;, Myriad, &apos;Trebuchet MS&apos;, Helvetica, Arial, sans-serif; line-height: 19px; font-size: 13px; &quot;&gt;&lt;a href=&quot;http://progulki.com.ua/wp-content/uploads/2011/11/prolific.jpg&quot; style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; color: rgb(237, 30, 36); outline-style: none; outline-width: initial; outline-color: initial; text-decoration: none; &quot;&gt;&lt;img title=&quot;prolific&quot; src=&quot;http://progulki.com.ua/wp-content/uploads/2011/11/prolific_thumb.jpg&quot; border=&quot;0&quot; alt=&quot;prolific&quot; width=&quot;434&quot; height=&quot;244&quot; style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-style: initial; border-color: initial; border-image: initial; &quot;&gt;&lt;/a&gt;&lt;/p&gt;&lt;h4 style=&quot;margin-top: 0.7em; margin-right: 0px; margin-bottom: 0.2em; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; font-family: &apos;Segoe UI&apos;, Calibri, &apos;Myriad Pro&apos;, Myriad, &apos;Trebuchet MS&apos;, Helvetica, Arial, sans-serif; &quot;&gt;&lt;span style=&quot;text-transform: uppercase;&quot;&gt;&lt;br&gt;&lt;/span&gt;&lt;/h4&gt;</content:encoded>
			<link>https://android-fan.at.ua/blog/vosstanovlenie_kitajskogo_plansheta_mid_x5a/2012-03-28-11</link>
			<category>Ремонт ANDROID устройств</category>
			<dc:creator>ywor</dc:creator>
			<guid>https://android-fan.at.ua/blog/vosstanovlenie_kitajskogo_plansheta_mid_x5a/2012-03-28-11</guid>
			<pubDate>Wed, 28 Mar 2012 06:52:19 GMT</pubDate>
		</item>
		<item>
			<title>Нет подсветки на планшете GPAD G10</title>
			<description>&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0.8em; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; font-family: &apos;Segoe UI&apos;, Calibri, &apos;Myriad Pro&apos;, Myriad, &apos;Trebuchet MS&apos;, Helvetica, Arial, sans-serif; line-height: 19px; font-size: 13px; background-color: rgb(255, 255, 255); &quot;&gt;Добрый день, хотел бы сегодня поделиться опытом ремонта китайского планшета&amp;nbsp;&lt;strong style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; &quot;&gt;GPAD G10&lt;/strong&gt;. Пришел с неисправностью нет подсветки экрана, после вскрытия обнаружил следы ремонта, по всей видимости неудачного&amp;nbsp;&lt;img src=&quot;http://progulki.com.ua/wp-includes/images/smilies/icon_smile.gif&quot; alt=&quot;:-)&quot; class=&quot;wp-smiley&quot; style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-style: initial; border-color: initial; border-image: initial; vertical-align: -15%; &quot;&gt;&amp;nbsp;.&lt;/p&gt;&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0.8em; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; font-family: &apos;Segoe UI&apos;, Calibri, &apos;Myriad Pro&apos;, Myriad, &apos;Trebuchet MS&apos;, Helvetica, Arial, sans-serif; line-height: 19px; font-size: 13px; background-color: rgb(255, 255, 255); &quot;&gt;&lt;span id=&quot;more-3340&quot; style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; &quot;&gt;&lt;/span&gt;Первым делом поменял сгоревший диод Шоттки&amp;nbsp;&lt;strong style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; &quot;&gt;D5&lt;/strong&gt;, который предыдущими умельцами был заменен на обычный стеклянный диод типа&amp;nbsp;&lt;strong style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; &quot;&gt;1N4148&lt;/strong&gt;. Подсветка появилась, только нестабильно работала ( моргала ) и очень сильно грелся сам преобразователь&amp;nbsp;&lt;strong style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; &quot;&gt;U10&lt;/strong&gt;&amp;nbsp;с маркировкой&amp;nbsp;&lt;strong style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; &quot;&gt;BT=A08&lt;/strong&gt;. Информации на него я к сожалению не нашел и решил заменить всю схему преобразователя подсветки на то что есть под рукой. А под рукой оказался, старый-добрый преобразователь&amp;nbsp;&lt;strong style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; &quot;&gt;LTYN&lt;/strong&gt;со старых шлейфов телефонов&amp;nbsp;&lt;strong style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; &quot;&gt;Samsung T500, S500, E700 и т.д.&lt;/strong&gt;.&lt;/p&gt;&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0.8em; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; font-family: &apos;Segoe UI&apos;, Calibri, &apos;Myriad Pro&apos;, Myriad, &apos;Trebuchet MS&apos;, Helvetica, Arial, sans-serif; line-height: 19px; font-size: 13px; background-color: rgb(255, 255, 255); &quot;&gt;&lt;a href=&quot;http://progulki.com.ua/wp-content/uploads/2012/01/gpad-g10-no-backlight-u10-bt-a08.jpg&quot; style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; color: blue; outline-style: none; outline-width: initial; outline-color: initial; &quot;&gt;&lt;img title=&quot;gpad-g10-no-backlight-u10-bt-a08&quot; src=&quot;http://progulki.com.ua/wp-content/uploads/2012/01/gpad-g10-no-backlight-u10-bt-a08_thumb.jpg&quot; alt=&quot;gpad-g10-no-backlight-u10-bt-a08&quot; width=&quot;304&quot; height=&quot;304&quot; border=&quot;0&quot; style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-style: initial; border-color: initial; border-image: initial; background-image: none; display: inline; &quot;&gt;&lt;/a&gt;&lt;/p&gt;&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0.8em; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; font-family: &apos;Segoe UI&apos;, Calibri, &apos;Myriad Pro&apos;, Myriad, &apos;Trebuchet MS&apos;, Helvetica, Arial, sans-serif; line-height: 19px; font-size: 13px; background-color: rgb(255, 255, 255); &quot;&gt;При внимательном изучении, оказалось что распиновка выводов микросхем&amp;nbsp;&lt;strong style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; &quot;&gt;BT=A08 и LTYN&lt;/strong&gt;совпадает, за исключением подключения диода Шоттки, он включался на вывод которого нет на заменяемом аналоге&amp;nbsp;&lt;strong style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; &quot;&gt;LTYN&lt;/strong&gt;.&lt;/p&gt;&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0.8em; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; font-family: &apos;Segoe UI&apos;, Calibri, &apos;Myriad Pro&apos;, Myriad, &apos;Trebuchet MS&apos;, Helvetica, Arial, sans-serif; line-height: 19px; font-size: 13px; background-color: rgb(255, 255, 255); &quot;&gt;&lt;a href=&quot;http://progulki.com.ua/wp-content/uploads/2012/01/BTA081.gif&quot; style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; color: blue; outline-style: none; outline-width: initial; outline-color: initial; &quot;&gt;&lt;img title=&quot;Подсветка на BT=A08&quot; src=&quot;http://progulki.com.ua/wp-content/uploads/2012/01/BTA08_thumb1.gif&quot; alt=&quot;Подсветка на BT=A08&quot; width=&quot;404&quot; height=&quot;221&quot; border=&quot;0&quot; style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-style: initial; border-color: initial; border-image: initial; background-image: none; display: inline; border-style: initial; border-color: initial; &quot;&gt;&lt;/a&gt;&lt;/p&gt;&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0.8em; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; font-family: &apos;Segoe UI&apos;, Calibri, &apos;Myriad Pro&apos;, Myriad, &apos;Trebuchet MS&apos;, Helvetica, Arial, sans-serif; line-height: 19px; font-size: 13px; background-color: rgb(255, 255, 255); &quot;&gt;Выпаял сгоревший преобразователь&amp;nbsp;&lt;strong style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; &quot;&gt;BT=A08&amp;nbsp;&lt;/strong&gt;и непонятный диод&amp;nbsp;&lt;strong style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; &quot;&gt;D5&lt;/strong&gt;, отложил их в сторонку. Впаял все новые элементы по приведенной ниже схеме.&lt;/p&gt;&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0.8em; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; font-family: &apos;Segoe UI&apos;, Calibri, &apos;Myriad Pro&apos;, Myriad, &apos;Trebuchet MS&apos;, Helvetica, Arial, sans-serif; line-height: 19px; font-size: 13px; background-color: rgb(255, 255, 255); &quot;&gt;&lt;a href=&quot;http://progulki.com.ua/wp-content/uploads/2012/01/LTYN.gif&quot; style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; color: blue; outline-style: none; outline-width: initial; outline-color: initial; &quot;&gt;&lt;img title=&quot;Подсветка на LTYN&quot; src=&quot;http://progulki.com.ua/wp-content/uploads/2012/01/LTYN_thumb.gif&quot; alt=&quot;Подсветка на LTYN&quot; width=&quot;404&quot; height=&quot;199&quot; border=&quot;0&quot; style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-style: initial; border-color: initial; border-image: initial; background-image: none; display: inline; &quot;&gt;&lt;/a&gt;&lt;/p&gt;&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0.8em; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; font-family: &apos;Segoe UI&apos;, Calibri, &apos;Myriad Pro&apos;, Myriad, &apos;Trebuchet MS&apos;, Helvetica, Arial, sans-serif; line-height: 19px; font-size: 13px; background-color: rgb(255, 255, 255); &quot;&gt;Включаю планшет, но на выходе преобразователя всего 5,5 вольт, внимательно просматриваю монтаж в надежде обнаружить какой ни будь непропай, но все в порядке, пайка надежна. Тогда было принято решение заменить еще и дроссель преобразователя на&amp;nbsp;&lt;strong style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; &quot;&gt;22uH&lt;/strong&gt;. Его, кстати, тоже снял со старого шлейфа. И как было задумано, после замены дросселя, появилась подсветка, правда не очень яркая... Но этот недочет был решен, заменой резистора&amp;nbsp;&lt;strong style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; &quot;&gt;R38&lt;/strong&gt;, вместо сопротивления&amp;nbsp;&lt;strong style=&quot;margin-to...</description>
			<content:encoded>&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0.8em; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; font-family: &apos;Segoe UI&apos;, Calibri, &apos;Myriad Pro&apos;, Myriad, &apos;Trebuchet MS&apos;, Helvetica, Arial, sans-serif; line-height: 19px; font-size: 13px; background-color: rgb(255, 255, 255); &quot;&gt;Добрый день, хотел бы сегодня поделиться опытом ремонта китайского планшета&amp;nbsp;&lt;strong style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; &quot;&gt;GPAD G10&lt;/strong&gt;. Пришел с неисправностью нет подсветки экрана, после вскрытия обнаружил следы ремонта, по всей видимости неудачного&amp;nbsp;&lt;img src=&quot;http://progulki.com.ua/wp-includes/images/smilies/icon_smile.gif&quot; alt=&quot;:-)&quot; class=&quot;wp-smiley&quot; style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-style: initial; border-color: initial; border-image: initial; vertical-align: -15%; &quot;&gt;&amp;nbsp;.&lt;/p&gt;&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0.8em; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; font-family: &apos;Segoe UI&apos;, Calibri, &apos;Myriad Pro&apos;, Myriad, &apos;Trebuchet MS&apos;, Helvetica, Arial, sans-serif; line-height: 19px; font-size: 13px; background-color: rgb(255, 255, 255); &quot;&gt;&lt;span id=&quot;more-3340&quot; style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; &quot;&gt;&lt;/span&gt;Первым делом поменял сгоревший диод Шоттки&amp;nbsp;&lt;strong style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; &quot;&gt;D5&lt;/strong&gt;, который предыдущими умельцами был заменен на обычный стеклянный диод типа&amp;nbsp;&lt;strong style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; &quot;&gt;1N4148&lt;/strong&gt;. Подсветка появилась, только нестабильно работала ( моргала ) и очень сильно грелся сам преобразователь&amp;nbsp;&lt;strong style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; &quot;&gt;U10&lt;/strong&gt;&amp;nbsp;с маркировкой&amp;nbsp;&lt;strong style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; &quot;&gt;BT=A08&lt;/strong&gt;. Информации на него я к сожалению не нашел и решил заменить всю схему преобразователя подсветки на то что есть под рукой. А под рукой оказался, старый-добрый преобразователь&amp;nbsp;&lt;strong style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; &quot;&gt;LTYN&lt;/strong&gt;со старых шлейфов телефонов&amp;nbsp;&lt;strong style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; &quot;&gt;Samsung T500, S500, E700 и т.д.&lt;/strong&gt;.&lt;/p&gt;&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0.8em; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; font-family: &apos;Segoe UI&apos;, Calibri, &apos;Myriad Pro&apos;, Myriad, &apos;Trebuchet MS&apos;, Helvetica, Arial, sans-serif; line-height: 19px; font-size: 13px; background-color: rgb(255, 255, 255); &quot;&gt;&lt;a href=&quot;http://progulki.com.ua/wp-content/uploads/2012/01/gpad-g10-no-backlight-u10-bt-a08.jpg&quot; style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; color: blue; outline-style: none; outline-width: initial; outline-color: initial; &quot;&gt;&lt;img title=&quot;gpad-g10-no-backlight-u10-bt-a08&quot; src=&quot;http://progulki.com.ua/wp-content/uploads/2012/01/gpad-g10-no-backlight-u10-bt-a08_thumb.jpg&quot; alt=&quot;gpad-g10-no-backlight-u10-bt-a08&quot; width=&quot;304&quot; height=&quot;304&quot; border=&quot;0&quot; style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-style: initial; border-color: initial; border-image: initial; background-image: none; display: inline; &quot;&gt;&lt;/a&gt;&lt;/p&gt;&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0.8em; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; font-family: &apos;Segoe UI&apos;, Calibri, &apos;Myriad Pro&apos;, Myriad, &apos;Trebuchet MS&apos;, Helvetica, Arial, sans-serif; line-height: 19px; font-size: 13px; background-color: rgb(255, 255, 255); &quot;&gt;При внимательном изучении, оказалось что распиновка выводов микросхем&amp;nbsp;&lt;strong style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; &quot;&gt;BT=A08 и LTYN&lt;/strong&gt;совпадает, за исключением подключения диода Шоттки, он включался на вывод которого нет на заменяемом аналоге&amp;nbsp;&lt;strong style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; &quot;&gt;LTYN&lt;/strong&gt;.&lt;/p&gt;&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0.8em; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; font-family: &apos;Segoe UI&apos;, Calibri, &apos;Myriad Pro&apos;, Myriad, &apos;Trebuchet MS&apos;, Helvetica, Arial, sans-serif; line-height: 19px; font-size: 13px; background-color: rgb(255, 255, 255); &quot;&gt;&lt;a href=&quot;http://progulki.com.ua/wp-content/uploads/2012/01/BTA081.gif&quot; style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; color: blue; outline-style: none; outline-width: initial; outline-color: initial; &quot;&gt;&lt;img title=&quot;Подсветка на BT=A08&quot; src=&quot;http://progulki.com.ua/wp-content/uploads/2012/01/BTA08_thumb1.gif&quot; alt=&quot;Подсветка на BT=A08&quot; width=&quot;404&quot; height=&quot;221&quot; border=&quot;0&quot; style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-style: initial; border-color: initial; border-image: initial; background-image: none; display: inline; border-style: initial; border-color: initial; &quot;&gt;&lt;/a&gt;&lt;/p&gt;&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0.8em; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; font-family: &apos;Segoe UI&apos;, Calibri, &apos;Myriad Pro&apos;, Myriad, &apos;Trebuchet MS&apos;, Helvetica, Arial, sans-serif; line-height: 19px; font-size: 13px; background-color: rgb(255, 255, 255); &quot;&gt;Выпаял сгоревший преобразователь&amp;nbsp;&lt;strong style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; &quot;&gt;BT=A08&amp;nbsp;&lt;/strong&gt;и непонятный диод&amp;nbsp;&lt;strong style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; &quot;&gt;D5&lt;/strong&gt;, отложил их в сторонку. Впаял все новые элементы по приведенной ниже схеме.&lt;/p&gt;&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0.8em; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; font-family: &apos;Segoe UI&apos;, Calibri, &apos;Myriad Pro&apos;, Myriad, &apos;Trebuchet MS&apos;, Helvetica, Arial, sans-serif; line-height: 19px; font-size: 13px; background-color: rgb(255, 255, 255); &quot;&gt;&lt;a href=&quot;http://progulki.com.ua/wp-content/uploads/2012/01/LTYN.gif&quot; style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; color: blue; outline-style: none; outline-width: initial; outline-color: initial; &quot;&gt;&lt;img title=&quot;Подсветка на LTYN&quot; src=&quot;http://progulki.com.ua/wp-content/uploads/2012/01/LTYN_thumb.gif&quot; alt=&quot;Подсветка на LTYN&quot; width=&quot;404&quot; height=&quot;199&quot; border=&quot;0&quot; style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-style: initial; border-color: initial; border-image: initial; background-image: none; display: inline; &quot;&gt;&lt;/a&gt;&lt;/p&gt;&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0.8em; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; font-family: &apos;Segoe UI&apos;, Calibri, &apos;Myriad Pro&apos;, Myriad, &apos;Trebuchet MS&apos;, Helvetica, Arial, sans-serif; line-height: 19px; font-size: 13px; background-color: rgb(255, 255, 255); &quot;&gt;Включаю планшет, но на выходе преобразователя всего 5,5 вольт, внимательно просматриваю монтаж в надежде обнаружить какой ни будь непропай, но все в порядке, пайка надежна. Тогда было принято решение заменить еще и дроссель преобразователя на&amp;nbsp;&lt;strong style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; &quot;&gt;22uH&lt;/strong&gt;. Его, кстати, тоже снял со старого шлейфа. И как было задумано, после замены дросселя, появилась подсветка, правда не очень яркая... Но этот недочет был решен, заменой резистора&amp;nbsp;&lt;strong style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; &quot;&gt;R38&lt;/strong&gt;, вместо сопротивления&amp;nbsp;&lt;strong style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; &quot;&gt;2,2 ома&lt;/strong&gt;установил&amp;nbsp;&lt;strong style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; &quot;&gt;0,15 ома&lt;/strong&gt;. Вот что получилось в результате всей переделки, ток питания светодиодов в районе&amp;nbsp;&lt;strong style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; &quot;&gt;60 мА&lt;/strong&gt;&amp;nbsp;(как-раз почти по&amp;nbsp;&lt;strong style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; &quot;&gt;10 мА&lt;/strong&gt;&amp;nbsp;на диод).&lt;/p&gt;&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0.8em; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; font-family: &apos;Segoe UI&apos;, Calibri, &apos;Myriad Pro&apos;, Myriad, &apos;Trebuchet MS&apos;, Helvetica, Arial, sans-serif; line-height: 19px; font-size: 13px; background-color: rgb(255, 255, 255); &quot;&gt;&lt;a href=&quot;http://progulki.com.ua/wp-content/uploads/2012/01/gpad-g10-change-backlight-ltyn.jpg&quot; style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; color: blue; outline-style: none; outline-width: initial; outline-color: initial; &quot;&gt;&lt;img title=&quot;gpad-g10-change-backlight-ltyn&quot; src=&quot;http://progulki.com.ua/wp-content/uploads/2012/01/gpad-g10-change-backlight-ltyn_thumb.jpg&quot; alt=&quot;gpad-g10-change-backlight-ltyn&quot; width=&quot;304&quot; height=&quot;304&quot; border=&quot;0&quot; style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-style: initial; border-color: initial; border-image: initial; background-image: none; display: inline; &quot;&gt;&lt;/a&gt;&lt;/p&gt;&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0.8em; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; font-family: &apos;Segoe UI&apos;, Calibri, &apos;Myriad Pro&apos;, Myriad, &apos;Trebuchet MS&apos;, Helvetica, Arial, sans-serif; line-height: 19px; font-size: 13px; background-color: rgb(255, 255, 255); &quot;&gt;Окончательная проверка показала полную работоспособность нового контроллера, включая регулировку яркости. Так что думаю, материал будет Вам полезен, если будут вопросы пишите в комментарии, отвечу всем.&lt;/p&gt;</content:encoded>
			<link>https://android-fan.at.ua/blog/net_podsvetki_na_planshete_gpad_g10/2012-03-28-10</link>
			<category>Ремонт ANDROID устройств</category>
			<dc:creator>ywor</dc:creator>
			<guid>https://android-fan.at.ua/blog/net_podsvetki_na_planshete_gpad_g10/2012-03-28-10</guid>
			<pubDate>Wed, 28 Mar 2012 06:43:45 GMT</pubDate>
		</item>
	</channel>
</rss>