Skip to main content
Advanced Search
Search Terms
Content Type

Exact Matches
Tag Searches
Date Options
Updated after
Updated before
Created after
Created before

Search Results

5 total results found

Week 2 - Animation, conditionals & random numbers

Creative Coding Workshop: Introduction to Creative Coding

...eved the current temperature in degrees centigrade, for example throug ...erefore the 360 is the angle in degrees around that circle. Image cre ...eir relationship around the 360 degrees of the colour wheel. ...X width of canvas 0 50 degrees of colour wheel 0 360 Th...

How to use a Servo Motor

Physical Computing Tutorials

...ght servo motors to rotate to 0 degrees and then 90 degrees, one by one. #include "PCA9685 ... is controlled by a pulse, the ‘degree’ values work differently. Values like 0, 90, and 180 don’t represent angles; instead, they typically control rotation direc...

Radio Communication: How to use APC220 Radio Data Module

Physical Computing Tutorials

...ght servo motors to rotate to 0 degrees and then 90 degrees, one by one. #include <SoftwareSerial.h> SoftwareSerial radio(8, 9); // RX, TX void setup() { radio.begin(9600); } void loop() { radio.println("Hello from Leonardo!"); delay(1000); } Ardu...

Understanding Arduino hardware

Physical Computing Workshop: Beginner Physical Computing

... cold, it will give you degress degree celsius, a range of values. 6. PWM pins You can see the symbol ~ next to some digital pins, those are PWM pins. For now, you can see them as analog output pins. For example, if you want to create a breathing light eff...

Course

How to send data to Processing from Arduino

Physical Computing Tutorials

...ved from Arduino to control the degrees of rotation of a rectangle in Processing. import processing.serial.*; Serial myPort; String val; int datanum = 0; //number of data receiving from Arduino int value1; //int value2; //multiple data from arduino if ...