-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathESP32_DAC_WITH_MY_LUT.ino
622 lines (599 loc) · 61.8 KB
/
ESP32_DAC_WITH_MY_LUT.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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
// (C) 2019 Helmut Weber
// use with Serial Plotter
// DO NOT FORGET TO WIRE PIN 25 WITH PIN 35 !!!
// Slope Factor:
// dac_output_voltage(DAC_CHANNEL_1, 200); 200=8 bit, gives My200VoltV measured with external instrument
//
float My200Volt = 2.44; // measured with external instrument: adc(200)
#include <driver/dac.h>
int ADC_LUT[4096] = { 0,
0,66,70,74,78,81,82,83,85,86,87,89,90,91,92,94,
95,96,97,98,99,100,101,102,103,104,105,106,106,107,108,109,
110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,
126,127,128,130,131,132,133,134,135,136,137,138,139,140,142,143,
144,145,146,148,149,151,152,153,155,156,158,159,160,161,162,163,
164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,
180,181,182,183,184,185,186,188,189,190,191,192,193,194,195,196,
198,199,200,201,202,203,204,205,207,208,209,210,211,212,213,214,
215,217,218,219,220,221,222,223,224,226,227,228,230,231,232,234,
235,236,237,239,240,241,242,243,244,245,246,247,248,249,250,251,
252,253,254,255,256,257,258,259,260,261,263,264,265,266,267,268,
270,271,272,273,274,275,277,278,279,280,281,282,283,284,286,287,
288,289,290,291,292,293,294,295,296,297,298,299,300,301,302,302,
303,305,306,307,308,309,310,311,313,314,315,316,317,318,319,321,
322,323,324,324,325,326,327,328,329,330,331,332,333,334,335,336,
337,338,339,340,341,342,343,343,344,345,346,347,348,349,350,351,
351,352,354,355,357,358,359,361,362,363,365,366,367,369,370,372,
373,374,376,377,379,380,382,383,384,385,386,387,388,389,390,391,
392,393,394,395,396,397,398,398,399,400,402,403,404,405,407,408,
409,410,412,413,414,416,417,418,419,420,421,422,423,424,425,426,
427,428,428,429,430,431,433,434,435,436,437,439,440,441,442,443,
445,446,447,448,449,450,451,452,453,454,455,456,457,458,459,460,
461,462,463,464,465,466,467,468,470,471,472,473,474,476,477,478,
479,480,481,482,483,484,485,486,487,488,489,490,491,492,493,494,
495,497,499,501,503,506,508,510,512,514,515,516,517,518,520,521,
522,523,525,526,527,528,530,531,532,533,534,535,536,537,539,540,
541,542,543,544,545,546,547,548,550,551,552,553,554,555,556,557,
558,559,560,561,562,563,564,565,567,568,569,570,571,572,573,574,
575,576,577,578,579,581,582,583,584,585,586,587,588,589,590,591,
592,594,595,596,598,599,600,602,603,604,606,607,608,609,610,611,
612,613,614,615,616,617,618,619,620,621,622,623,624,625,626,627,
628,629,630,631,632,633,634,635,636,637,638,639,640,641,642,643,
644,644,645,646,647,648,649,650,650,651,652,653,654,655,656,657,
657,658,659,660,661,662,663,664,665,666,667,668,669,670,671,671,
672,674,675,676,677,678,679,680,682,683,684,685,686,687,688,690,
691,692,693,694,696,697,698,699,701,702,703,704,705,706,708,709,
710,711,712,713,714,715,716,717,718,719,721,722,724,725,727,728,
730,731,733,734,736,737,738,738,739,740,741,742,743,744,744,745,
746,747,748,749,750,751,751,752,753,755,756,757,758,760,761,762,
763,764,766,767,768,769,770,771,772,773,774,776,777,778,779,780,
781,782,783,784,785,786,788,789,790,791,792,793,794,796,797,798,
799,800,801,802,803,805,806,807,808,809,810,811,812,813,814,815,
817,818,819,820,821,822,823,824,825,826,827,828,829,830,831,832,
833,834,836,837,838,840,841,842,844,845,846,848,849,850,851,852,
853,854,855,856,857,858,859,860,861,863,864,865,866,867,869,870,
871,873,874,875,877,878,879,880,881,882,883,884,884,885,886,887,
888,889,889,890,891,892,893,893,894,895,896,897,898,899,901,902,
903,904,906,907,908,909,911,912,913,914,915,916,917,918,919,920,
921,922,923,924,925,926,927,928,929,930,931,933,934,935,936,937,
938,940,941,942,943,944,945,946,947,948,949,950,950,951,952,953,
954,955,956,957,957,958,959,960,961,963,964,965,966,968,969,970,
972,973,974,976,977,978,979,980,981,982,983,984,985,987,988,989,
990,991,992,993,994,996,997,998,999,1000,1001,1002,1004,1005,1006,1007,
1008,1009,1010,1011,1012,1013,1014,1015,1016,1017,1018,1019,1020,1020,1021,1022,
1023,1024,1026,1027,1028,1029,1030,1031,1032,1034,1035,1036,1037,1038,1039,1041,
1042,1043,1044,1045,1047,1048,1049,1050,1051,1052,1054,1055,1056,1057,1058,1059,
1060,1061,1062,1063,1064,1065,1066,1067,1068,1069,1070,1071,1072,1073,1074,1076,
1077,1078,1079,1081,1082,1083,1084,1086,1087,1088,1089,1090,1091,1092,1093,1094,
1095,1096,1097,1098,1099,1100,1101,1102,1103,1104,1105,1106,1107,1108,1110,1111,
1112,1113,1114,1116,1117,1118,1119,1120,1122,1123,1124,1125,1126,1127,1129,1130,
1131,1132,1133,1134,1136,1137,1138,1139,1140,1141,1142,1143,1144,1145,1146,1147,
1148,1149,1150,1151,1152,1153,1154,1155,1156,1157,1158,1159,1160,1161,1162,1163,
1164,1165,1166,1167,1168,1169,1170,1171,1172,1173,1174,1176,1177,1178,1179,1180,
1181,1182,1184,1185,1185,1186,1187,1188,1188,1189,1190,1191,1191,1192,1193,1194,
1194,1195,1196,1197,1197,1198,1199,1200,1201,1202,1204,1205,1206,1208,1209,1211,
1212,1214,1215,1216,1217,1218,1219,1220,1221,1222,1223,1224,1225,1226,1226,1227,
1228,1229,1230,1231,1232,1233,1234,1236,1237,1238,1239,1240,1242,1243,1244,1245,
1246,1248,1249,1250,1251,1252,1252,1253,1254,1255,1256,1257,1258,1259,1260,1261,
1262,1263,1264,1265,1266,1267,1268,1269,1270,1271,1272,1273,1274,1275,1276,1277,
1278,1279,1280,1281,1282,1284,1285,1286,1287,1288,1289,1290,1291,1293,1294,1295,
1296,1297,1298,1299,1299,1300,1301,1302,1303,1304,1305,1306,1307,1308,1308,1309,
1310,1311,1312,1313,1315,1316,1317,1319,1320,1321,1323,1324,1325,1327,1328,1329,
1331,1332,1333,1334,1336,1337,1338,1339,1341,1342,1343,1344,1345,1346,1347,1348,
1349,1350,1351,1352,1353,1354,1355,1356,1357,1358,1359,1360,1361,1362,1363,1364,
1365,1366,1366,1367,1368,1369,1370,1371,1372,1373,1373,1374,1375,1376,1378,1379,
1381,1382,1384,1385,1387,1388,1390,1392,1393,1394,1395,1396,1397,1398,1399,1400,
1401,1402,1403,1404,1405,1406,1407,1408,1409,1410,1411,1413,1414,1415,1416,1417,
1419,1420,1421,1422,1423,1424,1426,1427,1428,1429,1430,1431,1432,1433,1434,1436,
1437,1438,1439,1440,1441,1442,1443,1444,1445,1446,1447,1448,1449,1450,1451,1452,
1453,1454,1455,1456,1457,1459,1460,1461,1462,1463,1464,1465,1466,1467,1468,1469,
1470,1471,1472,1474,1475,1476,1477,1479,1480,1481,1482,1483,1485,1486,1487,1488,
1489,1490,1492,1493,1494,1495,1496,1497,1498,1499,1500,1501,1502,1503,1504,1505,
1506,1507,1508,1509,1510,1510,1511,1512,1513,1514,1515,1516,1517,1518,1519,1520,
1522,1524,1527,1530,1532,1535,1537,1537,1538,1539,1540,1541,1542,1543,1544,1545,
1546,1547,1547,1548,1549,1550,1551,1552,1553,1554,1556,1557,1558,1560,1561,1562,
1563,1565,1566,1567,1568,1569,1570,1571,1572,1573,1574,1575,1576,1577,1578,1579,
1580,1581,1582,1583,1584,1585,1586,1588,1589,1590,1591,1592,1593,1594,1596,1597,
1598,1599,1600,1601,1602,1603,1605,1606,1607,1608,1609,1610,1611,1612,1613,1614,
1615,1616,1618,1619,1620,1621,1622,1623,1625,1626,1627,1628,1629,1630,1632,1633,
1634,1635,1636,1637,1638,1639,1640,1641,1641,1642,1643,1644,1645,1646,1647,1648,
1649,1650,1651,1652,1653,1654,1655,1656,1657,1658,1659,1660,1661,1662,1663,1665,
1666,1667,1668,1670,1671,1672,1673,1674,1676,1677,1678,1679,1680,1681,1682,1683,
1684,1685,1686,1687,1688,1688,1689,1690,1691,1692,1693,1694,1695,1696,1697,1698,
1700,1701,1703,1704,1706,1707,1709,1711,1712,1713,1714,1715,1716,1717,1718,1719,
1720,1721,1722,1723,1724,1725,1726,1727,1728,1729,1731,1732,1733,1734,1735,1736,
1738,1739,1740,1741,1742,1743,1745,1746,1748,1749,1751,1753,1754,1756,1757,1759,
1760,1761,1761,1762,1763,1763,1764,1765,1765,1766,1766,1767,1768,1768,1769,1770,
1770,1771,1772,1772,1773,1773,1774,1775,1775,1776,1777,1778,1779,1780,1781,1782,
1783,1784,1785,1786,1787,1788,1790,1791,1792,1793,1794,1795,1796,1797,1799,1800,
1801,1802,1803,1804,1806,1807,1808,1809,1810,1812,1813,1814,1815,1816,1817,1819,
1820,1821,1822,1823,1825,1826,1827,1828,1829,1830,1831,1832,1834,1835,1836,1837,
1838,1839,1840,1841,1842,1843,1844,1845,1846,1847,1848,1849,1850,1850,1851,1852,
1853,1854,1855,1856,1857,1858,1860,1861,1862,1863,1864,1865,1867,1868,1869,1870,
1871,1873,1874,1875,1876,1877,1878,1880,1881,1882,1883,1884,1885,1886,1888,1889,
1890,1891,1891,1892,1893,1894,1895,1896,1897,1898,1899,1900,1901,1902,1903,1904,
1905,1906,1907,1908,1909,1910,1911,1912,1913,1914,1915,1916,1917,1918,1919,1920,
1921,1922,1923,1924,1924,1925,1926,1927,1928,1929,1930,1931,1932,1933,1934,1935,
1936,1937,1938,1940,1941,1942,1943,1945,1946,1947,1948,1949,1951,1952,1953,1955,
1956,1957,1958,1960,1961,1962,1964,1965,1966,1968,1969,1970,1971,1972,1974,1975,
1976,1977,1978,1980,1981,1982,1983,1984,1985,1986,1987,1989,1990,1991,1992,1993,
1994,1995,1996,1997,1998,1999,2000,2001,2002,2003,2004,2005,2006,2007,2008,2009,
2010,2012,2013,2014,2015,2016,2017,2018,2019,2020,2021,2022,2023,2024,2025,2026,
2027,2028,2029,2030,2030,2031,2032,2033,2033,2034,2034,2034,2035,2035,2036,2036,
2036,2037,2037,2038,2038,2039,2039,2039,2040,2040,2041,2041,2042,2042,2042,2043,
2043,2044,2044,2045,2045,2045,2046,2046,2047,2047,2047,2048,2049,2050,2051,2052,
2053,2054,2055,2056,2057,2058,2059,2060,2061,2062,2063,2064,2065,2066,2068,2069,
2070,2071,2072,2074,2075,2076,2077,2079,2080,2081,2082,2083,2084,2085,2086,2087,
2088,2090,2091,2092,2093,2094,2095,2096,2097,2098,2099,2101,2102,2103,2104,2105,
2106,2107,2108,2109,2111,2112,2113,2114,2115,2116,2118,2119,2120,2121,2122,2123,
2125,2126,2127,2128,2129,2131,2132,2133,2134,2135,2136,2138,2139,2140,2141,2142,
2144,2145,2146,2146,2147,2148,2149,2150,2151,2152,2153,2154,2155,2156,2157,2158,
2159,2160,2161,2162,2163,2164,2165,2166,2167,2167,2168,2169,2170,2171,2172,2173,
2174,2175,2176,2178,2179,2180,2181,2183,2184,2185,2186,2188,2189,2190,2191,2193,
2194,2195,2196,2197,2198,2199,2200,2201,2202,2203,2204,2205,2206,2207,2208,2209,
2210,2212,2213,2214,2215,2216,2217,2218,2219,2220,2222,2223,2224,2225,2226,2227,
2228,2229,2230,2232,2233,2234,2235,2236,2237,2238,2239,2240,2242,2243,2244,2245,
2246,2247,2248,2249,2251,2252,2253,2254,2255,2256,2257,2258,2259,2260,2261,2262,
2263,2264,2265,2266,2267,2268,2269,2270,2271,2272,2273,2274,2275,2276,2277,2278,
2279,2280,2281,2282,2283,2284,2284,2285,2286,2287,2288,2289,2290,2291,2292,2293,
2294,2294,2295,2296,2297,2298,2299,2300,2301,2301,2302,2303,2304,2305,2306,2308,
2309,2310,2311,2312,2313,2315,2316,2317,2318,2319,2320,2322,2323,2324,2326,2327,
2328,2329,2331,2332,2333,2334,2336,2337,2338,2339,2340,2341,2342,2343,2344,2345,
2346,2347,2348,2349,2350,2351,2352,2353,2354,2356,2357,2359,2360,2362,2363,2364,
2366,2367,2369,2370,2370,2371,2372,2373,2374,2375,2376,2377,2378,2379,2380,2381,
2382,2383,2384,2385,2386,2387,2388,2389,2390,2391,2393,2394,2395,2396,2397,2398,
2399,2400,2401,2402,2404,2405,2406,2408,2409,2410,2412,2413,2414,2416,2417,2418,
2418,2419,2420,2421,2422,2423,2424,2425,2426,2427,2428,2429,2429,2430,2431,2432,
2433,2434,2435,2436,2438,2439,2440,2441,2442,2443,2444,2445,2446,2447,2448,2449,
2450,2452,2453,2454,2455,2456,2457,2458,2459,2461,2462,2463,2464,2465,2466,2467,
2468,2470,2471,2472,2473,2474,2475,2476,2478,2479,2480,2481,2482,2483,2484,2485,
2487,2488,2489,2490,2491,2492,2493,2495,2496,2497,2498,2499,2500,2501,2503,2504,
2505,2506,2507,2508,2510,2511,2512,2513,2514,2515,2516,2517,2518,2519,2520,2521,
2522,2523,2524,2525,2526,2527,2528,2529,2531,2532,2533,2535,2536,2538,2539,2541,
2542,2544,2545,2546,2548,2549,2550,2552,2553,2554,2556,2557,2558,2560,2561,2562,
2563,2563,2564,2565,2566,2567,2568,2569,2569,2570,2571,2572,2573,2574,2575,2576,
2577,2578,2580,2581,2583,2584,2586,2587,2589,2590,2592,2593,2594,2595,2596,2597,
2598,2599,2600,2601,2602,2602,2603,2604,2605,2606,2607,2608,2610,2611,2613,2614,
2616,2617,2619,2620,2622,2623,2624,2625,2626,2627,2628,2629,2630,2631,2632,2633,
2634,2635,2636,2637,2638,2639,2640,2641,2642,2643,2644,2646,2647,2648,2649,2651,
2652,2653,2654,2656,2657,2658,2659,2660,2661,2662,2663,2664,2665,2666,2667,2668,
2669,2670,2671,2672,2673,2674,2675,2677,2678,2679,2680,2681,2682,2683,2684,2685,
2686,2687,2688,2689,2691,2692,2693,2694,2695,2696,2697,2698,2700,2701,2702,2703,
2704,2705,2706,2707,2708,2709,2711,2712,2713,2714,2715,2716,2717,2718,2719,2720,
2721,2722,2723,2724,2725,2726,2728,2729,2730,2731,2732,2733,2734,2735,2736,2737,
2738,2739,2739,2740,2741,2742,2743,2744,2745,2746,2747,2748,2748,2749,2750,2751,
2752,2753,2755,2756,2757,2758,2760,2761,2762,2763,2764,2766,2767,2768,2770,2771,
2772,2774,2775,2777,2778,2779,2781,2782,2784,2785,2786,2787,2788,2789,2790,2791,
2792,2793,2794,2795,2796,2797,2798,2799,2800,2801,2802,2803,2804,2805,2805,2806,
2807,2808,2809,2810,2811,2812,2813,2814,2815,2816,2817,2818,2819,2820,2822,2823,
2824,2825,2827,2828,2829,2830,2831,2833,2835,2837,2840,2842,2844,2846,2848,2849,
2850,2850,2851,2852,2852,2853,2854,2854,2855,2856,2856,2857,2858,2859,2859,2860,
2861,2861,2862,2863,2863,2864,2865,2866,2867,2867,2868,2869,2870,2871,2872,2872,
2873,2874,2875,2876,2877,2877,2878,2879,2880,2881,2882,2883,2884,2885,2887,2888,
2889,2890,2891,2892,2893,2894,2895,2896,2897,2898,2899,2900,2901,2902,2903,2904,
2905,2906,2907,2908,2909,2910,2911,2912,2914,2915,2916,2918,2919,2920,2922,2923,
2924,2925,2927,2928,2929,2930,2931,2932,2934,2935,2936,2937,2938,2939,2940,2941,
2942,2944,2945,2945,2946,2947,2948,2949,2950,2950,2951,2952,2953,2954,2955,2956,
2956,2957,2958,2959,2960,2961,2962,2963,2964,2965,2966,2967,2968,2969,2971,2972,
2973,2974,2975,2976,2977,2978,2980,2981,2982,2984,2985,2986,2988,2989,2990,2992,
2993,2994,2995,2996,2997,2998,2999,3000,3000,3001,3002,3003,3004,3005,3006,3007,
3008,3009,3010,3011,3012,3013,3014,3015,3016,3017,3018,3019,3020,3020,3021,3022,
3023,3024,3025,3027,3028,3029,3030,3031,3032,3033,3035,3036,3037,3038,3039,3040,
3041,3042,3043,3044,3045,3046,3047,3048,3049,3050,3051,3052,3053,3054,3055,3057,
3058,3059,3061,3062,3064,3065,3066,3068,3069,3071,3072,3073,3074,3075,3075,3076,
3077,3078,3079,3080,3080,3081,3082,3083,3084,3085,3085,3086,3087,3088,3089,3090,
3092,3093,3095,3096,3097,3099,3100,3101,3103,3104,3105,3106,3107,3108,3110,3111,
3112,3113,3114,3115,3116,3117,3118,3120,3121,3122,3123,3124,3125,3126,3128,3129,
3130,3131,3132,3133,3134,3136,3137,3137,3138,3139,3140,3141,3142,3142,3143,3144,
3145,3146,3146,3147,3148,3149,3150,3151,3151,3152,3153,3155,3156,3157,3158,3159,
3160,3161,3162,3163,3164,3166,3167,3168,3169,3170,3171,3172,3173,3174,3175,3176,
3177,3178,3179,3180,3181,3182,3183,3184,3185,3186,3187,3188,3189,3190,3190,3191,
3192,3193,3194,3195,3196,3197,3198,3199,3200,3201,3202,3202,3203,3204,3205,3206,
3207,3208,3208,3209,3210,3211,3212,3213,3214,3215,3215,3216,3218,3219,3220,3222,
3223,3224,3225,3227,3228,3229,3231,3232,3233,3234,3235,3236,3236,3237,3238,3239,
3240,3241,3242,3243,3243,3244,3245,3246,3247,3248,3249,3250,3252,3253,3254,3255,
3257,3258,3259,3261,3262,3263,3264,3265,3266,3266,3267,3268,3269,3269,3270,3271,
3272,3272,3273,3274,3275,3275,3276,3277,3278,3278,3279,3280,3281,3282,3283,3284,
3285,3286,3287,3288,3289,3290,3291,3292,3293,3294,3295,3296,3297,3299,3300,3301,
3302,3303,3304,3306,3307,3308,3309,3310,3311,3312,3313,3314,3315,3316,3317,3318,
3318,3319,3320,3321,3322,3323,3324,3325,3325,3326,3327,3328,3329,3330,3331,3332,
3332,3333,3334,3335,3336,3337,3338,3339,3339,3340,3341,3342,3343,3344,3345,3346,
3348,3349,3350,3352,3353,3354,3356,3357,3358,3360,3361,3361,3362,3362,3363,3364,
3364,3365,3366,3366,3367,3367,3368,3369,3369,3370,3371,3371,3372,3373,3373,3374,
3374,3375,3376,3376,3377,3378,3379,3380,3381,3382,3383,3384,3385,3386,3387,3388,
3389,3390,3391,3392,3393,3393,3394,3395,3396,3397,3398,3398,3399,3400,3401,3402,
3403,3403,3404,3405,3406,3407,3408,3409,3410,3411,3412,3413,3414,3415,3416,3417,
3418,3419,3420,3421,3422,3423,3424,3425,3427,3428,3429,3431,3432,3434,3435,3437,
3438,3439,3440,3441,3442,3442,3443,3443,3444,3444,3445,3445,3446,3447,3447,3448,
3448,3449,3449,3450,3450,3451,3452,3452,3453,3453,3454,3454,3455,3455,3456,3457,
3458,3459,3460,3461,3462,3463,3464,3465,3466,3467,3468,3469,3470,3471,3472,3473,
3474,3474,3475,3476,3477,3478,3479,3480,3481,3482,3482,3483,3484,3485,3486,3487,
3488,3489,3490,3491,3492,3493,3494,3495,3496,3497,3498,3499,3500,3501,3502,3503,
3504,3505,3506,3506,3507,3508,3509,3510,3511,3511,3512,3513,3514,3515,3516,3516,
3517,3518,3519,3520,3520,3521,3522,3522,3523,3524,3524,3525,3526,3527,3527,3528,
3529,3529,3530,3531,3531,3532,3533,3533,3534,3535,3535,3536,3537,3538,3538,3539,
3540,3541,3541,3542,3543,3544,3545,3545,3546,3547,3548,3549,3549,3550,3551,3552,
3553,3553,3554,3555,3556,3557,3558,3558,3559,3560,3561,3562,3563,3564,3564,3565,
3566,3567,3568,3569,3570,3572,3573,3575,3576,3577,3579,3580,3582,3583,3584,3585,
3586,3587,3587,3588,3589,3590,3591,3591,3592,3593,3594,3595,3595,3596,3597,3598,
3598,3599,3600,3601,3602,3602,3603,3604,3604,3605,3606,3607,3607,3608,3609,3610,
3610,3611,3612,3613,3613,3614,3615,3616,3616,3617,3618,3619,3620,3621,3622,3623,
3624,3625,3626,3627,3628,3629,3630,3631,3632,3632,3633,3634,3635,3635,3636,3637,
3637,3638,3639,3639,3640,3641,3641,3642,3643,3643,3644,3645,3645,3646,3647,3647,
3648,3649,3649,3650,3651,3651,3652,3653,3653,3654,3655,3655,3656,3657,3657,3658,
3658,3659,3660,3660,3661,3662,3662,3663,3664,3664,3665,3666,3666,3667,3668,3669,
3669,3670,3671,3671,3672,3673,3674,3674,3675,3676,3676,3677,3678,3679,3679,3680,
3681,3682,3683,3683,3684,3685,3686,3687,3688,3688,3689,3690,3691,3692,3693,3694,
3694,3695,3696,3697,3697,3698,3699,3699,3700,3701,3701,3702,3703,3703,3704,3705,
3705,3706,3707,3707,3708,3709,3709,3710,3711,3711,3712,3713,3714,3714,3715,3716,
3717,3718,3719,3720,3720,3721,3722,3723,3724,3725,3726,3726,3727,3728,3729,3729,
3730,3731,3731,3732,3732,3733,3734,3734,3735,3736,3736,3737,3737,3738,3739,3739,
3740,3741,3741,3742,3742,3743,3744,3744,3745,3745,3746,3747,3747,3748,3748,3749,
3749,3750,3751,3751,3752,3752,3753,3753,3754,3755,3755,3756,3756,3757,3758,3758,
3759,3759,3760,3761,3762,3763,3764,3766,3767,3768,3769,3771,3772,3773,3774,3776,
3776,3777,3777,3778,3778,3779,3779,3779,3780,3780,3781,3781,3782,3782,3782,3783,
3783,3784,3784,3785,3785,3785,3786,3786,3787,3787,3788,3788,3789,3789,3789,3790,
3790,3791,3791,3792,3792,3793,3793,3794,3795,3795,3796,3797,3797,3798,3798,3799,
3800,3800,3801,3802,3802,3803,3804,3804,3805,3806,3806,3807,3808,3808,3809,3810,
3810,3811,3812,3812,3813,3814,3814,3815,3816,3816,3817,3818,3818,3819,3820,3820,
3821,3822,3822,3823,3824,3824,3825,3825,3826,3827,3827,3828,3828,3829,3830,3830,
3831,3831,3832,3832,3833,3834,3834,3835,3835,3836,3836,3837,3838,3838,3839,3839,
3840,3841,3841,3842,3842,3843,3843,3844,3845,3845,3846,3846,3847,3848,3848,3849,
3849,3850,3851,3851,3852,3852,3853,3853,3854,3855,3855,3856,3856,3857,3858,3859,
3859,3860,3861,3861,3862,3863,3863,3864,3865,3866,3866,3867,3868,3868,3869,3870,
3871,3871,3872,3873,3873,3874,3874,3875,3876,3876,3877,3878,3878,3879,3879,3880,
3881,3881,3882,3883,3883,3884,3884,3885,3886,3886,3887,3887,3888,3889,3889,3890,
3891,3892,3892,3893,3894,3894,3895,3896,3896,3897,3898,3898,3899,3900,3900,3901,
3902,3903,3903,3904,3905,3905,3906,3906,3907,3907,3908,3909,3909,3910,3910,3911,
3911,3912,3913,3913,3914,3914,3915,3916,3916,3917,3917,3918,3918,3919,3920,3920,
3921,3921,3922,3923,3923,3924,3924,3925,3926,3926,3927,3927,3928,3929,3929,3930,
3930,3931,3932,3932,3933,3933,3934,3935,3935,3936,3936,3937,3937,3938,3939,3939,
3940,3940,3941,3941,3942,3942,3943,3943,3944,3944,3945,3946,3946,3947,3947,3948,
3948,3949,3949,3950,3950,3951,3951,3952,3953,3953,3954,3954,3955,3955,3956,3956,
3957,3958,3958,3959,3959,3960,3960,3961,3962,3962,3963,3963,3964,3964,3965,3966,
3966,3967,3967,3968,3968,3969,3970,3970,3971,3971,3972,3972,3973,3974,3974,3975,
3975,3976,3976,3977,3978,3978,3979,3979,3980,3980,3981,3982,3982,3983,3983,3984,
3984,3985,3986,3986,3987,3987,3988,3989,3989,3990,3990,3991,3992,3992,3993,3993,
3994,3995,3995,3996,3996,3997,3998,3998,3999,3999,4000,4000,4001,4002,4002,4003,
4003,4004,4004,4005,4006,4006,4007,4007,4008,4008,4009,4010,4010,4011,4011,4012,
4012,4013,4014,4014,4015,4015,4016,4016,4017,4018,4018,4019,4019,4020,4020,4021,
4021,4022,4023,4023,4024,4024,4025,4025,4026,4027,4027,4028,4028,4029,4029,4030,
4031,4031,4032,4032,4033,4033,4034,4035,4035,4036,4036,4037,4037,4038,4038,4039,
4040,4040,4041,4041,4042,4042,4043,4043,4044,4045,4045,4046,4046,4047,4047,4048,
4049,4049,4050,4050,4051,4051,4052,4052,4053,4053,4054,4054,4055,4055,4056,4057,
4057,4058,4058,4059,4059,4060,4060,4061,4061,4062,4062,4063,4063,4064,4065,4066,
4067,4068,4069,4070,4070,4071,4072,4073,4074,4075,4076,4077,4078,4079,4080
} ;
// float ADC_LUT[4096] = { 0,
//0.0000,66.0000,70.0000,74.0000,77.8000,80.8000,82.0000,83.0000,84.2000,85.6000,87.0000,88.0000,89.0000,90.4000,91.8000,93.0000,
//94.0000,95.2000,96.6000,97.4000,98.4000,99.4000,100.2000,101.2000,102.2000,103.0000,104.0000,105.0000,106.0000,107.0000,108.0000,109.0000,
//110.0000,111.0000,112.0000,113.0000,114.0000,115.0000,116.0000,117.2000,118.4000,119.4000,120.6000,121.8000,123.0000,124.0000,125.0000,126.0000,
//127.0000,128.0000,129.0000,130.0000,131.2000,132.2000,133.2000,134.4000,135.4000,136.4000,137.6000,138.6000,139.8000,140.8000,141.8000,143.0000,
//144.0000,145.0000,146.0000,147.0000,148.0000,149.0000,150.0000,151.0000,152.0000,153.0000,154.0000,155.2000,156.2000,157.4000,158.4000,159.6000,
//160.8000,162.0000,163.0000,164.0000,165.6000,167.0000,168.0000,169.0000,170.2000,171.8000,173.0000,174.0000,175.0000,176.4000,177.8000,179.0000,
//180.0000,181.0000,182.2000,183.6000,185.0000,186.0000,187.0000,188.0000,189.4000,190.8000,192.0000,193.0000,194.0000,195.0000,196.0000,197.0000,
//198.0000,199.0000,200.0000,201.0000,202.0000,203.0000,204.0000,205.0000,206.0000,207.0000,208.0000,209.0000,210.0000,211.2000,212.8000,214.0000,
//215.0000,216.2000,217.6000,219.0000,220.0000,221.2000,222.6000,224.0000,225.0000,226.0000,227.0000,228.2000,229.4000,230.6000,231.8000,233.0000,
//234.0000,235.0000,236.0000,237.0000,238.2000,239.4000,240.6000,241.8000,243.0000,244.0000,245.0000,246.0000,247.0000,248.2000,249.4000,250.6000,
//251.8000,253.0000,254.0000,255.0000,256.0000,257.0000,258.2000,259.4000,260.6000,261.8000,263.0000,264.0000,265.0000,266.0000,267.0000,268.0000,
//269.2000,270.4000,271.6000,272.6000,273.8000,274.8000,275.8000,276.8000,277.8000,278.8000,280.0000,281.0000,282.0000,283.0000,284.0000,285.0000,
//286.0000,287.0000,288.0000,289.0000,290.0000,291.2000,292.6000,294.0000,295.0000,296.0000,297.2000,298.6000,300.0000,301.0000,302.0000,303.2000,
//304.4000,305.4000,306.4000,307.4000,308.4000,309.2000,310.2000,311.2000,312.2000,313.2000,314.0000,315.0000,316.0000,317.0000,318.0000,319.0000,
//320.0000,321.4000,323.0000,324.0000,325.6000,327.0000,328.0000,329.8000,331.0000,332.2000,333.8000,335.0000,336.2000,337.0000,338.0000,338.6000,
//339.0000,340.0000,341.0000,341.4000,342.0000,343.0000,343.8000,344.2000,345.0000,346.0000,346.6000,347.2000,348.0000,349.0000,349.6000,350.0000,
//351.0000,352.0000,352.8000,354.2000,356.0000,358.0000,359.8000,361.2000,363.0000,365.0000,366.6000,368.2000,369.4000,370.6000,372.0000,373.0000,
//374.0000,375.0000,376.0000,377.4000,378.6000,379.8000,381.0000,382.0000,383.0000,384.0000,385.0000,386.2000,387.2000,388.4000,389.4000,390.4000,
//391.6000,392.6000,393.8000,394.8000,395.8000,397.0000,398.0000,399.0000,400.0000,401.0000,402.0000,403.0000,404.0000,405.0000,406.0000,407.2000,
//408.2000,409.4000,410.6000,411.6000,412.8000,414.0000,415.0000,416.0000,417.0000,418.0000,419.2000,420.4000,421.8000,423.0000,424.0000,425.0000,
//426.2000,427.4000,428.8000,430.0000,431.0000,432.0000,433.4000,434.8000,436.0000,437.0000,438.4000,440.0000,441.0000,442.0000,443.6000,445.0000,
//446.0000,447.2000,448.6000,449.4000,450.4000,451.4000,452.4000,453.4000,454.4000,455.2000,456.2000,457.2000,458.2000,459.2000,460.2000,461.0000,
//462.0000,463.0000,464.0000,465.0000,466.2000,467.2000,468.4000,469.4000,470.6000,471.6000,472.8000,473.8000,475.0000,476.0000,477.0000,478.0000,
//479.0000,480.0000,481.0000,482.0000,483.0000,484.0000,485.2000,486.4000,487.6000,488.8000,489.8000,491.0000,492.0000,493.0000,494.0000,495.0000,
//496.0000,498.0000,500.0000,502.0000,503.8000,505.6000,507.4000,509.0000,511.0000,513.0000,514.0000,515.0000,516.2000,517.6000,519.0000,520.0000,
//521.0000,522.2000,523.4000,524.8000,526.0000,527.0000,528.0000,529.2000,530.4000,531.6000,532.8000,534.0000,535.0000,536.0000,537.0000,538.0000,
//539.0000,540.0000,541.2000,542.4000,543.6000,544.8000,546.0000,547.0000,548.0000,549.0000,550.0000,551.0000,552.0000,553.0000,554.0000,555.0000,
//556.0000,557.2000,558.2000,559.4000,560.4000,561.6000,562.6000,563.8000,564.8000,566.0000,567.0000,568.0000,569.0000,570.0000,571.0000,572.0000,
//573.0000,574.0000,575.0000,576.0000,577.4000,579.0000,580.0000,581.0000,582.4000,584.0000,585.0000,586.0000,587.6000,589.0000,590.0000,591.0000,
//592.4000,593.2000,594.2000,595.0000,596.0000,597.0000,598.0000,599.0000,600.0000,601.0000,601.8000,602.8000,603.6000,604.4000,605.2000,606.2000,
//607.0000,608.0000,609.2000,610.8000,612.0000,613.0000,614.2000,615.8000,617.0000,618.0000,619.4000,620.8000,622.0000,623.0000,624.4000,625.6000,
//626.8000,627.8000,629.0000,630.0000,631.0000,632.0000,633.0000,634.0000,635.2000,636.4000,637.4000,638.6000,639.8000,640.8000,641.6000,642.2000,
//643.0000,644.0000,645.0000,646.0000,647.0000,647.6000,648.4000,649.0000,650.0000,651.0000,652.0000,653.0000,653.8000,654.4000,655.2000,656.0000,
//657.0000,658.0000,659.0000,660.0000,661.0000,662.0000,663.0000,664.0000,665.0000,666.0000,667.0000,668.0000,669.0000,670.0000,671.0000,672.0000,
//673.0000,674.0000,675.0000,676.0000,677.0000,678.0000,679.0000,680.0000,680.8000,681.8000,682.8000,683.6000,684.6000,685.6000,686.4000,687.4000,
//688.4000,690.0000,691.8000,693.0000,695.0000,696.2000,698.0000,699.4000,701.0000,702.8000,704.0000,705.0000,706.2000,707.4000,708.6000,709.6000,
//710.8000,712.0000,713.0000,714.0000,715.0000,716.0000,717.0000,718.0000,719.0000,720.0000,721.4000,722.8000,724.0000,725.0000,726.0000,727.4000,
//728.8000,730.0000,731.0000,732.0000,733.4000,734.8000,736.0000,737.0000,738.0000,738.8000,739.6000,740.4000,741.2000,742.0000,743.0000,744.0000,
//745.0000,746.0000,746.8000,747.6000,748.4000,749.2000,750.0000,751.0000,752.0000,753.0000,754.6000,756.0000,757.0000,758.6000,760.0000,761.0000,
//762.6000,764.0000,765.0000,766.6000,768.0000,769.0000,770.0000,771.0000,772.2000,773.4000,774.6000,775.8000,777.0000,778.0000,779.0000,780.0000,
//781.0000,782.0000,783.2000,784.2000,785.0000,786.0000,787.0000,788.0000,789.0000,789.6000,790.4000,791.2000,792.0000,793.0000,794.0000,795.0000,
//795.8000,796.4000,797.2000,798.0000,799.0000,800.0000,801.0000,802.6000,804.0000,805.4000,807.0000,808.2000,810.0000,811.0000,812.8000,814.0000,
//815.6000,817.0000,818.0000,819.0000,820.0000,821.0000,822.0000,823.0000,824.0000,825.0000,826.0000,827.0000,828.0000,829.0000,830.0000,831.0000,
//832.0000,833.0000,834.0000,835.0000,836.2000,837.4000,838.6000,839.8000,841.0000,842.0000,843.0000,844.0000,845.0000,846.0000,847.0000,848.2000,
//849.6000,851.0000,852.0000,853.0000,854.2000,855.6000,857.0000,858.0000,859.0000,860.0000,861.4000,862.8000,864.0000,865.0000,866.0000,867.2000,
//868.6000,870.0000,871.0000,872.0000,873.0000,874.4000,875.6000,877.0000,878.0000,879.0000,880.0000,881.0000,882.0000,883.0000,884.0000,885.0000,
//886.0000,886.8000,887.6000,888.6000,889.4000,890.2000,891.0000,892.0000,893.0000,894.0000,895.0000,896.0000,897.0000,898.0000,899.6000,901.0000,
//902.0000,903.4000,905.0000,906.0000,907.2000,908.8000,910.0000,911.0000,912.4000,913.6000,914.6000,915.8000,916.8000,918.0000,919.0000,920.0000,
//921.0000,922.0000,923.0000,924.0000,925.0000,926.0000,927.0000,928.0000,929.0000,930.4000,931.6000,932.8000,934.0000,935.0000,936.0000,937.0000,
//938.2000,939.4000,940.8000,942.0000,943.0000,944.0000,945.0000,946.0000,947.0000,948.0000,949.0000,949.8000,950.8000,951.6000,952.6000,953.4000,
//954.2000,955.2000,956.0000,957.0000,958.0000,959.0000,960.0000,961.0000,962.4000,964.0000,965.0000,966.0000,967.6000,969.0000,970.0000,971.2000,
//972.6000,974.0000,975.0000,976.2000,977.2000,978.2000,979.4000,980.4000,981.4000,982.4000,983.6000,984.6000,985.6000,986.6000,987.8000,988.8000,
//989.8000,990.8000,991.8000,993.0000,994.0000,995.0000,996.0000,997.2000,998.6000,999.8000,1001.0000,1002.0000,1003.0000,1004.0000,1005.4000,1006.6000,
//1008.0000,1009.0000,1010.0000,1011.0000,1012.0000,1013.0000,1014.0000,1015.0000,1016.0000,1017.0000,1018.0000,1019.2000,1020.4000,1021.4000,1022.6000,1023.6000,
//1024.8000,1026.0000,1027.0000,1028.0000,1029.0000,1030.0000,1031.0000,1032.0000,1033.0000,1034.2000,1035.4000,1036.6000,1037.8000,1039.0000,1040.0000,1041.0000,
//1042.0000,1043.0000,1044.2000,1045.6000,1046.8000,1048.0000,1049.0000,1050.0000,1051.0000,1052.2000,1053.6000,1054.8000,1056.0000,1057.0000,1058.0000,1059.0000,
//1060.0000,1061.0000,1062.0000,1063.2000,1064.2000,1065.4000,1066.6000,1067.6000,1068.8000,1069.8000,1071.0000,1072.0000,1073.0000,1074.0000,1075.0000,1076.2000,
//1077.4000,1078.6000,1080.0000,1081.0000,1082.0000,1083.0000,1084.0000,1085.2000,1086.4000,1087.8000,1089.0000,1089.8000,1090.8000,1091.8000,1092.8000,1093.8000,
//1094.6000,1095.6000,1096.6000,1097.6000,1098.6000,1099.4000,1100.4000,1101.4000,1102.4000,1103.4000,1104.4000,1106.0000,1107.0000,1108.2000,1109.8000,1111.0000,
//1112.2000,1113.8000,1115.0000,1116.0000,1117.6000,1119.0000,1120.0000,1121.0000,1122.0000,1123.0000,1124.0000,1125.0000,1126.0000,1127.0000,1128.0000,1129.0000,
//1130.0000,1131.0000,1132.0000,1133.0000,1134.0000,1135.0000,1136.0000,1137.4000,1139.0000,1140.0000,1141.2000,1142.8000,1144.0000,1145.0000,1146.6000,1148.0000,
//1149.0000,1150.2000,1151.8000,1153.0000,1153.6000,1154.2000,1155.0000,1156.0000,1157.0000,1158.0000,1158.6000,1159.2000,1160.0000,1161.0000,1162.0000,1162.8000,
//1163.6000,1164.2000,1165.0000,1166.0000,1167.0000,1167.8000,1168.8000,1170.0000,1171.4000,1173.0000,1174.0000,1175.6000,1177.0000,1178.2000,1179.8000,1181.0000,
//1182.4000,1184.0000,1185.0000,1185.6000,1186.0000,1187.0000,1187.8000,1188.4000,1189.0000,1190.0000,1190.6000,1191.0000,1192.0000,1193.0000,1193.4000,1194.0000,
//1195.0000,1195.8000,1196.2000,1197.0000,1198.0000,1198.6000,1199.0000,1200.0000,1201.0000,1202.0000,1203.6000,1205.0000,1206.0000,1207.2000,1208.8000,1210.0000,
//1211.0000,1212.2000,1213.8000,1215.0000,1216.0000,1217.0000,1218.2000,1219.4000,1220.4000,1221.6000,1222.8000,1224.0000,1225.0000,1226.0000,1227.0000,1228.0000,
//1229.0000,1230.0000,1231.0000,1232.2000,1233.6000,1235.0000,1236.0000,1237.2000,1238.6000,1240.0000,1241.0000,1242.2000,1243.6000,1245.0000,1246.0000,1247.2000,
//1248.6000,1249.4000,1250.4000,1251.2000,1252.0000,1253.0000,1254.0000,1255.0000,1256.0000,1257.0000,1258.0000,1259.0000,1260.0000,1261.0000,1261.8000,1262.6000,
//1263.6000,1264.4000,1265.2000,1266.0000,1267.0000,1268.0000,1269.0000,1270.0000,1270.8000,1271.6000,1272.2000,1273.0000,1274.0000,1275.0000,1276.0000,1277.0000,
//1277.8000,1278.6000,1279.4000,1280.2000,1281.8000,1283.0000,1284.0000,1285.2000,1286.6000,1288.0000,1289.0000,1290.0000,1291.4000,1293.0000,1294.0000,1295.0000,
//1296.4000,1297.6000,1298.8000,1300.0000,1301.0000,1302.0000,1303.0000,1304.4000,1305.6000,1307.0000,1308.0000,1309.0000,1310.0000,1311.0000,1312.4000,1313.4000,
//1314.4000,1315.4000,1316.4000,1317.4000,1318.4000,1319.4000,1320.4000,1321.4000,1322.4000,1323.4000,1324.4000,1325.4000,1326.4000,1327.4000,1328.6000,1330.0000,
//1331.0000,1332.0000,1333.0000,1334.4000,1335.6000,1337.0000,1338.0000,1339.0000,1340.0000,1341.4000,1342.8000,1344.0000,1345.0000,1346.0000,1347.4000,1349.0000,
//1350.0000,1351.0000,1352.2000,1353.8000,1355.0000,1356.0000,1357.0000,1358.6000,1360.0000,1361.0000,1362.0000,1363.0000,1364.0000,1365.0000,1366.0000,1367.0000,
//1367.8000,1368.8000,1369.8000,1370.8000,1371.6000,1372.6000,1373.6000,1374.6000,1375.6000,1376.6000,1377.6000,1378.8000,1380.0000,1381.0000,1382.0000,1383.0000,
//1384.0000,1385.0000,1386.0000,1387.0000,1388.0000,1389.2000,1390.2000,1391.4000,1392.6000,1393.6000,1394.8000,1395.8000,1397.0000,1398.0000,1399.0000,1400.0000,
//1401.0000,1402.0000,1403.0000,1404.0000,1405.0000,1406.0000,1407.0000,1408.2000,1409.0000,1410.0000,1411.0000,1412.0000,1413.0000,1414.0000,1415.0000,1416.0000,
//1417.0000,1418.0000,1419.0000,1420.0000,1421.0000,1422.0000,1423.0000,1424.0000,1425.0000,1426.0000,1427.2000,1428.6000,1430.0000,1431.0000,1432.0000,1433.2000,
//1434.6000,1436.0000,1437.0000,1438.0000,1439.2000,1440.6000,1442.0000,1443.0000,1444.0000,1445.2000,1446.6000,1448.0000,1449.0000,1450.0000,1451.2000,1452.4000,
//1453.8000,1455.0000,1456.0000,1457.0000,1458.0000,1459.0000,1460.0000,1461.0000,1462.0000,1463.0000,1464.0000,1465.0000,1466.0000,1467.2000,1468.2000,1469.2000,
//1470.2000,1471.2000,1472.4000,1473.4000,1474.6000,1475.8000,1476.8000,1478.0000,1479.0000,1480.0000,1481.0000,1482.0000,1483.0000,1484.0000,1485.0000,1486.2000,
//1487.2000,1488.4000,1489.8000,1491.0000,1492.0000,1493.0000,1494.2000,1495.6000,1496.8000,1498.0000,1499.0000,1500.0000,1501.2000,1502.6000,1504.0000,1505.0000,
//1506.0000,1506.8000,1507.8000,1508.6000,1509.6000,1510.4000,1511.4000,1512.2000,1513.2000,1514.0000,1515.0000,1516.0000,1517.0000,1518.0000,1519.0000,1520.0000,
//1522.2000,1525.2000,1528.2000,1531.4000,1534.4000,1536.8000,1537.6000,1538.4000,1539.2000,1540.0000,1541.0000,1542.0000,1543.0000,1544.0000,1544.8000,1545.6000,
//1546.4000,1547.2000,1548.0000,1549.0000,1550.0000,1551.0000,1552.0000,1553.0000,1554.2000,1556.0000,1557.0000,1558.6000,1560.0000,1561.2000,1563.0000,1564.0000,
//1565.4000,1567.0000,1568.0000,1569.0000,1570.0000,1571.0000,1572.0000,1572.8000,1573.4000,1574.2000,1575.0000,1576.0000,1577.0000,1578.0000,1579.0000,1579.6000,
//1580.4000,1581.2000,1582.0000,1583.0000,1584.0000,1585.0000,1586.0000,1587.0000,1588.4000,1589.6000,1591.0000,1592.0000,1593.0000,1594.0000,1595.0000,1596.4000,
//1597.6000,1599.0000,1600.0000,1601.0000,1602.0000,1603.4000,1604.8000,1606.0000,1607.0000,1608.0000,1609.2000,1610.6000,1612.0000,1613.0000,1614.0000,1615.2000,
//1616.4000,1617.6000,1618.8000,1620.0000,1621.0000,1622.0000,1623.0000,1624.0000,1625.0000,1626.0000,1627.0000,1628.2000,1629.4000,1630.6000,1631.6000,1632.6000,
//1633.4000,1634.2000,1635.0000,1636.0000,1637.0000,1638.0000,1638.8000,1639.6000,1640.4000,1641.2000,1642.0000,1643.0000,1644.0000,1645.0000,1645.8000,1646.6000,
//1647.4000,1648.0000,1649.6000,1651.0000,1652.0000,1653.0000,1654.4000,1655.8000,1657.0000,1658.0000,1659.2000,1660.8000,1662.0000,1663.0000,1664.2000,1665.2000,
//1666.4000,1667.4000,1668.6000,1669.6000,1670.8000,1671.8000,1672.8000,1674.0000,1675.0000,1676.0000,1677.0000,1678.0000,1679.0000,1680.0000,1681.0000,1682.8000,
//1684.0000,1685.2000,1687.0000,1688.0000,1689.4000,1691.0000,1692.0000,1693.6000,1695.0000,1696.2000,1697.2000,1698.4000,1699.6000,1700.6000,1701.8000,1703.0000,
//1704.0000,1705.0000,1706.0000,1707.0000,1708.0000,1709.0000,1710.0000,1711.0000,1712.0000,1713.0000,1714.0000,1715.0000,1716.0000,1717.0000,1718.0000,1718.8000,
//1719.6000,1720.4000,1721.2000,1722.0000,1723.0000,1724.0000,1725.0000,1726.0000,1727.0000,1727.8000,1728.8000,1730.0000,1731.0000,1732.2000,1733.6000,1735.0000,
//1736.0000,1737.0000,1738.4000,1739.8000,1741.0000,1742.0000,1743.2000,1744.8000,1746.0000,1747.0000,1748.6000,1750.0000,1751.0000,1752.4000,1754.0000,1755.0000,
//1756.2000,1757.8000,1759.0000,1760.0000,1761.0000,1761.8000,1762.2000,1763.0000,1764.0000,1764.4000,1765.0000,1766.0000,1766.6000,1767.0000,1768.0000,1768.8000,
//1769.0000,1770.0000,1770.8000,1771.2000,1772.0000,1773.0000,1773.4000,1774.0000,1775.0000,1775.6000,1776.0000,1777.0000,1778.2000,1779.6000,1780.8000,1782.0000,
//1783.0000,1784.0000,1785.0000,1786.0000,1787.0000,1788.2000,1789.4000,1790.6000,1791.8000,1793.0000,1794.0000,1795.2000,1796.6000,1798.0000,1799.0000,1800.0000,
//1801.4000,1802.8000,1804.0000,1805.0000,1806.2000,1807.6000,1809.0000,1810.0000,1811.0000,1812.0000,1813.0000,1814.0000,1815.0000,1816.0000,1817.2000,1818.4000,
//1819.6000,1820.8000,1821.8000,1823.0000,1824.0000,1825.0000,1826.0000,1827.0000,1828.0000,1829.0000,1830.2000,1831.4000,1832.4000,1833.6000,1834.8000,1836.0000,
//1837.0000,1838.0000,1839.0000,1840.0000,1841.0000,1842.0000,1843.2000,1844.4000,1845.6000,1846.8000,1847.8000,1849.0000,1850.0000,1851.0000,1852.0000,1853.0000,
//1854.0000,1855.2000,1856.4000,1857.2000,1858.0000,1859.0000,1860.0000,1861.0000,1862.0000,1863.0000,1864.0000,1865.0000,1865.8000,1866.6000,1867.6000,1868.4000,
//1869.2000,1870.0000,1871.0000,1872.0000,1873.0000,1874.4000,1875.8000,1877.0000,1878.0000,1879.0000,1880.2000,1881.6000,1882.8000,1884.0000,1885.0000,1886.0000,
//1887.2000,1888.6000,1890.0000,1891.0000,1892.0000,1893.0000,1894.2000,1895.4000,1896.8000,1898.0000,1899.0000,1900.0000,1901.0000,1902.4000,1903.6000,1904.8000,
//1905.6000,1906.6000,1907.4000,1908.2000,1909.0000,1910.0000,1911.0000,1912.0000,1913.0000,1914.0000,1915.0000,1916.0000,1917.0000,1917.8000,1918.6000,1919.6000,
//1920.4000,1921.8000,1923.0000,1924.0000,1925.0000,1926.0000,1927.2000,1928.4000,1929.6000,1931.0000,1932.0000,1933.0000,1934.0000,1935.0000,1936.4000,1937.6000,
//1939.0000,1940.0000,1941.0000,1942.0000,1943.4000,1944.8000,1946.0000,1947.0000,1948.0000,1949.0000,1950.4000,1951.8000,1953.0000,1954.0000,1955.0000,1956.4000,
//1957.8000,1959.0000,1960.0000,1961.2000,1962.6000,1964.0000,1965.0000,1966.0000,1967.4000,1968.6000,1969.8000,1971.0000,1972.0000,1973.0000,1974.0000,1975.0000,
//1976.0000,1977.0000,1978.0000,1979.0000,1980.0000,1981.2000,1982.2000,1983.4000,1984.6000,1985.6000,1986.8000,1987.8000,1989.0000,1990.0000,1991.0000,1992.0000,
//1993.0000,1994.0000,1995.0000,1996.0000,1997.0000,1998.0000,1999.0000,2000.0000,2001.2000,2002.6000,2003.8000,2005.0000,2006.0000,2007.0000,2008.0000,2009.0000,
//2010.2000,2011.6000,2012.8000,2014.0000,2015.0000,2016.0000,2017.0000,2018.0000,2019.0000,2020.0000,2021.0000,2022.2000,2023.2000,2024.4000,2025.4000,2026.6000,
//2027.6000,2028.8000,2029.8000,2031.0000,2032.0000,2032.6000,2033.0000,2033.0000,2033.8000,2034.0000,2034.4000,2035.0000,2035.0000,2035.8000,2036.0000,2036.4000,
//2037.0000,2037.0000,2037.6000,2038.0000,2038.2000,2039.0000,2039.0000,2039.6000,2040.0000,2040.2000,2041.0000,2041.0000,2041.6000,2042.0000,2042.2000,2042.8000,
//2043.0000,2043.4000,2044.0000,2044.0000,2044.8000,2045.0000,2045.4000,2046.0000,2046.0000,2046.8000,2047.0000,2047.2000,2048.0000,2048.0000,2049.2000,2051.0000,
//2052.2000,2054.0000,2055.3999,2057.0000,2058.3999,2060.0000,2061.3999,2063.0000,2064.3999,2065.2000,2066.0000,2067.0000,2068.0000,2069.0000,2070.0000,2071.0000,
//2072.0000,2072.8000,2073.6001,2074.3999,2075.3999,2076.2000,2077.0000,2078.0000,2079.0000,2080.0000,2081.0000,2082.6001,2084.0000,2085.0000,2086.6001,2088.0000,
//2089.0000,2090.6001,2092.0000,2093.0000,2094.6001,2096.0000,2097.0000,2098.0000,2099.0000,2100.0000,2101.0000,2101.8000,2102.8000,2103.6001,2104.6001,2105.3999,
//2106.2000,2107.2000,2108.0000,2109.0000,2110.0000,2111.0000,2112.0000,2113.0000,2114.3999,2116.0000,2117.0000,2118.0000,2119.6001,2121.0000,2122.0000,2123.2000,
//2124.8000,2126.0000,2127.0000,2128.2000,2129.0000,2130.0000,2131.0000,2132.0000,2133.0000,2134.0000,2134.8000,2135.6001,2136.2000,2137.0000,2138.0000,2139.0000,
//2140.0000,2141.0000,2142.0000,2142.8000,2143.6001,2144.3999,2145.6001,2147.0000,2148.0000,2149.0000,2150.0000,2151.2000,2152.6001,2153.8000,2155.0000,2156.0000,
//2157.0000,2158.0000,2159.3999,2160.6001,2161.8000,2163.0000,2164.0000,2165.0000,2166.0000,2167.0000,2168.0000,2169.3999,2170.6001,2171.8000,2173.0000,2174.0000,
//2175.0000,2176.0000,2177.0000,2178.2000,2179.3999,2180.8000,2182.0000,2183.0000,2184.0000,2185.0000,2186.2000,2187.6001,2189.0000,2190.0000,2191.0000,2192.0000,
//2193.0000,2194.0000,2195.2000,2196.2000,2197.3999,2198.6001,2199.6001,2200.8000,2201.8000,2203.0000,2204.0000,2205.0000,2206.0000,2207.0000,2208.0000,2209.0000,
//2210.0000,2211.2000,2212.6001,2213.8000,2215.0000,2216.0000,2217.0000,2218.0000,2219.3999,2220.6001,2221.8000,2223.0000,2224.0000,2225.0000,2226.0000,2227.3999,
//2228.6001,2230.0000,2231.0000,2232.0000,2233.0000,2234.2000,2235.3999,2236.8000,2238.0000,2239.0000,2240.0000,2241.0000,2242.0000,2243.0000,2244.0000,2245.0000,
//2246.0000,2247.0000,2248.0000,2249.0000,2250.2000,2251.2000,2252.2000,2253.2000,2254.2000,2255.2000,2256.3999,2258.0000,2259.0000,2260.0000,2261.6001,2263.0000,
//2264.0000,2265.2000,2266.8000,2268.0000,2269.0000,2270.3999,2272.0000,2273.0000,2273.6001,2274.2000,2275.0000,2276.0000,2277.0000,2277.6001,2278.2000,2279.0000,
//2280.0000,2281.0000,2281.8000,2282.3999,2283.0000,2284.0000,2285.0000,2285.8000,2286.3999,2287.0000,2288.0000,2289.0000,2290.0000,2291.0000,2292.0000,2293.0000,
//2294.0000,2295.0000,2296.0000,2297.0000,2298.0000,2299.0000,2300.0000,2301.0000,2302.0000,2303.0000,2304.0000,2305.0000,2306.0000,2307.0000,2308.0000,2309.2000,
//2310.2000,2311.2000,2312.2000,2313.3999,2314.3999,2315.3999,2316.6001,2317.6001,2318.6001,2319.6001,2321.0000,2322.0000,2323.3999,2325.0000,2326.0000,2327.8000,
//2329.0000,2330.2000,2332.0000,2333.0000,2334.3999,2336.0000,2337.0000,2338.0000,2339.0000,2340.0000,2341.0000,2342.0000,2343.0000,2344.0000,2345.0000,2346.0000,
//2347.0000,2348.0000,2349.0000,2350.0000,2351.0000,2352.0000,2353.3999,2354.8000,2356.0000,2357.0000,2358.0000,2359.2000,2360.6001,2362.0000,2363.0000,2364.0000,
//2365.2000,2366.6001,2368.0000,2369.0000,2370.0000,2371.0000,2372.0000,2373.0000,2374.0000,2375.0000,2376.0000,2377.0000,2378.0000,2379.2000,2380.2000,2381.3999,
//2382.3999,2383.6001,2384.8000,2386.0000,2387.0000,2388.6001,2390.0000,2391.0000,2392.2000,2393.8000,2395.0000,2396.0000,2397.6001,2399.0000,2400.0000,2401.0000,
//2402.0000,2403.0000,2404.0000,2405.0000,2406.0000,2407.0000,2407.8000,2408.8000,2409.6001,2410.3999,2411.3999,2412.2000,2413.0000,2414.0000,2415.0000,2416.0000,
//2417.0000,2418.0000,2419.0000,2420.0000,2421.0000,2422.2000,2423.2000,2424.2000,2425.3999,2426.3999,2427.6001,2428.6001,2429.6001,2430.8000,2431.8000,2433.0000,
//2434.0000,2435.0000,2436.0000,2437.0000,2438.0000,2439.0000,2440.0000,2441.0000,2442.0000,2443.0000,2444.2000,2445.2000,2446.3999,2447.3999,2448.6001,2449.6001,
//2450.6001,2451.6001,2452.8000,2453.8000,2454.8000,2455.8000,2456.8000,2457.8000,2459.0000,2460.0000,2461.0000,2462.0000,2463.0000,2464.0000,2465.0000,2466.0000,
//2467.6001,2469.0000,2470.0000,2471.2000,2472.8000,2474.0000,2475.0000,2476.6001,2478.0000,2479.0000,2480.2000,2481.2000,2482.3999,2483.3999,2484.3999,2485.3999,
//2486.6001,2487.6001,2488.6001,2489.6001,2490.8000,2491.8000,2492.8000,2493.8000,2495.0000,2496.0000,2497.0000,2498.0000,2499.0000,2500.2000,2501.6001,2503.0000,
//2504.0000,2505.0000,2506.2000,2507.6001,2509.0000,2510.0000,2511.0000,2512.0000,2513.0000,2514.0000,2515.0000,2516.0000,2517.0000,2518.0000,2519.0000,2520.0000,
//2521.0000,2522.0000,2523.0000,2524.0000,2525.0000,2526.0000,2527.0000,2528.0000,2529.0000,2530.0000,2531.2000,2532.3999,2533.8000,2535.0000,2536.0000,2537.0000,
//2538.0000,2539.3999,2540.6001,2542.0000,2543.0000,2544.0000,2545.8000,2547.3999,2549.0000,2551.0000,2553.0000,2554.6001,2556.2000,2558.0000,2560.0000,2561.0000,
//2562.0000,2563.0000,2564.0000,2565.2000,2566.3999,2567.3999,2568.6001,2569.6001,2570.8000,2572.0000,2573.0000,2574.0000,2575.0000,2576.0000,2577.0000,2578.2000,
//2579.6001,2581.0000,2582.0000,2583.0000,2584.3999,2585.8000,2587.0000,2588.0000,2589.2000,2590.6001,2592.0000,2593.0000,2594.0000,2594.8000,2595.6001,2596.3999,
//2597.2000,2598.0000,2599.0000,2600.0000,2601.0000,2602.0000,2603.0000,2604.0000,2604.8000,2605.6001,2606.3999,2607.2000,2608.0000,2610.0000,2611.2000,2613.0000,
//2614.2000,2616.0000,2617.3999,2619.0000,2620.6001,2622.0000,2623.6001,2625.0000,2626.0000,2627.0000,2628.0000,2629.0000,2629.8000,2630.8000,2631.8000,2632.6001,
//2633.6001,2634.6001,2635.6001,2636.3999,2637.3999,2638.3999,2639.2000,2640.2000,2641.6001,2643.0000,2644.0000,2645.0000,2646.2000,2647.6001,2649.0000,2650.0000,
//2651.0000,2652.2000,2653.6001,2655.0000,2656.0000,2657.0000,2658.0000,2659.0000,2660.0000,2661.0000,2662.0000,2663.0000,2664.0000,2665.0000,2666.0000,2666.8000,
//2667.8000,2668.8000,2669.6001,2670.6001,2671.6001,2672.6001,2674.0000,2675.0000,2676.0000,2677.0000,2678.2000,2679.3999,2680.8000,2682.0000,2683.0000,2684.0000,
//2685.0000,2686.3999,2687.6001,2689.0000,2690.0000,2691.0000,2692.0000,2693.0000,2694.0000,2695.0000,2696.0000,2697.0000,2698.2000,2699.2000,2700.3999,2701.6001,
//2702.6001,2703.8000,2705.0000,2706.0000,2707.0000,2708.2000,2709.8000,2711.0000,2712.0000,2713.0000,2714.3999,2715.8000,2717.0000,2718.0000,2719.0000,2720.3999,
//2721.3999,2722.3999,2723.6001,2724.6001,2725.8000,2726.8000,2727.8000,2729.0000,2730.0000,2731.0000,2732.0000,2733.0000,2734.0000,2735.0000,2736.0000,2737.0000,
//2738.3999,2739.8000,2741.0000,2742.0000,2743.3999,2744.8000,2746.0000,2747.0000,2748.3999,2749.8000,2751.0000,2752.0000,2753.0000,2754.0000,2755.0000,2756.0000,
//2757.0000,2758.2000,2759.2000,2760.2000,2761.2000,2762.3999,2763.3999,2764.3999,2765.3999,2766.3999,2767.6001,2768.6001,2769.6001,2770.6001,2771.8000,2772.8000,
//2773.8000,2774.8000,2775.8000,2777.0000,2778.0000,2779.0000,2780.0000,2781.0000,2782.0000,2783.0000,2784.0000,2785.0000,2786.0000,2787.2000,2788.6001,2790.0000,
//2791.0000,2792.0000,2793.2000,2794.6001,2796.0000,2797.0000,2798.0000,2799.0000,2800.3999,2801.6001,2802.6001,2803.8000,2805.0000,2806.0000,2807.0000,2808.0000,
//2809.0000,2810.0000,2811.0000,2812.0000,2813.0000,2814.2000,2815.2000,2816.3999,2817.3999,2818.3999,2819.6001,2820.6001,2821.6001,2822.6001,2823.6001,2824.6001,
//2825.8000,2826.8000,2827.8000,2828.8000,2829.8000,2830.8000,2832.0000,2833.0000,2835.0000,2836.3999,2838.0000,2840.0000,2841.6001,2843.0000,2845.0000,2847.0000,
//2848.2000,2849.0000,2850.0000,2850.3999,2851.0000,2852.0000,2852.6001,2853.0000,2854.0000,2854.8000,2855.2000,2856.0000,2857.0000,2857.3999,2858.0000,2859.0000,
//2859.6001,2860.0000,2861.0000,2861.8000,2862.2000,2863.0000,2864.0000,2864.3999,2865.2000,2866.0000,2867.0000,2868.0000,2869.0000,2869.8000,2870.6001,2871.3999,
//2872.2000,2873.0000,2874.0000,2875.0000,2876.0000,2876.8000,2877.6001,2878.3999,2879.2000,2880.0000,2881.2000,2882.6001,2884.0000,2885.0000,2886.0000,2887.6001,
//2889.0000,2890.0000,2891.0000,2892.3999,2893.8000,2895.0000,2896.0000,2897.2000,2898.3999,2899.8000,2901.0000,2902.0000,2903.0000,2904.2000,2905.6001,2907.0000,
//2908.0000,2909.0000,2910.0000,2911.3999,2912.8000,2914.0000,2915.0000,2916.0000,2917.0000,2918.0000,2919.0000,2920.2000,2921.3999,2922.6001,2923.8000,2925.0000,
//2926.0000,2927.0000,2928.0000,2929.0000,2930.0000,2930.8000,2931.3999,2932.2000,2933.0000,2934.0000,2935.0000,2936.0000,2936.8000,2937.3999,2938.2000,2939.0000,
//2940.0000,2941.0000,2942.0000,2942.6001,2943.3999,2944.0000,2945.8000,2947.0000,2948.0000,2949.8000,2951.0000,2952.0000,2953.8000,2955.0000,2956.2000,2957.8000,
//2959.0000,2960.2000,2961.2000,2962.2000,2963.2000,2964.2000,2965.2000,2966.2000,2967.2000,2968.2000,2969.2000,2970.2000,2971.2000,2972.2000,2973.3999,2974.3999,
//2975.3999,2976.3999,2977.6001,2978.8000,2980.0000,2981.0000,2982.0000,2983.0000,2984.0000,2985.2000,2986.3999,2987.6001,2988.8000,2990.0000,2991.0000,2992.0000,
//2993.0000,2994.0000,2995.0000,2996.0000,2997.0000,2998.0000,2999.0000,3000.0000,3001.0000,3002.0000,3003.0000,3004.0000,3005.0000,3006.0000,3007.0000,3008.0000,
//3009.0000,3010.0000,3011.0000,3012.0000,3013.0000,3014.0000,3015.0000,3016.0000,3017.0000,3018.0000,3019.0000,3020.0000,3021.0000,3022.0000,3023.0000,3024.0000,
//3025.0000,3026.0000,3027.0000,3028.2000,3029.6001,3031.0000,3032.0000,3033.0000,3034.2000,3035.6001,3036.8000,3038.0000,3039.0000,3040.0000,3041.0000,3042.0000,
//3043.0000,3044.0000,3045.0000,3046.0000,3047.0000,3048.0000,3049.0000,3050.0000,3051.0000,3052.0000,3053.0000,3054.0000,3055.0000,3056.0000,3057.0000,3058.0000,
//3059.0000,3060.2000,3061.3999,3062.6001,3063.8000,3065.0000,3066.0000,3067.0000,3068.0000,3069.0000,3070.2000,3071.3999,3072.3999,3073.2000,3074.0000,3075.0000,
//3076.0000,3077.0000,3078.0000,3078.6001,3079.3999,3080.2000,3081.0000,3082.0000,3083.0000,3084.0000,3084.8000,3085.6001,3086.3999,3087.2000,3088.0000,3089.3999,
//3091.0000,3092.0000,3093.3999,3095.0000,3096.0000,3097.3999,3099.0000,3100.0000,3101.3999,3103.0000,3104.0000,3105.0000,3106.0000,3107.0000,3108.0000,3109.0000,
//3110.0000,3111.0000,3111.8000,3112.8000,3113.6001,3114.6001,3115.3999,3116.3999,3117.2000,3118.2000,3119.0000,3120.0000,3121.2000,3122.6001,3124.0000,3125.0000,
//3126.0000,3127.3999,3128.8000,3130.0000,3131.0000,3132.0000,3133.3999,3134.8000,3136.0000,3137.0000,3138.0000,3139.0000,3140.0000,3141.0000,3142.0000,3142.8000,
//3143.8000,3144.8000,3145.6001,3146.6001,3147.3999,3148.3999,3149.3999,3150.2000,3151.2000,3152.0000,3153.3999,3154.6001,3155.8000,3157.0000,3158.0000,3159.0000,
//3160.0000,3161.2000,3162.3999,3163.8000,3165.0000,3166.0000,3167.0000,3168.0000,3169.0000,3170.0000,3171.0000,3171.8000,3172.6001,3173.3999,3174.0000,3175.0000,
//3176.0000,3177.0000,3178.0000,3178.8000,3179.3999,3180.2000,3181.0000,3182.0000,3183.0000,3184.0000,3185.0000,3186.0000,3187.3999,3189.0000,3190.0000,3191.2000,
//3192.8000,3194.0000,3195.0000,3196.6001,3198.0000,3199.0000,3200.2000,3201.0000,3202.0000,3203.0000,3204.0000,3205.0000,3205.8000,3206.6001,3207.3999,3208.0000,
//3209.0000,3210.0000,3211.0000,3212.0000,3212.8000,3213.6001,3214.3999,3215.2000,3216.0000,3217.0000,3218.0000,3219.0000,3220.0000,3221.0000,3222.0000,3222.8000,
//3223.6001,3224.3999,3225.2000,3226.0000,3227.0000,3228.0000,3229.0000,3230.0000,3231.0000,3232.0000,3233.0000,3234.0000,3235.0000,3236.0000,3237.2000,3238.3999,
//3239.6001,3240.8000,3242.0000,3243.0000,3244.0000,3245.0000,3246.2000,3247.3999,3248.6001,3250.0000,3251.0000,3252.0000,3253.0000,3254.0000,3255.0000,3256.3999,
//3257.6001,3258.8000,3260.0000,3261.0000,3262.0000,3263.0000,3264.0000,3265.0000,3266.0000,3267.0000,3268.0000,3268.6001,3269.3999,3270.2000,3271.0000,3272.0000,
//3273.0000,3274.0000,3274.8000,3275.6001,3276.2000,3277.0000,3278.0000,3279.0000,3280.0000,3281.0000,3281.8000,3282.8000,3283.6001,3284.3999,3285.3999,3286.2000,
//3287.0000,3288.0000,3289.0000,3290.0000,3291.0000,3292.0000,3293.0000,3294.0000,3295.0000,3296.0000,3296.8000,3297.3999,3298.2000,3299.0000,3300.0000,3301.0000,
//3302.0000,3302.6001,3303.3999,3304.0000,3305.0000,3306.0000,3307.0000,3307.8000,3308.6001,3309.2000,3310.0000,3311.0000,3312.0000,3313.0000,3314.0000,3315.0000,
//3316.0000,3317.0000,3318.0000,3319.0000,3320.0000,3321.0000,3322.0000,3323.0000,3324.0000,3325.0000,3326.0000,3327.0000,3328.0000,3329.0000,3330.0000,3330.8000,
//3331.3999,3332.0000,3333.0000,3334.0000,3334.8000,3335.3999,3336.0000,3337.0000,3338.0000,3338.8000,3339.3999,3340.0000,3341.0000,3342.0000,3342.8000,3343.3999,
//3344.0000,3345.6001,3347.0000,3348.3999,3350.0000,3351.0000,3353.0000,3354.0000,3355.6001,3357.0000,3358.2000,3360.0000,3361.0000,3361.3999,3362.0000,3363.0000,
//3363.6001,3364.0000,3365.0000,3366.0000,3366.3999,3367.0000,3368.0000,3368.6001,3369.0000,3370.0000,3370.8000,3371.2000,3372.0000,3373.0000,3373.3999,3374.0000,
//3375.0000,3375.6001,3376.0000,3377.0000,3378.0000,3379.0000,3380.0000,3381.0000,3382.0000,3383.0000,3384.0000,3385.0000,3386.0000,3387.0000,3388.0000,3388.8000,
//3389.8000,3390.8000,3391.6001,3392.3999,3393.0000,3394.0000,3395.0000,3395.8000,3396.3999,3397.0000,3398.0000,3399.0000,3399.8000,3400.3999,3401.0000,3402.0000,
//3403.0000,3403.6001,3404.2000,3405.0000,3406.0000,3407.0000,3407.6001,3408.2000,3409.3999,3410.8000,3412.0000,3413.0000,3414.0000,3415.0000,3416.2000,3417.6001,
//3418.8000,3420.0000,3421.0000,3422.0000,3423.0000,3424.3999,3425.0000,3426.0000,3427.0000,3427.6001,3428.2000,3429.0000,3430.0000,3431.0000,3431.6001,3432.2000,
//3433.0000,3434.0000,3435.0000,3435.6001,3436.2000,3437.0000,3438.0000,3439.0000,3439.6001,3440.2000,3441.0000,3442.0000,3443.0000,3443.8000,3444.6001,3445.2000,
//3446.0000,3447.0000,3448.0000,3448.8000,3449.6001,3450.2000,3451.0000,3452.0000,3453.0000,3453.8000,3454.3999,3455.2000,3456.0000,3457.0000,3458.0000,3459.0000,
//3460.0000,3460.8000,3461.6001,3462.3999,3463.2000,3464.0000,3465.0000,3466.0000,3467.0000,3468.0000,3469.0000,3470.0000,3470.8000,3471.6001,3472.3999,3473.0000,
//3474.0000,3475.0000,3475.6001,3476.2000,3477.0000,3478.0000,3478.8000,3479.3999,3480.0000,3481.0000,3482.0000,3482.6001,3483.2000,3484.0000,3485.0000,3486.0000,
//3486.6001,3487.0000,3488.0000,3489.0000,3490.0000,3491.0000,3491.8000,3492.6001,3493.3999,3494.3999,3495.2000,3496.0000,3497.0000,3498.0000,3499.0000,3500.0000,
//3501.0000,3501.8000,3502.6001,3503.3999,3504.3999,3505.0000,3506.0000,3507.0000,3508.0000,3508.8000,3509.3999,3510.2000,3511.0000,3512.0000,3513.0000,3514.0000,
//3514.6001,3515.3999,3516.0000,3517.0000,3518.0000,3519.0000,3519.8000,3520.6001,3521.2000,3522.0000,3523.0000,3524.0000,3524.8000,3525.3999,3526.0000,3527.0000,
//3528.0000,3529.0000,3529.6001,3530.2000,3531.0000,3532.0000,3533.0000,3533.8000,3534.3999,3535.2000,3536.0000,3537.0000,3538.0000,3538.6001,3539.3999,3540.0000,
//3541.0000,3542.0000,3543.0000,3543.6001,3544.2000,3545.0000,3546.0000,3547.0000,3547.8000,3548.3999,3549.0000,3550.0000,3551.0000,3552.0000,3552.6001,3553.2000,
//3554.0000,3555.0000,3556.0000,3556.6001,3557.2000,3558.0000,3559.0000,3560.0000,3560.6001,3561.2000,3562.0000,3563.0000,3564.0000,3564.6001,3565.2000,3566.0000,
//3567.0000,3568.0000,3569.0000,3570.0000,3571.3999,3573.0000,3574.0000,3575.6001,3577.0000,3578.0000,3579.6001,3581.0000,3582.2000,3583.8000,3585.0000,3585.6001,
//3586.2000,3587.0000,3588.0000,3589.0000,3589.8000,3590.6001,3591.2000,3592.0000,3593.0000,3594.0000,3594.8000,3595.3999,3596.2000,3597.0000,3598.0000,3599.0000,
//3599.8000,3600.3999,3601.2000,3602.0000,3603.0000,3604.0000,3605.0000,3605.8000,3606.6001,3607.3999,3608.0000,3609.0000,3610.0000,3611.0000,3612.0000,3612.8000,
//3613.6001,3614.2000,3615.0000,3616.0000,3617.0000,3617.3999,3618.0000,3618.8000,3619.0000,3620.0000,3620.3999,3621.0000,3622.0000,3622.2000,3623.0000,3623.6001,
//3624.0000,3625.0000,3625.2000,3626.0000,3626.8000,3627.0000,3628.0000,3628.3999,3629.0000,3629.8000,3630.0000,3631.0000,3631.6001,3632.0000,3633.0000,3634.0000,
//3635.0000,3636.0000,3637.0000,3638.0000,3639.0000,3640.0000,3641.0000,3642.0000,3643.0000,3644.0000,3645.0000,3646.0000,3647.0000,3648.0000,3649.0000,3649.2000,
//3650.0000,3650.6001,3651.0000,3652.0000,3652.2000,3653.0000,3653.6001,3654.0000,3655.0000,3655.0000,3656.0000,3656.3999,3657.0000,3657.8000,3658.0000,3659.0000,
//3659.3999,3660.0000,3660.8000,3661.0000,3662.0000,3662.3999,3663.0000,3663.6001,3664.0000,3665.0000,3666.0000,3666.3999,3667.0000,3668.0000,3669.0000,3669.6001,
//3670.2000,3671.0000,3672.0000,3672.8000,3673.3999,3674.0000,3675.0000,3676.0000,3676.6001,3677.2000,3678.0000,3679.0000,3679.8000,3680.3999,3681.0000,3682.0000,
//3682.6001,3683.0000,3684.0000,3684.8000,3685.2000,3686.0000,3687.0000,3687.3999,3688.0000,3689.0000,3689.8000,3690.2000,3691.0000,3692.0000,3692.3999,3693.0000,
//3694.0000,3694.6001,3695.0000,3696.0000,3696.8000,3697.2000,3698.0000,3698.8000,3699.2000,3700.0000,3701.0000,3701.3999,3702.0000,3703.0000,3703.3999,3704.0000,
//3705.0000,3705.3999,3706.0000,3707.0000,3707.6001,3708.0000,3709.0000,3709.6001,3710.0000,3711.0000,3711.6001,3712.0000,3713.0000,3713.8000,3714.2000,3715.0000,
//3716.0000,3716.6001,3717.0000,3718.0000,3718.8000,3719.2000,3720.0000,3721.0000,3721.6001,3722.0000,3723.0000,3723.8000,3724.2000,3725.0000,3726.0000,3726.6001,
//3727.0000,3728.0000,3728.8000,3729.2000,3730.0000,3731.0000,3731.6001,3732.0000,3733.0000,3733.8000,3734.3999,3735.0000,3736.0000,3736.6001,3737.0000,3738.0000,
//3739.0000,3739.3999,3740.0000,3741.0000,3741.6001,3742.0000,3743.0000,3744.0000,3744.3999,3745.0000,3746.0000,3746.6001,3747.0000,3748.0000,3748.6001,3749.0000,
//3750.0000,3750.8000,3751.2000,3752.0000,3752.8000,3753.2000,3754.0000,3755.0000,3755.3999,3756.0000,3757.0000,3757.6001,3758.0000,3759.0000,3759.6001,3760.0000,
//3761.0000,3762.0000,3763.0000,3764.0000,3765.0000,3766.0000,3767.0000,3768.0000,3769.0000,3770.0000,3771.0000,3772.0000,3773.0000,3774.0000,3775.0000,3776.0000,
//3776.8000,3777.0000,3777.3999,3778.0000,3778.0000,3779.0000,3779.0000,3779.6001,3780.0000,3780.2000,3781.0000,3781.0000,3781.6001,3782.0000,3782.3999,3783.0000,
//3783.0000,3783.8000,3784.0000,3784.3999,3785.0000,3785.0000,3786.0000,3786.0000,3786.6001,3787.0000,3787.2000,3788.0000,3788.0000,3788.6001,3789.0000,3789.3999,
//3790.0000,3790.0000,3790.8000,3791.0000,3791.3999,3792.0000,3792.0000,3793.0000,3793.6001,3794.0000,3795.0000,3795.6001,3796.0000,3797.0000,3797.3999,3798.0000,
//3799.0000,3799.3999,3800.0000,3801.0000,3801.2000,3802.0000,3803.0000,3803.2000,3804.0000,3804.8000,3805.2000,3806.0000,3806.8000,3807.0000,3808.0000,3808.8000,
//3809.2000,3810.0000,3811.0000,3811.6001,3812.0000,3813.0000,3814.0000,3814.3999,3815.0000,3816.0000,3816.8000,3817.2000,3818.0000,3819.0000,3819.6001,3820.2000,
//3821.0000,3822.0000,3822.6001,3823.0000,3824.0000,3824.8000,3825.0000,3826.0000,3826.2000,3827.0000,3827.6001,3828.0000,3829.0000,3829.2000,3830.0000,3830.6001,
//3831.0000,3832.0000,3832.2000,3833.0000,3833.6001,3834.0000,3834.8000,3835.0000,3836.0000,3836.3999,3837.0000,3837.8000,3838.0000,3839.0000,3839.3999,3840.0000,
//3840.8000,3841.2000,3842.0000,3842.8000,3843.0000,3844.0000,3844.8000,3845.0000,3846.0000,3846.6001,3847.0000,3848.0000,3848.6001,3849.0000,3850.0000,3850.6001,
//3851.0000,3852.0000,3852.6001,3853.0000,3854.0000,3854.3999,3855.0000,3856.0000,3856.3999,3857.0000,3857.8000,3858.0000,3859.0000,3859.3999,3860.0000,3860.8000,
//3861.0000,3862.0000,3862.3999,3863.0000,3864.0000,3864.2000,3865.0000,3865.6001,3866.0000,3867.0000,3867.2000,3868.0000,3868.6001,3869.0000,3870.0000,3870.2000,
//3871.0000,3871.6001,3872.0000,3873.0000,3873.3999,3874.0000,3875.0000,3875.2000,3876.0000,3876.8000,3877.0000,3878.0000,3878.6001,3879.0000,3880.0000,3880.3999,
//3881.0000,3881.8000,3882.2000,3883.0000,3883.6001,3884.0000,3885.0000,3885.3999,3886.0000,3887.0000,3887.2000,3888.0000,3888.8000,3889.0000,3890.0000,3890.3999,
//3891.0000,3892.0000,3892.2000,3893.0000,3893.6001,3894.0000,3895.0000,3895.3999,3896.0000,3896.8000,3897.0000,3898.0000,3898.3999,3899.0000,3900.0000,3900.2000,
//3901.0000,3901.6001,3902.0000,3903.0000,3903.3999,3904.0000,3904.8000,3905.0000,3906.0000,3906.3999,3907.0000,3908.0000,3908.2000,3909.0000,3909.6001,3910.0000,
//3911.0000,3911.2000,3912.0000,3912.8000,3913.0000,3914.0000,3914.3999,3915.0000,3915.8000,3916.2000,3917.0000,3917.6001,3918.0000,3919.0000,3919.2000,3920.0000,
//3920.8000,3921.0000,3922.0000,3922.3999,3923.0000,3924.0000,3924.2000,3925.0000,3925.8000,3926.0000,3927.0000,3927.3999,3928.0000,3929.0000,3929.2000,3930.0000,
//3930.6001,3931.0000,3932.0000,3932.3999,3933.0000,3933.8000,3934.2000,3935.0000,3935.6001,3936.0000,3937.0000,3937.0000,3938.0000,3938.0000,3939.0000,3939.0000,
//3940.0000,3940.0000,3941.0000,3941.2000,3942.0000,3942.2000,3943.0000,3943.2000,3944.0000,3944.2000,3945.0000,3945.3999,3946.0000,3946.3999,3947.0000,3947.3999,
//3948.0000,3948.3999,3949.0000,3949.6001,3950.0000,3950.6001,3951.0000,3951.6001,3952.0000,3952.8000,3953.0000,3954.0000,3954.2000,3955.0000,3955.6001,3956.0000,
//3957.0000,3957.2000,3958.0000,3958.6001,3959.0000,3959.8000,3960.0000,3961.0000,3961.3999,3962.0000,3962.8000,3963.0000,3964.0000,3964.3999,3965.0000,3965.6001,
//3966.0000,3967.0000,3967.2000,3968.0000,3968.6001,3969.0000,3969.8000,3970.0000,3971.0000,3971.2000,3972.0000,3972.3999,3973.0000,3973.6001,3974.0000,3974.8000,
//3975.0000,3976.0000,3976.2000,3977.0000,3977.6001,3978.0000,3978.8000,3979.0000,3980.0000,3980.2000,3981.0000,3981.3999,3982.0000,3982.6001,3983.0000,3983.8000,
//3984.0000,3985.0000,3985.3999,3986.0000,3986.8000,3987.0000,3988.0000,3988.6001,3989.0000,3990.0000,3990.2000,3991.0000,3991.6001,3992.0000,3993.0000,3993.2000,
//3994.0000,3994.8000,3995.0000,3996.0000,3996.3999,3997.0000,3997.8000,3998.0000,3999.0000,3999.3999,4000.0000,4000.8000,4001.0000,4002.0000,4002.2000,4003.0000,
//4003.3999,4004.0000,4004.6001,4005.0000,4005.8000,4006.0000,4007.0000,4007.0000,4008.0000,4008.2000,4009.0000,4009.3999,4010.0000,4010.6001,4011.0000,4011.8000,
//4012.0000,4013.0000,4013.0000,4014.0000,4014.2000,4015.0000,4015.3999,4016.0000,4016.8000,4017.2000,4018.0000,4018.8000,4019.0000,4020.0000,4020.6001,4021.0000,
//4022.0000,4022.6001,4023.0000,4024.0000,4024.6001,4025.0000,4026.0000,4026.3999,4027.0000,4028.0000,4028.3999,4029.0000,4030.0000,4030.3999,4031.0000,4032.0000,
//4032.2000,4033.0000,4033.2000,4034.0000,4034.2000,4035.0000,4035.0000,4036.0000,4036.0000,4037.0000,4037.0000,4038.0000,4038.0000,4038.8000,4039.0000,4039.8000,
//4040.0000,4040.8000,4041.0000,4041.8000,4042.0000,4042.6001,4043.0000,4043.6001,4044.0000,4044.6001,4045.0000,4045.6001,4046.0000,4046.3999,4047.0000,4047.3999,
//4048.0000,4048.3999,4049.0000,4049.6001,4050.0000,4051.0000,4051.0000,4052.0000,4052.3999,4053.0000,4053.6001,4054.0000,4054.8000,4055.0000,4056.0000,4056.2000,
//4057.0000,4057.3999,4058.0000,4058.6001,4059.0000,4060.0000,4060.0000,4061.0000,4061.2000,4062.0000,4062.6001,4063.0000,4063.8000,4064.0000,4065.0000,4066.0000,
//4067.0000,4067.8000,4068.6001,4069.2000,4070.0000,4071.0000,4072.0000,4073.0000,4074.0000,4074.8000,4075.3999,4076.2000,4077.0000,4078.0000,4079.00
//} ;
//
int a1;
void setup() {
Serial.begin(921600);
adcAttachPin(35);
dac_output_enable(DAC_CHANNEL_1); // pin 25
dac_output_voltage(DAC_CHANNEL_1, 0);
// After calibrating YOUR ESP32:
//
// Measure
// dac_output_voltage(DAC_CHANNEL_1, 200);
// with an external voltmeter (pin 25-ground)
//
// Set your measurement as
// float My200Volt = (2.44 = your measurement, should be near by);
// at the beginning of the program
//
// Enable the following outcommented lines
// Test YOUR work - with Serial monitor
// Mine is:
// Should be: 2.44V measured: 2.44
// Should be: 1.22V measured: 1.21
// Should be: 0.61V measured: 0.61
// Enable to test last results: <<<<<<<<<<<<<<<
//
// // output My200Volt
//
// dac_output_voltage(DAC_CHANNEL_1, 200);
// delay(1);
//
// Serial.println("Start");
// delay(1);
// adcStart(35);
// delay(1);
// int a1 = adcEnd(35);
// a1 = (int)ADC_LUT[a1]; // Correct the value
// Serial.print("Should be: My200Volt(2.44) measured: ");
// Serial.println((float)(a1>>4)*My200Volt/200.0,2);
//
// // output 1.22 V
//
// dac_output_voltage(DAC_CHANNEL_1, 100);
// delay(1);
// adcStart(35);
// delay(1);
// a1 = adcEnd(35);
// a1 = (int)ADC_LUT[a1]; // Correct the value
// Serial.print("Should be: My200Volt/2 measured: ");
// Serial.println((float)(a1>>4)*My200Volt/200.0,2);
//
// // output 0.61 V
//
// dac_output_voltage(DAC_CHANNEL_1, 50);
// delay(1);
// adcStart(35);
// delay(1);
// a1 = adcEnd(35);
// a1 = (int)ADC_LUT[a1]; // Correct the value
// Serial.print("Should be: My200Volt/4 measured: ");
// Serial.println((float)(a1>>4)*My200Volt/200.0,2);
//
// Serial.println("\npress Reset Button to repeat\n");
//
// while(1);
}
void loop() {
for (int i=5;i<256;i++) {
dac_output_voltage(DAC_CHANNEL_1, (i) & 0xff);
adcStart(35);
delayMicroseconds(200);
a1 = adcEnd(35);
a1 = (int)ADC_LUT[a1]; // Correct the value
Serial.print(i*16); Serial.print(" "); Serial.println(a1);
}
}