#ifndef HECK_MAIN_ADC_HH
#define HECK_MAIN_ADC_HH

#include <functional>
#include "types.hh"

namespace Heck {
    namespace Constants {
        namespace Hardware {
            constexpr int PIN_BUTTON_1 = 28;
            constexpr int PIN_POT_1 = 15;
            constexpr int PIN_POT_2 = 16;
            constexpr int PIN_POT_3 = 15;
        }

        constexpr bool CPU_BOOST480MHZ = false;

        namespace Developer {
            constexpr bool LOG_BLOCKS_BOOT = false;
        }
    } // namespace Constants

    //Hardware
    extern ld::DaisySeed seed;
    //    extern ld::Switch but_rec;
} // namespace Heck

#endif