User:ZUZU/SI 22: Difference between revisions
| Line 57: | Line 57: | ||
*Sound Effects Library [https://sc.chinaz.com/yinxiao/ Chinese website][https://audioz.download Comprehensive material] | *Sound Effects Library [https://sc.chinaz.com/yinxiao/ Chinese website][https://audioz.download Comprehensive material] | ||
The morning online meeting came up with an interesting proposal to select a metaphor of interest and interview it. Next, I'll imagine a picnic box that serves as a metaphor for WORM a non-commercial underground radio station, combined with some of the results of the group discussion, to answer the questions. | |||
'''Interviewer:'''How do you define yourself? | |||
'''Picnic Box:'''Oh, darling, I'm not just a box; I'm a symphony of joy, a curated collection of delightful moments. | |||
====Today's Wanderings==== | ====Today's Wanderings==== | ||
Revision as of 02:18, 14 November 2023
I used to use Apple pages to keep a record of what I learned, but they were always a bit of a mess, so I'm going to start using a Wiki. hopefully, it will help me improve the situation.
WEEK 8
Friday 10 November
Use Arduino to control LED lights
use loop to make mini traffic lights:
int greenLed = 13;
int yellowLed = 12;
int redLed = 11;
void setup() {
// put your setup code here, to run once:
pinMode(13, OUTPUT); //green
pinMode(12, OUTPUT); //yellow
pinMode(11,OUTPUT); // red
}
void loop() {
// put your main code here, to run repeatedly:
//turn green light on for 0.5 seconds
digitalWrite(13,HIGH);
delay(500);
//turn off green light and turn yellow light on for 0.5 second
digitalWrite(13,LOW);
digitalWrite(12,HIGH);
delay(500);
// turn yellow off anf turn red on for 0.5 seconds
digitalWrite(12,LOW);
digitalWrite(11,HIGH);
delay(500);
digitalWrite(11,LOW);
}
WEEK 9
Monday 13 November
Meeting online
Worm Picnic Box
Continue to explore the thoughts about Worm Picnic, the original idea comes from Monday 6th November installation group
Some inspirations :
- A Chinese Restaurant Website with a nostalgic vibe:Málà Project
- An audio project ideal for meditation:Talk With Urban Landscapes
- A sleek modern chat UI :DMs
- Sound Effects Library Chinese websiteComprehensive material
The morning online meeting came up with an interesting proposal to select a metaphor of interest and interview it. Next, I'll imagine a picnic box that serves as a metaphor for WORM a non-commercial underground radio station, combined with some of the results of the group discussion, to answer the questions. Interviewer:How do you define yourself? Picnic Box:Oh, darling, I'm not just a box; I'm a symphony of joy, a curated collection of delightful moments.
Today's Wanderings
- I accidentally found a newspaper with the same name as mine: zuzu
- 迷人的 Christmas dream: 圣诞分队
- Archive Animals as Objects?
