How to Make a Diorama - USS Arizona Explosion.

I wouldn’t call this diorama ’Attack on Pearl harbor’ because some crucial features are missing. -USS Vestal- there is no injection kit, and all of the resin kit were sold out. -USS Tennessee and USS West Virginia- since there is no USS Vestal present on the diorama, there is no point to make those ships. I will make ’Attack on Pearl Harbor’ diorama when new tooled USS Arizona and USS Vestal is released. USS Arizona Full Build Arduino Code: int LED1 = 3; int LED2 = 5; int LED3 = 6; int LED4 = 9; void setup() { pinMode(LED1, OUTPUT); pinMode(LED2, OUTPUT); pinMode(LED3, OUTPUT); pinMode(LED4, OUTPUT); } void loop() { digitalWrite(LED1, HIGH); delay(30); digitalWrite(LED1, LOW); digitalWrite(LED2, HIGH); delay(30); digitalWrite(LED2, LOW); digitalWrite(LED1, HIGH); delay(30); digitalWrite(LED1, LOW); delay(30); de
Back to Top