Termination of portfolio website service

Latest update: 15-05-2024 The portfolio website service will be terminated per July 1 2024. This impacts these sites: Student sites hosted there are associated with the study programmes Industrial Design Engineering, Creative Technology and ATLAS. If you have an active website you might want to take steps to transfer it to a different hosting provider. … Continue reading Termination of portfolio website service

Uploaded website on Github pages

Deploying a website to Github pages

This tutorial will explain how to deploy a basic, html-based site (consisting of static pages) to Github pages. This tutorial assumes you already have some basic knowledge of how to create webpages and coding in HTML, CSS. If not, do this tutorial first. For this tutorial this template based on the W3.CSS framework from w3schools … Continue reading Deploying a website to Github pages

Resulting app

Learn Python: weather station app with live data 

Through this tutorial you become familiar with developing a Python application with a graphical userinterface. We will create an App which can display weather data from various weather stations. Data will come from an online xml service providing weather data. We are going to create an application that can display the temperature of several weather … Continue reading Learn Python: weather station app with live data 

UI of Python app drawing shapes

Learn Python: drawing shapes in a userinterface

Through this tutorial you become familiar with developing a Python application with a graphical userinterface. We will create an App which draws some basic shapes. The color of one or more of the shapes can be changed by entering a RGB color value (three numbers), for the color components red, green and blue. These numbers … Continue reading Learn Python: drawing shapes in a userinterface

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

Sensor with separate header pins

Using the VL53L1X Time-of-Flight Distance Sensor

This short tutorial introduces the VL53L1X Time-of-Flight (ToF ) distance sensor. For more tutorials on distance sensors, including various applications, look here. You can buy this sensor here. If you bought it like this: You will first have to solder the header pins. Connect the sensor Because the sensor uses I2C its wiring is simple: … Continue reading Using the VL53L1X Time-of-Flight Distance Sensor

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