Skip to content

Instantly share code, notes, and snippets.

View jeevan-git's full-sized avatar

Jeevan Shrestha jeevan-git

View GitHub Profile

Create a repo. Make sure there is at least one file in it (even just the README) Generate ssh key:

ssh-keygen -t rsa -C "your_email@example.com"

Copy the contents of the file ~/.ssh/id_rsa.pub to your SSH keys in your GitHub account settings. Test SSH key:

ssh -T git@github.com
@jeevan-git
jeevan-git / one_channel_receiver.ino
Created August 5, 2021 03:02 — forked from ShawnHymel/one_channel_receiver.ino
One Channel RC Hobby Receiver
/**
* One Channel Receiver
* Author: Shawn Hymel (SparkFun Electronics)
* Date: Aug 17, 2017
*
* Connect a TB6612FNG and RC (PWM) receiver to the Arduino.
* Only works 1 channel for forward and back drive.
*
* This code is beerware; if you see me (or any other SparkFun
* employee) at the local, and you've found our code helpful,
@jeevan-git
jeevan-git / two_channel_receiver.ino
Created August 5, 2021 03:02 — forked from ShawnHymel/two_channel_receiver.ino
Mixing 2 channels from an RC hobby controller for arcade drive
/**
* Two Channel Receiver
* Author: Shawn Hymel (SparkFun Electronics)
* Date: Aug 24, 2017
*
* Connect a TB6612FNG and RC (PWM) receiver to the Arduino.
* Mixes two channels for arcade drive.
*
* This code is beerware; if you see me (or any other SparkFun
* employee) at the local, and you've found our code helpful,