Difference between revisions of "Blog 06"
		
		
		
		
		
		Jump to navigation
		Jump to search
		
				
		
		
	
 (In this text harry makes a combination from the timer and the temperature visible)  | 
				|||
| Line 39: | Line 39: | ||
 [[File:DSC05993TSE.png|400px|thumb|left|This picture was taken on the same moment it changed from time]]  | 
   [[File:DSC05993TSE.png|400px|thumb|left|This picture was taken on the same moment it changed from time]]  | 
||
On [[Blog 07]] I am going to use the buttons to print text on the display.  | 
|||
Revision as of 15:59, 11 September 2015
!BETA!
Now we will also add the time under the temperature: Here for we combine the codes together. We have the previous timer code where we remove the other information on the top we put the temperature: 11:00b ( 00 for the first row 11 for display ) which is connected with the code of; showtimer. and on the second row the timer. ( 11:20b )
I made a new folder called: Koekje + with all the files referencing: Koekje.
#!/bin/bash
# What display to use: 
Koekje="bw_tool -I -D /dev/i2c-1 -a 94" 
# e.g. for SPI use: 
#DISPL="bw_tool -D /dev/spidev1.0 -a 94" 
#clean the display 
$Koekje -W 10:0:b 
while true; do 
        #get cpu loads 
        load=`cut -d' ' -f-3 /proc/loadavg` 
        #show temperature 
        $Koekje -W 11:00:b 
        $Koekje -t "temp: "`./showtemp` 
        #print the current time 
        $Koekje -W 11:20:b 
        $Koekje -t `date +%H:%M:%S` 
        #idle for 5 seconds 
        sleep 5 
done 
./Koekje
On Blog 07 I am going to use the buttons to print text on the display.