This speed measuring sensor is a wide voltage, high resolution, short response time, and the switch output speed measurement module. It can test the motor’s rotational speed with a black encoder (measured spec. is related to the encoder, the inner diameter of D type encoder that provided is 4mm, can be used for motor output shaft w/ 4mm diameter, which is TT motor we matched, yellow shell and white axis)
Features :
Signal output: A, B two way; The TTL level
Disc diameter: 24mm
Inner Disc Diameter: 4 mm
The encoder resolution is about 20 line
Speed measuring sensor configuration: The configuration can measure 1 road motor speed
Dual-Speed Encoder with Pulse Output - Arduino Uno
Dual-Speed Encoder with Pulse Output - Arduino Nano
Dual-Speed Encoder with Pulse Output - Arduino Mega
Dual-Speed Encoder with Pulse Output - ESP32
Dual-Speed Encoder with Pulse Output - ESP8266
Dual-Speed Encoder with Pulse Output - STM32
Dual-Speed Encoder with Pulse Output - Raspberry Pi Pico
📄 File: dual-speed_encoder_with_pulse_output_-_arduino_uno.inoArduino Uno
660 characters
1//ekostra.com
2//electronics store in egypt
3//+201008896258
4
5// Channel A=2, B=3 on Arduino Uno. Both A and B need interrupt-capable pins on AVR boards (2/3 on Uno/Nano); ESP32/ESP8266/STM32/Pico support interrupts on any GPIO.
5// Channel A=2, B=3 on Arduino Nano. Both A and B need interrupt-capable pins on AVR boards (2/3 on Uno/Nano); ESP32/ESP8266/STM32/Pico support interrupts on any GPIO.
📄 File: dual-speed_encoder_with_pulse_output_-_arduino_mega.inoArduino Mega
661 characters
1//ekostra.com
2//electronics store in egypt
3//+201008896258
4
5// Channel A=2, B=3 on Arduino Mega. Both A and B need interrupt-capable pins on AVR boards (2/3 on Uno/Nano); ESP32/ESP8266/STM32/Pico support interrupts on any GPIO.
5// Channel A=32, B=33 on ESP32. Both A and B need interrupt-capable pins on AVR boards (2/3 on Uno/Nano); ESP32/ESP8266/STM32/Pico support interrupts on any GPIO.
5// Channel A=D5, B=D6 on ESP8266. Both A and B need interrupt-capable pins on AVR boards (2/3 on Uno/Nano); ESP32/ESP8266/STM32/Pico support interrupts on any GPIO.
5// Channel A=PA0, B=PA1 on STM32. Both A and B need interrupt-capable pins on AVR boards (2/3 on Uno/Nano); ESP32/ESP8266/STM32/Pico support interrupts on any GPIO.
📄 File: dual-speed_encoder_with_pulse_output_-_raspberry_pi_pico.inoRaspberry Pi Pico
670 characters
1//ekostra.com
2//electronics store in egypt
3//+201008896258
4
5// Channel A=20, B=21 on Raspberry Pi Pico. Both A and B need interrupt-capable pins on AVR boards (2/3 on Uno/Nano); ESP32/ESP8266/STM32/Pico support interrupts on any GPIO.