End Presentation


TWiki Slide Show
Next
Introduction to Internet of Things (IoT)

Session 1: Introduction to IoT and Python

Isaac Armah-Mensah

University of Cape Coast, Ghana

First slide Previous Next Last slide
COPYRIGHT © 2024 by the contributing authors
Slide 1 of 14





















TWiki Slide Show
Next
Introduction of Lecturers
  1. Uli Raich -- Formally CERN, Geneva, Switzerland
  2. Isaac Armah-Mensah -- University of Cape Coast Ghana

First slide Previous Next Last slide
COPYRIGHT © 2024 by the contributing authors
Slide 2 of 14





















TWiki Slide Show
Next
The TWiki server
All information about this tutorial is available on a TWiki server.

TWiki uses the same documentation format as Wikipedia.

This makes it very simple for the lecturer to provide on-line documentation,

which can be extended by students.

This is our Twiki server:

https://afnog.iotworkshop.africa/do/view

Other pages for class resources

Micropython Demos:

https://github.com/uraich/MicroPython_IoTDemos and
https://github.com/uraich/MicropythonCayenneMQTTClient

C++ version:
https://github.com/uraich/C-IoTDemos

First slide Previous Next Last slide
COPYRIGHT © 2024 by the contributing authors
Slide 3 of 14





















TWiki Slide Show
Next
Workshop Page
workshop.png

First slide Previous Next Last slide
COPYRIGHT © 2024 by the contributing authors
Slide 4 of 14





















TWiki Slide Show
Next
The Internet of Things (IoT)
When the Internet was invented it was used for communications between humans

Typical applications where:

  • Email

  • Remote login

  • File transfers

With cheaper and more powerful micro-controllers devices can communicate with each other

or with centralized servers over the network and they can observe their environment

with dedicated sensors.

This is what we call the Internet of Things (IoT)

First slide Previous Next Last slide
COPYRIGHT © 2024 by the contributing authors
Slide 5 of 14





















TWiki Slide Show
Next
Introduction to Python
The python programming language is a high level programming language that is very interactive and object oriented.

Python is an interpreted language which means that the statements which make up the python program is processed at run-time but not compiled first.

Python also supports object oriented programming style which employs the use of encapsulating codes within objects.

What can python be used for?

  • Used to create web applications.

  • Used to connect to database systems.

  • It can be used to perform complex mathematics

  • It can be used in data analysis.

If you want to learn Python, Try the Python tutorial!

For Python beginners: https://docs.python.org/3/tutorial/index.html

and for everybody the Python docs: https://docs.python.org/3/index.html

First slide Previous Next Last slide
COPYRIGHT © 2024 by the contributing authors
Slide 6 of 14





















TWiki Slide Show
Next
Writing Python Programs
Python is a programming language that lets you work more quickly and integrate your systems more effectively.
  • Python is powerful... and fast;

  • plays well with others;

  • runs everywhere;

  • is friendly & easy to learn;

  • is Open.

Python programs can either be written using any standard editor like nano, emacs as a script or can be written from the python command line.

First slide Previous Next Last slide
COPYRIGHT © 2024 by the contributing authors
Slide 7 of 14





















TWiki Slide Show
Next
Using the Command Line (Interactive mode)
Simply type python in your terminal and press the enter key to start the interactive python mode.

Type print(“Hello world”). Hit enter and it prints Hello world on the screen.

commandline.png

To exit from the interactive mode, type quit().

First slide Previous Next Last slide
COPYRIGHT © 2024 by the contributing authors
Slide 8 of 14





















TWiki Slide Show
Next
Using the script mode
Using the interactive mode doesn’t keep the statements of code we wrote permanently .

But in an ideal situation we might want to keep the codes for future reference.

Hence we make use of an editor like the nano, emacs, etc.

helloworld.png

helloworld2.png

First slide Previous Next Last slide
COPYRIGHT © 2024 by the contributing authors
Slide 9 of 14





















TWiki Slide Show
Next
Using Idle
Instead of running a standard editor like nano or emacs you may want to run

