<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
	<id>http://wiki.paparazziuav.org/w/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Helgewal</id>
	<title>PaparazziUAV - User contributions [en]</title>
	<link rel="self" type="application/atom+xml" href="http://wiki.paparazziuav.org/w/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Helgewal"/>
	<link rel="alternate" type="text/html" href="http://wiki.paparazziuav.org/wiki/Special:Contributions/Helgewal"/>
	<updated>2026-05-09T12:46:40Z</updated>
	<subtitle>User contributions</subtitle>
	<generator>MediaWiki 1.37.1</generator>
	<entry>
		<id>http://wiki.paparazziuav.org/w/index.php?title=Module/Bosch_BMP085&amp;diff=19001</id>
		<title>Module/Bosch BMP085</title>
		<link rel="alternate" type="text/html" href="http://wiki.paparazziuav.org/w/index.php?title=Module/Bosch_BMP085&amp;diff=19001"/>
		<updated>2014-09-05T11:01:17Z</updated>

		<summary type="html">&lt;p&gt;Helgewal: /* Usage */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;__NOTOC__&lt;br /&gt;
[[Image:Bmp085.jpg|thumb|right|Bosch BMP085 barometer]]&lt;br /&gt;
== Overview ==&lt;br /&gt;
&lt;br /&gt;
The Bosch BMP085 is a barometer/pressure sensor. There is an alternative float number implementation [http://wmrx00.sourceforge.net/Arduino/BMP085-Calcs.pdf available] that seems to offer less noise, not implemented yet.&lt;br /&gt;
&lt;br /&gt;
The device was tested in a simple static noise comparsion [[Baro_comparsion|setup]].&lt;br /&gt;
&lt;br /&gt;
{|border=&amp;quot;1&amp;quot;&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot;&lt;br /&gt;
||Module name||sensors/baro_bmp&lt;br /&gt;
|-&lt;br /&gt;
|Sensor type&lt;br /&gt;
|barometer, temperature&lt;br /&gt;
|-&lt;br /&gt;
|Range (baro)&lt;br /&gt;
|30 kPa .. 1100 kPa&lt;br /&gt;
|-&lt;br /&gt;
|Range (temp)&lt;br /&gt;
| -40°C .. +85°C&lt;br /&gt;
|-&lt;br /&gt;
|Resolution (baro)&lt;br /&gt;
|3 Pa&lt;br /&gt;
|-&lt;br /&gt;
|Resolution (temp)&lt;br /&gt;
|0.1°C&lt;br /&gt;
|-&lt;br /&gt;
|Refresh rate&lt;br /&gt;
|8Hz&lt;br /&gt;
|-&lt;br /&gt;
|I2C address&lt;br /&gt;
|0xEE&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
[http://www.bosch-sensortec.com/homepage/products_3/environmental_sensors_1/bmp085_1/bmp085 Product home page]&lt;br /&gt;
&lt;br /&gt;
[http://dlnmh9ip6v2uc.cloudfront.net/datasheets/Sensors/Pressure/BST-BMP085-DS000-06.pdf Product data sheet]&lt;br /&gt;
&lt;br /&gt;
== Hardware ==&lt;br /&gt;
&lt;br /&gt;
The sensor directly interfaces to the 3.3V I2C port of the autopilots and is supplied by +3.3V.&lt;br /&gt;
&lt;br /&gt;
Supplier:&lt;br /&gt;
[http://www.sparkfun.com/products/9694 Sparkfun]&lt;br /&gt;
&lt;br /&gt;
=== Wiring ===&lt;br /&gt;
&lt;br /&gt;
{|border=&amp;quot;1&amp;quot;&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot;&lt;br /&gt;
||'''Autopilot I2C pin'''||'''Autopilot I2C'''||'''Bosch BMP085'''&lt;br /&gt;
|-&lt;br /&gt;
|1&lt;br /&gt;
|GND&lt;br /&gt;
|GND&lt;br /&gt;
|-&lt;br /&gt;
|2&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|3&lt;br /&gt;
| +3.3V&lt;br /&gt;
|VCC&lt;br /&gt;
|-&lt;br /&gt;
|4&lt;br /&gt;
|SDA&lt;br /&gt;
|SDA&lt;br /&gt;
|-&lt;br /&gt;
|5&lt;br /&gt;
|SCL&lt;br /&gt;
|SCL&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Usage ==&lt;br /&gt;
&lt;br /&gt;
To use it load the baro_bmp module:&lt;br /&gt;
{{Box Code|conf/airframes/myplane.xml|&lt;br /&gt;
&amp;lt;source lang=&amp;quot;xml&amp;quot;&amp;gt;&lt;br /&gt;
  &amp;lt;modules&amp;gt;&lt;br /&gt;
    ...&lt;br /&gt;
    &amp;lt;load name=&amp;quot;baro_bmp.xml&amp;quot;/&amp;gt;&lt;br /&gt;
  &amp;lt;/modules&amp;gt;&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
=== Configuration ===&lt;br /&gt;
&lt;br /&gt;
To see the sensors data in the log file every time new data is available, set SENSOR_SYNC_SEND in your airframe file.&lt;br /&gt;
&lt;br /&gt;
If you omit SENSOR_SYNC_SEND from your airframe file, you will still get the data, but at 1/10 of the available rate.&lt;br /&gt;
{{Box Code|conf/airframes/myplane.xml|&lt;br /&gt;
&amp;lt;source lang=&amp;quot;xml&amp;quot;&amp;gt;&lt;br /&gt;
  &amp;lt;modules&amp;gt;&lt;br /&gt;
    ...&lt;br /&gt;
    &amp;lt;load name=&amp;quot;baro_bmp.xml&amp;quot;&amp;gt;&lt;br /&gt;
      &amp;lt;define name=&amp;quot;SENSOR_SYNC_SEND&amp;quot;/&amp;gt;&lt;br /&gt;
    &amp;lt;/load&amp;gt;&lt;br /&gt;
  &amp;lt;/modules&amp;gt;&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
===Result message===&lt;br /&gt;
&lt;br /&gt;
The raw data (UP/UT) and the converted result (press/temp) is written to the log file.&lt;br /&gt;
{{Box Code|conf/messages.xml|&lt;br /&gt;
&amp;lt;source lang=&amp;quot;xml&amp;quot;&amp;gt;&lt;br /&gt;
  &amp;lt;message name=&amp;quot;BMP_STATUS&amp;quot; id=&amp;quot;84&amp;quot;&amp;gt;&lt;br /&gt;
    &amp;lt;field name=&amp;quot;UP&amp;quot; type=&amp;quot;int32&amp;quot;/&amp;gt;&lt;br /&gt;
    &amp;lt;field name=&amp;quot;UT&amp;quot; type=&amp;quot;int32&amp;quot;/&amp;gt;&lt;br /&gt;
    &amp;lt;field name=&amp;quot;press&amp;quot; type=&amp;quot;int32&amp;quot; unit=&amp;quot;Pa&amp;quot;/&amp;gt;&lt;br /&gt;
    &amp;lt;field name=&amp;quot;temp&amp;quot; type=&amp;quot;int32&amp;quot; unit=&amp;quot;10x_deg_celsius&amp;quot;/&amp;gt;&lt;br /&gt;
  &amp;lt;/message&amp;gt;&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
Sample log file lines&lt;br /&gt;
 8.272 123 BMP_STATUS 336765 28975 98628 219&lt;br /&gt;
 8.507 123 BMP_STATUS 336765 28973 98629 219&lt;br /&gt;
 8.741 123 BMP_STATUS 336775 28975 98629 219&lt;br /&gt;
 8.973 123 BMP_STATUS 336778 28973 98630 219&lt;br /&gt;
&lt;br /&gt;
[[Category:User_Documentation]] [[Category:Modules]]&lt;/div&gt;</summary>
		<author><name>Helgewal</name></author>
	</entry>
	<entry>
		<id>http://wiki.paparazziuav.org/w/index.php?title=Module/Bosch_BMP085&amp;diff=19000</id>
		<title>Module/Bosch BMP085</title>
		<link rel="alternate" type="text/html" href="http://wiki.paparazziuav.org/w/index.php?title=Module/Bosch_BMP085&amp;diff=19000"/>
		<updated>2014-09-05T10:58:25Z</updated>

		<summary type="html">&lt;p&gt;Helgewal: /* Usage */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;__NOTOC__&lt;br /&gt;
[[Image:Bmp085.jpg|thumb|right|Bosch BMP085 barometer]]&lt;br /&gt;
== Overview ==&lt;br /&gt;
&lt;br /&gt;
The Bosch BMP085 is a barometer/pressure sensor. There is an alternative float number implementation [http://wmrx00.sourceforge.net/Arduino/BMP085-Calcs.pdf available] that seems to offer less noise, not implemented yet.&lt;br /&gt;
&lt;br /&gt;
The device was tested in a simple static noise comparsion [[Baro_comparsion|setup]].&lt;br /&gt;
&lt;br /&gt;
{|border=&amp;quot;1&amp;quot;&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot;&lt;br /&gt;
||Module name||sensors/baro_bmp&lt;br /&gt;
|-&lt;br /&gt;
|Sensor type&lt;br /&gt;
|barometer, temperature&lt;br /&gt;
|-&lt;br /&gt;
|Range (baro)&lt;br /&gt;
|30 kPa .. 1100 kPa&lt;br /&gt;
|-&lt;br /&gt;
|Range (temp)&lt;br /&gt;
| -40°C .. +85°C&lt;br /&gt;
|-&lt;br /&gt;
|Resolution (baro)&lt;br /&gt;
|3 Pa&lt;br /&gt;
|-&lt;br /&gt;
|Resolution (temp)&lt;br /&gt;
|0.1°C&lt;br /&gt;
|-&lt;br /&gt;
|Refresh rate&lt;br /&gt;
|8Hz&lt;br /&gt;
|-&lt;br /&gt;
|I2C address&lt;br /&gt;
|0xEE&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
[http://www.bosch-sensortec.com/homepage/products_3/environmental_sensors_1/bmp085_1/bmp085 Product home page]&lt;br /&gt;
&lt;br /&gt;
[http://dlnmh9ip6v2uc.cloudfront.net/datasheets/Sensors/Pressure/BST-BMP085-DS000-06.pdf Product data sheet]&lt;br /&gt;
&lt;br /&gt;
== Hardware ==&lt;br /&gt;
&lt;br /&gt;
The sensor directly interfaces to the 3.3V I2C port of the autopilots and is supplied by +3.3V.&lt;br /&gt;
&lt;br /&gt;
Supplier:&lt;br /&gt;
[http://www.sparkfun.com/products/9694 Sparkfun]&lt;br /&gt;
&lt;br /&gt;
=== Wiring ===&lt;br /&gt;
&lt;br /&gt;
{|border=&amp;quot;1&amp;quot;&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot;&lt;br /&gt;
||'''Autopilot I2C pin'''||'''Autopilot I2C'''||'''Bosch BMP085'''&lt;br /&gt;
|-&lt;br /&gt;
|1&lt;br /&gt;
|GND&lt;br /&gt;
|GND&lt;br /&gt;
|-&lt;br /&gt;
|2&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|3&lt;br /&gt;
| +3.3V&lt;br /&gt;
|VCC&lt;br /&gt;
|-&lt;br /&gt;
|4&lt;br /&gt;
|SDA&lt;br /&gt;
|SDA&lt;br /&gt;
|-&lt;br /&gt;
|5&lt;br /&gt;
|SCL&lt;br /&gt;
|SCL&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Usage ==&lt;br /&gt;
&lt;br /&gt;
To use it load the baro_bmp module:&lt;br /&gt;
{{Box Code|conf/airframes/myplane.xml|&lt;br /&gt;
&amp;lt;source lang=&amp;quot;xml&amp;quot;&amp;gt;&lt;br /&gt;
  &amp;lt;modules&amp;gt;&lt;br /&gt;
    ...&lt;br /&gt;
    &amp;lt;load name=&amp;quot;baro_bmp.xml&amp;quot;/&amp;gt;&lt;br /&gt;
  &amp;lt;/modules&amp;gt;&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
=== Configuration ===&lt;br /&gt;
&lt;br /&gt;
To see the sensors data in the log file every time new data is available, set SENSOR_SYNC_SEND in your airframe file.&lt;br /&gt;
If you omit SENSOR_SYNC_SEND from your airframe file, you will still get the data, but at 1/10 of the available rate.&lt;br /&gt;
{{Box Code|conf/airframes/myplane.xml|&lt;br /&gt;
&amp;lt;source lang=&amp;quot;xml&amp;quot;&amp;gt;&lt;br /&gt;
  &amp;lt;modules&amp;gt;&lt;br /&gt;
    ...&lt;br /&gt;
    &amp;lt;load name=&amp;quot;baro_bmp.xml&amp;quot;&amp;gt;&lt;br /&gt;
      &amp;lt;define name=&amp;quot;SENSOR_SYNC_SEND&amp;quot;/&amp;gt;&lt;br /&gt;
    &amp;lt;/load&amp;gt;&lt;br /&gt;
  &amp;lt;/modules&amp;gt;&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
===Result message===&lt;br /&gt;
&lt;br /&gt;
The raw data (UP/UT) and the converted result (press/temp) is written to the log file.&lt;br /&gt;
{{Box Code|conf/messages.xml|&lt;br /&gt;
&amp;lt;source lang=&amp;quot;xml&amp;quot;&amp;gt;&lt;br /&gt;
  &amp;lt;message name=&amp;quot;BMP_STATUS&amp;quot; id=&amp;quot;84&amp;quot;&amp;gt;&lt;br /&gt;
    &amp;lt;field name=&amp;quot;UP&amp;quot; type=&amp;quot;int32&amp;quot;/&amp;gt;&lt;br /&gt;
    &amp;lt;field name=&amp;quot;UT&amp;quot; type=&amp;quot;int32&amp;quot;/&amp;gt;&lt;br /&gt;
    &amp;lt;field name=&amp;quot;press&amp;quot; type=&amp;quot;int32&amp;quot; unit=&amp;quot;Pa&amp;quot;/&amp;gt;&lt;br /&gt;
    &amp;lt;field name=&amp;quot;temp&amp;quot; type=&amp;quot;int32&amp;quot; unit=&amp;quot;10x_deg_celsius&amp;quot;/&amp;gt;&lt;br /&gt;
  &amp;lt;/message&amp;gt;&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
Sample log file lines&lt;br /&gt;
 8.272 123 BMP_STATUS 336765 28975 98628 219&lt;br /&gt;
 8.507 123 BMP_STATUS 336765 28973 98629 219&lt;br /&gt;
 8.741 123 BMP_STATUS 336775 28975 98629 219&lt;br /&gt;
 8.973 123 BMP_STATUS 336778 28973 98630 219&lt;br /&gt;
&lt;br /&gt;
[[Category:User_Documentation]] [[Category:Modules]]&lt;/div&gt;</summary>
		<author><name>Helgewal</name></author>
	</entry>
</feed>