forked from tmackay/g13
-
Notifications
You must be signed in to change notification settings - Fork 0
/
g13_test.py
executable file
·41 lines (30 loc) · 1.12 KB
/
g13_test.py
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
#!/usr/bin/python2.7
import subprocess, re, os, time
# simple test script to update G13 LCD with temperature values from lm-sensors
def doCmd( *cmd ):
#print( "cmd = %r" % (cmd,) )
p = subprocess.Popen( cmd, stdout=subprocess.PIPE, stderr=subprocess.PIPE )
out, err = p.communicate()
return out #, err
def get_sensors():
sensor_lines = doCmd( 'sensors' ).split('\n')
print( "sensor_lines = %r" % (sensor_lines,) )
temp_re = re.compile( r'''([a-zA-Z])[a-zA-Z s]+([0-9])\:\s*\+([0-9.]+)[\xc2\xb0C]*C.*''' )
temps = []
for line in sensor_lines:
m = temp_re.match(line)
if m:
tag, index, value = m.groups()
print( "%s%s = %s" % (tag, index, value))
#temps.append( "%s%s:%s" % (tag, index, value) )
temps.append( "%s" % (value,) )
# else:
# print( "failed to match %r" % (line,))
with open( '/run/g13d/g13-0', 'w') as p:
p.write( 'pos 0 0 \n' )
p.write( 'out %s\n' % (' '.join(temps)) )
def main():
while 1:
get_sensors()
time.sleep(1.0)
main()