I have a breadboard setup and my 328 chip as an UNO board I can get Bootloader to load but, can not get any other programs to load. My USBtinyISP programmer does not indicate any reset pulse for any program except bootloader. I am using Arduino 0022 I don't know what the problem is. Any one have any suggestions?
I bought a couple ATtiny85s recently, one is a DIP, and 2 SMD versions where one is QFN... Was lots of fun deadbugging the QFN one into a project :D I haven't done any fine tip soldering in a long time but I haven't lost it. I also had some problems with newer Arduino 1.0 software, none of the ATTiny ISP libraries would work with it but I had a copy of an older version that did work. It was unicorns and puppy dogs after that!! Those issues may be resolved in the community now though...
It is awesome that the music is from Collin. I am learning much recently and have been watching both your online videos. Thanks Matt for writing back! I hope to post my first fully designed and implemented project soon for feedback. -Matt
Hey guys - Another question. I want to make a Clapper (Clap on/off switch) using the arduino and the ATtiny 45. I found a good script, uploaded it, and I used Pin 2 for analog input and Pin 3 for digital output (used in the script), so which pins am I using actually? (ATiny pins)
@kennyfication88 You should get a copy of the ATTiny85/45 spec sheet and it will tell you which pins are what, failing that the MIT web page will provide you with the details in a little (lot) easier language. Typing out the answer will be lost with out the diagram. However you want pin 5 or 6 for output, which should be pwm outputs 0 and 1 in the sketch.
Arduino IDE actually adds ~1000 bytes of stuff you actually don't need. My suggestion to people who want to play with these chips is to grab gcc-avr and program them that way. It's harder than Arduino IDE but well worth the effort. You still get the benefit of programming in C or C++ but you loose some of the conveniences.
For comparison blinking example when compiled by Arduino takes around 1020 bytes or more. When compiled with gcc-avr same code takes around 120 bytes.
@TheMeanEYE Are you referring to loading the Arduino Bootloader onto the device first or when you use the Arduino as an ISP (or other ISP) and write to the controller with out a bootloader? With out a bootloader I believe the sketches are substantially smaller as well as they are ready instantly versus the start-up delay with it.
@SirDrinksAlot69 I never used Arduino as ISP to upload program on a chip that is indirectly connected to Arduino board. I wrote my code in pure C. Which means I didn't have luxuries Arduino IDE provides like analogWrite and similar. Arduino IDE does a lot of things behind your back to make everything painless. If you don't include boot loader and Arduino shared functions, you get a lot smaller file. This is my code for fading LED: pastebin . com / xk4CRYpc
Hi, any idea why I am getting the error " 'Serial' was not declared in this scope " whenever I attempt to upload the ArduinoISP to the board (ATTiny85 w/ Arduino as ISP)? I am using a new Arduino Uno r3 with an ATTiny85.
If you live in the us, you most likely know about the death the the bill SOPA and PIPA. These two victories are overwhelming for the internet as a whole, but new bills are coming... more powerful and fascist. ACTA is a bill which will allow the government to force ISP providers to monitor all packets of data going in and out of your network including email,video uploads and downloads, torrents of all types, pictures and the list keeps going. Copy this and spread the word to *X* amount of videos.
Thanks for the vid but, Make is partially responsible for dumbing down new comers to electronics & microprocessors, by promoting using the arduino as a large expensive single component of the project. Someday some1 will market an "arduino" with a 28 DIP ZIF socket. builders can build their own adapters to program the other packages. Hopefully a kit that use through hole components
@waswestkan Not so much. Sometimes it's the journey of exploring. How many dollars will you save for a one off project? The extra dollars go to information such as this video. People eat; the extra dollars (yes a few of them) go to the people behind the scenes or making the scenes. How many videos have you posted? Blogs? Been to the local highschool lately? If you have, I'm a fan of yours. I hear what you are saying, if you built it I will buy one. My time is limited the arduino is path for me.
@TomTerrific02 Onn2cd thought I believe the kit I wish for is available but 1 would have to purchase a Z?IF socket separately. 1 could save enough of the first 1 off project to purchase the comments for several additional 1 off projects. When/if I believe I have video worth posting I create a non anonymous ID for them. I have approached my HS to see if there was any interest in doing things with electronics/radio, but no go. I
@waswestkan I tip my hat to you for exploring the idea. For me (and maybe a good number of people) its hard to beat an Arduino nano or pro for one off projects. Hard to get the size smaller. Given that the Atmega328 meets your needs. TI has the launch pad at ~$5.00 plus s/h that is an idea too. Then Modern Devices has the BBB. Lots of good things to play around with. Regards.
@TomTerrific02 I'm a different strokes for different folks sort of person. I'm not about to criticism an individual for using the whole hog arduino in a project. Although I have no qualms about stating my opinion on the route Make chose to go promoting u-processor projects, I understand they are just about the only periodical on the sort of stuff.
@ukeleleboy97 the netduino is not, but i was wondering since they almost have the same pin configuration and also most of the arduino shields work with it.
@Anothercoilgun True that DIP is so yestercentury, but unless the DIY actually requires the small size of QFP, the DIP is better suited for most DIY projects
that's pretty awesome - i've seen another attiny chip that has a lot more pins: how is that one different? (other than the obvious difference that there's more pins)
@desktopgeek98 Assuming you are talking about the ATtiny2313 apart from more pins, it has no ADC, only 2KB space but has UART. You can see the differences on the Atmel website -> Products -> Atmel AVR 8- and 32-bit -> tinyAVR -> Parameters.
Do you know if there is more that will work with all the other ATtiny's? I need more then 6 pins, and Analog pins. But I like the Arduino IDE a lot more the AVR.
@reviathon360 If you need more pins that a board supports, just add shift registers, or multiplexers and you can have as many as you like. E.g. with 9 multiplexer chips, you can have 64 analog/digital inputs using only 7 pins on an arduino. With shift registers, you can have as many as you like - after a few hundred though, it can get a bit slow to update/read them all.
@eusouanonimo probably so, but you are really limited by the 2KB flash. since there is no B/L i'm guessing you have the full 2KB to yourself. Other than the flash size, IIRC the ATTiny2/4/85's are similar.
@Xraller, these are "Flash" based MCU's... so reprogram them as much as you want. Yeah, there is a limit to how many times, but it is usually in the order of 10K times, usually not a thing to worry about.
I've only finished a lot of example things to build and am on my way to building a bigger project... could i have multiple attiny chips interface with each other, or would i be better using atmegas, and can those communicate with each other... can someone give me a link to a how to?
@minutemadeinc Both can communicate with each other and other chips that support I2C. If you google Arduino I2C you will find an example that shows 2 Arduino's communicating to each other with 2 wires. If you need a lot of pins or want to use all Arduino functions then go with the ATmega.
"Short and to the point", yup! that's American society today, making canned electronic circuits during commercial breaks... well, at least people are interested in making L.E.D.s blink. Oh and as to the comments about your hair, ...leave it to people to think what they normally spent their time watching during the commercial breaks, matters?! Good thing you didn't have a girl do this, we all know where that would have gone... "Huh, Arduino?... nice boobs". People are so meager.
@doceigen With this type of technology, Arduino is not really focused for hobbiests focusing on art, its mainly for hobbiests focusing on developments that use complex algorithms such as robots for medical or large scale projects. When using the basic components to create complex works of art, that is when people who accuse Arduino and today's society as lazy and short to the point... its not really because they want to, its because they have to for the ease of the society. So, I agree.
I found a DVD of a Disney film in a computer I just bought off Ebay. I punched it into my player and started to watch it. As the logo cleared, I thought about how if I could, I would go into the past and convince Walt to MAKE HIS FILMS ACCURATE, technically correct, entrepreneurially reinforcing, so kids grew up thinking about starting businesses instead of being social heroes... but then, Disney films would have failed! "Ease" is not a good goal, but yeah... who'd watch this?
@doceigen (I couldn't fully understand because I'm a bit young [14 y.o.] to remember such information) Mainly people of older age or possibly young age look for shortcuts because they believe that their time is precious, which is mainly true because each second counts... but speeding up things just leaves you with nothing to do faster, which ruins the point of it being a hobby. But, big business, or adults would mainly look for shortcuts because they believe that they have limited time.
Is he g......No, shut the fuck up, he is not gay. Now for a question, I love this project, and is there any way to use more pins than the ATTINY allows? If so, that would be great! Thanks a lot.
Suppose I have a simple (pin HIGH/LOW) project that needs 8 pins, and want to compact it in this method. Can this technique be used with other chips that have more pins?
ISP sketch dont work with the arduino UNO board, you can read that on the ArduinoISP sketch page of the arduino site.
"NOTE: Currently, you cannot use an Arduino Uno as an ISP programmer because the optiboot bootloader does not support this sketch. A revision for this is in progress. "
That is pretty sweet. I normally use a Picaxe 08m for very small projects. It is another 8 pin microcontroller. How cool to see a similar Arduino platform. Love it.
It works on atiny 25?
Matheusdiodo 3 hours ago
Nice smile.
ito123456789 9 hours ago
Jezus... Your face is scary :/
EFmw2clan 1 day ago
Very nice. Good vid, thanks lads. I'm gonna check on eBay to see if there's any of those chips avail.
I subscribe to Make magazine and it's great.
MACHINEIRON 2 days ago
I have a breadboard setup and my 328 chip as an UNO board I can get Bootloader to load but, can not get any other programs to load. My USBtinyISP programmer does not indicate any reset pulse for any program except bootloader. I am using Arduino 0022 I don't know what the problem is. Any one have any suggestions?
1foxtrot70 4 days ago
I bought a couple ATtiny85s recently, one is a DIP, and 2 SMD versions where one is QFN... Was lots of fun deadbugging the QFN one into a project :D I haven't done any fine tip soldering in a long time but I haven't lost it. I also had some problems with newer Arduino 1.0 software, none of the ATTiny ISP libraries would work with it but I had a copy of an older version that did work. It was unicorns and puppy dogs after that!! Those issues may be resolved in the community now though...
SirDrinksAlot69 5 days ago
would this work with ATtiny10?
reddthecat 5 days ago
It is awesome that the music is from Collin. I am learning much recently and have been watching both your online videos. Thanks Matt for writing back! I hope to post my first fully designed and implemented project soon for feedback. -Matt
2jays 5 days ago
Hey guys - Another question. I want to make a Clapper (Clap on/off switch) using the arduino and the ATtiny 45. I found a good script, uploaded it, and I used Pin 2 for analog input and Pin 3 for digital output (used in the script), so which pins am I using actually? (ATiny pins)
Thx
kennyfication88 6 days ago
@kennyfication88 You should get a copy of the ATTiny85/45 spec sheet and it will tell you which pins are what, failing that the MIT web page will provide you with the details in a little (lot) easier language. Typing out the answer will be lost with out the diagram. However you want pin 5 or 6 for output, which should be pwm outputs 0 and 1 in the sketch.
SirDrinksAlot69 5 days ago
Good video!
wouternet94 1 week ago
gay
tcdgenies 1 week ago
@tcdgenies Yes, you are gay
wouternet94 1 week ago
just did it - works perfectly!
kennyfication88 1 week ago
Why do so many of these presenters say "sodderless" constantly? It's soLDer. Nice easy to follow video though.
SuperBoydlee 1 week ago
Why does arduino use the term "sketches" ? Are they just making names up as they go along even if the things already have names that make sense?
illustriouschin 1 week ago
Arduino IDE actually adds ~1000 bytes of stuff you actually don't need. My suggestion to people who want to play with these chips is to grab gcc-avr and program them that way. It's harder than Arduino IDE but well worth the effort. You still get the benefit of programming in C or C++ but you loose some of the conveniences.
For comparison blinking example when compiled by Arduino takes around 1020 bytes or more. When compiled with gcc-avr same code takes around 120 bytes.
TheMeanEYE 1 week ago
@TheMeanEYE Are you referring to loading the Arduino Bootloader onto the device first or when you use the Arduino as an ISP (or other ISP) and write to the controller with out a bootloader? With out a bootloader I believe the sketches are substantially smaller as well as they are ready instantly versus the start-up delay with it.
SirDrinksAlot69 5 days ago
@SirDrinksAlot69 I never used Arduino as ISP to upload program on a chip that is indirectly connected to Arduino board. I wrote my code in pure C. Which means I didn't have luxuries Arduino IDE provides like analogWrite and similar. Arduino IDE does a lot of things behind your back to make everything painless. If you don't include boot loader and Arduino shared functions, you get a lot smaller file. This is my code for fading LED: pastebin . com / xk4CRYpc
TheMeanEYE 5 days ago
Comment removed
ShujitoDM 2 weeks ago
does this chip has any usb serial communication capability?
if so and if possible I'd want to know how to
ShujitoDM 2 weeks ago
would be nice if we could find to buy, rolled everywhere and not against vendors that ATtiny, someone could show me some hugs from Brazil
pioioloco 2 weeks ago in playlist Eletronica
He looks like young De Niro :D
habitbraker21 2 weeks ago
Will be cool if we can use Atmega8,Atmega16 or also Atmega32 instead using one of these MCUs...
bagatelox 2 weeks ago
@bagatelox
don't know about that "arduino" stuff, but i use them with native AVR tools perfectly fine for years.
odv000 1 week ago
What is the microcontroller core?
marlls1989 2 weeks ago
Do you have something in your eye
Thatgirlsguy1 2 weeks ago
how many bytes of memory does the ATtini hold?
legoclockfreak710 3 weeks ago
@legoclockfreak710 4KB ISP flash memory... just google the datasheet...
Reality2Void 2 weeks ago
@Reality2Void thanks.
legoclockfreak710 2 weeks ago
Hi, any idea why I am getting the error " 'Serial' was not declared in this scope " whenever I attempt to upload the ArduinoISP to the board (ATTiny85 w/ Arduino as ISP)? I am using a new Arduino Uno r3 with an ATTiny85.
Thanks.
Opal1701 3 weeks ago
thnx
KhairulHasanMd 3 weeks ago
does this chip support serial communication ( like to an xbee or lcd screen) if not do you know which one does?
theFlashOracle 3 weeks ago
Excellent video. Need more with this quality.
simonbaker4 3 weeks ago
round the horn *shudder*
gnamp 3 weeks ago
Naah... I use logic gates! :D
EvilPyroCan 4 weeks ago 3
The best part of that video, was the fact Collin Cunningham did the music...
sunnuld 4 weeks ago
This has been flagged as spam show
If you live in the us, you most likely know about the death the the bill SOPA and PIPA. These two victories are overwhelming for the internet as a whole, but new bills are coming... more powerful and fascist. ACTA is a bill which will allow the government to force ISP providers to monitor all packets of data going in and out of your network including email,video uploads and downloads, torrents of all types, pictures and the list keeps going. Copy this and spread the word to *X* amount of videos.
sunbeammeme 4 weeks ago
picking is easy pffff
novojas 1 month ago
@All what is the Problem if he is gay? This is a good video and he explained well so what's the problem?
MrJumpersun 1 month ago
100% virgin
MrBratkenSolov 1 month ago
@MrBratkenSolov what are you talking about? he is handsome
julianzolo 1 month ago
yay Arduino SPI programming! I needed a tutorial for this
Young0maker 1 month ago
Is he gay?
Bigpigdotcom 1 month ago
Will this work with an ATTINY167?
Thanks.
SeanRobinson3 1 month ago
his face is like a ditto
deathsmileyinc 1 month ago 50
@deathsmileyinc i bet he is gay
ICanHasSmash 1 month ago
@ICanHasSmash So what? Are you a rasist?
TheEsseboy 4 weeks ago
@deathsmileyinc He looks more like Roger Chaffee in the HBO series"From the earth to the moon"
TheMK3424 1 month ago
This has been flagged as spam show
@deathsmileyinc
"his face is like a ditto"
Your comment is like a comment from a silly person.
It's still a lot better than half of the other comments, though.
criscros7 1 month ago
is it possible to do that with an ATTiny13A?
supergnu 1 month ago
Thanks for the vid but, Make is partially responsible for dumbing down new comers to electronics & microprocessors, by promoting using the arduino as a large expensive single component of the project. Someday some1 will market an "arduino" with a 28 DIP ZIF socket. builders can build their own adapters to program the other packages. Hopefully a kit that use through hole components
waswestkan 1 month ago
@waswestkan Not so much. Sometimes it's the journey of exploring. How many dollars will you save for a one off project? The extra dollars go to information such as this video. People eat; the extra dollars (yes a few of them) go to the people behind the scenes or making the scenes. How many videos have you posted? Blogs? Been to the local highschool lately? If you have, I'm a fan of yours. I hear what you are saying, if you built it I will buy one. My time is limited the arduino is path for me.
TomTerrific02 1 month ago
@TomTerrific02 Onn2cd thought I believe the kit I wish for is available but 1 would have to purchase a Z?IF socket separately. 1 could save enough of the first 1 off project to purchase the comments for several additional 1 off projects. When/if I believe I have video worth posting I create a non anonymous ID for them. I have approached my HS to see if there was any interest in doing things with electronics/radio, but no go. I
waswestkan 3 weeks ago
@waswestkan I tip my hat to you for exploring the idea. For me (and maybe a good number of people) its hard to beat an Arduino nano or pro for one off projects. Hard to get the size smaller. Given that the Atmega328 meets your needs. TI has the launch pad at ~$5.00 plus s/h that is an idea too. Then Modern Devices has the BBB. Lots of good things to play around with. Regards.
TomTerrific02 3 weeks ago
@TomTerrific02 I'm a different strokes for different folks sort of person. I'm not about to criticism an individual for using the whole hog arduino in a project. Although I have no qualms about stating my opinion on the route Make chose to go promoting u-processor projects, I understand they are just about the only periodical on the sort of stuff.
waswestkan 3 weeks ago
This has been flagged as spam show
faggy C:
tomattosfutleimierda 1 month ago
Wonderful! 5/5
grand4theft4auto 1 month ago
This has been flagged as spam show
error can't do it. so annoying. problem: 'A1 was not declared in this scope.'
mrbrhuno 1 month ago
This has been flagged as spam show
error can't do it. so annoying. problem: 'A1 was not declared in this scope.'
mrbrhuno 1 month ago
"the negative side must go to ground". connects it with the negative side to the reset pin. fail?
spambot71 2 months ago
@spambot71 No, it's connected right.
bjarni1995 2 months ago in playlist How-Tos with Matt Richardson 11
error can't do it. so annoying. problem: 'A1 was not declared in this scope.'
Genius23008 2 months ago in playlist How-Tos with Matt Richardson
i see an epic beard in your future
ortzinator 2 months ago
Only noobs use premade Arduino boards. Expensive and big. Get an AVR STK programmer and make your own boards
Bullshitvol2 2 months ago in playlist How-Tos with Matt Richardson
This has been flagged as spam show
what´s the difference between duemilanove and the uno ?
stefanmitreski 2 months ago
@stefanmitreski It's just another type board check arduino.cc/en/Main/Boards
qurben 2 months ago
Wondering to go this way or the JeeNode way...
edgecrush3r 2 months ago
Really interesting and useful!
jgrecoarroyo 2 months ago
great video, I had a problem after doing some research I find out that the lates arduino software Version 1 does not play well with this method.
so I use arduino .22 and it worked out of the box.
thanks for great video.
balamsoto70 2 months ago
How do I use the analog inputs as outputs ?
I tried,
pinMode(A1,OUTPUT);
but I get the error,
'A1' was not declared in this scope.
mavnova 2 months ago
@mavnova because A1 as you call it is actually pin 2 so it would be pinMode(2,OUTPUT);
TechBoywii 2 months ago in playlist Arduino
can the teensy be used to program the AtTiny45/85 chips?
xmind22 2 months ago
Awesome project, this can save too much money. A MCU with 8 pins and Analog In?, wow, this is crazy, I need get a lot of these MCUs
tejonBiker 2 months ago in playlist Arduino Projects
Thank you I'm doing it this weekend
rico5219 2 months ago
could the same be achieved with the netduino?
xmind22 3 months ago in playlist makemagazine
@xmind22 If it's arduino based
ukeleleboy97 2 months ago
@ukeleleboy97 the netduino is not, but i was wondering since they almost have the same pin configuration and also most of the arduino shields work with it.
xmind22 2 months ago
One thing I do not understand is who you can be so damn cheerful all the time...
It is a little creepy..
GegoXaren 3 months ago
Its called Quad Flat No leads. DIP package is so yester century.
Anothercoilgun 3 months ago
@Anothercoilgun True that DIP is so yestercentury, but unless the DIY actually requires the small size of QFP, the DIP is better suited for most DIY projects
waswestkan 1 month ago
Thanks! I think i am going to go with the duemilanove just for the extra inputs and also because I see it around more :)
DarkRaven118666 3 months ago
hey that small shit is eeprom or what is it ??? it seems to be tiny arduino pic 85 . arent it ???
bPaIsNtKaYrd 3 months ago in playlist oblúbene
How do you make that blinky toy?
sb77100 3 months ago
what is a good Audrino to buy to get started with
DarkRaven118666 3 months ago
@DarkRaven118666 Arduino Uno
UaePredator 3 months ago
@DarkRaven118666 Go straight to the mega, either mega would do.
It offers the best of all worlds, and you won't be limited by pins.
The mega's have tons of pins to tinker with.
AzBirdDog 3 months ago
@DarkRaven118666 I have the duemilanove and found it good for small beginner projects with room for a few intermediate projects as well.
kevincarbonaro 3 months ago
That was really cool! Nice way to cram a µC into a small package!
mraiford 3 months ago
does it work with the shiftOut() function?
jrigvd 4 months ago
@jrigvd Yes it should
covertads 3 months ago
Where do I buy chips?
Craydon 4 months ago
@Craydon Digikey, Element14, Findchips, etc
covertads 3 months ago
how could i make a light chaser out of one of these?
dropkinn 4 months ago in playlist How-Tos with Matt Richardson
Comment removed
SmashCatRandom 4 months ago
that's pretty awesome - i've seen another attiny chip that has a lot more pins: how is that one different? (other than the obvious difference that there's more pins)
desktopgeek98 4 months ago
@desktopgeek98 Assuming you are talking about the ATtiny2313 apart from more pins, it has no ADC, only 2KB space but has UART. You can see the differences on the Atmel website -> Products -> Atmel AVR 8- and 32-bit -> tinyAVR -> Parameters.
covertads 3 months ago
@Firedragon41520 the maximum size of the sketch
tibounise 4 months ago
Is there a difference between ATtiny45 and ATtiny85
Firedragon41520 4 months ago
@Firedragon41520
The ATtiny45 has 4 kilobytes of Flash program memory and the ATtiny85 has 8 kilobytes.
FPPVideoProductions 4 months ago
@FPPVideoProductions i will go get a attiny85 then
Firedragon41520 4 months ago
Do you know if there is more that will work with all the other ATtiny's? I need more then 6 pins, and Analog pins. But I like the Arduino IDE a lot more the AVR.
reviathon360 4 months ago
@reviathon360 If you need more pins that a board supports, just add shift registers, or multiplexers and you can have as many as you like. E.g. with 9 multiplexer chips, you can have 64 analog/digital inputs using only 7 pins on an arduino. With shift registers, you can have as many as you like - after a few hundred though, it can get a bit slow to update/read them all.
SmashCatRandom 4 months ago
very helpful, 10x so much, looking for some time for this tutorial
ncw2k69 4 months ago
Anyone know if I can use the Teensy instead of an Uno?
pietzeekoe 4 months ago
THIS IS AMAZING! Matt is really great too!
One question to start, where can I find answers to question like:
- What is the role of the capacitor?
- What are the limitations?
- What do the errors mean?
etc.
Thanks so much!
cadastronaut 4 months ago
only ATTiny45/85, or can i use the ATTiny25 too?
eusouanonimo 4 months ago
@eusouanonimo Yes you can use ATtiny25 too.
insidegadgets 4 months ago
@insidegadgets nice, i`m waiting my new breadboard, i burn my old with a projetc :P, and i`m gonna try.
eusouanonimo 4 months ago
@eusouanonimo probably so, but you are really limited by the 2KB flash. since there is no B/L i'm guessing you have the full 2KB to yourself. Other than the flash size, IIRC the ATTiny2/4/85's are similar.
banzie74 4 months ago
I don't even understand what the hack are these..
mainstreams 4 months ago
Is each chip a one time program kind of thing, or can they be reprogrammed?
Xraller 4 months ago
@Xraller They can be re-programmed.
insidegadgets 4 months ago
@Xraller, these are "Flash" based MCU's... so reprogram them as much as you want. Yeah, there is a limit to how many times, but it is usually in the order of 10K times, usually not a thing to worry about.
banzie74 4 months ago
where can I get a cheap set up for all this?
bearpatch626 4 months ago
i like ur teeth arrangement and white also :)
7ossam88 4 months ago
I've only finished a lot of example things to build and am on my way to building a bigger project... could i have multiple attiny chips interface with each other, or would i be better using atmegas, and can those communicate with each other... can someone give me a link to a how to?
minutemadeinc 4 months ago
@minutemadeinc Both can communicate with each other and other chips that support I2C. If you google Arduino I2C you will find an example that shows 2 Arduino's communicating to each other with 2 wires. If you need a lot of pins or want to use all Arduino functions then go with the ATmega.
insidegadgets 4 months ago
Great video ... Thanks!
basbrun 4 months ago
Awrsomeeeee
TutorialsByKevin 4 months ago
This has been flagged as spam show
MUITO LEGAL ESSE VIDEO AGORA ASSISTE AÊ SE VOCÊ GOSTA DE BASQUETE!; ]
/watch?v=CbW_KQaKVrI
viniciusldq 4 months ago
i just watched this whole video not even knowing wth an adruino is btw only douchebags buy views
HeeHify 4 months ago
If this channel was Matt and Collin, I'd be very very happy.
ElektroHut 4 months ago
I'm starting to like Matt. :)
ElektroHut 4 months ago
This has been flagged as spam show
The iphone 5 on January confirmed!
/watch?v=lY02Kv973oQ
AppleOfficial
Appleofficialproject 4 months ago
apple whore
landloper1986 4 months ago
awesome! Thanks for the cool video!
arasbm 4 months ago
You could use this OR just buy one of the very cheap pic chips
Thepumpkinthing 4 months ago
online flirt bit.ly\qfKLmR
0LJulie899 4 months ago
"Short and to the point", yup! that's American society today, making canned electronic circuits during commercial breaks... well, at least people are interested in making L.E.D.s blink. Oh and as to the comments about your hair, ...leave it to people to think what they normally spent their time watching during the commercial breaks, matters?! Good thing you didn't have a girl do this, we all know where that would have gone... "Huh, Arduino?... nice boobs". People are so meager.
doceigen 4 months ago
@doceigen With this type of technology, Arduino is not really focused for hobbiests focusing on art, its mainly for hobbiests focusing on developments that use complex algorithms such as robots for medical or large scale projects. When using the basic components to create complex works of art, that is when people who accuse Arduino and today's society as lazy and short to the point... its not really because they want to, its because they have to for the ease of the society. So, I agree.
endeppa 4 months ago
@endeppa
I found a DVD of a Disney film in a computer I just bought off Ebay. I punched it into my player and started to watch it. As the logo cleared, I thought about how if I could, I would go into the past and convince Walt to MAKE HIS FILMS ACCURATE, technically correct, entrepreneurially reinforcing, so kids grew up thinking about starting businesses instead of being social heroes... but then, Disney films would have failed! "Ease" is not a good goal, but yeah... who'd watch this?
doceigen 4 months ago
@doceigen (I couldn't fully understand because I'm a bit young [14 y.o.] to remember such information) Mainly people of older age or possibly young age look for shortcuts because they believe that their time is precious, which is mainly true because each second counts... but speeding up things just leaves you with nothing to do faster, which ruins the point of it being a hobby. But, big business, or adults would mainly look for shortcuts because they believe that they have limited time.
endeppa 4 months ago
it seems like you have the mouth paralyzed in a sort of easygoing smile, nice tut anayway ;)
merovingio89 4 months ago
Crazy square guy hair doo guy, Nice vid.
marcuelcajon 4 months ago
This has been flagged as spam show
Pessoal dêem uma olhada nessa banda..... musica muito boa...
Equação Zero - Pássaro solitário
/watch?v=4ZqZJksaSfU
Quem gostar da um joinha ai..... façam os seus comentários e adicionem em favoritos....
obrigado..........
geversonurbano 4 months ago
Great video! :))
ivanluisky 4 months ago
Now thats what i´m talking about ! good stuff!!
MrCapotie 4 months ago
gay? I think so
AllTheWayApps 4 months ago
matt for vice president
matthewtchernev123 4 months ago
If he were Collin, for sure everyone were happy.
hipnocesar 4 months ago
Does anyone have a good source for these, which doesn't charge a lot for shipping?
leobaby 4 months ago
uhhhh............
cool500476 4 months ago
the explanation was as big as the chip
scancool 4 months ago
What do you need ground for?
KoliBoy11 4 months ago
trata de hacerlos en español hermano.... aporta algo positivo a los latinoamericanos..vamos se te agradeceria mucho
huromr 4 months ago
your fake smile it's kinda annoying
tomattosfutleimierda 4 months ago
Is he g......No, shut the fuck up, he is not gay. Now for a question, I love this project, and is there any way to use more pins than the ATTINY allows? If so, that would be great! Thanks a lot.
Munymuny200 4 months ago
are there any atmega chips that this will work on? or can i just do the same to another atmega328 but without the bootloader too?
rattytatt521 4 months ago
just another great video, thanks a lot, matt! :)
pcfreak1992 4 months ago
Cool info.
squiggyreck 4 months ago
Best video ever ! I actually needed that information!
tleneel 4 months ago
Suppose I have a simple (pin HIGH/LOW) project that needs 8 pins, and want to compact it in this method. Can this technique be used with other chips that have more pins?
MOBjr66 4 months ago
ISP sketch dont work with the arduino UNO board, you can read that on the ArduinoISP sketch page of the arduino site.
"NOTE: Currently, you cannot use an Arduino Uno as an ISP programmer because the optiboot bootloader does not support this sketch. A revision for this is in progress. "
Madmax23419 4 months ago
What language do you speak cuz i dont understand.....
1gbpackfan1 4 months ago
I really like your teeth
mosle123 4 months ago
Good tip!
Intosia 4 months ago
that looks like a versatile choice for some applications!
landlockedviking 4 months ago
an apple...?. for real....?
Raxarax 4 months ago
hmmmmm! Its even cheaper than the 555! and more efective.
chackmool17 4 months ago
thanks for sharing, what about using arduino uno to burn the bootloader to another atmega in order to use it as a breaduino, is this possible?
fabiuh991 4 months ago
That is pretty sweet. I normally use a Picaxe 08m for very small projects. It is another 8 pin microcontroller. How cool to see a similar Arduino platform. Love it.
appterranova 4 months ago
I was wondering is their a link for the for MIT media lab on this topic ?
iccord 4 months ago
Micro-controllers are cool, but making an led blink? Amazing stuff! :-P
Peopleunit 4 months ago
This has been flagged as spam show
we want kipkay back! thump this up so they can see!
mossmon 4 months ago
Yay! Finally! I havent done much searching, but have been needed this for a while. Makes live easier/cheaper. Thanks MAKE
louwhopley 4 months ago
Arduino - The microcontroller for people who can't understand real electronics
Chryseus8086 4 months ago
Wow, So you can create as much of them as you want for any project? The future of robotics is rising as we know it.
robotmaker11 4 months ago
@makemagazine why is the subtitles correct?
Sparky1016891 4 months ago
well. i think the bootloader is pre-loaded into the chip
Firedragon41520 4 months ago
Skitskola
soklot 4 months ago
do youhave to load the bootloader onto the attiny?
vanepico 4 months ago 8
@vanepico Nope.
makemagazine 4 months ago 7