Video: h264 (High), yuv420p, 3840×2160, 50701 kb/s, 29.98 fps, 30 tbr, 600 tbn, 1200 tbc
Category Archives: Uncategorized
OS X: Replace a string from multiple files
find ./ -type f -exec sed -i '' -e "s/SEARCHTHIS/REPLACEWITTHIS/" {} \;
Review: Dragon Avionics Screamy
From their website:
It’s LOUD. You don’t need to be very close to it in order to hear it. You can cover more ground in less time searching for your aircraft.
Short review.
No! It’s not loud. It’s quieter than a PC beeper. Quieter than your charger beeper. The name “Screamy” is VERY misleading.
Hobbyking BlueSeries 12A ESC
Elektron Analog (Four, Rytm) mounting plate / ear dimensions
Eagle PCB CAD BMP import
Confused how to make your BMP correct sized when converting it with import-bmp?
First of all:
– Make your image 2 colored BMP, great tool for Windows, Linux and OS X is the old classic XnView – For colored images I suggest dithering the image to 2 colored image
– Make your graphics as library package (in Eagle), trust me, it’s worth it (you can make changes easily and don’t mess up your board since the graphic is a package)
– Use layer 25 (tNames) for your graphics. When you have added the package to your board, you can change it’s side by mirroring it.
Then the secret formula:
Scale factor for pixel = wanted graphic size / image size in pixels
For example if you want 204 pixel wide image to be 10mm, you enter 0.0490196078 as the scale. (10 / 204 = 0,0490196078).
Fuses: Atmega328p, no ext. oscillator
– Atmel Atmega 328p
– No external oscillator -> internal 8Mhz oscillator
– No 8 divider
– No watchdog
– No brown-out detection
– SPI enabled
– Reset enabled
-U lfuse:w:0xe2:m -U hfuse:w:0xd9:m -U efuse:w:0xff:m
Set uBlox baud rate to 115200
static const uint8_t ubloxInit[] =
{
0xB5,0x62, 0x06, 0x00, 0x14, 0x00, 0x01, 0x00, 0x00, 0x00, 0xD0, 0x08, 0x00, 0x00, 0x00, 0xC2, 0x01, 0x00, 0x07, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0xC0, 0x7E
};
for (int i=0; i
Rate to 2Hz:
0xB5, 0x62, 0x06, 0x08, 0x06, 0x00,0xF4,0x01,0x01,0x00,0x01,0x00,0x0B,0x77