TE
TechEcho
Home24h TopNewestBestAskShowJobs
GitHubTwitter
Home

TechEcho

A tech news platform built with Next.js, providing global tech news and discussions.

GitHubTwitter

Home

HomeNewestBestAskShowJobs

Resources

HackerNews APIOriginal HackerNewsNext.js

© 2025 TechEcho. All rights reserved.

Running a 60fps web application using a RaspberryPi

27 pointsby kevinsimperover 9 years ago

3 comments

matthewmacleodover 9 years ago
This is great advice. I have also done some work on building a good user interface using the Pi, and was surprised by how difficult it was. There&#x27;s no good Android build available for the Pi, for example – would be ideal for many of the kind of UIs you would want to implement.<p>In the end I have been using a Go web server with websockets to display a single-page app in Firefox running under X. It&#x27;s still not totally satisfactory though – UI is slow due to the lack of HW acceleration, and there is no nice solution for on-screen keyboards, so I&#x27;ll probably have to implement one in JS eventually. Touch screen support is sketchy at best.<p>Are there other similar platforms out there that might offer HW acceleration or working Android implementations? I also had a crack at the Orange Pi which claims to have functioning Android, but… let&#x27;s say that&#x27;s an overstatement.
评论 #10424691 未加载
评论 #10424643 未加载
gambitingover 9 years ago
The problem I found with using RaspberryPi as a server for anything, is that it kills SD cards within a few months. And I&#x27;ve tried with some super expensive Ultra&#x2F;Extreme cards as well, they all die in 3-4 months of running a web server off it.
评论 #10424631 未加载
评论 #10424596 未加载
评论 #10424639 未加载
评论 #10424841 未加载
mnuttover 9 years ago
This is great. I&#x27;m using Pi&#x27;s for a similar purpose, a bunch of monitoring dashboards all over our office that pull from webpages. I&#x27;m using a combination of a central server to configure which web pages are shown, and a chrome extension on each Pi to periodically ping the server.<p>It&#x27;s really hard to find a decently new version of chrome for Arm. Raspbian stable is on an ancient Chrome 22.0 and even testing is only up to 38.0. So I&#x27;m excited to try out this method with Qt.