A common name for the interface is HUB75
The displays use shift registers for columns and two sets of row multiplexers.
- Organized in two halfs of 16x32 tiles
- 32 bit long RGB column drive shift registers
- 4 bit to 16 row drive demultiplexers
| function run() { | |
| xcode = Application('Xcode') | |
| var app = Application.currentApplication() | |
| app.includeStandardAdditions = true; | |
| docs = xcode.sourceDocuments() | |
| for (var i = docs.length-1; i >= 0; i--) { | |
| var doc = docs[i]; | |
| var range = doc.selectedParagraphRange(); | |
| if (!range) { | |
| continue; |
| namespace Radar.Common.WebServer.Api.Controllers | |
| { | |
| using System; | |
| using System.Collections.Concurrent; | |
| using System.Collections.Generic; | |
| using System.Collections.ObjectModel; | |
| using System.Net.Http; | |
| using System.Threading.Tasks; | |
| using System.Web.Http.Controllers; | |
| using System.Web.Http.Filters; |