Tag Archives: start

Java tutorial: weather station app with live data 

We are going to create an application that can display the temperature of several weather stations in the Netherlands, as well as the average temperature of those weather stations. This tutorial can also be done in Python. You are given a WeatherStation class for reading the data. This class can read data from an online XML file. … Continue reading Java tutorial: weather station app with live data 

Java tutorial: create an application that can draw a simple shape

This tutorial can also be done in Python: the tutorial for that you can find here. This tutorial is part of a series. Make sure to start with the first, eg. if you have not setup Eclipse and your Java environment yet. We are going to create an application that can draw a simple shape. This … Continue reading Java tutorial: create an application that can draw a simple shape

Getting started with Java: Hello World

Important notes before you start: This tutorial helps you to become familiar with the Eclipse development environment. It is a programming environment that is also used by professional software developers and offers many possibilities. Therefore, it looks complicated at first, but you will find that it is indeed user-friendly. By doing the first tutorials you … Continue reading Getting started with Java: Hello World

Getting started with coding Python and setup your editor

This tutorial will introduce you to coding in Python, setup your editor and get started with some basic examples. First, you need an editor that helps you to write code in Python. Two options for editors addressed here are: Thonny is an editor specifically for Python programming, and focusses on beginners. Visual Studio Code is … Continue reading Getting started with coding Python and setup your editor

Breadboard with temperature sensor, display and Raspberry Pi Pico

Tutorial: build a connected temperature sensor with a Raspberry Pi Pico W

In this tutorial you learn to build a temperature sensor and connect it via Bluetooth with an App. It uses a DHT11 temperature & humidity sensor and Bluetooth communication with your phone. For this we will use a Raspberry Pi Pico W, the Wireless edition of the Pico. It consists of the following steps: This … Continue reading Tutorial: build a connected temperature sensor with a Raspberry Pi Pico W

Tutorial: build a distance sensor with a Raspberry Pi Pico and CircuitPython

In a previous tutorial “build a distance sensor with an alarm” we used an Arduino Nano (coded in a C-variant). Now, we will do the same with a Raspberry Pi Pico and CircuitPython, a version of Python which runs on microcontrollers. If you are more interested in programming the Pico with the Arduino IDE (in … Continue reading Tutorial: build a distance sensor with a Raspberry Pi Pico and CircuitPython

Learn Python: a first “Hello world” userinterface

Through this assignment you become familiar with developing a Python application. We wil create an App in which you can input text and then show that text as part of a message in the App. Python is renowned for its readability and simplicity. Its syntax facilitates concise code, making it suitable for both beginners and … Continue reading Learn Python: a first “Hello world” userinterface

Learn Java basics with a simple calculator

In this tutorial, we will create a simple text-based calculator. It’s meant to practice basic Java syntax, like println(), if- and basic arithmetic. The resulting calculator can only do the 4 basic operations and it does not recognize fractions. It is advised to first go over a basic tutorial like on w3schools.com/java before attempting this … Continue reading Learn Java basics with a simple calculator

Tutorial: build a connected temperature sensor

Introduction to Arduino and programming . Practicals which use this tutorial have an introductory presentation (pdf). We will build a temperature sensor in this tutorial and connect it with an App. It uses an DHT11 temperature & humidity sensor and Bluetooth communication with a phone. We use a BLE-Nano here, but you can also use a regular Arduino … Continue reading Tutorial: build a connected temperature sensor