Take the 2-minute tour ×
Arduino Stack Exchange is a question and answer site for developers of open-source hardware and software that is compatible with Arduino. It's 100% free, no registration required.

I'm searching a common "wireless gadget" with rotary encoder that can be accessed by an Arduino. Background: I need a portable rotary encoder to create a simple way to control model railway locos. The only one I have found so far is a wireless mouse where the scroll wheel easily can be abused as rotary encoder.

But they usually are using USB on the PC side which is not that easy to handle by Arduino. Does anybody else knows about other of those common "wireless gadgets"?

share|improve this question

2 Answers 2

That sounds like a candidate for building your own. It shouldn't be too hard.

There's plenty of low-cost Arduino-compatible wireless modules available. My choice for this would probably be the nRF24L01 - dirt cheap, reasonable range, well supported.

Attach that to an Arduino Mini or Arduino Nano (for instance) and connect a rotary encoder of your choice. Write the sketch.

Add another nRF24L01 to your main Arduino to receive whatever you send.

Due to the way the nRF24L01 works you could quite easily have a number of remote modules talking to the Arduino through the same channel. I'm sure you could think of other things you could do with that wireless channel :)

share|improve this answer

In addition to @Majenko,

If your device is going to talk to a PC/Laptop (or cellphone!), then HC05 or HC06 bluetooth serial module may be a better fit. You will still need to write software to receive the data, but you won't need another Arduino at the other end.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.