~ruther/CTU-FEE-B0B35APO-Semestral-project

ref: 4368d8a793ee41b2bf4cb85454f7917d20b69f16 CTU-FEE-B0B35APO-Semestral-project/lib-pheripherals/include/mzapo_pheripherals.h -rw-r--r-- 480 bytes
4368d8a7 — František Boháček fix: dependencies for platform switch 4 years ago
                                                                                
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
#ifndef __MZAPO_PHERIPHERALS_H__
#define __MZAPO_PHERIPHERALS_H__

#include "mzapo_led_strip.h"
#include "mzapo_parlcd.h"
#include "mzapo_phys.h"
#include "mzapo_rgb_led.h"
#include "display_utils.h"

#ifdef __cplusplus
extern "C" {
#endif

  mzapo_ledstrip_t mzapo_create_ledstrip();
  mzapo_rgb_led_t mzapo_create_rgb_led();
  display_t mzapo_create_display();

  void *mzapo_get_knobs_address();

#ifdef __cplusplus
} /* extern "C"*/
#endif

#endif // __MZAPO_PHERIPHERALS_H__