libDaisy
Hardware Library for Daisy
Loading...
Searching...
No Matches
codec_ak4556.h
Go to the documentation of this file.
1#pragma once
2#ifndef DSY_CODEC_AK4556_H
3#define DSY_CODEC_AK4556_H
4
5#include "daisy_core.h"
6#include "per/gpio.h"
7
8namespace daisy
9{
17class Ak4556
18{
19 public:
20 Ak4556() {}
22
25 void Init(Pin reset_pin);
26
29 void DeInit();
30
31 private:
32 GPIO reset_;
33};
34} // namespace daisy
35
36#endif
Definition codec_ak4556.h:18
void Init(Pin reset_pin)
Ak4556()
Definition codec_ak4556.h:20
~Ak4556()
Definition codec_ak4556.h:21
General Purpose I/O control.
Definition gpio.h:22
Hardware defines and helpers for daisy field platform.
Definition index.h:2
representation of hardware port/pin combination
Definition daisy_core.h:193