Documentation — Recitation 9

Documentation — Recitation 9 By Xiaoyi Cai (Mia)   Date: 4/27/2021 I. Make a Processing Etch A Sketch Here is the code of the final version: Arduino—- void setup() {  Serial.begin(9600); } void loop() {  int sensor1 = analogRead(A2);  int sensor2 = analogRead(A4);    Serial.print(sensor1);  Serial.print(“,”);    Serial.print(sensor2);  Serial.println();    delay(2); } Processing—- import processing.serial.*; float … Continue reading Documentation — Recitation 9

Final Essay

Final Essay By Xiaoyi Cai (Mia)   Date: 4/19/2021 I. Project Title 💧Drink Water!   II. Project Statement of Purpose Just like the title of our project, this project is designed for people who usually forget or feel bored drinking water. We want this project can help them to drink water in an easy and interesting … Continue reading Final Essay

Final Project Proposal

Final Project Proposal By Xiaoyi Cai (Mia)   Date: 4/13/2021 *Partner: Amber ❀ ONE: Running, running!🏃‍ With the development of society, people, especially young adults, become busier and busier. Because of their faster and faster pace of life, they have fewer and fewer chances to spend time on exercise, which will lead to serious problems to … Continue reading Final Project Proposal

Documentation — Recitation 7

Documentation — Recitation 7 By Xiaoyi Cai (Mia)   Date: 4/11/2021 PART 1 Code👇 float angle = 0; void setup() {   size(800, 800); } void draw() {   background(250, 247, 217);   for (int x=0; x<=width; x+=150) {     for (int y=0; y<=height; y+=150) {       flower(x, y, 30);     }   }   angle += 0.02; } void flower(float x, float y, float s) {   stroke(255); … Continue reading Documentation — Recitation 7

Final Project Preparatory Research and Analysis

Final Project Preparatory Research and Analysis By Xiaoyi Cai (Mia)   Date: 4/12/2021 I. Interactive Projects After reading Art, Interaction and Engagement by Ernest Edmonds, I got one impressive idea. It tells me that both the artist and the audience should shape together and create the artifact in the interactive projects. In my opinion, this idea will definitely … Continue reading Final Project Preparatory Research and Analysis