Saturday, December 25, 2021

How to Toggle RaspberryPi GPIO/LED from Web


 This video demonstrates how to Toggle RaspberryPi GPIO from Web Browser.

We use WebIOPi library to achieve this. steps by step to install WebIOPi Usage wget https://github.com/Freenove/WebIOPi/archive/master.zip -O WebIOPi.zip unzip WebIOPi.zip cd WebIOPi-master/WebIOPi-0.7.1 patch -p1 -i webiopi-pi2bplus.patch sudo ./setup.sh Start WebIOPi sudo webiopi -d -c /etc/webiopi/config For more details visit http://webiopi.trouch.com/ Tutorials on digital pin control http://webiopi.trouch.com/DIGITAL.html Tutorials on Analog interface http://webiopi.trouch.com/ANALOG.html Tutorials on interfacing sensors http://webiopi.trouch.com/SENSOR.html visit below for more https://WorldoMo.blogspot.com

Tuesday, December 21, 2021

How to setup/Install Windows 10/11 on Raspberry Pi

 



This video demonstrates how to setup/install Windows 10/11 on Raspberry Pi 3 or above Website to visit to download the necessary tools Windows 10/11 iso creator UUDUMP: http://fumacrom.com/3Hnpl ISO flashing tool WOR: http://fumacrom.com/3HnrH

Monday, December 20, 2021

How to remote desktop to Raspberry Pi from Windows


 


This video demonstrates how to configure and install remote desktop on Raspberry Pi and connect to Raspberry Pi from Windows using XRD Install XRDP by executing commands below sudo apt update sudo apt install xrdp

Tuesday, October 26, 2021

OpenCV based pedestrian detection

 


This video demonstrates how to perform pedestrian detection using OpenCV and python 

Packages needed to run this example 

OpenCV: 

pip install opencv-python 

Paho mqtt: 

pip install paho-mqt

Keyboard: 

pip install keyboard 

Numpy: 

pip install numpy 

 

Download the source code below http://fumacrom.com/2feUn

 

 

Friday, October 1, 2021

How to setup Torrent Download Server on your RaspberryPi or TinkerBoard


 


This video demonstrates how to setup Torrent Download Server on your RaspberryPi or TinkerBoard.


Install transmission daemon

sudo apt-get update && sudo apt-get install transmission-daemon


stop transmission daemon 

sudo systemctl stop transmission-daemon


Edit transmission settings as explained in the video

/etc/transmission-daemon/settings.json.


modify below settings in settings.json as per your requirements

    "rpc-password": "{51672671e9402abc55992da3ee7809f2c0662d10uLpcJwyX",

    "rpc-port": 9091,

    "rpc-url": "/transmission/",

    "rpc-username": "transmission",

    "rpc-whitelist": "127.0.0.1,192.168.1.40",

    "rpc-whitelist-enabled": true,


Add the ports to allowed list

sudo ufw allow 9091,51413/tcp


Start the transmission daemon

sudo systemctl start transmission-daemon


Go ahead the access the transmission web 

http://IP_ADDRESS_OF_YOUR_RASPBERRYPI:9091/transmission.


Please check below video on setting up DietPi OS for RasberryPi/TinkerBoard

https://youtu.be/h0BYm_THEU8

Friday, September 17, 2021

How to setup Pi-Hole AdBlocker on Raspberry Pi/TinkerBoard

 



This video demonstrates how to install and configure Pi-Hole, a DNS based AdBlocker directly on Raspberry PI/TinkerBoard running DietPi OS


Refer link below on How to setup minimal/lite DietPi OS

https://youtu.be/h0BYm_THEU8

Saturday, September 4, 2021

How To Setup DietPi for RaspberryPi/TinkerBoard

 




This Video demonstrates how to setup  DietPi on Raspberry Pi or TinkerBoard SBC.

Diet Pi offers installation on multiple SBC's

