18 lines
284 B
C++
18 lines
284 B
C++
/*
|
|
* ElektronischeLast.hpp
|
|
*
|
|
* Created on: Jun 8, 2024
|
|
* Author: Carst
|
|
*/
|
|
|
|
#ifndef ELEKTRONISCHELAST_HPP_
|
|
#define ELEKTRONISCHELAST_HPP_
|
|
|
|
#include <cstdint>
|
|
|
|
void set_new_sollstrom(uint32_t soll);
|
|
uint32_t get_current_sollstrom(void);
|
|
|
|
|
|
#endif /* ELEKTRONISCHELAST_HPP_ */
|