Difference between revisions of "Workshop one"

From Interaction Station Wiki
Jump to navigation Jump to search
Line 178: Line 178:
 
void loop() {
 
void loop() {
 
// RGB
 
// RGB
// CircuitPlayground.setPixelColor(0, 255,  0,  0);
+
  CircuitPlayground.setPixelColor(0, 255,  0,  0);
 
   CircuitPlayground.setPixelColor(1, 150,0,150);
 
   CircuitPlayground.setPixelColor(1, 150,0,150);
// CircuitPlayground.setPixelColor(2,  0, 255,  0);
+
  CircuitPlayground.setPixelColor(2,  0, 255,  0);
 
   CircuitPlayground.setPixelColor(3,  150,0,150);
 
   CircuitPlayground.setPixelColor(3,  150,0,150);
//  CircuitPlayground.setPixelColor(4,  150,0,150);
+
  CircuitPlayground.setPixelColor(4,  150,0,150);
 
//Hexadecimal color code
 
//Hexadecimal color code
 
   CircuitPlayground.setPixelColor(5, 150,0,150);
 
   CircuitPlayground.setPixelColor(5, 150,0,150);
Line 195: Line 195:
  
 
</syntaxhighlight>
 
</syntaxhighlight>
 +
 
===smiley face===
 
===smiley face===
  

Revision as of 16:27, 5 April 2021

Microcontrollers

Computer and processor are generic terms for anything that can run a program, basically.
A controller or microcontroller usually refers to a simple processor that does only one task, like listening to sensors.
In explaining microcontrollers, we’ll distinguish them from computers, which contain more powerful processors that can run an operating system.

Arduino

what is an Arduino?

Arduino is an open source physical computing platform based on a simple input/output (I/O) board and a development environment that implements the Processing language. Arduino can be used to develop standalone interactive objects or can be connected to software on your computer.

Arduino is composed of two major parts: the Arduino board, which is the piece of hardware you work on when you build your objects;
and the Arduino IDE, the piece of software you run on your computer. You use the IDE to createa sketch (a little computer program)
that you upload to the Arduino board. The sketch tells the board what to do.

In the meantime, HERE you can find ANYTHING about Arduino, including download the software

find a detailed introduction here [[1]]

Arduino-uno.png
The pins on your Arduino are the places where you connect wires to construct a circuit (probably in conjunction with a breadboard and some wire. They usually have black plastic ‘headers’ that allow you to just plug a wire right into the board. The Arduino has several different kinds of pins, each of which is labeled on the board and used for different functions.

Adafruit Circuit Playground Express

How's that different?

The Circuit Playground Express is also a microcontroller, produced by Adafruit, just like the Arduino Uno, however, it includes a bunch of build-in sensors to detect motion, temperature, light, and infrared light, and also has neopixel lights, and mini speakers. Circuit Playground Express can be programmed using Arduino IDE, CircuitPython, and Microsoft MakeCode.

On the hardware side, Circuit Playground Express(we call it CPX in short) has connection pads while Arduino has pin headers.

Alligator/Croc Clip Pads:

To make it super-easy to connect to the microcontroller, cpx has 14 connection pads. You can solder to them, use alligator/croc clips, sew with conductive thread, even use small m3 metal screws!

Da1d-ADA-3333-1-0-2-1000x667.jpg

Set Up Arduino IDE

The Arduino Integrated Development Environment (IDE) is a cross-platform application (for Windows, macOS, Linux) that is written in functions from C and C++.[3] It is used to write and upload programs to Arduino compatible boards, but also, with the help of third-party cores, other vendor development boards including circuit playground express.


Download and install Arduino IDE:

https://www.arduino.cc/en/software

And follow the step here:

https://learn.adafruit.com/adafruit-circuit-playground-express/set-up-arduino-ide


we need 3 steps to set up Arduino IDE for circuit playground express.

1. First activate the Adafruit URL

go to File --> preferences

Flora prefs.png

copy the link below to Additional Boards Manager URLs:

https://adafruit.github.io/arduino-board-index/package_adafruit_index.json

Flora urls.png


2. Then install the Adafruit SAMD package

open the Boards Manager by navigating to the Tools->Board menu.

Adafruit products boardmanager.png

You can type Arduino SAMD in the top search bar, then when you see the entry, click Install

Install SAMD Support.png


3. install Circuit Playground Library.

Go to Tools --> Manage Libraries.

Manage-lib.png

Type Circuit Playground in the top search bar then install circuit playground Library.

Install-cpx.png

CPX onboard sensors & Pinouts

1. Green LED lets you know that the CPX is powered on.------ 2. Red LED on Digital pin#13

Circuit playground on-greenled.jpeg Circuit playground d13.jpeg

3. This small button is for Resetting the board. ------------------ 4. Button A and B on Digital pin #4 and #5

Circuit playground reset.jpeg Circuit playground pushbutton.jpeg

5. slide switch on Digital pin #7 - - - - - - - - - - - - - - - - - - - - - - 6. 7 Capacitive Touch pads from A1-A7

Circuit playground slide.jpeg Circuit playground captouch.jpeg

7. Light Sensor on pin A8 - - - - - - - - - - - - - - - - - - - - - - - - - - - 8. Temperature Sensor on A9

Circuit playground lightsensor.jpeg Circuit playground temp.jpeg

9. motion sensor (LIS3DH xyz) - - - - - - - - - - - - - - - - - - - - - - - - - 10. Microphone Audio Sensor

Circuit playground adxl-motion.jpeg Circuit playground mic.jpeg

11. speaker and audio output pin on A0

Circuit playground spkr.jpeg Circuit playground a0.jpeg Circuit playground hp.png

12. Infrared Receive/Transmit

Circuit playground ir.jpeg


Pinouts:




A0 / D12 - true analog output so it's great for playing audio clips.

A1 / D6 - digital I/O, or analog Input, PWM output,capacitive touch sensor

A2 / D9 - digital I/O, or analog Input, PWM output,capacitive touch sensor

A3 / D10 - digital I/O, or analog Input.PWM output,capacitive touch sensor

A4 / D3 - digital I/O, or analog Input, capacitive touch sensor

A5 / D2 - digital I/O, or analog Input, capacitive touch sensor

A6 / D0 - digital I/O, or analog Input, PWM output,capacitive touch sensor

A7 / D1 - digital I/O, or analog Input, PWM output,capacitive touch sensor

Examples

Compile Upload and Blink

let's Open Arduino IDE and open the Blink example.

GO TO File--> Examples -->01.Basics --> Blink this will open example Blink.

Open-blink.png

Select Board and Port :

Sel-port.png

Verify and upload the code

Verify.png Cpxupload-cpx.png

when it finished uploading you can see a message "Done uploading "at the bottom left corner:

Done.png


This example turns an onboard LED on for one second, then off for one second, repeatedly. normally onboard led is on Pin 13. in this case, is the Red LED on CPX.

NeoPixels


 1#include <Adafruit_CircuitPlayground.h>
 2
 3void setup() {
 4  CircuitPlayground.begin();
 5}
 6
 7void loop() {
 8// RGB
 9  CircuitPlayground.setPixelColor(0, 255,   0,   0);
10  CircuitPlayground.setPixelColor(1, 150,0,150);
11  CircuitPlayground.setPixelColor(2,   0, 255,   0);
12  CircuitPlayground.setPixelColor(3,   150,0,150);
13  CircuitPlayground.setPixelColor(4,   150,0,150);
14//Hexadecimal color code
15  CircuitPlayground.setPixelColor(5, 150,0,150);
16  CircuitPlayground.setPixelColor(6, 150,0,150);
17  CircuitPlayground.setPixelColor(7, 150,0,150);
18  CircuitPlayground.setPixelColor(8, 150,0,150);
19  CircuitPlayground.setPixelColor(9, 150,0,150);
20  delay(1000);
21  CircuitPlayground.clearPixels();
22  delay(500); 
23}

smiley face

 1#include <Adafruit_CircuitPlayground.h>
 2
 3void setup() {
 4  CircuitPlayground.begin();
 5}
 6
 7void loop() {
 8  
 9
10for (int i=0;i<10;i++){
11    if (i!=0 && i!=2 && i!=4){
12    CircuitPlayground.setPixelColor(i, 255,   0,   0);
13    delay(100);
14     }
15 }    
16
17}

button and switch

light Sensor

analog and digital

Capacitive touch sensor

=if...else statment

if touched light up the happy face.

Sound sensor

data type

and map()

Motion Sensor

data type

and map()