<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>deneme2 &#8211; ESPcopter</title>
	<atom:link href="https://espcopter.com/category/deneme2/feed/" rel="self" type="application/rss+xml" />
	<link>https://espcopter.com</link>
	<description>ESPcopter</description>
	<lastBuildDate>Tue, 27 Nov 2018 20:33:40 +0000</lastBuildDate>
	<language>tr</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=6.8.1</generator>

<image>
	<url>https://espcopter.com/wp-content/uploads/2016/09/cropped-quad-1-32x32.jpg</url>
	<title>deneme2 &#8211; ESPcopter</title>
	<link>https://espcopter.com</link>
	<width>32</width>
	<height>32</height>
</image> 
	<item>
		<title>Lesson 5. VL53L0X Time-of-Flight Distance Sensor</title>
		<link>https://espcopter.com/2017/06/14/lesson-5-vl53l0x-time-of-flight-distance-sensor/</link>
					<comments>https://espcopter.com/2017/06/14/lesson-5-vl53l0x-time-of-flight-distance-sensor/#respond</comments>
		
		<dc:creator><![CDATA[metehanemlik]]></dc:creator>
		<pubDate>Wed, 14 Jun 2017 20:40:40 +0000</pubDate>
				<category><![CDATA[deneme2]]></category>
		<category><![CDATA[Intermediate Lessons]]></category>
		<guid isPermaLink="false">http://espcopter.com/?p=537</guid>

					<description><![CDATA[Dowland VL53L0X  library: https://github.com/pololu/vl53l0x-arduino]]></description>
										<content:encoded><![CDATA[<p>Dowland VL53L0X  library:</p>
<p>https://github.com/pololu/vl53l0x-arduino</p>
<div class="wpb_content_element"  >
	<div class="messagebox_text style-color-jevc-bg"><p>&nbsp;</p>
<p>/* This example shows how to get single-shot range<br />
measurements from the VL53L0X. The sensor can optionally be<br />
configured with different ranging profiles, as described in<br />
the VL53L0X API user manual, to get better performance for<br />
a certain application. This code is based on the four<br />
&#8220;SingleRanging&#8221; examples in the VL53L0X API.</p>
<p>The range readings are in units of mm. */</p>
<p>#include &lt;Wire.h&gt;<br />
#include &lt;VL53L0X.h&gt;</p>
<p>VL53L0X sensor;</p>
<p>&nbsp;</p>
<p>// Uncomment this line to use long range mode. This<br />
// increases the sensitivity of the sensor and extends its<br />
// potential range, but increases the likelihood of getting<br />
// an inaccurate reading because of reflections from objects<br />
// other than the intended target. It works best in dark<br />
// conditions.</p>
<p>//#define LONG_RANGE</p>
<p>&nbsp;</p>
<p>// Uncomment ONE of these two lines to get<br />
// &#8211; higher speed at the cost of lower accuracy OR<br />
// &#8211; higher accuracy at the cost of lower speed</p>
<p>//#define HIGH_SPEED<br />
//#define HIGH_ACCURACY</p>
<p>&nbsp;</p>
<p>void setup()<br />
{<br />
Serial.begin(9600);<br />
Wire.begin();</p>
<p>sensor.init();<br />
sensor.setTimeout(500);</p>
<p>#if defined LONG_RANGE<br />
// lower the return signal rate limit (default is 0.25 MCPS)<br />
sensor.setSignalRateLimit(0.1);<br />
// increase laser pulse periods (defaults are 14 and 10 PCLKs)<br />
sensor.setVcselPulsePeriod(VL53L0X::VcselPeriodPreRange, 18);<br />
sensor.setVcselPulsePeriod(VL53L0X::VcselPeriodFinalRange, 14);<br />
#endif</p>
<p>#if defined HIGH_SPEED<br />
// reduce timing budget to 20 ms (default is about 33 ms)<br />
sensor.setMeasurementTimingBudget(20000);<br />
#elif defined HIGH_ACCURACY<br />
// increase timing budget to 200 ms<br />
sensor.setMeasurementTimingBudget(200000);<br />
#endif<br />
}</p>
<p>void loop()<br />
{<br />
Serial.print(sensor.readRangeSingleMillimeters());<br />
if (sensor.timeoutOccurred()) { Serial.print(&#8221; TIMEOUT&#8221;); }</p>
<p>Serial.println();<br />
}</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
</div>
	</div>

]]></content:encoded>
					
					<wfw:commentRss>https://espcopter.com/2017/06/14/lesson-5-vl53l0x-time-of-flight-distance-sensor/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
	</channel>
</rss>
