Skip to content

Commit

Permalink
doc and website links and fontsize updated
Browse files Browse the repository at this point in the history
  • Loading branch information
sy2002 committed Apr 22, 2019
1 parent a5a3a12 commit aaee8fc
Show file tree
Hide file tree
Showing 5 changed files with 22 additions and 22 deletions.
4 changes: 2 additions & 2 deletions README.MD
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ device:
* Arduino source code to flash the firmware

TeleBall is made using the
[Arduino Nano platform](http://arduino.cc/en/Main/ArduinoBoardNano) on a
[Arduino Nano platform](https://store.arduino.cc/arduino-nano) on a
custom PCB.

Browse TeleBall's [project page](http://sy2002.github.io/TeleBall)
Expand Down Expand Up @@ -78,7 +78,7 @@ TeleBall was designed, built and released as an Open Source / Open Hardware
project during August 2014 and January 2015.

TeleBall is a project of
[MEGA - Museum of Electronic Games & Art](http://www.m-e-g-a.org).
[MEGA - Museum of Electronic Games & Art](http://www.m-e-g-a.org/diy-teleball/).

We are looking forward to hearing from you. Email to sy2002 at teleball.org

4 changes: 2 additions & 2 deletions doc/css/styles.css
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ time, mark, audio, video {
body {
padding:10px 50px 0 0;
font-family:"Helvetica Neue", Helvetica, Arial, sans-serif;
font-size: 16px;
font-size: 18px;
color: #232323;
background-color: #FBFAF7;
margin: 0;
Expand Down Expand Up @@ -302,7 +302,7 @@ header li:hover {
}

a.nrm_button {
font-size: 14px;
font-size: 16px;
-webkit-font-smoothing: antialiased;
background-size: 12px auto;
font-weight: normal;
Expand Down
8 changes: 4 additions & 4 deletions doc/electronics.html
Original file line number Diff line number Diff line change
Expand Up @@ -81,15 +81,15 @@ <h2 id="schematics">Schematics</h2>

<p>Download TeleBall’s <a href="eagle/BreakOut-8x8-rev2-circuit.pdf">detailed Schematics PDF</a>. The subfolder
<code>eagle</code> of your TeleBall package contains all schematics including the PCB design. We
used the Freeware version of the specialized CAD software <a href="http://www.cadsoftusa.com/">Eagle</a>
used the Freeware version of the specialized CAD software <a href="https://www.autodesk.com/products/eagle/free-download">Eagle</a>
to create the schematics and the board layout (PCB design).</p>

<h3 id="the-circuit-explained">The Circuit Explained</h3>

<p>The following parts are the main parts of the circuit:</p>

<ul>
<li>Microcontroller: 5V version of Arduino Nano 3.0 or compatible device (<a href="http://arduino.cc/de/Main/ArduinoBoardNano">Data Sheet</a>)</li>
<li>Microcontroller: 5V version of Arduino Nano 3.0 or compatible device (<a href="https://store.arduino.cc/arduino-nano">Data Sheet</a>)</li>
<li>8x8 LED Display: KWM-R30881CBB aka AdaFruit 1817 (<a href="http://www.adafruit.com/datasheets/1047datasheet.pdf">Data Sheet</a>)</li>
<li>LED Display Driver: MAX7221 (<a href="http://datasheets.maximintegrated.com/en/ds/MAX7219-MAX7221.pdf">Data Sheet</a>)</li>
<li>Radio: nRF24L01+ on an Arduino friendly breakout board (<a href="http://www.nordicsemi.com/eng/content/download/2726/34069/file/nRF24L01P_Product_Specification_1_0.pdf">Data Sheet</a>)</li>
Expand Down Expand Up @@ -161,7 +161,7 @@ <h3 id="the-circuit-explained">The Circuit Explained</h3>

<h2 id="important-files">Important Files</h2>

<p>All files related to TeleBall’s electronics are <a href="http://www.cadsoftusa.com/">Eagle</a>
<p>All files related to TeleBall’s electronics are <a href="https://www.autodesk.com/products/eagle/free-download">Eagle</a>
files, so you find them in the <code>eagle</code> folder.</p>

<pre><code>BreakOut-8x8-rev2.sch Eagle schematics file. The above-mentioned
Expand Down Expand Up @@ -305,7 +305,7 @@ <h2 id="bill-of-materials">Bill of Materials</h2>
<td><img src="eagle/bom_arduino_nano.jpg" alt="MODUL1 ARDUINO" /></td>
<td>MODUL1 ARDUINO</td>
<td>Arduino Nano or compatible device</td>
<td><a href="http://arduino.cc/de/Main/ArduinoBoardNano">Original Arduino Device</a> or search for “<code>arduino 3.0 nano 5v</code>” on eBay to find compatible devices / clones</td>
<td><a href="https://store.arduino.cc/arduino-nano">Original Arduino Device</a> or search for “<code>arduino 3.0 nano 5v</code>” on eBay to find compatible devices / clones</td>
</tr>
<tr>
<td><img src="eagle/bom_matrix.png" alt="KWM- R30881CBB" /></td>
Expand Down
14 changes: 7 additions & 7 deletions doc/software.html
Original file line number Diff line number Diff line change
Expand Up @@ -42,12 +42,12 @@ <h1 id="teleball---software">TeleBall - Software</h1>
<h2 id="basics">Basics</h2>

<p>The newsest stable release version is
<a href="https://github.com/sy2002/TeleBall/releases/tag/V1.3">TeleBall Version 1.3</a>,
<a href="https://github.com/sy2002/TeleBall/releases/tag/V1.4">TeleBall Version 1.4</a>,
you will also find the release notes here.</p>

<p>TeleBall is implemented in a C / C++ mixture (more C than C++) as this is
rather typical for Arduino projects. You need the
<a href="http://arduino.cc/de/Main/Software">Arduino IDE</a> to get started.</p>
<a href="https://www.arduino.cc/en/Main/Software">Arduino IDE</a> to get started.</p>

<h3 id="folder-structure">Folder Structure</h3>

Expand Down Expand Up @@ -77,7 +77,7 @@ <h3 id="libraries">Libraries</h3>
<li>nRF24L01+ driver: <a href="http://tmrh20.github.io/RF24/">TMRh20 / RF24</a></li>
</ul>

<p>Instructions for how-to install these libraries are <a href="http://arduino.cc/en/Guide/Libraries">here</a>.</p>
<p>Instructions for how-to install these libraries are <a href="https://www.arduino.cc/en/Guide/Libraries">here</a>.</p>

<h3 id="flashing-the-firmware">Flashing the Firmware</h3>

Expand All @@ -86,7 +86,7 @@ <h3 id="flashing-the-firmware">Flashing the Firmware</h3>
<li>Connect TeleBall via USB</li>
<li>Double-click <code>TeleBall.ino</code> or open it manually in the Arduino IDE</li>
<li>Select the right Serial Port in the IDE, this can be
<a href="http://arduino.cc/en/pmwiki.php?n=Guide/Troubleshooting#toc15">a bit tricky</a>
<a href="https://www.arduino.cc/en/pmwiki.php?n=Guide/Troubleshooting#toc16">a bit tricky</a>
also depending on the actual board you are using (original or clone): You need
to find and install the right USB-to-serial driver.</li>
<li>Choose <code>File/Upload</code> or press the “=&gt;” icon: The upload should start</li>
Expand Down Expand Up @@ -348,7 +348,7 @@ <h3 id="eeprom-memory-layout">EEPROM Memory Layout</h3>
<tr>
<td>00..07</td>
<td>chars</td>
<td>TeleBall device fingerprint: {‘T’, ‘e’, ‘l’, ‘e’, ‘B’, ‘a’, ‘l’, ‘l’};</td>
<td>TeleBall device fingerprint: <br />{‘T’, ‘e’, ‘l’, ‘e’, ‘B’, ‘a’, ‘l’, ‘l’};</td>
</tr>
<tr>
<td>08..09</td>
Expand All @@ -363,12 +363,12 @@ <h3 id="eeprom-memory-layout">EEPROM Memory Layout</h3>
<tr>
<td>11..12</td>
<td>unsigned int</td>
<td>Leftmost poti position (calibrate paddle user experience)</td>
<td>Leftmost poti position <br />(calibrate paddle user experience)</td>
</tr>
<tr>
<td>13..14</td>
<td>unsigned int</td>
<td>Rightmost poti position (calibrate paddle user experience)</td>
<td>Rightmost poti position <br />(calibrate paddle user experience)</td>
</tr>
</tbody>
</table>
Expand Down
14 changes: 7 additions & 7 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -129,11 +129,11 @@ <h3 id="the-makers">The Makers</h3>
<p>TeleBall was designed, built and released as an Open Source / Open Hardware project
during August 2014 and January 2015.</p>

<p>TeleBall is a project of the <a href="http://www.m-e-g-a.org">Museum of Electronic Games &amp; Art</a>.</p>
<p>TeleBall is a project of the <a href="http://www.m-e-g-a.org/diy-teleball/">Museum of Electronic Games &amp; Art</a>.</p>

<h3 id="stay-in-touch">Stay in Touch</h3>

<p>If you have any questions or comments, we are happy to hear from you. Email us at</p>
<p>If you have any questions or comments, we are happy to hear from you:</p>

<ul>
<li>sy2002 at teleball.org</li>
Expand All @@ -147,14 +147,14 @@ <h3 id="acknowledgements">Acknowledgements</h3>
<li>TeleBall is built on the <a href="http://www.arduino.cc">Arduino platform</a>, i.e. the
microcontroller core as well as the software are Arduino based.</li>
<li>The case is designed using <a href="http://www.freecadweb.org">FreeCad</a>.</li>
<li>The PCB is designed using the free version of <a href="http://www.cadsoftusa.com/">Eagle</a>.</li>
<li>The PCB is designed using the free version of <a href="https://www.autodesk.com/products/eagle/free-download">Eagle</a>.</li>
<li>The firmware uses <a href="https://github.com/wayoda/LedControl">wayoda / LedControl</a> as a
MAX7221 driver and <a href="http://tmrh20.github.io/RF24/">TMRh20 / RF24</a> as a nRF24L01+ driver.</li>
MAX7221 driver <br />and <a href="http://tmrh20.github.io/RF24/">TMRh20 / RF24</a> as a nRF24L01+ driver.</li>
<li>The great <a href="http://www.duinokit.com">DuinoKit</a> was sy2002’s original inspiration to
create the <a href="http://duinokit.com/ShowAndTell/viewtopic.php?f=4&amp;t=14">BreakOut Tutorial</a>,
create <br />the <a href="http://duinokit.com/store/showandtell/topic/83-play-breakout-on-duinokit-essentials.html">BreakOut Tutorial</a>,
which itself turned into the origin of TeleBall.</li>
<li>The project’s web and documentation page theme is based on
<a href="https://github.com/broccolini/dinky">broccolini / dinky</a>
<li>The project’s web and documentation page theme is based<br />
on <a href="https://github.com/broccolini/dinky">broccolini / dinky</a>
and uses <a href="http://lokeshdhakar.com/projects/lightbox2">lightbox2</a></li>
</ul>

Expand Down

0 comments on commit aaee8fc

Please sign in to comment.