I found and fixed 2 bugs, getting latest should resolve this issueI will double check the code, probably doesn't set the amount in the keg before creating the event.
I found and fixed 2 bugs, getting latest should resolve this issueI will double check the code, probably doesn't set the amount in the keg before creating the event.
That it does Arduino Reference
it only has pins 2, 3, 18, 19, 20, 21 for interrupts.
Awesome, I don't have experience with Mega boards, but now I know a little more about them.pin 53, PCINT0 on the Mega results in a pour!!
I will look into, it should change but testing local it didntimage on the display still does not update based on keg type and volume. Is it supposed to?
You get what you pay for. The other choices work, however they seem to be more sensitive to physical alignment (meaning you may need to recalibrate at each keg change) and they are less accurate than the SwissFlow.
Buy once, cry once, but they might not be everyone's cup of tea.
But whenever I try to update I get these sorts of errors and not sure how to get around it.That was a design flaw in the code, I had it showing the latest temp taken so if they didn't update at the same time then they would flip between the two.
I committed a change to display all active probes and their temps. You can rerun the installer, it will prompt to update when it detects an installation
Cheers for that but I don't know what Then do a diff on the files to see what changed. Is or how I would do it? I assume you mean compare them but how do I do that?One way to get around the overwrite error is to rename the files before performing the update. Then do the update, the error should not show up. Then do a diff on the files to see what changed. You can apply your changes to the new files. This is not a great solution. But, it is a solution.
Yes, under the admin page there is a "Customize Tap Display" menu option that will allow you to drag and drop columns to where you want them. Right now it only displays in the vertical mode but any adjustments there will also change the horizontal layout.In the RandR+ version, is it possible to change the order of the columns?
in the terminal you can use the diff command i.e. (where file1 and file2 are the actually file names)Is or how I would do it?
try manually changing the volume by 1 whole unit to see if that changes the image (you can change it back after the test).image on the display still does not update based on keg type and volume
Yes, under the admin page there is a "Customize Tap Display" menu option that will allow you to drag and drop columns to where you want them. Right now it only displays in the vertical mode but any adjustments there will also change the horizontal layout.
My bad, I didn't correctly force the customize display screen to be vertical only. I'm aware of the issues with drag n' drop for the horizontal layout (apparently no one else wants to use javascript to move columns, but moving rows is trivial)They don't change even on the Customize screen. The drag part seems to sort of work. It looks like it is grabbing the column, but it doesn't drop it in the new location.
Ok cheers for that but how do I commit the changes or stash them before I even do the upgrade? It won't let me do it at all?in the terminal you can use the diff command i.e. (where file1 and file2 are the actually file names)
diff file1 file2
it can get messy using the terminal so you can use a visual diff tool to help (but you need to be on the pi's desktop to do so)
one editor would be compare, I didn't get a chance to test it but it looks promising
sudo apt-get install kompare
Commiting would make your changes part of git so everyone one else would get them also. What I found to work is after you copy your changes (or whole directory for safe keeping) you can do the following from the terminal to allow git to fetch the latestI commit the changes or stash them before I even do the upgrade
Ok Ill do this next time.Commiting would make your changes part of git so everyone one else would get them also. What I found to work is after you copy your changes (or whole directory for safe keeping) you can do the following from the terminal to allow git to fetch the latest
cd /var/www/html (or your RPints directory)
sudo git fetch original
sudo git reset --hard origin/master
Are you sure you turned off Show Beer Images and not Pours Show Beer Images? I ask because in testing I turned off Pours Show Beer Image.I have turned off "show beer images" but there is still a slight gap seen here.
Yes definitely turned off "Show beer images"..Are you sure you turned off Show Beer Images and not Pours Show Beer Images? I ask because in testing I turned off Pours Show Beer Image.
when you inspect and select the empty space what does it look like?
mine with images turned on looks like the attached picture.
So it definitely shows you have brewery images turned on, I would turn those off (Show Brewery Images) and see how it looksMine looks like this
Ahh yes what an idiot I am. I kept thinking it was show beer images that had to be turned off. Thanks again mate, all fixed..So it definitely shows you have brewery images turned on, I would turn those off (Show Brewery Images) and see how it looks
but when I try to open Raspberry Pints it stays at "Waiting for localhost" and never opens
systemctl status apache2
Active: active (running) since Sun 2020-07-05 11:22:56 EDT; 5 days ago
Active: active (running)
then it's not up.sudo systemctl enable apache2
sudo systemctl start apache2
apache2
with mariadb
It sounds like either the Arduino or the Pi (USB port) is bad or miss wired, are the flow meters connected? If so disconnect them and do a full power cycle on everything.The IDE throws an error that the device can't be accessed. I've tried a few different USB cables to rule that out.
Both apache2 and mariadb report "Active (running)"Looks like apache is not running on the Pi. Open a terminal on the Pi and run the command
Look for the messageBash:systemctl status apache2
The date will be different, but if you don't seeCode:Active: active (running) since Sun 2020-07-05 11:22:56 EDT; 5 days ago
Active: active (running)
then it's not up.
If you don't see that, run the commands
The first command tells the OS to make sure apache is started after a reboot and the second command starts it immediately.Bash:sudo systemctl enable apache2 sudo systemctl start apache2
Now see if you can get to the PI. The other service that needs to be running is mariadb. You can check that by running the above commands replacingapache2
withmariadb
Both apache2 and mariadb report "Active (running)"
tail -F /var/log/apache2/error.log
and see if any errors are printed when you try and access the page.tail -F /var/log/apache2/access.log
and you should see the GET message when you try and access the page.