Skip to content

Instantly share code, notes, and snippets.

View rajivmanivannan's full-sized avatar
👨‍💻
Remote

Rajiv Manivannan rajivmanivannan

👨‍💻
Remote
View GitHub Profile

Keybase proof

I hereby claim:

  • I am rajivmanivannan on github.
  • I am rajivmanivannan (https://keybase.io/rajivmanivannan) on keybase.
  • I have a public key ASCnmIkASJOxKeOwGAk5NDZBksiUdzlcQYjeRcyKlJdIAQo

To claim this, I am signing this object:

/// <summary>
/// Asynchronously performs a command on the resource with the specified <paramref name="uri" />.
/// </summary>
/// <param name="verb">The HTTP verb of the request.</param>
/// <param name="uri">The URI to get.</param>
/// <param name="body">The body.</param>
/// <param name="headers">Headers to set in the outgoing request.</param>
/// <param name="identity">The identity of the user.</param>
/// <param name="cancellationToken">The optional token to monitor for cancellation requests.</param>
/// <returns>A <see cref="Task{TResult}"/> whose result yields the resource of the specific <paramref name="uri"/>.</returns>
@rajivmanivannan
rajivmanivannan / automate_tello.go
Last active January 18, 2019 03:04
Go Program to automated the DJI Tello Drone using Gobot Framework
/*
To automated the DJI Tello Drone using Gobot Framework
*/
package main
import (
"fmt" // Formatted I/O
"io" // It provides basic interfaces to I/O primitives
"os/exec" // To run the external commands.
"strconv" // Package strconv implements conversions to and from string
@rajivmanivannan
rajivmanivannan / Tracker.ino
Created April 20, 2018 15:01
This code is to update the Geo-Coordinates every 10 minutes to the Particle cloud fetch from the GPS Module. If the GPS module is fail to give the fix. It will fall back to the Google Maps Device Locator and provide the Geo-Coordinates based on the cellar tower location.
//Particle core Library
#include "Particle.h"
//Google Maps Device Locator Library.
#include <google-maps-device-locator.h>
//AssetTracker Library
#include <AssetTracker.h>
//---------------------------------------------//
// Global objects
// Creating an AssetTracker object.