/* * Copyright (c) 2025 Hochschule Darmstadt * * This software is provided exclusively for the practical part of the * course 'Embedded Systems' at 'Darmstadt University of Applied Sciences * (Hochschule Darmstadt, h_da)'. * * Any use, distribution, or modification outside this context is prohibited * without explicit permission. * * AUTHORS: David Heiß, Manfred Pester, Jens-Peter Akelbein * FILE: matrix.h * CONTENTS: declaration driving I2C led matrix */ #pragma once // initialization steps for led matrix void matrix_init(void); // loop for regular tasks for led matrix void matrix_loop(void);