SHISHIODOSHI MACHINE
Description
///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// ししおどしです。 ///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// I made a traditional Japanese device called a shishiodoshi. You can control its operation using Arduino and servo motor . ///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// SAMPLE_CODE.ino / you should include library servo . h / Servo shishiodoshi; int a = 0; void setup() { shishiodoshi.attach(2); shishiodoshi.write(90); } void loop() { shishiodoshi.write(0); delay(3000); a=0; while(a<135){ a = a+1; shishiodoshi.write(a); delay(4); } } ///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// You can check the operation on my twitter. https://twitter.com/underMHz/status/1367796152607776773
Statistics
Likes
4
Downloads
0