Posts

Easy Online Earning By Playing Game (GALA)

Image
JOIN NOW! EARN BTC Hit video #games on the #blockchain and something many will be experiencing for the first time - actual ownership of their game items and rewards. In a sense, the #Free-to-Play model is transformed into “Free-to-Earn” for all game players and supporters of the #Gala network. Well you can be a early adopter by spending only 10$ with this 10$ worth gold account you can earn huge money from now on. Imagine the kind of impact that may have for a moment and realize you are now a part of it. Exciting enough to make the hair on your arm stand up, eh? Yes! It won’t hurt that the first game on Gala, Town Star, is from the creative minds behind Farmville and Farmville 2. town star Being two of the more popular casual games ever created with over 100 million players, Town Star is highly anticipated. If you haven’t already, login to the Gala App now. Inside the app is where you’ll find the most up to date information on video games, network news, and community events. If you’re

Best Drones to Start With

Image
Best Drones to Start With A drone, in a technological context, is an unmanned aircraft. Drones are more formally known as unmanned aerial vehicles (UAV). A drone can be used for both modern warfare and leisure time sport. That’s why drones have different types depending on the purpose of use. This article will help you decide which drones to buy for yourself. Lumenier QAV250 is one of the best budget drones available for your hobby. It is not a beginner’s drone. But if you are looking for something special in the market to be your first drone, then this is the perfect choice.  Starting from US$130, the Lumenier QAV250 has a light air frame which supports multiple HD camera mounts. It has its own landing gear, LED strips to help keep your oriented, and more. If you are looking for an intermediate level drone because you are too tired of your old entry level drone then the Parrot Bebop Drone is here to fulfill your dream. Starting at US$500, the Parrot Bebop Drone will b

4X4 Keypad Input Display Through OLED

Image
In this tutorial basically we’re going to learn how to take input from keypad and show it on our desired OLED display. For this i would suggest you see my other tutorials as prerequisite  Keypad Tutorial  and  OLED Display Tutorial If you miss these tutorial you might not be able to do this. Step 1: Working With the Oled DIsplay Including Library: Both libraries below needs to be installed before you are able to continue with this instructable. https://github.com/adafruit/Adafruit_SSD1306  (SSD1306 library) https://github.com/adafruit/Adafruit_SSD1306  (GFX library) The connections from the display: VCC to arduino 5v GND to arduino GND SCL to arduino pin A5 SDA to arduino pin A4 Library Correction : For Adafruit_SSD1306 Library: Go to: C:\Program Files (x86)\Arduino\libraries\Adafruit_SSD1306 Open Adafruit_SSD1306.h (in a text editor like Notepad++ for example) Find and comment out the line: #define SSD1306_128_32 Uncomment the l

Home About Contact Using Minim OSD in NAZA

Image
So if you dont wanna break your bank for an iOSD module for you DJI Naza , here are some simple (yet DIY complicated) stuffs to follow. NOTE: TRY AT YOUR OWN RISK (VERY LOW RISK IF YOU FOLLOW THE INSTRUCTIONS PRECISELY WITHOUT ERRORS OR SYNC FAILURE. YET, I AM NOT RESPONSIBLE FOR A FRIED NAZA, THERMONUCLEAR WAR OR YOU NEIGHBORS DEAD CAT DIY project that shall make it possible to connect DJI Naza-M (v1, v1 Lite, v2) with MinimOSD using either: Arduino board (Pro Mini, 16Mhz, 5V) and serial connection (works with DJI Naza-M v1, v1 Lite and v2) Teensy 3.1 board + TeensyDuino (tested with version 1.20) + CAN transciever and CAN connection (works with DJI Naza-M v1 and v2 with PMU, does not work with v1 Lite). I did not test in flight, all the tests were done on the ground. It converts data from Naza GPS/FC data into Mavlink and provides the following information via the MAVLink GPS_RAW_INT, ATTITUDE, VFR_HUD, SYS_STATUS and RC_CHANNELS_RAW messages: latitude longit

Arduino Cheat Sheet and Pinouts

Image
You can find all the cheat sheets and pinout here.sometimes it really works fine mainly the programming cheat sheets. You can also download the pdf files from here: Arduino-Cheat-Sheet-and-Pinouts

0.96 OLED Display With Arduino & Getting Text From Serial Monitor...

Image
0.96 OLED Display With Arduino & Getting Text From Serial Monitor... Now we start to work with 0.96' OLED Display with arduino and we will try to display text from the serial monitor input... In this tutorial i will show you how to connect and test and write some data from serial monitor to a 0.96" i2c OLED display module to an arduino. Parts: Breadboard and hookup wires Arduino The OLED i2c display The connections from the display: VCC to arduino 5v GND to arduino GND SCL to arduino pin A5 SDA to arduino pin A4 Both libraries below needs to be installed before you are able to continue with this instructable. https://github.com/adafruit/Adafruit_SSD1306 (SSD1306 library) https://github.com/adafruit/Adafruit-GFX-Library (GFX library) Step 2: Correction in Library N Code.. For Adafruit_SSD1306 Library: Go to: C:\Program Files (x86)\Arduino\libraries\Adafruit_SSD1306 Open Adafruit_SSD1306.h (in a text editor like Notepad++ for example

Adjustable Voltage Regulator 317T

Image
Adjustable Voltage Regulator 317T Parts List: 1) LM317T 2) 10uF 3) 0.1uF 4) 240 ohm 5) 50k variable resistor 6) Socket Tools : 1) Solder Iron 2) Solder Paste 3) Rojon Now put your LM317T on your breadboard pin 1 is adjustable voltage, pin 2 output voltage pin 3 is input voltage positive part of the 10uF capasitor should be connected with pin 1 and a 0.1uF capasitor will be connected with pin 3. The positive part of the 0.1uF capasitor should be connected with pin3. and rest of the pin of capasitor is ground. 220 ohm resistor is connected between ground and pin 2. Wiper pin of variable resistor should be connected to pin 1.

LM35 Temparature Sensor With Arduino

Image
LM35 Temparature Sensor With Arduino : Its quite an easy project...Lets Start It... Just connect the LM35 sensor to the arduino and run the code below... CODE : //TMP36 Pin Variables int sensorPin = 0; //the analog pin the TMP36's Vout (sense) pin is connected to //the resolution is 10 mV / degree centigrade with a //500 mV offset to allow for negative temperatures /* * setup() - this function runs once when you turn your Arduino on * We initialize the serial connection with the computer */ void setup() { Serial.begin(9600); } void loop() { int reading = analogRead(sensorPin); // converting that reading to voltage, for 3.3v arduino use 3.3 float voltage = reading * 5.0; voltage /= 1024.0; // print out the voltage Serial.print(voltage); Serial.println(" volts"); // now print out the temperature float temperatureC = (voltage - 0.5) * 100 ; Serial.print(temperatureC); Serial.println(" degrees C"); // now conve