Posts

Showing posts from 2019

Virtual Box Settings

Image
Virtual Box Settings These are the usual settings I change from default. 1 General     Shared Clipboard and Drag n Drop set to Bidirectional to allow Copy and Paste from Host to VM and vice versa. 2 System     Motherboard: As I have 32 GB Ram, I have increased the Base memory to 8 GB     Processor: You can increase the number of CPU's to increase performance depending on your host's capacity.         Acceleration:      3. Display:  To get better graphics rendering. (Eg. Age of empires game performance might improve) 4. Audio 5. Network

Raspberry pi commands

Image
Raspberry pi commands For the initial use, connect the pi to the monitor using HDMI cable. You can configure WiFi/LAN connections so that, you can login remotely into it later. Default credentials to log into Pi are Username: pi Password: raspberry To find the available networks, you can use the following command which will give you a list of SSID's (network names) sudo iwlist wlan0 scan sudo nano /etc/wpa_supplicant/wpa_supplicant.conf network={ ssid="testing" psk="testingPassword" } Once the wifi is configured, you can login remotely from other devices. While in the same network, you can use the following command ssh username@pi-ipaddress ssh pi@192.168.x.x Alternatively, instead of finding out Pi ipaddress everytime you connect, you can add the following details to your.. Host pycam user pi Hostname pycam.local port 22 ServerAliveInterval 5 ServerAliveCountMax 10 sd

iot and Robotics

Image
My journey with iot and robotics (In Progress...) I have been working in the data warehousing and Big data domain from quite a while and I did not get a chance to explore one of my childhood fantasy until, I went to my friend - Uday's home in Bengaluru to visit him. He introduced me to the world of IOT. I was awestruck when I saw a small pot lying on his desk and some electronics attached to it. When asked, he started explaining me that it was a humidity sensor and he would know from his office if some one watered the plant at home. That was fascinating. There was a weighing machine in his home which displays the weight on his computer and he records the time and weight information so that, he can analyze the information later. That was neat, as he do not have do a thing other than standing on the weighing scale. I have got some inspiration from him but, I do not have any knowledge in electronics.  1 Temperature and humidity sensor using NodeMCU init.lua function...