Hi I’m Taro.
I’m trying to make Digital Signage System.
This is for Japanese Railway Stations, I’ve already made this with another platform and now on production.
Do you think is it possible to make it with Balena OS?
If you think so, I will try to implement it by cloneing existing project, do you have recommendation that I should clone?
It does seem possible to build what you described using balena. Almost anything that can run in a container can be utilized, so there are a lot of options. Indeed, we have a few examples of such a project:
This train sign project uses a matrix oled display but could be adapted to a flat screen: Build a Raspberry Pi powered live train station sign for your desk
You may even be able to implement your project with the browser block alone if the web-based scheduling screens are hosted elsewhere. What is the specific “multiple browser” issue you are referring to?
Thank you alanb128,
I love this community, there are so many projects I can see!
I think now I have all the cards, I will try to make this and I will share the configuration when it’s done.
And I’m sorry that I didn’t specify the issue, this is I mentioned about.
This is not a multiple chromium, just a single browser instance with two iframes.
I almost finished dual display version of Balena Browser.
This is forked from Balena Browser but I rewrite API with typescript and updated Base Image.
I will add README.md more especially about original repository link etc…
What I did was was just made 2 User Directory Area for each instances.
## Setup User Data
RUN mkdir -p /chromium/display1
RUN mkdir -p /chromium/display2
RUN chown -R chromium:chromium /chromium/display1
RUN chown -R chromium:chromium /chromium/display2
And launch chromium twice by using ‘chrome-launcher’.
I am trying to run this project on my Raspberry Pi 4, however the screens are black.
Is there any configuration I need to do beside changing the GPU Memory to 256?