Description
As you know I am very new to Rust language. With your help I just setup Rust environment couple of days ago.
Now I have new feature request. I was searching for IR transmitter solution for CH582F in Rust but could not find any. But came across a repository which implements IR transmitter for ATTiny13A micro controller and goes into detail of it's functionality. I think he uses timer functionality of ATTiny13A to create any custom IR protocol codes. The repository is linked below:
https://github.com/wagiminator/ATtiny13-TinyRemote?tab=readme-ov-file
He also have IR receiver implemented on ATTiny13A chip in another repository:
https://github.com/wagiminator/ATtiny13-TinyDecoder
His blog linked below is treasure trove for ATTiny devices:
http://www.technoblogy.com/show?24A9
One benefit of CH582F is it's builtin BLE. This makes it possible to use smartphone instead of buttons in above project to control any device in vicinity of IR transmitter. That can make very low cost home automation system.
Is it possible to implement this in Rust?
Thank you.
Activity