Who cares, I never read these

This commit is contained in:
Neale Pickett 2014-02-15 22:26:50 +00:00
parent f5e8341924
commit f758de8d17
5 changed files with 21 additions and 34 deletions

View File

@ -20,7 +20,7 @@ Software
Hardware Gadgets Hardware Gadgets
---------------- ----------------
* [Hardware Scoreboard](https://code.google.com/p/derby-scoreboard/) * [Hardware Scoreboard](/led-scoreboard/)
* [Official Timer's Stopwatch](https://code.google.com/p/dgdc-stopwatch/) * [Official Timer's Stopwatch](https://code.google.com/p/dgdc-stopwatch/)
Forms Forms

View File

@ -6,8 +6,7 @@ doesn't use a computer at all,
and can be easily operated by an 8-year-old. and can be easily operated by an 8-year-old.
If you're looking for a software scoreboard (using a projector) If you're looking for a software scoreboard (using a projector)
this isn't what you want. this [list of free derby scoreboard software](http://woozle.org/scoreboard/others.html) will help.
But here's [a list of free scoreboard software](http://woozle.org/scoreboard/others.html) that should help.
This scoreboard is operated with a Nintendo controller, This scoreboard is operated with a Nintendo controller,
and runs on an XBox 360 power supply. and runs on an XBox 360 power supply.
@ -18,16 +17,10 @@ with plenty of options for upgrades.
It will take about 6 weeks of work, It will take about 6 weeks of work,
and requires basic electronics understanding and and requires basic electronics understanding and
elementary soldering skills. elementary soldering skills.
Neale provides updated firmware, I provide updated firmware,
so unless you feel like modifying the MIT-licensed source code, so unless you feel like modifying the MIT-licensed source code,
you don't need to do any programming. you don't need to do any programming.
Photos
------
Here are different builds of the board.
![Original Build](https://lh3.googleusercontent.com/-xKiVBp0bv70/UuafY7lZxeI/AAAAAAAAd1g/6TlMNSDp9xc/s1600/IMG_20140125_094136.jpg) ![Original Build](https://lh3.googleusercontent.com/-xKiVBp0bv70/UuafY7lZxeI/AAAAAAAAd1g/6TlMNSDp9xc/s1600/IMG_20140125_094136.jpg)
![First duplicate](https://lh5.googleusercontent.com/-Mm23bx2F-wQ/Uip4SGmmzWI/AAAAAAAAMKI/48zmiHN6v6U/s1600/13%2B-%2B1) ![First duplicate](https://lh5.googleusercontent.com/-Mm23bx2F-wQ/Uip4SGmmzWI/AAAAAAAAMKI/48zmiHN6v6U/s1600/13%2B-%2B1)
@ -35,31 +28,14 @@ Here are different builds of the board.
![Second duplicate](https://lh6.googleusercontent.com/-hOKmDB5JRYY/UtXPLuY2bDI/AAAAAAAAdpE/PYxeqHQGxTA/s1600/2014-01-14) ![Second duplicate](https://lh6.googleusercontent.com/-hOKmDB5JRYY/UtXPLuY2bDI/AAAAAAAAdpE/PYxeqHQGxTA/s1600/2014-01-14)
Documents Resources
--------- ---------
Build documents, * [Discussion Group](https://groups.google.com/forum/#!forum/scoreboard-builders) for help from others who've built or are building one.
schematics, * [Google Drive Folder](https://drive.google.com/folderview?id=0BzovkpI6mzWQNFc4eGN0aGoyTGM&usp=sharing) with
parts lists, schematics, documentation, and firmware releases.
and firmware builds * [Firmware Source Code](http://woozle.org/neale/g.cgi/avr/scoreboard)
are available in a
[Google Drive Folder](https://drive.google.com/folderview?id=0BzovkpI6mzWQNFc4eGN0aGoyTGM&usp=sharing).
Please be sure to join the group,
at the very least we want to know that there are other
crazy people in the world.
Support
-------
I highly recommend you join the
[Scoreboard Builders Group](https://groups.google.com/forum/#!forum/scoreboard-builders) forum/mail list.
You will need help,
either because you get confused,
or because the instructions are crappy,
or both.
This group is where to go to get it.
About Me About Me
-------- --------

View File

@ -39,7 +39,7 @@ window.addEventListener("load", function () {
<ul id="download"> <ul id="download">
<li><a href="https://chrome.google.com/webstore/detail/woozle-scoreboard/mgdklbiancdieoaabojfabakhlfhiglb?utm_source=woozle">Chrome Users</a></li> <li><a href="https://chrome.google.com/webstore/detail/woozle-scoreboard/mgdklbiancdieoaabojfabakhlfhiglb?utm_source=woozle">Chrome Users</a></li>
<li><a href="https://woozle.org/neale/g.cgi/scoreboard/refs/">Everybody Else</a>: <li><a href="https://woozle.org/neale/g.cgi/scoreboard/refs/?h=multi-browser">Everybody Else</a>:
The <a href="https://www.youtube.com/watch?v=lH1VZ2kFatY?utm_source=woozle">installation walkthrough video</a> may help if you don't use Chrome. The <a href="https://www.youtube.com/watch?v=lH1VZ2kFatY?utm_source=woozle">installation walkthrough video</a> may help if you don't use Chrome.
</li> </li>
</ul> </ul>

View File

@ -22,11 +22,15 @@ h1#title {
nav { nav {
font-size: 80%; font-size: 80%;
text-align: center; text-align: center;
background-color: #eee;
}
nav p {
display: inline;
} }
nav ul { nav ul {
background-color: #eee;
margin: 0; margin: 0;
padding: 0 1em; padding: 0 1em;
display: inline;
} }
nav li { nav li {
font-weight: bold; font-weight: bold;

View File

@ -9,6 +9,13 @@
<body> <body>
<h1 id="title">TITLE</h1> <h1 id="title">TITLE</h1>
divert(1) divert(1)
<nav>
<ul>
<li><a href="/">Home</a></li>
<li><a href="/derby/">Roller Derby</a></li>
<li><a href="/scoreboard/">Scoreboard</a></li>
</ul>
</nav>
</body> </body>
</html> </html>
divert(0) divert(0)