Files

copied
Last update 6 years 1 month by Olivier Gillet
Fileselementsdrivers
..
codec.cc
codec.h
cv_adc.cc
cv_adc.h
debug_pin.h
debug_port.cc
debug_port.h
gate_input.cc
gate_input.h
leds.cc
leds.h
pots_adc.cc
pots_adc.h
switch.cc
switch.h
system.cc
system.h
pots_adc.h
// Copyright 2014 Olivier Gillet. // // Author: Olivier Gillet (ol.gillet@gmail.com) // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal // in the Software without restriction, including without limitation the rights // to use, copy, modify, merge, publish, distribute, sublicense, and/or sell // copies of the Software, and to permit persons to whom the Software is // furnished to do so, subject to the following conditions: // // The above copyright notice and this permission notice shall be included in // all copies or substantial portions of the Software. // // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR // IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, // FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE // AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER // LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, // OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN // THE SOFTWARE. // // See http://creativecommons.org/licenses/MIT/ for more information. // // ----------------------------------------------------------------------------- // // Driver for ADC2 - used for scanning pots. #ifndef ELEMENTS_DRIVERS_POTS_ADC_H_ #define ELEMENTS_DRIVERS_POTS_ADC_H_ #include "stmlib/stmlib.h" namespace elements { enum Potentiometer { POT_EXCITER_ENVELOPE_SHAPE, POT_EXCITER_BOW_LEVEL, POT_EXCITER_BOW_TIMBRE, POT_EXCITER_BOW_TIMBRE_ATTENUVERTER, POT_EXCITER_BLOW_LEVEL, POT_EXCITER_BLOW_META, POT_EXCITER_BLOW_META_ATTENUVERTER, POT_EXCITER_BLOW_TIMBRE, POT_EXCITER_BLOW_TIMBRE_ATTENUVERTER, POT_EXCITER_STRIKE_LEVEL, POT_EXCITER_STRIKE_META, POT_EXCITER_STRIKE_META_ATTENUVERTER, POT_EXCITER_STRIKE_TIMBRE, POT_EXCITER_STRIKE_TIMBRE_ATTENUVERTER, POT_RESONATOR_COARSE, POT_RESONATOR_FINE, POT_RESONATOR_FM_ATTENUVERTER, POT_RESONATOR_GEOMETRY, POT_RESONATOR_GEOMETRY_ATTENUVERTER, POT_RESONATOR_BRIGHTNESS, POT_RESONATOR_BRIGHTNESS_ATTENUVERTER, POT_RESONATOR_DAMPING, POT_RESONATOR_DAMPING_ATTENUVERTER, POT_RESONATOR_POSITION, POT_RESONATOR_POSITION_ATTENUVERTER, POT_SPACE, POT_SPACE_ATTENUVERTER, POT_LAST }; class PotsAdc { public: PotsAdc() { } ~PotsAdc() { } void Init(); void DeInit(); void Scan(); inline uint8_t last_read() const { return last_read_; } inline uint16_t value(uint8_t index) const { return values_[index]; } private: static uint8_t addresses_[POT_LAST]; uint8_t index_; uint8_t last_read_; uint16_t values_[POT_LAST]; bool state_; DISALLOW_COPY_AND_ASSIGN(PotsAdc); }; } // namespace elements #endif // ELEMENTS_DRIVERS_POTS_ADC_H_
Report a bug