Hall Sensor

Dependencies:   mbed

Hall Sensor

Ein Hall-Sensor (auch Hall-Sonde oder Hall-Geber, nach Edwin Hall) nutzt den Hall-Effekt zur Messung von Magnetfeldern.

Der auf dem Shield verwendetete Hall Sensor (A1202LH) kann zur Lage Erfassung eines Permanentmagnetes genutzt werden, d.h. es kann der Nordpol oder Südpol des Magneten bestimmt werden.

Anwendungen

  • Alarmanlagen, z.B. zum Sichern von Fenstern.
  • Im Auto zur Kontrolle ob der Sicherheitsgurt geschlossen ist, als Raddrehzahlsensoren, zur Erkennung des Zündzeitpunkts.
  • In der Kraftwerkstechnik zur Erfassung der Turbinendrehzahl.

Files at this revision

API Documentation at this revision

Comitter:
marcel1691
Date:
Mon May 30 06:24:05 2016 +0000
Parent:
3:8bd7de56746d
Commit message:
printf raus

Changed in this revision

.hgignore Show annotated file Show diff for this revision Revisions of this file
main.cpp Show annotated file Show diff for this revision Revisions of this file
diff -r 8bd7de56746d -r f8536a4c279d .hgignore
--- a/.hgignore	Sat Aug 15 20:12:20 2015 +0200
+++ b/.hgignore	Mon May 30 06:24:05 2016 +0000
@@ -1,3 +1,19 @@
-
 syntax: regexp
-^MCU_K64F$
\ No newline at end of file
+\.hgignore$
+\.git$
+\.svn$
+\.orig$
+\.msub$
+\.meta$
+\.ctags
+\.uvproj$
+\.uvopt$
+\.project$
+\.cproject$
+\.launch$
+\.project$
+\.cproject$
+\.launch$
+Makefile$
+\.ewp$
+\.eww$
\ No newline at end of file
diff -r 8bd7de56746d -r f8536a4c279d main.cpp
--- a/main.cpp	Sat Aug 15 20:12:20 2015 +0200
+++ b/main.cpp	Mon May 30 06:24:05 2016 +0000
@@ -17,9 +17,6 @@
             led1 = 1;
         else if ( value > 0.6f )
             led2 = 1;
-        
-        // Ausgabe auf Console
-        printf( "\tHall %f\n", value );   
         wait(1.0);
     }
 }