| 1 cuota de $180 sin interés | CFT: 0,00% | TEA: 0,00% | Total $180 |
| 2 cuotas de $106,51 | Total $213,01 | |
| 3 cuotas de $72,77 | Total $218,32 | |
| 6 cuotas de $40,27 | Total $241,63 | |
| 9 cuotas de $29,97 | Total $269,73 | |
| 12 cuotas de $24,68 | Total $296,10 | |
| 24 cuotas de $18,49 | Total $443,70 |
| 3 cuotas de $76,70 | Total $230,09 | |
| 6 cuotas de $42,24 | Total $253,44 |
| 3 cuotas de $77,50 | Total $232,49 | |
| 6 cuotas de $42,54 | Total $255,26 | |
| 9 cuotas de $31,83 | Total $286,51 | |
| 12 cuotas de $26,07 | Total $312,86 |
| 18 cuotas de $20,50 | Total $369 |
int tiltSwitch = 3; // Tilt Switch Input
int tiltVal; // variable to store tilt input
boolean bIsTilted ;// define numeric variables val
void setup ()
{
Serial.begin(9600);
pinMode (tiltSwitch, INPUT) ;// define the mercury tilt switch sensor output interface
}
void loop ()
{
tiltVal = digitalRead (tiltSwitch) ;// read the switch value
if (tiltVal == HIGH) // Means we've tilted
{
if (!bIsTilted){
bIsTilted = true;
Serial.println("** - TILTED - **");
}
}
else
{
if (bIsTilted){
bIsTilted = false;
Serial.println("not tilted");
}
}
}
