Try map1
WHAT IS IT??? | WHAT CAN I DO WITH IT? | SOME PROJECTS |
---|---|---|
ARDUINO is a tool for making computers that can sense and control more of the physical world than your desktop computer**. Arduino is a small circuit board with an Atmel MicroController chip and other parts. See examples HERE. Arduino is intended for use by both non-technical people with no previous programming experience and seasoned pros who love to tinker. | Arduino is a small circuit board with an Atmel MicroController chip and other parts. See examples HERE. Arduino is intended for use by both non-technical people with no previous programming experience and seasoned pros who love to tinker.
|
List of projects: |
Arduino is a 'Rapid Electronics Prototyping Platform' which consists of two main parts:
Arduino is great with other Rapid Prototyping technologies like 3-D Printers and Laser Cutters. Many [2] are featuring Arduino with other tools and technologies. |
![]() |
[[3]]
This project is for the design and construction of a electrically-heated kiln for making "Warm Glass", which is glass heated until pieces fuse together or "slump" or "drape" over shaped molds. |
Arduino is intended for use by both non-technical people with no previous programming experience and seasoned pros who love to tinker. | Arduino is a small circuit board with an Atmel MicroController chip and other parts. See examples HERE. Arduino is intended for use by both non-technical people with no previous programming experience and seasoned pros who love to tinker. | |
Arduino is intended for use by both non-technical people with no previous programming experience and seasoned pros who love to tinker. | Arduino is a small circuit board with an Atmel MicroController chip and other parts. See examples HERE. Arduino is intended for use by both non-technical people with no previous programming experience and seasoned pros who love to tinker. |
File:Component Request List (02-02-2018).pdf
Shopping List | |||||
---|---|---|---|---|---|
Bread & Butter | Pie | Buns | Danish | Croissant | |
Cheese | Ice cream | Butter | Yogurt |
<font color="#95a5a6">/* YourDuinoStarter Example: The BusyBox for OSCAR BBtry-TTS-3</font> <font color="#95a5a6"> - WHAT IT DOES: Reacts to buttons, makes lights, noises.. speech</font> <font color="#95a5a6"> Uses the Emic 2 Text-to-Speech Module.</font> <font color="#95a5a6"> - SEE the comments after "//" on each line below</font> <font color="#95a5a6"> - CONNECTIONS:</font> <font color="#95a5a6"> - Pin 10 // Serial input (connects to Emic 2's SOUT pin)</font> <font color="#95a5a6"> - Pin 11 // Serial output (connects to Emic 2's SIN pin)</font> <font color="#95a5a6"> - V1.00 04/07/2018</font> <font color="#95a5a6"> terry@yourduino.com */</font> <font color="#95a5a6">/*-----( Import needed libraries )-----*/</font> <font color="#434f54">// include the SoftwareSerial library so we can use it to talk to the Emic 2 module</font> <font color="#5e6d03">#include</font> <font color="#434f54"><</font><b><font color="#d35400">SoftwareSerial</font></b><font color="#434f54">.</font><font color="#000000">h</font><font color="#434f54">></font> <font color="#5e6d03">#include</font> <font color="#434f54"><</font><b><font color="#d35400">SD</font></b><font color="#434f54">.</font><font color="#000000">h</font><font color="#434f54">></font> <font color="#434f54">// Needed by the EMIC2 library, though not utilized in this example</font> <font color="#5e6d03">#include</font> <font color="#005c5f">"EMIC2.h"</font> <font color="#95a5a6">/*-----( Declare Constants and Pin Numbers )-----*/</font> <font color="#5e6d03">#define</font> <font color="#000000">RX_PIN</font> <font color="#000000">5</font> <font color="#434f54">// Connect SOUT pin of the Emic 2 module to the RX pin</font> <font color="#5e6d03">#define</font> <font color="#000000">TX_PIN</font> <font color="#000000">6</font> <font color="#434f54">// Connect SIN pin of the Emic 2 module to the TX pin)</font> <font color="#5e6d03">#define</font> <font color="#000000">ledPin</font> <font color="#000000">13</font> <font color="#434f54">// Most Arduino boards have an on-board LED on this </font> <font color="#5e6d03">#define</font> <font color="#000000">VERBOSE</font> <font color="#95a5a6">/*-----( Declare objects )-----*/</font> <b><font color="#d35400">EMIC2</font></b> <font color="#000000">emic</font><font color="#000000">;</font> <font color="#434f54">// Creates an instance of the EMIC2 library</font> <font color="#434f54">// set up a new serial port</font> <font color="#434f54">//SoftwareSerial emicSerial = SoftwareSerial(rxPin, txPin);</font> <font color="#95a5a6">/*-----( Declare Variables )-----*/</font> <font color="#00979c">void</font> <font color="#5e6d03">setup</font><font color="#000000">(</font><font color="#000000">)</font> <font color="#95a5a6">/****** SETUP: RUNS ONCE ******/</font> <font color="#000000">{</font> <font color="#434f54">// define pin modes</font> <font color="#d35400">pinMode</font><font color="#000000">(</font><font color="#000000">ledPin</font><font color="#434f54">,</font> <font color="#00979c">OUTPUT</font><font color="#000000">)</font><font color="#000000">;</font> <font color="#434f54">// Initializes the EMIC2 instance</font> <font color="#434f54">// The library sets up a SoftwareSerial port</font> <font color="#434f54">// for the communication with the Emic 2 module</font> <font color="#000000">emic</font><font color="#434f54">.</font><font color="#d35400">begin</font><font color="#000000">(</font><font color="#000000">RX_PIN</font><font color="#434f54">,</font> <font color="#000000">TX_PIN</font><font color="#000000">)</font><font color="#000000">;</font> <font color="#95a5a6">/* When the Emic 2 powers on, it takes about 3 seconds for it to successfully</font> <font color="#95a5a6"> initialize. It then sends a ":" character to indicate it's ready to accept</font> <font color="#95a5a6"> commands. If the Emic 2 is already initialized, a CR will also cause it</font> <font color="#95a5a6"> to send a ":"</font> <font color="#95a5a6"> */</font> <font color="#000000">emic</font><font color="#434f54">.</font><font color="#d35400">setVoice</font><font color="#000000">(</font><font color="#000000">0</font><font color="#000000">)</font><font color="#000000">;</font> <font color="#434f54">// Sets the voice (9 choices: 0 - 8)</font> <font color="#000000">emic</font><font color="#434f54">.</font><font color="#d35400">setVolume</font><font color="#000000">(</font><font color="#000000">18</font><font color="#000000">)</font><font color="#000000">;</font> <font color="#000000">}</font><font color="#434f54">//--(end setup )---</font> <font color="#00979c">void</font> <font color="#5e6d03">loop</font><font color="#000000">(</font><font color="#000000">)</font> <font color="#95a5a6">/****** LOOP: RUNS CONSTANTLY ******/</font> <font color="#000000">{</font> <font color="#000000">emic</font><font color="#434f54">.</font><font color="#d35400">speak</font><font color="#000000">(</font><font color="#005c5f">"Hey, Oscar. is this working? "</font><font color="#000000">)</font><font color="#000000">;</font> <font color="#d35400">delay</font><font color="#000000">(</font><font color="#000000">2000</font><font color="#000000">)</font><font color="#000000">;</font> <font color="#000000">emic</font><font color="#434f54">.</font><font color="#d35400">speak</font><font color="#000000">(</font><font color="#005c5f">"Where is GrandMom?"</font><font color="#000000">)</font><font color="#000000">;</font> <font color="#d35400">delay</font><font color="#000000">(</font><font color="#000000">2000</font><font color="#000000">)</font><font color="#000000">;</font> <font color="#000000">emic</font><font color="#434f54">.</font><font color="#d35400">speak</font><font color="#000000">(</font><font color="#005c5f">"Tell her to get to work"</font><font color="#000000">)</font><font color="#000000">;</font> <font color="#434f54">// emic.speak(3.14); // It accepts various alphanumeric or numeric data types</font> <font color="#434f54">// emic.speak(":-)0 Let's now sing a song");</font> <font color="#434f54">// emic.speakDemo(1);</font> <font color="#5e6d03">while</font> <font color="#000000">(</font><font color="#000000">1</font><font color="#000000">)</font><font color="#000000">;</font> <font color="#000000">}</font><font color="#434f54">//--(end main loop )---</font> <font color="#95a5a6">/*-----( Declare User-written Functions )-----*/</font> <font color="#434f54">//*********( THE END )***********</font></shtml>
If you want a heading it goes here
The text for your content box goes here. The text for your content box goes here.
The text for your content box goes here. The text for your content box goes here
ARDUINO HARDWARE:
Arduino Hardware consists of Arduino type Microcomputer Boards, and the many, many kinds of physical devices that can be used with Arduino. The main categories of devices that can be connected to Arduino are:
- SENSORS - Devices that Sense some external variable or event, and connect to an Arduino Input Pin
- ACTUATORS - Devices that perform some kind of Action when activated by an Arduino Output Pin or Pins.
Click on the categories above, to go to our page explaining them in more detail.
HERE (click) is a simple example using an Ultrasonic SENSOR and a Servomotor ACTUATOR.
Should you use Arduino for REAL ENGINEERING?? Joshua says YES! See why HERE:
Here are some more general HOW-TO pages on different subjects that are not specifically Sensors or Actuators:
- CABLES, WIRES and PINS.. How to connect things to Arduino
- ARDUINO POWER: How to control things like motors, lights, heaters etc.
- LCD DISPLAYS: Blue and Yellow, 2x16 and 4x20 Characters
- COMMUNICATIONS to and from Arduino
- IR REMOTE KIT: How-To and Example Software Sketches
- SD CARD MODULE and STACKABLE SD CARD SHIELD
- Arduino Timers and Interrupts Explanation by RobotFreak
- TUTORIALS: Motors and More..
Try_Map1 Testing if we know what the hell we are doing with imagemaps... TK