10 KiB
Virtual single-board computer
Instead of purchasing an IoT device, along with sensors and actuators, you can use your computer to simulate IoT hardware. The CounterFit project allows you to run an app locally that simulates IoT hardware such as sensors and actuators, and access the sensors and actuators from local Python code that is written in the same way as the code you would write on a Raspberry Pi using physical hardware.
Setup
To use CounterFit, you will need to install some free software on your computer.
Task
Install the required software.
-
Install Python. Refer to the Python downloads page for instructions on install the latest version of Python.
-
Install Visual Studio Code (VS Code). This is the editor you will be using to write your virtual device code in Python. Refer to the VS Code documentation for instructions on installing VS Code.
💁 You are free to use any Python IDE or editor for these lessons if you have a preferred tool, but the lessons will give instructions based off using VS Code.
-
Install the VS Code Pylance extension. This is an extension for VS Code that provides Python language support. Refer to the Pylance extension documentation for instructions on installing this extension in VS Code.
The instructions to install and configure the CounterFit app will be given at the relevant time in the assignment instructions as it is installed on a per-project basis.
Hello world
It is traditional when starting out with a new programming language or technology to create a 'Hello World' application - a small application that outputs something like the text "Hello World"
to show that all the tools are correctly configured.
The Hello World app for the virtual IoT hardware will ensure that you have Python and Visual Studio code installed correctly. It will also connect to CounterFit for the virtual IoT sensors and actuators. It won't use any hardware, it will just connect to prove everything is working.
This app will be in a folder called nightlight
, and it will be re-used with different code in later parts of this assignment to build the nightlight application.
Configure a Python virtual environment
One of the powerful features of Python is the ability to install pip packages - these are packages of code written by other people and published to the Internet. You can install a pip package onto your computer with one command, then use that package in your code. You'll be using pip to install a package to talk to CounterFit.
By default when you install a package it is available everywhere on your computer, and this can lead to problems with package versions - such as one application depending on one version of a package that breaks when you install a new version for a different application. To work around this problem, you can use a Python virtual environment, essentially a copy of Python in a dedicated folder, and when you install pip packages they get installed just to that folder.
Task - configure a Python virtual environment
Configure a Python virtual environment and install the pip packages for CounterFit.
-
From your terminal or command line, run the following at a location of your choice to create and navigate to a new directory:
mkdir nightlight cd nightlight
-
Now run the following to create a virtual environment in the
.venv
folderpython3 -m venv .venv
💁 You need to explicitly call
python3
to create the virtual environment just in case you have Python 2 installed in addition to Python 3 (the latest version). If you have Python2 installed then callingpython
will use Python 2 instead of Python 3 -
Activate the virtual environment:
-
On Windows run:
.venv\Scripts\activate.bat
-
On macOS or Linux, run:
source ./.venv/bin/activate
-
-
Once the virtual environment has been activated, the default
python
command will run the version of Python that was used to create the virtual environment. Run the following to get the version:python --version
The output should contain the following:
(.venv) ➜ nightlight python --version Python 3.9.1
💁 Your Python version may be different - as long as it's version 3.6 or higher you are good. If not, delete this folder, install a newer version of Python and try again.
-
Run the following commands to install the pip packages for CounterFit. These packages include the main CounterFit app as well as shims for Grove hardware. These shims allow you to write code as if you were programming using physical sensors and actuators from the Grove ecosystem but connected to virtual IoT devices.
pip install CounterFit pip install counterfit-connection pip install counterfit-shims-grove
These pip packages will only be installed in the virtual environment, and will not be available outside of this.
Write the code
Once the Python virtual environment is ready, you can write the code for the 'Hello World' application
Task - write the code
Create a Python application to print "Hello World"
to the console.
-
From your terminal or command line, run the following inside the virtual environment to create a Python file called
app.py
:-
From Windows run:
type nul > app.py
-
On macOS or Linux, run:
touch app.py
-
-
Open the current folder in VS Code:
code .
💁 If your terminal returns
command not found
on macOS it means VS Code has not been added to your PATH. You can add VS Code to your PATH by following the instructions in the Launching from the command line section of the VS Code documentation and run the command afterwards. VS Code is installed to your PATH by default on Windows and Linux. -
When VS Code launches, it will activate the Python virtual environment. The selected virtual environment will appear in the bottom status bar:
-
If the VS Code Terminal is already running when VS Code starts up, it won't have the virtual environment activated in it. The easiest thing to do is kill the terminal using the Kill the active terminal instance button:
You can tell if the terminal has the virtual environment activated as the name of the virtual environment will be a prefix on the terminal prompt. For example, it might be:
(.venv) ➜ nightlight
If you don't have
.venv
as a prefix on the prompt, the virtual environment is not active in the terminal. -
Launch a new VS Code Terminal by selecting *Terminal -> New Terminal, or pressing
CTRL+`
. The new terminal will load the virtual environment, and the the call to activate this will appear in the terminal. The prompt will also have the name of the virtual environment (.venv
):➜ nightlight source .venv/bin/activate (.venv) ➜ nightlight
-
Open the
app.py
file from the VS Code explorer and add the following code:print('Hello World!')
The
print
function prints whatever is passed to it to the console. -
From the VS Code terminal, run the following to run your Python app:
python app.py
The following will be in the output:
(.venv) ➜ nightlight python app.py Hello World!
😀 Your 'Hello World' program was a success!
Connect the 'hardware'
As a second 'Hello World' step, you will run the CounterFit app and connect your code to it. This is the virtual equivalent of plugging in some IoT hardware to a dev kit.
Task - connect the 'hardware'
-
From the VS Code terminal, launch the CounterFit app with the following command:
CounterFit
The app will start running and open in your web browser:
It will be marked as Disconnected, with the LED in the top-right corner turned off.
-
Add the following code to the top of
app.py
:from counterfit_connection import CounterFitConnection CounterFitConnection.init('127.0.0.1', 5000)
This code imports the
CounterFitConnection
class from thecounterfit_connection
module, which comes from thecounterfit-connection
pip package you installed earlier. It then initializes a connection to the CounterFit app running on127.0.0.1
, which is an IP address you can always use to access your local computer (often referred to as localhost), on port 5000.💁 If you have other apps running on port 5000, you can change this by updating the port in the code, and running CounterFit using
CounterFit --port <port_number>
, replacing<port_number>
with the port you want to use. -
You will need to launch a new VS Code terminal by selecting the Create a new integrated terminal button. This is because the CounterFit app is running in the current terminal.
-
In this new terminal, run the
app.py
file as before. The status of CounterFit will change to Connected and the LED will light up.
💁 You can find this code in the code/virtual-device folder.
😀 Your connection to the hardware was a success!