Skip to content

Instantly share code, notes, and snippets.

View rnagarajanmca's full-sized avatar

Nagarajan rnagarajanmca

View GitHub Profile
@rnagarajanmca
rnagarajanmca / opencv_guide.md
Created August 4, 2017 13:26
Open CV Reference

Install OpenCV under windows environment

  • Install anaconda
  • Create anaconda environment
  • Use conda install -c menpo opencv3 to install opencv
@rnagarajanmca
rnagarajanmca / emulate_rpi_on_windows.md
Last active March 24, 2024 14:34
Raspberry pi emulator for windows

Emulate Raspberry pi on windows

Following files required to emulate raspberry pi on windows

  • QEMU Emulator
  • Raspberry pi kernel
  • Raspberry pi OS image

QEMU emulator

  • QEMU is an emulator

Preparing RPi to connect with AWS IoT

Follow the steps to setup RPi as AWS IoT thing Do a Raspbian update by using following command

>sudo apt-get update
>sudo apt-get upgrade

Minimum Requirements

@rnagarajanmca
rnagarajanmca / aws_cli_iot.md
Last active May 22, 2019 18:27
Instructions to use AWS IoT through CLI
Create a Thing
>aws iot create-thing --thing-name Thing1
 {
    "thingArn": "arn:aws:iot:us-west-2:747839..:thing/Thing1",
    "thingName": "Thing1"
}
List all Things
Install AWS CLI using following command
>pip install awscli
Integrated shell for AWS CLI, Can be used for tab completion, Command suggestions
>pip install aws-shell