// simple project using Arduino LEONARDO, potentiometer and 10 LEDs to control computer volume
// created by upir, 2022
// youtube channel: https://www.youtube.com/upir_upir

// FULL TUTORIAL: https://youtu.be/6cqvTHCuDto

// Arduino Leonardo - https://s.click.aliexpress.com/e/_DDhZNN9
// Arduino UNO - https://s.click.aliexpress.com/e/_AXDw1h
// Arduino breadboard prototyping shield - https://s.click.aliexpress.com/e/_ApbCwx
// Huge Aluminium Knob: https://s.click.aliexpress.com/e/_A4GlET
// Big Black knob: https://s.click.aliexpress.com/e/_Aq1wGF

// PCBWay - https://www.pcbway.com/setinvite.aspx?inviteid=572577
// Use the link for PCBway to get 10 PCBs created for free (0$). Only pay for shipping.



//byte led_pins[10] = {2,3,4,5,6,7,8,9,10,11};              // pins for 10 LEDs
byte led_pins[10] = {11,10,9,8,7,6,5,4,3,2};                // reversed order
//byte led_pins[10] = {11, 6, 7, 8, 9, 10, 5, 4, 3, 2};     // PCB order

#if defined(ARDUINO_AVR_LEONARDO)       
    #include <HID-Project.h>                    //include HID_Project library
#endif


int pot_value = 0; // potentiometer value
int old_volume = 0; // old volume value

void setup() {
  for (int i=0; i<10; i++) {
    pinMode(led_pins[i], OUTPUT);  // initialize digital pins as outputs (in order to control LEDs)
  }            

  pinMode(A0,INPUT); // set A0 as input for reading the potentiometer value

#if defined(ARDUINO_AVR_LEONARDO)  // initialize USB connection when the board is Arduino Leonardo
  Consumer.begin();
#endif

}


void loop() {

  pot_value = analogRead(A0);                  // read the value of the potentiometer
  pot_value = map(pot_value, 0, 1023, 0, 50);  // map the value between 0-50, as this is the range used in Windows for volume


  if (pot_value != old_volume) {        // volume is different from the pontetiometer value
    if (pot_value > old_volume) {
      #if defined(ARDUINO_AVR_LEONARDO)
        Consumer.write(MEDIA_VOLUME_UP);  // increase volume
      #endif  
      old_volume = pot_value;
      }  
    else if (pot_value < old_volume) {
      #if defined(ARDUINO_AVR_LEONARDO)
        Consumer.write(MEDIA_VOLUME_DOWN); // decrease volume
      #endif 
      old_volume = pot_value;
      } 
    
  }
  
  // light up the corresponding LEDs
  for (int i=0; i<10; i++) {  // set the LEDs based on the potentiometer value
    if (pot_value <= i*5) {
      digitalWrite(led_pins[i], LOW);    // LED off
    }
    else {
      digitalWrite(led_pins[i], HIGH);   // LED on
    }
  }
} 
uno:A5.2
uno:A4.2
uno:AREF
uno:GND.1
uno:13
uno:12
uno:11
uno:10
uno:9
uno:8
uno:7
uno:6
uno:5
uno:4
uno:3
uno:2
uno:1
uno:0
uno:IOREF
uno:RESET
uno:3.3V
uno:5V
uno:GND.2
uno:GND.3
uno:VIN
uno:A0
uno:A1
uno:A2
uno:A3
uno:A4
uno:A5
r1:1
r1:2
r2:1
r2:2
r3:1
r3:2
r4:1
r4:2
r5:1
r5:2
r6:1
r6:2
r7:1
r7:2
r8:1
r8:2
r9:1
r9:2
r10:1
r10:2
pot1:GND
pot1:SIG
pot1:VCC
led1:A
led1:C
led2:A
led2:C
led3:A
led3:C
led4:A
led4:C
led5:A
led5:C
led6:A
led6:C
led7:A
led7:C
led8:A
led8:C
led9:A
led9:C
led10:A
led10:C