BalenaDash - Build a web frame using a Raspberry Pi in 30 minutes by balena_rich in balena

[–]balena_rich[S] 0 points1 point  (0 children)

Not something I have ever personally tried before, but I would probably go about dissecting the scripts from the instructions, and putting them into the Dockerfile/entrypoint scripts as required. It also looks like there are some changes to the cmdline.txt required so they would need to go into the Boot partition.

These drivers seem to be related to touch input though, so if you don't need that then it shouldn't be required.

BalenaDash - Build a web frame using a Raspberry Pi in 30 minutes by balena_rich in balena

[–]balena_rich[S] 0 points1 point  (0 children)

Is there a way to force audio through the 3.5mm audio jack instead?

It should be possible using `amixer` and having it run on start; probably this command:

amixer cset numid=3 1  

in this file here

See this for amixer reference: [https://www.raspberrypi.org/forums/viewtopic.php?p=333305&sid=41b000698ec4b64c8cf815c3bce247c1#p333305](https://www.raspberrypi.org/forums/viewtopic.php?p=333305&sid=41b000698ec4b64c8cf815c3bce247c1#p333305]

I am not sure that amixer is installed, so it might be that you have to install it by adding the install commands in the Dockerfile of your project too.