Battery-less Self Powered Radio Transmitter
| |

Battery-less Self Powered Radio Transmitter

Batteries are the heart of any electronic circuit, the impossibilities of making a wireless circuit without batteries is now eliminated by this DFrobot mini generator based Rf circuit. Remote controllers can be seen everywhere, and most of them are inseparable from the battery. However, we often encounter problems when using the battery, for instance, it…

Digital Radio Transmitter and Receiver 433Mhz
|

Digital Radio Transmitter and Receiver 433Mhz

Radio technology is the best monitoring and control solution for small and long range wireless hobby projects. With other wireless controlling technologies like Buetooth and Wi-Fi AT commands system configuration is required which are very complex and need a setup program. Wifi’s signal limitations and high power consumption, IR emission angle and inability to penetrate…

Fast charging module for lithium batteries

Fast charging module for lithium batteries

TP4056 is the one of the most popular modules available in very cheap prices to charge the Li-ion batteries. And to protect the batteries from overcharge, over discharge and protect the batteries by charging with constant current and constant voltage method. It has onboard MOS based different IC for protection with TP4056. The module is…

LPCX

// display 06H on LEDs #include<LPC214x.h> void delaysw(); unsigned int switchRead(); int main(){ while (1){ unsigned int data = switchRead(); // 0x0f IODIR1 = IODIR1 | (0xff << 16); // make direction as output IOSET1 = IOSET1 | (data << 16); // Writing on port 1.3 same for p0 too delaysw(); } } unsigned int…