Non puoi selezionare più di 25 argomenti Gli argomenti devono iniziare con una lettera o un numero, possono includere trattini ('-') e possono essere lunghi fino a 35 caratteri.
 
 
 
 

22 righe
308 B

  1. /*
  2. * File: DACInterface.h
  3. * Author: JF
  4. *
  5. * Created on February 15, 2025, 12:14 PM
  6. */
  7. #ifndef DACINTERFACE_H
  8. #define DACINTERFACE_H
  9. enum eDACInterfaceChannel
  10. {
  11. BUREAU_DAC_CHANNEL,
  12. CUISINE_DAC_CHANNEL
  13. };
  14. void DACInit();
  15. int DACSetValue(int Channel, int Value);
  16. #endif /* DACINTERFACE_H */