@hein-jan Thanks for sending your reply! I saw that in the set-up instructions as well, but for some reason, I couldn’t get xrandr to rotate the display. I was curious if we needed the GL Driver at all, but based on recent comments in this thread, it seems that others don’t. I commented the Driver out and things seem to be working fine now. Thanks again!
Read the statement by Michael Teeuw here.
Latest posts made by afrench10
-
RE: Flickering after 30-60 mins
-
RE: Strange Glitching on HDMI
@hrjmsh did you do anything special to get xrandr to rotate your display for your vertical setup? I disabled fmks and reverted to full kms (dtoverlay=vc4-kms-v3d), but couldn’t get the screen to rotate.
If you have any insight or advice, it’s greatly appreciated :)
-
RE: Flickering after 30-60 mins
@hein-jan I had the same problem as well, switching from fkms to kms. When I switched to kms, the flickering went away, but I was unable to rotate 90 degrees for my vertical display.
Have you come across any solutions? Or has anybody else? Thanks in advance for your insight!
-
Error in config file
Hi Folks,
Can someone please help troubleshoot the error in my config file? I’m not a professional dev, and could use some assistance :) Please reference below:
var config = { address: "localhost", // Address to listen on, can be: // - "localhost", "127.0.0.1", "::1" to listen on loopback interface // - another specific IPv4/6 to listen on a specific interface // - "", "0.0.0.0", "::" to listen on any interface // Default, when address config is left out, is "localhost" port: 8080, ipWhitelist: ["127.0.0.1", "::ffff:127.0.0.1", "::1"], // Set [] to allow all IP addresses // or add a specific IPv4 of 192.168.1.5 : // ["127.0.0.1", "::ffff:127.0.0.1", "::1", "::ffff:192.168.1.5"], // or IPv4 range of 192.168.3.0 --> 192.168.3.15 use CIDR format : // ["127.0.0.1", "::ffff:127.0.0.1", "::1", "::ffff:192.168.3.0/28"], language: "en", timeFormat: 24, units: "imperial", modules: [ { module: "alert", }, { module: "updatenotification", position: "top_bar" }, { module: "clock", position: "top_left" }, { module: "calendar", header: "US Holidays", position: "top_left", config: { calendars: [ { symbol: "calendar-check-o ", url: "webcal://www.calendarlabs.com/templates/ical/US-Holidays.ics" } ] } }, /* { module: "compliments", position: "lower_third" },*/ { module: "currentweather", position: "top_right", config: { location: "Chicago", locationID: "4887398", //ID from http://bulk.openweathermap.org/sample/; unzip the gz file and find your city appid: "c9306b83172dfaa7dc5c2b72cdcc3ff7" } }, { module: "weatherforecast", position: "top_right", header: "Weather Forecast", config: { location: "Chicago", locationID: "4887398", //ID from http://www.openweathermap.org/help/city_list.txt appid: "c9306b83172dfaa7dc5c2b72cdcc3ff7" } }, { module: "newsfeed", position: "bottom_bar", config: { feeds: [ { title: "New York Times", url: "http://www.nytimes.com/services/xml/rss/nyt/HomePage.xml" } ], showSourceTitle: true, showPublishDate: true } }, { module: "CTA", position: "bottom_left", config: { updateTime: 60000, // 1 minute, the API does not update much more often so going below this is unnecessary //Bus Routes ctaApiKey: "cg4QkprLT9WppdSuJXpDLB9PF", busStopName: "66 - Chicago - Westbound", // String value, Name your bus stop stopId: 601, // Bus station ID: Chicago and Milwaukee example; go to http://www.transitchicago.com/riding_cta/systemguide/default.aspx to find your stop ID maxResult: 1, // The maximum number of incoming busses you want to display for bus stops //Train Routes ctaApiKeyTrain: "your-train-APIkey", trainStopName: "Chicago Red Line", //String value, name your train stop trainStationID: CHIR, //Train station ID: Chicago Blue line example; http://www.transitchicago.com/developers/ttdocs/default.aspx#_Toc296199909 maxResultTrain: 5, // Max number of incoming trains to disply moduleInstance: 3, // To run multiple instances of this module } }, ] }; /*************** DO NOT EDIT THE LINE BELOW ***************/ if (typeof module !== "undefined") {module.exports = config;}
I hope this helps. Thanks in advance for your insight!