ATtiny Mì

ATtiny Mì

thingiverse

ITALIANO questo è un robot creato partendo da attiny canbot ideato da Wingman, esso non cammina, ma produce suoni a intervalli e frequenze casuali quando vede un oggetto vicino ai suoi sensori a ultrasuoni. ENGLISH This is a robot created from ATtiny canbot conceived by Wingman, it does not walk, but it produces sounds at random intervals and frequencies when it sees an object close to its ultrasonic sensors. sorry for my English, i'll put photos to help.. How I Designed This 1) PARTI 2 tappi del barattolo della nutella 1 tubo di raggio 7 cm e lunghezza 7 cm (io ne ho preso uno più lungo e l'ho tagliato con un serracchio) 1 HC-SR04 sensore ultrasuoni 1 ATtiny85 microcontrollore 1 interruttore 1 batteria da 5V (io uso un porta pile mini stilo con 4 pile, di cui una scarica.. l'importante è che il voltaggio non superi i 5,5V) 1 mini cassa 1 mini breadboard cavi arduino (per programmare attiny85) ENGLISH 2 caps of the Nutella jar 1 tube ray 7 cm and length 7 cm (I took one more long and I cut it with a serracchio) 1 HC-SR04 ultrasonic sensor 1 ATtiny85 microcontroller 1 switch 1 5V battery (I use a little container for batteries with 4 batteries, one discharged .. the important thing is that the voltage does not exceed 5.5V) 1 mini speaker 1 mini breadboard cables Arduino (for programming ATtiny85) CODE 2) programmare ATtiny85 il codice funziona con tinytone (http://www.technoblogy.com/show?KVO), quando la distanza è minore di 10 il robot fa rumori casuali: NOTA IMPORTANTE, non modificare i pin. ENGLISH the code works with tinytone (http://www.technoblogy.com/show?KVO), when the distance is less than 10 the robot makes random noises: IMPORTANT THING, do not change the pin. // Notes const int Note_C = 239; const int Note_CS = 225; const int Note_D = 213; const int Note_DS = 201; const int Note_E = 190; const int Note_F = 179; const int Note_FS = 169; const int Note_G = 159; const int Note_GS = 150; const int Note_A = 142; const int Note_AS = 134; const int Note_B = 127; int Speaker = 1; long randNumber; long randNumber1; long randFreq; define trigPin 2 define echoPin 3 void setup () { pinMode(Speaker, OUTPUT); pinMode(trigPin, OUTPUT); pinMode(echoPin, INPUT); } void loop () { randFreq = random(250, 5000); //

Download Model from thingiverse

With this file you will be able to print ATtiny Mì with your 3D printer. Click on the button and save the file on your computer to work, edit or customize your design. You can also find more 3D designs for printers on ATtiny Mì.