Final Documentation – Minh-Chau

One popular Vietnamese folk tale told during the Mid Autumn festival is the story of Chu Cuoi, the man on the moon. In one variation of the tale, Chu Cuoi observed a mother tiger healing her baby tiger with the leaves of a banyan tree. He takes the tree home for its magical properties and instructs his wife to water it with great care and pure water every day. His wife becomes bitter and jealous of the tree; one day, she waters it with dirty water. Cuoi arrives in time to see the banyan tree lifting from the ground, as it rejects the dirty water. Jumping to hold onto the tree, he is carried away with the tree all the way to the moon. Some say that you can see him and his tree on the moon every year during the festival so children light lanterns to help guide Cuoi back to earth.

The story is childish and playful, keeping in theme with the happy and light mood of the mid-Autumn festival, or Children’s Day for Vietnam. A great retelling of the story can be found here: https://fromsaigontosowerby.wordpress.com/2016/03/27/the-story-of-chu-cuoi/

Inspired by the story, and keeping with the theme of tradition and childhood, this light art installation features an animation of Chu Cuoi walking down from the moon back to earth.

The animation and “live” storytelling of the art piece can be seen in this video:

The background music for this video was a piano cover mashup of several popular mid-autumn festival songs. The first song in particular is what was always played during my childhood celebrations. The cover was done by Fix Piano: https://www.youtube.com/watch?v=jXeYZKjiy88


I also took and edited some photos of the project to highlight different aspects of the project that I was proud of.

The light art animation was achieved through a simple servo-motor and LED sequence on Arduino. I referenced the example Blink code and an example Sweep code to compile the final code.

Blink code: https://www.arduino.cc/en/Tutorial/BuiltInExamples/Blink

Sweep code: https://www.arduino.cc/en/Tutorial/LibraryExamples/Sweep

Final code:

#include <Servo.h>

Servo myservo;  // create servo object to control a servo

int pos = 0;    // variable to store the servo position


void setup() {
  myservo.attach(7);
  pinMode(6, OUTPUT); 
  pinMode(5, OUTPUT);
  pinMode(4, OUTPUT);
  pinMode(3, OUTPUT);
  pinMode(2, OUTPUT);
}

void loop() {
    // man on moon moving through servo rotation
   for (pos = 170; pos >= 60; pos -= 1) { 
    myservo.write(pos);              
    delay(30);                          
    }
  // stepping stone leds turning on and off in sequence
  digitalWrite(6, HIGH); 
  delay(1000);           
  digitalWrite(6, LOW);  
  delay(250);            
    digitalWrite(5, HIGH);
  delay(1000);            
  digitalWrite(5, LOW);   
  delay(250);             
  digitalWrite(4, HIGH);  
  delay(1000);                       
  digitalWrite(4, LOW);    
  delay(250);              
  digitalWrite(3, HIGH);   
  delay(1000);             
  digitalWrite(3, LOW);    
  delay(250);              
  digitalWrite(2, HIGH);   
  delay(1000);             
  digitalWrite(2, LOW);    
  delay(250);              
}

7 Comments Add yours

  1. Liz says:

    Minh-Chau, this looks incredible! I love how you incorporated your childhood and culture into this piece. It came out so good and I’m surprised how bright those tiny LEDs turned out to be. The man looks really great as well!

  2. Mariah says:

    This is so amazingly beautiful! the moon lamp is my favorite part if the whole project I love the animation and the way that you pained it. Really great job!

  3. Mario says:

    The syncing lights to music really impressed me in the video. Your work pared with that music very well in my opinion. Your photo edits look really good too!

  4. Marco says:

    I like the story that you have created with your piece and where the story comes from. your pictures do a great job showing it off.

  5. Mattea says:

    I love how you incorporated your culture and childhood into your project. The end product was so impressive and gorgeous!! I love the lanterns and how you used some traditional practices, as well as some modern alternatives, to make them! Really great job!

  6. Kyria says:

    Wow, your documentation is absolutely wonderful. I’m so inspired by the cultural significance of this project, thank you so much for sharing the story with us. Your pictures look so beautifully detailed and rustic, I love how the lanterns almost look frosted. Choosing patterned fabric was a wonderful idea. When they are lit red, they are especially gorgeous, in my opinion. Your project feels so complete and intentional, how the lanterns are staggered, the timing, everything. I would love to see this in real life.

  7. Conrad says:

    Your project looks really professional and could be a genuine art installment. I really like how you timed all the animations together and the staging of the photography was also really good.

Leave a Reply