' ' PicAxe + Twitter thermometer! ' v0.1, by Stelios M. (steliosm@steliosm.net) ' ' Notes: In the main section you need to indicate ' your Username/Password for your twitter account. ' ' You also need to run the axetwitter.py script in order ' for the data to be posted to the Twitter page. ' main: ' ' Read the values from the DS18B20 and push them out the serial port. ' A small python script will post the data to Twitter! ' ' Turn on the LED high 1 gosub read_temp ' Remember to set your Twitter Username/Password sertxd ("PUT_YOUR_USERNAME_HERE:PUT_YOUR_PASSWORD_HERE:The temperature is around ", #b0, " celcious deegres.",13,10) low 1 ' Pause for 1 min before sending another update ' You might need to adjust this and avoid beign spammed pause 60000 ' Do the whole thing again! goto main read_temp: ' ' Read the temperature value and store it into b0 variable ' readtemp 2, b0 return