Wednesday, 21 November 2018

PIP - How to install PIP in Python

PIP and Python

Hi All,

PIP is a recursive Acronym PIP Installs Packages.
This is used to install Python packages.

We can download the pip.py from internet and run to configure the same.
Once installation is done we can install packages in Python using pip.

Eg

pip install packagename

Wednesday, 18 July 2018

PIR Sensor

Hi All,

Using this PIR sensor we can sense the presence of Human beings.

Use these resources for PIR Sensor.

Video : for Connection

https://www.youtube.com/watch?v=YFjEXt5oBYE
[Search for 'How To Connect PIR Motion Detector Sensor [Arduino Tutorial] ']

Code : for execution

http://playground.arduino.cc/Code/PIRsense



Saturday, 21 April 2018

Simple Python Program

Hi All,

See some simple programs in Python.

#Program 1
# To Add 2 numbers

num1 = 1.2
num2 = 3.3
# Add numbers
result= float(num1) + float(num2)
# Display the result
print('The sum of {0} and {1} is {2}'.format(num1, num2, result))