|
1 | 1 | frommicropythonimportconst |
2 | 2 | importpointer_framework |
3 | | -importi2cas_i2c |
4 | 3 |
|
5 | 4 | # FT3267 |
6 | 5 | # FT5336GQQ |
|
10 | 9 | # FT5x26 |
11 | 10 | # ft5302 |
12 | 11 |
|
13 | | -1.143 |
14 | | - |
15 | | -''' |
16 | | -18.8% |
17 | | -11.9% |
18 | | -
|
19 | | -
|
20 | | -3,378.80 |
21 | | -
|
22 | | -3,432.80 |
23 | | -
|
24 | | -In 2022 Jefferson County employees receive an |
25 | | -additional average amount of 34.64 % of such |
26 | | -compensation for fringe benefits. |
27 | | -
|
28 | | -2022 saleries: 225,425,700 |
29 | | -2022 benifits: 65,571,000 |
30 | | -That comes out to 29.0% in fringe benifits 2022, so where is the other 5.64%?? |
31 | | -5.64% is 12,714,009.48 dollars |
32 | | -
|
33 | | -in 2022 there were 3,335 employees and in 2024 there is 3,432.80. 97 more positions now than there was in 2022. |
34 | | -2022 saleries and benifits cost 290,996,700 and in 2024 the cost is 350,283,700, That's a difference of 59,287,000 dollars. |
35 | | -there are 54 new positions from 2023 to 2024 but there is an increase of saleries of 18.8%. 18.8% in a single year!!!!!... |
36 | | -That's a difference of 42,022,900 dollars!!. somehow I don't think the 54 new employees are each making 778,201 dollars a year. |
37 | | -
|
38 | | -
|
39 | | -42,022,900 |
40 | | -
|
41 | | -
|
42 | | -290,996,700 |
43 | | -
|
44 | | -
|
45 | | -50,087,000 |
46 | | -
|
47 | | -341,083,700 |
48 | | -31.6% in 2024 |
49 | | -Libraries |
50 | | -
|
51 | | -This is being spent from the general fund |
52 | | -8.4 million for Library buildings |
53 | | -8.7 million for the South Jefferson County Library |
54 | | -5.8 million to continue the South Library |
55 | | -22.9 million total |
56 | | -
|
57 | | -Here are the budgets for the last few years |
58 | | -
|
59 | | -2021 $37,716,700 |
60 | | -2022 $39,485,300 |
61 | | -2023 $91,877,700 |
62 | | -2024 $66,042,300 |
63 | | -
|
64 | | -
|
65 | | -Expendatures |
66 | | -Salaries: 25,014,600 (312.00 jobs) |
67 | | -Supplies: 7,590,700 |
68 | | -Other 6,590,700 |
69 | | -Capital Outlay (buying books and movies): 23,044,800 |
70 | | -
|
71 | | -Expendatures where the money goes out without the money being used for the Libraries |
72 | | -Intergovernmental: 0.00 |
73 | | -Interdepartmental: 3,801,500 |
74 | | -
|
75 | | -I want to note that Jefferson County has 11 Libraries. |
76 | | -2024 has 14 new positions for the library |
77 | | -
|
78 | | -
|
79 | | -
|
80 | | -Road and Bridge |
81 | | -
|
82 | | -$16.8 million for roadway projects |
83 | | -
|
84 | | -Here are the budgets for the last few years |
85 | | -
|
86 | | -2021 $46,724,700 |
87 | | -2022 $48,976,000 |
88 | | -2023 $66,797,600 |
89 | | -2024 $58,092,900 |
90 | | -
|
91 | | -Expendatures |
92 | | -
|
93 | | -Salaries: 15,482,200 (186 employees) |
94 | | -Supplies: 4,037,800 |
95 | | -Other: 9,035,400 |
96 | | -Capital Outlay: 13,635,000 |
97 | | -
|
98 | | -Expendatures where the money goes out without the money being used for the roads and bridges |
99 | | -Intergovernmental: 4,048,100 |
100 | | -Interdepartmental 11,854,400 |
101 | | -
|
102 | | -
|
103 | | -''' |
104 | | - |
105 | 12 | _I2C_SLAVE_ADDR=const(0x38) |
106 | 13 |
|
107 | 14 | # Register of the current mode |
@@ -144,10 +51,12 @@ def _i2c_write8(self, register_addr, data): |
144 | 51 | self._buf[0]=data |
145 | 52 | self._i2c.write_mem(register_addr,self._mv[:1]) |
146 | 53 |
|
147 | | -def__init__(self,bus,touch_cal=None):# NOQA |
| 54 | +def__init__(self,i2c_bus,touch_cal=None):# NOQA |
148 | 55 | self._buf=bytearray(5) |
149 | 56 | self._mv=memoryview(self._buf) |
150 | | -self._i2c=_i2c.I2CDevice(bus,_I2C_SLAVE_ADDR) |
| 57 | + |
| 58 | +self._i2c_bus=i2c_bus |
| 59 | +self._i2c=i2c_bus.add_device(_I2C_SLAVE_ADDR,8) |
151 | 60 |
|
152 | 61 | data=self._i2c_read8(_PANEL_ID_REG) |
153 | 62 | print("Device ID: 0x%02x"%data) |
|