an Integrated Development Environment (IDE) created specifically for Python instead.

Lets try idle

idle.png

First slide Previous Next Last slide
COPYRIGHT © 2024 by the contributing authors
Slide 10 of 14





















TWiki Slide Show
Next
Idle Python Shell and Editor
Here you see the 2 idle windows.

The top one contains the editor, the second the Python shell

idlescript.png

idleshell.png

First slide Previous Next Last slide
COPYRIGHT © 2024 by the contributing authors
Slide 11 of 14





















TWiki Slide Show
Next
Running the Program
Script in python can be run from the Linux command shell with:

python3 scriptName

or we can make it executable and run it like we would run

any compiled C program or any bash script:

runpython.png

First slide Previous Next Last slide
COPYRIGHT © 2024 by the contributing authors
Slide 12 of 14





















TWiki Slide Show
Next
Command Line Arguments
Programs can be called with arguments.

Python has a module that helps users parse command-line options and arguments.

Many programs can be run to provide basic information about how they
should be run and it employs the use of command line arguments.

The Python sys module provides access to any command-line arguments via the sys.argv .

argscript.png

runcmdlineArg.png

First slide Previous Next Last slide
COPYRIGHT © 2024 by the contributing authors
Slide 13 of 14





















TWiki Slide Show
Next
Variables
Variables are just memory allocations for storing values.

Every variable created has a space in memory allocated for it.

Based on the data type of a variable, the interpreter allocates memory and
decides what can be stored in the reserved memory.

Python variables do not need explicit declaration to reserve memory space.

The declaration happens automatically when you assign a value to a variable.

The equal sign (=) is used to assign values to variables.

The operand to the left of the = operator is the name of the variable and
the operand to the right of the = operator is the value stored in the variable.

variable.png

First slide Previous Next Last slide
COPYRIGHT © 2024 by the contributing authors
Slide 14 of 14





















First slide Previous End Presentation






























-- Isaac Armah-Mensah - 2019-05-30

Comments

I Attachment History Action Size Date Who Comment
PNGpng argscript.png r1 manage 29.7 K 2019-06-09 - 03:30 IsaacArmahMensah  
PNGpng commandline.png r2 r1 manage 61.2 K 2019-06-09 - 02:44 IsaacArmahMensah  
PNGpng commandlinearg.png r1 manage 15.5 K 2019-06-09 - 03:21 IsaacArmahMensah  
PNGpng helloworld.png r2 r1 manage 5.8 K 2019-06-09 - 02:24 IsaacArmahMensah  
PNGpng helloworld2.png r2 r1 manage 22.0 K 2019-06-09 - 02:25 IsaacArmahMensah  
PNGpng idle.png r1 manage 105.5 K 2019-06-09 - 02:57 IsaacArmahMensah  
PNGpng idlescript.png r1 manage 39.8 K 2019-06-09 - 03:03 IsaacArmahMensah  
PNGpng idleshell.png r1 manage 33.7 K 2019-06-09 - 03:03 IsaacArmahMensah  
PNGpng runcmdlineArg.png r1 manage 26.0 K 2019-06-09 - 03:30 IsaacArmahMensah  
PNGpng runpython.png r1 manage 102.6 K 2019-06-09 - 03:14 IsaacArmahMensah  
PNGpng variable.png r2 r1 manage 256.8 K 2019-06-09 - 11:49 IsaacArmahMensah  
PNGpng workshop.png r1 manage 250.4 K 2019-05-30 - 06:02 IsaacArmahMensah  

This topic: AFNOG > WebHome > AFNOGWorkshop2019 > AFNOG-2019Slides > WorkshopSlides > IntroductionToNopIoTAndPython
Topic revision: r3 - 2019-06-09 - IsaacArmahMensah
This site is powered by the TWiki collaboration platform Powered by PerlCopyright © 2008-2024 by the contributing authors. All material on this collaboration platform is the property of the contributing authors.
Ideas, requests, problems regarding TWiki? Send feedback