環境
OS: windows7 64bit
IDE: Arduino 1.6.9
概要
リニアホール磁気センサ。
準備
結線
「A0」: このサンプルでは使用しない。
「G」: GND
「+」: +V
「D0」: デジタルピン。 この例ではデジタル3番
サンプルスケッチ
参考: https://tkkrlab.nl/wiki/Arduino_KY-024_Linear_magnetic_Hall_sensors
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 |
int Led = 13 ; // define LED Interface int buttonpin = 3; // define the linear Hall magnetic sensor interface int val ; // define numeric variables val void setup () { pinMode (Led, OUTPUT) ; // define LED as output interface pinMode (buttonpin, INPUT) ; // define linear Hall magnetic sensor output interface } void loop () { val = digitalRead (buttonpin) ; // digital interface will be assigned a value of 3 to read val if (val == HIGH) // When the linear Hall sensor detects a magnetic signal, LED flashes { digitalWrite (Led, HIGH); } else { digitalWrite (Led, LOW); } } |
実行結果
その他
参考
[toggle heading=”h3″ title=”参考” ]
Arduino KY-024 Linear magnetic Hall sensors – TkkrLabhttps://tkkrlab.nl/wiki/Arduino_KY-024_Linear_magnetic_Hall_sensors
ハネウェルSS39ETリニアホール効果センサIChttps://sensing.honeywell.jp/ss39et-linear-hall-effect-sensor-ics
S048 – Linear magnetic Hall sensor (KY-024) – YouTubehttps://www.youtube.com/watch?v=pdz_F2jL71A
Arduino Hall sensor KY-003 or KY-024 or KY-035 – YouTubehttps://www.youtube.com/watch?v=xMTKs240lBU
KY-024 Linear Magnetic Hall Sensorhttp://www.tdegypt.com/product/ky-024-linear-magnetic-hall-sensor/
KY-024 Linear magnetic Hall sensors by herrerodanihttps://codebender.cc/sketch:69017#KY-024%20Linear%20magnetic%20Hall%20sensors.ino
[/toggle]
コメント