Skip to content

Commit

Permalink
fix: outdated issues in quickstart tutorial
Browse files Browse the repository at this point in the history
  • Loading branch information
nkrkv committed Oct 5, 2012
1 parent 856f930 commit 3573408
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions doc/quickstart.rst
Original file line number Diff line number Diff line change
Expand Up @@ -22,9 +22,9 @@ Lets see what we've got::
.
├── lib
└── src
└── sketch.pde
└── sketch.ino

$ cat src/sketch.pde
$ cat src/sketch.ino

#define LED_PIN 13

Expand All @@ -42,7 +42,7 @@ Lets see what we've got::
}

Here we have two directories. ``src`` is a source directory where we can
put our project's ``*.[c|cpp|pde|h|hpp]`` source files. ``sketch.pde``
put our project's ``*.[c|cpp|pde|h|hpp]`` source files. ``sketch.ino``
was created for us, so we have a starting point. ``lib`` is a directory
where we may put 3-rd party libraries if we would want.

Expand Down Expand Up @@ -127,7 +127,7 @@ Serial communication
--------------------

OK, now lets deal with serial communication a bit. With editor of your choice change
``src/sketch.pde`` to::
``src/sketch.ino`` to::

void setup()
{
Expand Down

0 comments on commit 3573408

Please sign in to comment.