2

I'd like to attach a battery powered IOT Device to my Cat Wheel to measure the number of times it rotates across the afternoon. Not too concerned about what programming language is involved in writing the code for it. It has a nice surface on the wheel to mount a magnet and on the supporting leg to catch a signal from it passing if there is a nice way to measure that. You can see the cat wheel at https://www.ziggydoo.com/en/home/8-ferris-cat-exercise-wheel.html#/11-color-black

Any ideas are greatly appreciated for this very important project Patrick

2 Answers2

3

Its not very complex, you could use some thing as simple as an infra red led powered by a battery that is stuck on the wheel and a IR receiver somewhere close by such that the receiver generates a pulse every time it receives the light from the led. You can use this pulse to increment a counter. and as soon as the counter is incremented, send the data to the destination (server) via your IoT device. IR is just one of the many options you might find. Just search for proximity sensors. Hope it helps.

Subbu
  • 441
  • 2
  • 3
2

You could use something like an ESP8266 with a hall sensor and a magnet. You could then view the revisions online by running a small server on the ESP.

Rohan Harish
  • 126
  • 4