Control Surface main
MIDI Control Surface library for Arduino
Loading...
Searching...
No Matches
LCD.hpp File Reference
#include <AH/Debug/Debug.hpp>
#include <AH/Math/MinMaxFix.hpp>
#include <MIDI_Inputs/MIDIInputElement.hpp>
#include <string.h>
Include dependency graph for LCD.hpp:
This graph shows which files directly or indirectly include this file:

Go to the source code of this file.

Classes

class  LCDCounter
 Counts the number of instances of the LCD class. More...
class  LCD< BufferSize >
 A class that represents the Mackie Control Universal LCD display and saves the text it receives. More...

Namespaces

namespace  MCU

Functions

template<class T, class U>
constexpr auto max (const T &a, const U &b) -> decltype(a< b ? b :a)
 Return the larger of two numbers/objects.
template<class T, class U>
constexpr auto min (const T &a, const U &b) -> decltype(b< a ? b :a)
 Return the smaller of two numbers/objects.

Function Documentation

◆ max()

template<class T, class U>
auto max ( const T & a,
const U & b ) -> decltype(a< b ? b :a)
constexpr

Return the larger of two numbers/objects.

Definition at line 19 of file MinMaxFix.hpp.

◆ min()

template<class T, class U>
auto min ( const T & a,
const U & b ) -> decltype(b< a ? b :a)
constexpr

Return the smaller of two numbers/objects.

Definition at line 12 of file MinMaxFix.hpp.