Posts

Head Tracking w FlySky GT3B and Telemetry Dashboard for Gmade GOM 1/10 Rock Crawler

Image
The project is divided into 3 parts: Add head tracking (Channel 4-6) using Teensy 3.2 and toggle switching (Channel 7 & 8) functions  in Flysky GT3B pistol transmitter  Add front and back FPV camera into GOM Add telemetry dashboard function using ST7735 and Arduino Nano PART 1: Add head tracking function(Channel 4-6) using Teensy 3.2 and toggle switching (Channel 7 & 8) in Flysky GT3B pistol transmitter. (Thank you for sharing by Dylan Fairbanks for instruction of adding head tracking function and additional channels using Teensy 3.2 and Flysky GT3B) Pre-requisites:  Basic programming skill Basic soldering skill Understanding of PPM and PWM  Components FlySky GT3B Transmitter and FS-R9B 8ch Receiver Teensy 3.2   SkyZone 03O FPV Goggles (with Head Tracking Function) JR (Head Tracking) Cable(come with 03O FPV Goggles) 3.5mm Stereo Socket 2-ways Toggle Switch (3 Pins) 3-ways Toggle Switch (3 Pins) Axis Pan&Tilt Camera Mount 2 x Micro Servo  Co...

Display a customized image in ST7735

Image
Basic of ST7735 and Arduino Nano https://www.electronics-lab.com/project/arduino-diy-photo-frame/ https://learn.adafruit.com/1-8-tft-display?view=all Prepare the image. below is my picture in JPG format click link :  https://javl.github.io/image2cpp / Select the JPG File change the setting Generate the code and copy the data array Paste into programming code : #include <SPI.h> #include <Adafruit_GFX.h> #include <Adafruit_ST7735.h> // include Hardware library   #define TFT_CS   10 #define TFT_RST  9   #define TFT_DC   8 #define TFT_SCLK 13    #define TFT_MOSI 11      Adafruit_ST7735 tft = Adafruit_ST7735(TFT_CS,  TFT_DC, TFT_RST);   // Bear Logo const unsigned char bearlogo [] PROGMEM = { 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,  0x00, 0x00, 0x00, 0x00, 0x01, 0xfc, 0x00, 0x00, 0x00, 0x00, 0x07, 0xff, 0x00...

Convert an old servo to a light switch

Image
Use a MG90s servo  Unscrew and remove the cover Cut the wire connected to motor Wire to Led light(please check the voltage of led light) Plug into a channel in RC Receiver and test If led light keeps on but turns to dimmer/brighter while switching, use screw driver to adjust until led turns to on/off If led light keeps off while switching, rewiring cable to +/- of led light