/*
Sceglie lo zucchero il base al tempo della 
pressione e si vuole aumentare la 
luminosità di una led bar da 0 a 10.

NB2: La quantità di zucchero si può scegliere facendo
 partire un timer alla pressione di un pulsante e 
 facendolo stoppare al suo rilascio. 
 La lettura del get() del timer mi da la misura 
 del ritardo. Decidendo che sopra 10 secondi 
 le misure valgono sempre 10 (tetto superiore), 
 un valore da 0 a 10 dice la quantità di zucchero 
 da stampare con Serial.println(). 
 Variante non bloccante.
*/

#include "urutils.h"
int led_rosso=13;
int led_verde=12;
int led_3=5;
int pulsante1=14;
const int ledCount = 10;
const int timeout = 2000;
DiffTimer t1;
int ledPins[] = {
  27, 15, 2, 4, 5, 18, 19, 21, 22, 23
};   // an array of pin numbers to which LEDs are attached

void paintBar(int ledLevel){
  // loop over the LED array:
  for (int thisLed = 0; thisLed < ledCount; thisLed++) {
    // if the array element's index is less than ledLevel,
    // turn the pin for this element on:
    if (thisLed < ledLevel) {
      digitalWrite(ledPins[thisLed], HIGH);
    }
    // turn off all pins higher than the ledLevel:
    else {
      digitalWrite(ledPins[thisLed], LOW);
    }
  }
}
void setup(){
  // loop over the pin array and set them all to output:
  for (int thisLed = 0; thisLed < ledCount; thisLed++) {
    pinMode(ledPins[thisLed], OUTPUT);
  }
  pinMode(pulsante1, INPUT);
  Serial.begin(115200);
}

void loop(){
  if(digitalRead(pulsante1)==HIGH)
  {
    t1.start(); // funzione singleton (segna solo il tempo del primo start!)
    int level = map(t1.get(), 0, timeout, 0, ledCount);
    Serial.println(level);
    paintBar(level);
  }else{
    t1.reset();
    t1.stop();
  }
  delay(10);
}
esp:VIN
esp:GND.2
esp:D13
esp:D12
esp:D14
esp:D27
esp:D26
esp:D25
esp:D33
esp:D32
esp:D35
esp:D34
esp:VN
esp:VP
esp:EN
esp:3V3
esp:GND.1
esp:D15
esp:D2
esp:D4
esp:RX2
esp:TX2
esp:D5
esp:D18
esp:D19
esp:D21
esp:RX0
esp:TX0
esp:D22
esp:D23
btn1:1.l
btn1:2.l
btn1:1.r
btn1:2.r
r1:1
r1:2
bargraph1:A1
bargraph1:A2
bargraph1:A3
bargraph1:A4
bargraph1:A5
bargraph1:A6
bargraph1:A7
bargraph1:A8
bargraph1:A9
bargraph1:A10
bargraph1:C1
bargraph1:C2
bargraph1:C3
bargraph1:C4
bargraph1:C5
bargraph1:C6
bargraph1:C7
bargraph1:C8
bargraph1:C9
bargraph1:C10
r5:1
r5:2
r4:1
r4:2
r7:1
r7:2
r8:1
r8:2
r9:1
r9:2
r10:1
r10:2
r11:1
r11:2
r12:1
r12:2
r13:1
r13:2
r14:1
r14:2
gnd1:GND