Download DietPi from link below http://fumacrom.com/223Mt

Friday, August 27, 2021

How to Run Windows XP on Raspberry Pi or TinkerBoard


This video demonstrates how to run Windows XP on Single board computers like RaspberryPi, TinkerBoard etc.
Follow commands below to boot the OS

qemu-img create -f qcow winxp.img 5G

qemu-system-i386 -m 1024 "winxp.img location" -cdrom "winxp.iso location" -boot d

replace "winxp.img location" and "winxp.iso location" with winxp.img and windows xp iso location on you pc and sbc

Tuesday, August 24, 2021

TinkerBoard:GPIO Toggle with Python




This video explains how to Toggle GPIO ane read from GPIO of Tinker Board with Python script

Setup the OS and install necesary python dev libraries as shown below

sudo apt-get update
sudo apt-get upgrade
sudo apt-get install python-smbus python-dev

git clone http://github.com/TinkerBoard/gpio_lib_python --depth 1 GPIO_API_for_Python

cd GPIO_API_for_Python/

sudo python setup.py install

source code can be downloaded at

http://fumacrom.com/1rwFy

Thursday, August 19, 2021

Yocto: Build Minimal Linux From Scratch For Asus Tinker Board

 

 


Build Minimal Linux For Asus Tinker Board using Yocto Build Tool Follow steps below to setup Yocto for Tinkerboard 

git clone git://git.yoctoproject.org/poky 

cd poky 

git clone git://git.yoctoproject.org/meta-rockchip 

git clone git://git.yoctoproject.org/meta-arm 

git clone https://git.openembedded.org/meta-openembedded 

 source oe-init-build-env 

Add below lines to bblayers.conf found at poky/build/conf 

/home/prajnith/Desktop/poky/meta-openembedded/meta-oe \ 

/home/prajnith/Desktop/poky/meta-rockchip \ 

 /home/prajnith/Desktop/poky/meta-arm/meta-arm \ 

 /home/prajnith/Desktop/poky/meta-arm/meta-arm-toolchain \ 

 

Add below lines to local.conf found at poky/build/conf 

MACHINE ??= "tinker-board" 

EXTRA_IMAGE_FEATURES ?= "debug-tweaks dbg-pkgs dev-pkgs package-management" 

CORE_IMAGE_EXTRA_INSTALL += "apt vim" 

execute below command to generate build 

bitbake core-image-minimal 

 cd build/tmp/deploy/images/tinker-board/ 

sudo dd bs=4M if=core-image-minimal-tinker-board-20210819045610.rootfs.wic of=/dev/sdX && sync 

replace /dev/sdX with your sd card partition number now you should have fully bootable linux 

 

Music: New Horizons Musician: Rafael Krux 

URL: https://filmmusic.io/song/5458-new-horizons- 

License: https://filmmusic.io/standard-license

Sunday, August 8, 2021

Raspberry Pi Video Streaming Server





This video explains how to setup Raspberry Pi as Video streaming server using simple configuration and OBS studio

Steps to follow

sudo apt update
sudo apt upgrade

install Nginx web server:

sudo apt install nginx

Install RTMP module so Nginx can handle media stream:

sudo add-apt-repository universe
sudo apt install libnginx-mod-rtmp

Modify Nginx’s configuration so that it can support media stream.

sudo nano /etc/nginx/nginx.conf

Add the following code to the bottom of the config file:

rtmp {
        server {
                listen 1935;
                chunk_size 4096;

                application live {
                        live on;
                        record off;
                }
        }
}

Save the config file as shown in the video

Restart Nginx with this new configuration:

sudo systemctl restart nginx

Music: Paradise
Musician: @iksonmusic

Tuesday, August 3, 2021

Interfacing LCD and Camera with Raspberry PI and Perform Face Detection


This video demonstrates how to Interfacing LCD and Camera with Raspberry PI and Perform Face Detection using OpenCV and Python

