Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- int linearHallSensorPin = A0; // выбор пина для датчика
- int ledPin = 13; // выбор пина для светодиода
- int linearHallSensorValue = 0; // переменная для значения с датчика
- void setup () {
- pinMode (ledPin, OUTPUT);
- Serial.begin (9600);
- }
- void loop () {
- linearHallSensorValue = analogRead (linearHallSensorPin); // чтение значения с датчика
- digitalWrite (ledPin, HIGH);
- delay (linearHallSensorValue);
- digitalWrite (ledPin, LOW);
- delay (linearHallSensorValue);
- Serial.println (linearHallSensorValue, DEC);
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement