I would stick with the 3/16" barbs and 4mm ID line
Great. Saves me from returning a bunch of stuff. Is there a recommendation for what order the valve and flow meter are. Should I put the flow meter closest to the ball lock or the valve?
I would stick with the 3/16" barbs and 4mm ID line
I created a cron job that restarts the flowmonitor every 6 hours ... 6, 12, 6, 12.it could be, did you check the log page on the admin screen or /var/log/rpints.log on the pi for errors?
I do have an issue where my version of rpints stops, that I haven't figured out yet
on the pi run the command from the terminal (assuming you kept the default install directory or /var/www/html)Also, I am trying to change the font as in post ~2758 and it is giving the error "Error opening file 'var/www/index.php/. permission denied, the file on disk may now be truncated... I am really bad at this lol
it seems you are sure your new function is being hit, you could addHere is a snippet of code from tap_list.php:
...
Here's the function in tap_manager.php:
it seems you are sure your new function is being hit, you could add
echo $sql; exit to tap_manager.php line 89
this will print the sql that is being ran and stop loading. you can copy and paste that into phpmyadmin to run and check for errors
also the sql should be (with apostrophes)
$sql="UPDATE taps set tapGIF = '".$tapGIF."', modificationDate = NOW() WHERE id = ".$tap->get_id();
it seems you are sure your new function is being hit, you could add
echo $sql; exit to tap_manager.php line 89
this will print the sql that is being ran and stop loading. you can copy and paste that into phpmyadmin to run and check for errors
also the sql should be (with apostrophes)
$sql="UPDATE taps set tapGIF = '".$tapGIF."', modificationDate = NOW() WHERE id = ".$tap->get_id();
straight to the page you are loading. So instead of seeing the tap list after hitting save you will see the sql statement.Where do outputs from "echo" go?
Rpints will calculate volume based on weight if you set it up to do so.is RPints calculating the volume for me
Rpints will calculate volume based on weight if you set it up to do so.
That little echo recommendation was exactly what I was trying to figure out how to do to troubleshoot this thing. And with that help, I was able to identify a few things I had wrong! I was also able to FINALLY GET IT WORKING!!!!! Thank you again!!! I'm so stoked! Now I can EASILY swap out my GIFs on the menu to match the tap handles I've got on my taps! WOOT! You're awesome, RandR+!straight to the page you are loading. So instead of seeing the tap list after hitting save you will see the sql statement.
That little echo recommendation was exactly what I was trying to figure out how to do to troubleshoot this thing. And with that help, I was able to identify a few things I had wrong! I was also able to FINALLY GET IT WORKING!!!!! [...]
The best thing to do is make sure the Show Weight Columns setting is checked on the taps screen, this will show the settings that RPints uses to calculate volume from weight and allow you to enter the weight directly on the tap screen instead of the keg screen.I am just entering the full weight on the kegs page (Current Weight(lb):
on the pi run the command from the terminal (assuming you kept the default install directory or /var/www/html)
sudo chmod +777 /var/www/html -R
this will open up all files for editing through the text editor
if you just want images you can hit the upload button next to the tap description to display an image behind the text (clear the text to just have the image)Then, how to get the tap images
If you are not using the RPints service you will have to manually refresh the page to get the latest volumes from plaato. When a pour is registered with RPints service it sends a signal to the webpage to refreshAlso, will the pour amounts only update in kiosk mode?
I created a cron job that restarts the flowmonitor every 6 hours ... 6, 12, 6, 12.
If you are not using the RPints service you will have to manually refresh the page to get the latest volumes from plaato.
if you don't have flow meters, the service doesn't do much nor will it trigger the refresh because it comes from themNow that it is all, nearly, set up I am totally fine putting it back and leaving it alone. Though, I added the temp reading and it is updating now so if not, at least that works. I really appreciate the help!
I do have an issue where my version of rpints stops, that I haven't figured out yet
I don't think the syslog will show anything, /var/log/rpints.log might but if its in the sketch then it wouldn't because there is no exception handling in arudinosnot sure if this helps but here is what is in my syllog when I restart. I scanned the syslog for any earlier entries around the time flowmon stops working ans I didn’t see anything
admin/includes/managers/pour_manager.php in the function getDisplayAmount it returns number_format($ret, 2), change 2 to 0 should round to the whole number.Anyway, if someone could point me in the right direction so I can round that to whole numbers that would be ace. I also wouldn't mind getting rid of all the other headings apart from Beer name (although the content can stay) from the middle column.
I would have to test but i think if you change the default date format in MySQL you would change it in RPintscan't find how to change the date/time format.
Also, how do you remove what I assume is the identifier for the temp probe?
In index.php ~line 254 change
$tempDisplay .= sprintf('%s:%0.1f%s<br/>', $probe, convert_temperature($temp, $tempUnit, $config[ConfigNames:isplayUnitTemperature]), $config[ConfigNames:
isplayUnitTemperature]
TO
$tempDisplay .= sprintf('%0.1f%s<br/>', convert_temperature($temp, $tempUnit, $config[ConfigNames:isplayUnitTemperature]), $config[ConfigNames:
isplayUnitTemperature] );
by removing the bolded parts