Download LCD-Show below
http://fumacrom.com/1rwYb

Download Face Detection Python script below
http://fumacrom.com/1rwWl

Install OpenCV and numpy in Python using command below (pip for old python and pip3 for python3 )

pip install opencv-python
                    OR
pip3 install opencv-python

pip install numpy --upgrade
                     OR
pip3 install numpy --upgrade

Mine crypto on your android phone without draining your battery from link below
https://cryptotabbrowser.com/23696808

For more details on mining cypto refer link below
https://youtu.be/7y5US3Y90Fc

Tuesday, July 20, 2021

Network Attached (Addressable) Storage (NAS) On Raspberry PI


 

This video demonstrates How to get setup your Raspberry PI as NAS with simple steps

Get Raspberry Pi @ https://amzn.to/3kzJx6A

Commands to execute sudo apt update sudo apt upgrade wget -O - https://raw.githubusercontent.com/OpenMediaVault-Plugin-Developers/installScript/master/install | sudo bash RPI imager download https://downloads.raspberrypi.org/imager/imager_latest.exe https://downloads.raspberrypi.org/imager/imager_latest_amd64.deb https://downloads.raspberrypi.org/imager/imager_latest.dmg


Monday, July 19, 2021

Advanced Crypto Mining From Your Android Phone



This video demonstrates how to mine crypto currency directly from your Android phone.

Follow steps below to get started (paste commands accordingly)

sudo apt-get install git build-essential cmake automake libtool autoconf libuv1-dev libssl-dev libhwloc-dev wget

git clone https://github.com/xmrig/xmrig

mkdir xmrig/build && cd xmrig/scripts

./build_deps.sh && cd ../build

cmake .. -DXMRIG_DEPS=scripts/deps

make -j$(nproc)

sudo ./xmrig -o stratum+tcp://xmr.
pool.minergate.com:45700 -u worldomo@gmail.com --coin monero

Mine Crypto using browser (Android or PC)
https://youtu.be/7y5US3Y90Fc

Download Crypto Tab browser on your PC or phone to mine Bitcoin, use link below

https://cryptotabbrowser.com/23696808

Music: Another time
Musician: LiQWYD

Sunday, July 4, 2021

Crypto Mining from phone


Why use a power hungry PC when you can mine Crypto currency from Phone, you can achieve this with CryptoTab Pro mobile app using cloud Mining.

Download from link below https://cryptotabbrowser.com/23696808 Music: Another time Musician: LiQWYD

Sunday, June 27, 2021

Getting started with Teensy Board

 






The video gets you started with Teensy Board 4.0 on Arduino IDE

About Teensy -> https://www.pjrc.com/teensy/index.html
Download Teensyduino from https://www.pjrc.com/teensy/td_download.html
Teensy 4.0 PIN out https://www.pjrc.com/store/teensy40.html
Older release of Arduino
https://www.arduino.cc/en/main/OldSoftwareReleases

Key Aspects For Microcontroller Selection


 

This Video explains four key aspects to consider during microcontroller selection process

  1. GPIO availability
  2. Evaluation Board
  3. IDE/SDK
  4. Technical support

Watch the video for more details.

Thank You :)

Buildroot basics with RaspberryPI II

 



Create Linux image from scratch for RaspberryPi using Buildroot. To build images for other Raspberry PI model follow the link below https://github.com/buildroot/buildroot/blob/8d07baab43b5624ad6d73ee58f5a9d4ab8b27049/board/raspberrypi/readme.txt This entire video was edited using InShot video editor for android, refer link below to download the app (Not sponsored) https://play.google.com/store/apps/details?id=com.camerasideas.instashot&hl=en_IN&gl=US

Get Raspberry pi @ Amazon

How to add Wireless capability to legacy printers using Raspberry Pi

  This video tutorial demonstrates how to easily add wireless print capablity to your wired legacy printers using your Raspberry Pi. We hav...