Skip to content

Commit

Permalink
Update repository URL
Browse files Browse the repository at this point in the history
  • Loading branch information
njh committed Mar 7, 2017
1 parent 1b40161 commit 9ca44e6
Show file tree
Hide file tree
Showing 12 changed files with 19 additions and 19 deletions.
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,9 @@ Chronometer/stopwatch library that counts the time passed since started.

## Repository

http://github.com/thomasfredericks/Chrono
http://github.com/SofaPirate/Chrono

Download the latest version here : https://github.com/thomasfredericks/Chrono-Arduino-Wiring/archive/master.zip
Download the latest version here : https://github.com/SofaPirate/Chrono-Arduino-Wiring/archive/master.zip

## Installation
Copy the Chrono folder to your Arduino libraries.
Expand All @@ -17,7 +17,7 @@ Copy the Chrono folder to your Arduino libraries.
## Basic Example
```arduino
// INCLUDE CHRONO LIBRARY
// Download : https://github.com/thomasfredericks/Chrono/archive/master.zip
// Download : https://github.com/SofaPirate/Chrono/archive/master.zip
#include <Chrono.h>
// Instanciate a Chrono object.
Expand All @@ -44,7 +44,7 @@ void loop() {
### Include the library

```arduino
// INCLUDE CHRONO LIBRARY : http://github.com/thomasfredericks/Chrono
// INCLUDE CHRONO LIBRARY : http://github.com/SofaPirate/Chrono
#include <Chrono.h>
```
Expand Down
10 changes: 5 additions & 5 deletions docs/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,8 @@ <h1>Chrono</h1>
<div id="generated-toc" class="generate_from_h2"></div>
<h2>Get It!</h2>
<ul>
<li><a href="https://github.com/thomasfredericks/Chrono/archive/master.zip"><strong>Download the source</strong></a></li>
<li><a href="https://github.com/thomasfredericks/Chrono/">Chrono on Github </a></li>
<li><a href="https://github.com/SofaPirate/Chrono/archive/master.zip"><strong>Download the source</strong></a></li>
<li><a href="https://github.com/SofaPirate/Chrono/">Chrono on Github </a></li>
</ul>

<h2>Adding Chrono</h2>
Expand All @@ -34,8 +34,8 @@ <h2>Adding Chrono</h2>
<h2>Basic Example</h2>
<pre class="prettyprint" ><code>
// INCLUDE CHRONO LIBRARY
// Documentation : https://github.com/thomasfredericks/Chrono-Arduino-Wiring/blob/master/README.md
// Download : https://github.com/thomasfredericks/Chrono-Arduino-Wiring/archive/master.zip
// Documentation : https://github.com/SofaPirate/Chrono-Arduino-Wiring/blob/master/README.md
// Download : https://github.com/SofaPirate/Chrono-Arduino-Wiring/archive/master.zip
#include &lt;Chrono.h&gt;

// Instanciate a Chrono object.
Expand All @@ -58,7 +58,7 @@ <h2>Basic Example</h2>
<h2>Basic Usage</h2>
<h3> Include the library </h3>

<pre class="prettyprint" ><code>// INCLUDE CHRONO LIBRARY : http://github.com/thomasfredericks/Chrono
<pre class="prettyprint" ><code>// INCLUDE CHRONO LIBRARY : http://github.com/SofaPirate/Chrono
#include &lt;Chrono.h&gt;
</code></pre>

Expand Down
2 changes: 1 addition & 1 deletion examples/basicMetro/basicMetro.ino
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// INCLUDE CHRONO LIBRARY : http://github.com/thomasfredericks/Chrono
// INCLUDE CHRONO LIBRARY : http://github.com/SofaPirate/Chrono
#include <Chrono.h>

// Instanciate a Chrono object.
Expand Down
2 changes: 1 addition & 1 deletion examples/basicMetroSerial/basicMetroSerial.ino
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ Version originale : Thomas Ouellet Fredericks, 4 novembre 2012
Derniere version : Thomas Ouellet Fredericks, 6 mai 2015
*/

// INCLUDE CHRONO LIBRARY : http://github.com/thomasfredericks/Chrono
// INCLUDE CHRONO LIBRARY : http://github.com/SofaPirate/Chrono
#include <Chrono.h>

Chrono envoiMessage;
Expand Down
2 changes: 1 addition & 1 deletion examples/blinking/blinking.ino
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
This code will blink an LED attached to pin 13 on and off.
*/

// INCLUDE CHRONO LIBRARY : http://github.com/thomasfredericks/Chrono
// INCLUDE CHRONO LIBRARY : http://github.com/SofaPirate/Chrono
#include <Chrono.h>

#define LED 13 // Define the led's pin
Expand Down
2 changes: 1 addition & 1 deletion examples/blinking_2_instances/blinking_2_instances.ino
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
// abd will blink output 9 every 125 ms


// INCLUDE CHRONO LIBRARY : http://github.com/thomasfredericks/Chrono
// INCLUDE CHRONO LIBRARY : http://github.com/SofaPirate/Chrono
#include <Chrono.h>

#define LED_A 13 // Define a LED pin
Expand Down
2 changes: 1 addition & 1 deletion examples/debouncingExample/debouncingExample.ino
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@

// INCLUDE CHRONO LIBRARY : http://github.com/thomasfredericks/Chrono
// INCLUDE CHRONO LIBRARY : http://github.com/SofaPirate/Chrono
#include <Chrono.h>

#define BUTTON_PIN 2
Expand Down
2 changes: 1 addition & 1 deletion examples/msBetweenButtonPresses/msBetweenButtonPresses.ino
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
Cet exemple mesure le temps entre deux pressions sur un interrupteur.
*/

// INCLUDE CHRONO LIBRARY : http://github.com/thomasfredericks/Chrono
// INCLUDE CHRONO LIBRARY : http://github.com/SofaPirate/Chrono
#include <Chrono.h>

// L'interrupteur est branché à la broche 3 avec un pull-up externe :
Expand Down
2 changes: 1 addition & 1 deletion examples/randomTones/randomTones.ino
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// INCLUDE CHRONO LIBRARY : http://github.com/thomasfredericks/Chrono
// INCLUDE CHRONO LIBRARY : http://github.com/SofaPirate/Chrono
#include <Chrono.h>

// Brancher un haut-parleur piezo entre la broche 9 et le GND :
Expand Down
2 changes: 1 addition & 1 deletion examples/serialInterval/serialInterval.ino
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ Version originale : Thomas Ouellet Fredericks, 4 novembre 2012
Derniere version : Thomas Ouellet Fredericks, 23 septembre 2014
*/

// INCLUDE CHRONO LIBRARY : http://github.com/thomasfredericks/Chrono
// INCLUDE CHRONO LIBRARY : http://github.com/SofaPirate/Chrono
#include <Chrono.h>

Chrono envoiMessage;
Expand Down
2 changes: 1 addition & 1 deletion examples/toneSweep/toneSweep.ino
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// INCLUDE CHRONO LIBRARY : http://github.com/thomasfredericks/Chrono
// INCLUDE CHRONO LIBRARY : http://github.com/SofaPirate/Chrono
#include <Chrono.h>

// Brancher un haut-parleur piezo entre la broche 9 et le GND :
Expand Down
2 changes: 1 addition & 1 deletion library.properties
Original file line number Diff line number Diff line change
Expand Up @@ -5,5 +5,5 @@ maintainer=Thomas O Fredericks <[email protected]> and Sofian Audry
sentence=Chronometer/stopwatch library that counts the time passed since started.
paragraph=Works with Arduino and Wiring.
category=Timing
url=https://github.com/thomasfredericks/Chrono/
url=https://github.com/SofaPirate/Chrono
architectures=*

0 comments on commit 9ca44e6

Please sign in to comment.