Improve Wireless Doorbell


This is an unexpected project, that might prove one of my (very) few that are actually finished and useful ! πŸ™‚

Read more of this post

Lightweight software UART -> custom serial


Software UART to custom serial on an AtTiny45, and then going to the Peggy2 board

7 months ago, in the middle of the winter, it all started with this…

Read more of this post

IR Remote (Syma s026) dedicated board – V2 – AtTiny45


IRcmdS026_AtTiny45_Final_Side1

Right, the previous post was about creating a dedicated board that can do 2 things:

  1. read and decrypt the IR commands sent by the Syma s026 remote control
  2. send them via a serial link (to the “central” MCU or elsewhere)

Read more of this post

IR Remote (Syma s026) dedicated board


Syma s026 Remote IR protocol decryptor

I’ve talked in at least 1 other post about how to use the Infra Red remote control of a toy helicopter (Syma s026) for other projects : once the protocol reverse engineered, it’s very easy to program a micro controller to listen to it and I find it very useful to integrate this into any project that needs some wireless remote controlling.

It’s also quite cheap, all you need is an IR receiver and the microcontroller that you alreay use in the given project…

BUT, the more I used it the more I hit one problem : it uses far too much of the MCU ressources, because the remote keeps sending 29 bytes signals all the time and you have to try to intercep them all to check if anything has changed in the commands sent !

Read more of this post