Jump to content

Midnight

Members
  • Posts

    4
  • Joined

  • Last visited

Everything posted by Midnight

  1. Sorry to hear the mounting was not the same for the HDMI board. Were the connectors in the same place? Were you able to use the built in cable strain relief? Glad you were able to use some if my work. Looks great!
  2. Thanks to @Sanghoon Han for sharing. I based my panel on his design. Soon two of these will sit on my beast of a server desk.... but for now I'm still fabricating and welding on it! Here is a link to the 3d printed case I designed that houses an 8.8Inch Ips HSD088IPW1 1920 x 480 LCD: https://www.thingiverse.com/thing:4958265 2021-09-07 Asrock Aqua 1920x480.sensorpanel
  3. FYI: Hope this helps... checking to see if the Address Family is InterNetwork will return you the correct IP address. See sample C# code below. public static string GetLocalIPAddress() { var host = Dns.GetHostEntry(Dns.GetHostName()); foreach (var ip in host.AddressList) { if (ip.AddressFamily == AddressFamily.InterNetwork) { return ip.ToString(); } } throw new Exception("No network adapters with an IPv4 address in the system!"); }
  4. I know bar graphs can be drawn Left to Right or Right to Left, but it seems this feature is missing from Area, line, and Histogram graphs. My sensor panel could benefit from this feature. Does anyone know if there is a way to make this happen or if this feature might be in development? Thanks!
×
×
  • Create New...