-
Notifications
You must be signed in to change notification settings - Fork 1
/
screwType.ino
54 lines (49 loc) · 1.27 KB
/
screwType.ino
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
/* E. D'Alessandro - GPL3 licence - @2022 */
////////////////////////////////////////////////////////////
/// TASTI ////
////////////////////////////////////////////////////////////
// _______________________
// | |
// | LCD 16x2 |
// |_______________________|
// X X X X
// 14 13 11 7
////////////////////////////////////////////////////////////
void screwType()
{
// Scrive sul LCD
strcpy(txtA, msgScrewType1);
strcpy(txtB, msgScrewType2);
strcpy(txtC, msgNull);
strcpy(txtD, msgScrewType3);
lcdForceWrite = 1;
lcdWrite();
// Imposta il TPI in base al Feed
TPI = int(25.4 / passo);
////////////////////////////////////////////////////////////
/// LOOP FEED ////
////////////////////////////////////////////////////////////
do
{
menu();
// Tasto 3
if(menuCheck == 2)
{
TPI = TPI - 1;
if(TPI<1){TPI=1;}
menuCheck = 0;
passo = 25.4 / TPI;
}
// Tasto 4
if(menuCheck == 3)
{
TPI = TPI + 1;
menuCheck = 0;
passo = 25.4 / TPI;
}
// Scrive sul LCD
dtostrf(TPI, 3, 0, txtC);
lcdWrite();
}
while(menuCheck != 1);
}