Category: Electronics
-
MPU6000 vs MPU6050 vs MPU6500
MPU6000 and MPU6050 Deep down, MPU6000 and MPU6050 are the same same hardware. They both have the same 3 axis gyroscope and the same 3 axis accelerometer. Both allows max 8kHz gyro sampling rate. From a flight controllers point of view, the only difference between them is bus that connects them to CPU. MPU6000 allows…
-
ATtiny85 Light Sensor – I2C slave device
I love AVR ATtinyx5 series microcontrollers. They are cheap, easy to use, they can be programmed just like Arduinos and comparing to their size they offer great features. For example, they can be used as a remote analog to digital converters connected to a master device using an I2C bus. Background: A few years ago…
-
Micro MinimOSD stops overlaying in flight: solution
Both MinimOSD and Micro MinimOSD suffers from irritating technical problem. In some setups, they stops overlaying data during hard maneuvers or even right after arming. Problem is very simple: chip MAX7456 is extremely sensitive in terms of supply voltage quality. Working motors and/or servos, can introduce enough power supply noise to occasionally force MAX7456 to…
-
HC-12 433MHz RF serial module range test
As I mentioned in my first post about HC-12 433MHz radio modules, I’ve put my interest in them for telemetry purposes. While S.Port telemetry I’m using in FrSky Taranis radio might have higher range than HC-12, it is closed environment. Since $10 for a pair of HC-12 is not much, I’ve decided for more open…
-
HC-12 433MHz wireless serial communication module configuration
Description HC-12 are cheap 433MHz wireless serial port communication modules with a range up to 1800m in open space. They are SI4463 based. Each costs about $5 when bought from China, and 2 of them can create wireless UART link that can be used, for example, to transfer telemetry data from UAV. Or drive IoT…
-
How to flash firmware to ESP-01 ESP8266 WiFi module
One can think that internet know everything about everything. Yesterday I’ve learned the hard way that is does not. It took me better part of evening to find a working way to flash firmware, any firmware, to cheap ESP-01 ESP8266 WiFi modules. There are many tutorials, most of them were just wrong in my case.…
-
How to measure battery capacity with Arduino
Battery capacity measurement can be useful in many situations. And it is not hard, only requires enough time to discharge battery completely with know resistance and a way to measure voltage in the circuit. Ohm’s law will to the rest: I = U / R Let’s say, we want to measure standard AA 1.5V alkaline…
-
VirtualWire support for Raspberry Pi
FS1000A and XY-MK-5V 433MHz RF modules are very often first choice for cheap and dirty Do It Yourself wireless communication. Pair of those , allowing one way radio communication, const less than 3 dollars or euros. So they are really cheap. Limited range and transmission speed limits their real life usage, but simple assembly and…
-
Programming ATtiny85 and ATtiny45 with Arduino IDE
What is ATtiny ATtiny is a fimily of microcontrollers by Atmel, the same company that provides ATmega series used widely in "real" Arduinos. Comparing to ATmega, ATtinys are much simpler, smaller (usually), with less features. But also cheaper, easier to connect, using less energy, and trust me, in many many cases you do not need…