Search results

Homebrew Talk - Beer, Wine, Mead, & Cider Brewing Discussion Forum

Help Support Homebrew Talk - Beer, Wine, Mead, & Cider Brewing Discussion Forum:

This site may earn a commission from merchant affiliate links, including eBay, Amazon, and others.
  1. I

    Web-Accessible Temperature Logger for Raspberry Pi

    That line only grabs the time from the database. The line that prints the time is: rowstr="<tr><td>{0}&emsp;&emsp;</td><td>{1}F&emsp;&emsp;</td><td>{2}F</td></tr>".format(str(row[0]),str(row[1]),str(row[2])) print rowstr and the line that puts the time into the database is from...
  2. I

    Survey: if you could do one thing over again regarding Homebrew would it be?

    Considering I live in an apartment I would have started with a Grainfather instead of the three 10 gallon pots, hot plates, pumps and other accessories I have now. I also would have went straight in to kegging instead of bottling.
  3. I

    Distilling.. Legal...?

    This forum has members from all over the world including places where it is legal to distill so a thread here is relevant in my opinion. Remember up until 2013 it was illegal to make you own beer in Mississippi and Alabama but I bet there was forum users from those states here. And eventually I...
  4. I

    RaspberryPints install error.

    Go through this thread... https://www.homebrewtalk.com/showthread.php?t=487694 It might take awhile but the answers are there plus more.
  5. I

    [Version 2 Release] RaspberryPints - Digital Taplist Solution

    Could you share this information for those who are using Jessie and the new chromium tag. Thanks :)
  6. I

    5 Gal beer overcarbed from one cup of honey?

    Yes less honey. From what I could find one cup of honey has almost 10 ounces of sugar. Using Brewers Friends priming calculator, 5 gallons of beer at 2.4 carbonation requires 4.1 ounces of table sugar or 4.5 ounces of corn sugar. So I would say you are adding more than double the amount of sugar...
  7. I

    [Version 2 Release] RaspberryPints - Digital Taplist Solution

    I set mine up in a vertical orientation and used a tap image (I have a 3 tap kegerator) in the background with the tap info overlayed. If someone can't figure out what is on what tap then the shouldn't be drinking.
  8. I

    Web-Accessible Temperature Logger for Raspberry Pi

    <?php echo date("H:i"); ?>
  9. I

    Web-Accessible Temperature Logger for Raspberry Pi

    Seems to be something in the scroller javascript causing this but there is a fix and I'll update my original post to include it. The fix doesn't seem to refresh and I can't find what is causing the error. Hopefully someone else can take a look at it. It does work on my RPi as I use a different...
  10. I

    Web-Accessible Temperature Logger for Raspberry Pi

    This is not working as intended. I'm leaving the code up as someone else might find the problem. This is fine for a quick fix and I myself used this originally to refresh. The problem with this is it refreshes the whole page so everything has to be reloaded and thus puts a lot of extra work on...
  11. I

    Web-Accessible Temperature Logger for Raspberry Pi

    Using LXterminal (or similar) open you webgui(x).py in /usr/lib/cgi-bin/ i.e. $ cd /usr/lib/cgi-bin/ then use ls to see what webgui(x).py yo are using $ ls then open up your webgui file $ sudo nano webgui2.py in this case we used the two sensor webgui(x).py Scroll to near the bottom...
  12. I

    [Version 2 Release] RaspberryPints - Digital Taplist Solution

    This is for froot & ratsathome plus everyone else who wants a metric volume Instead of changing the pulse count in pours.php, we just change the numbers in the index.php So in index.php find the line <h3><?php echo number_format((($beer['startAmount'] - $beer['remainAmount']) * 128)); ?>...
  13. I

    Web-Accessible Temperature Logger for Raspberry Pi

    I hoist a brew to you kind sir.
  14. I

    Web-Accessible Temperature Logger for Raspberry Pi

    Nice work. Cudos to you for a great addition for our kegerators/keezers and to the RaspberryPints project.
  15. I

    Web-Accessible Temperature Logger for Raspberry Pi

    I'm going to try to kill a few birds with one stone all the while staying consistent with my stubbornness. Hear me out on this. Make 5 files named temp_insert(x).php in /var/www This will allow you to maintain the code even if the Rpints page changes. This is the code for temp_insert5.php <?php...
  16. I

    Web-Accessible Temperature Logger for Raspberry Pi

    One step at a time and we can conquer this. So when setting up your variable you forgot the dollar ($) and in this case no double quotes (") so it should read $dbname = 'temp_data5.db'; and to use it in this example $db = new sqlite3($dbname); and place the variable $dbname either above or...
  17. I

    Web-Accessible Temperature Logger for Raspberry Pi

    Two points: You still have to add this to the instructions $ sudo apt-get install php5-sqlite and to simplify add my index.php files that mirror naming of files in your temp_logger_kit i.e. monitor_1sensor.py, webgui1.py, index1.php monitor_2sensor.py, webgui2.py, index2.php...
  18. I

    Web-Accessible Temperature Logger for Raspberry Pi

    You're welcome and thank you for starting this crazy ride to begin with. Just to let you know your site looks good on a phone, well mine at least.
  19. I

    Web-Accessible Temperature Logger for Raspberry Pi

    Try changing this line begintag='<div style="font: normal 22px; padding: 5px;">'; //set opening tag, such as font declarations to begintag='<div style="font: normal 22px" align="right">'; //set opening tag, such as font declarations then look for this line document.write('<div...
  20. I

    Web-Accessible Temperature Logger for Raspberry Pi

    The code I found for this looks like it was based on a scroll script, just modified to make it fade. Black Box Fix Find the line: if (ie4||DOM2) document.write('<div id="fscroller" style="border:1px solid black;width:'+fwidth+';height:'+fheight+'"></div>'); and remove border:1px solid...
Back
Top