PAW_Sensor: This library control the PAW sensor. This library get sensor values from the PAW sensor, and send these values to PC through serial-communication. And you need to convert these values to delta h using some module on PC. I create sample python module for this library. If you want to get this module, please access below page, https://github.com/HiroakiMatsuda/PAW-Sensor The PAW Sensor is developed by RT. If you need to get information about this sensors, please access below page. http://www.rt-shop.jp/index.php?main_page=product_info&cPath=42&products_id=1303

Dependents:   PAW_Sensor_HelloWorld

Files at this revision

API Documentation at this revision

Comitter:
matsu
Date:
Sun Nov 09 11:43:48 2014 +0000
Parent:
4:ea00b3135f6e
Child:
6:a58ad4e085af
Commit message:
Fix example code.

Changed in this revision

paw.h Show annotated file Show diff for this revision Revisions of this file
--- a/paw.h	Sun Nov 09 11:42:43 2014 +0000
+++ b/paw.h	Sun Nov 09 11:43:48 2014 +0000
@@ -54,7 +54,7 @@
 {
     if( paw.process_paw() == STATE_1 )
     {
-        paw.print( &pc );   
+        paw.print( &pc, 0 );   
     }
 }