Create hall_effect_esp32.ino (#450)
* Create hall_effect_esp32.ino A simple example to access the hall effect sensor in the esp32 * Create hall_effect.ino * Update hall_effect.ino Simple sketch to access the internal hall effect detector on the esp32 * Delete hall_effect_esp32.ino * Create HallSensor.ino * Update HallSensor.ino * Update HallSensor.ino * Delete hall_effect.ino
This commit is contained in:
parent
023a32bc12
commit
839318c0eb
16
libraries/ESP32/examples/HallSensor/HallSensor.ino
Normal file
16
libraries/ESP32/examples/HallSensor/HallSensor.ino
Normal file
@ -0,0 +1,16 @@
|
||||
//Simple sketch to access the internal hall effect detector on the esp32.
|
||||
//values can be quite low.
|
||||
//Brian Degger / @sctv
|
||||
|
||||
int val = 0;
|
||||
void setup() {
|
||||
Serial.begin(9600);
|
||||
}
|
||||
|
||||
void loop() {
|
||||
// put your main code here, to run repeatedly:
|
||||
val = hallRead();
|
||||
// print the results to the serial monitor:
|
||||
//Serial.print("sensor = ");
|
||||
Serial.println(val);//to graph
|
||||
}
|
Loading…
Reference in New Issue
Block a user