Does ATtiny RESET pin need a resistor?












2












$begingroup$


I need to make sure that my ATtiny does not reset unexpectedly. To do that, I am planning on connecting the RESET pin directly to VCC.



However, I have heard some places that you need a 10k resistor between VCC and the RESET pin, to prevent too much current from flowing into the RESET pin and burning the IC. I have also seen some places that you do not need a resistor between VCC and RESET, and I have also read a few places that you do not even need to connect RESET to anything, because it is pulled high internally.



I could not find any definitive answer on this, and I would like to know what the case would be for each of these condidions (directly to VCC, VCC through resistor, don't connect RESET pin at all) is.










share|improve this question









$endgroup$












  • $begingroup$
    How will you program your attiny if the reset is always high?
    $endgroup$
    – BeB00
    3 hours ago










  • $begingroup$
    when in doubt, use a 10kΩ resistor ..... that way you have a known state at the reset pin and you can pull it low if you have to for programming ..... direct connection to Vcc would prevent programming
    $endgroup$
    – jsotola
    3 hours ago


















2












$begingroup$


I need to make sure that my ATtiny does not reset unexpectedly. To do that, I am planning on connecting the RESET pin directly to VCC.



However, I have heard some places that you need a 10k resistor between VCC and the RESET pin, to prevent too much current from flowing into the RESET pin and burning the IC. I have also seen some places that you do not need a resistor between VCC and RESET, and I have also read a few places that you do not even need to connect RESET to anything, because it is pulled high internally.



I could not find any definitive answer on this, and I would like to know what the case would be for each of these condidions (directly to VCC, VCC through resistor, don't connect RESET pin at all) is.










share|improve this question









$endgroup$












  • $begingroup$
    How will you program your attiny if the reset is always high?
    $endgroup$
    – BeB00
    3 hours ago










  • $begingroup$
    when in doubt, use a 10kΩ resistor ..... that way you have a known state at the reset pin and you can pull it low if you have to for programming ..... direct connection to Vcc would prevent programming
    $endgroup$
    – jsotola
    3 hours ago
















2












2








2





$begingroup$


I need to make sure that my ATtiny does not reset unexpectedly. To do that, I am planning on connecting the RESET pin directly to VCC.



However, I have heard some places that you need a 10k resistor between VCC and the RESET pin, to prevent too much current from flowing into the RESET pin and burning the IC. I have also seen some places that you do not need a resistor between VCC and RESET, and I have also read a few places that you do not even need to connect RESET to anything, because it is pulled high internally.



I could not find any definitive answer on this, and I would like to know what the case would be for each of these condidions (directly to VCC, VCC through resistor, don't connect RESET pin at all) is.










share|improve this question









$endgroup$




I need to make sure that my ATtiny does not reset unexpectedly. To do that, I am planning on connecting the RESET pin directly to VCC.



However, I have heard some places that you need a 10k resistor between VCC and the RESET pin, to prevent too much current from flowing into the RESET pin and burning the IC. I have also seen some places that you do not need a resistor between VCC and RESET, and I have also read a few places that you do not even need to connect RESET to anything, because it is pulled high internally.



I could not find any definitive answer on this, and I would like to know what the case would be for each of these condidions (directly to VCC, VCC through resistor, don't connect RESET pin at all) is.







microcontroller digital-logic resistors attiny attiny85






share|improve this question













share|improve this question











share|improve this question




share|improve this question










asked 3 hours ago









eezeeeze

59110




59110












  • $begingroup$
    How will you program your attiny if the reset is always high?
    $endgroup$
    – BeB00
    3 hours ago










  • $begingroup$
    when in doubt, use a 10kΩ resistor ..... that way you have a known state at the reset pin and you can pull it low if you have to for programming ..... direct connection to Vcc would prevent programming
    $endgroup$
    – jsotola
    3 hours ago




















  • $begingroup$
    How will you program your attiny if the reset is always high?
    $endgroup$
    – BeB00
    3 hours ago










  • $begingroup$
    when in doubt, use a 10kΩ resistor ..... that way you have a known state at the reset pin and you can pull it low if you have to for programming ..... direct connection to Vcc would prevent programming
    $endgroup$
    – jsotola
    3 hours ago


















$begingroup$
How will you program your attiny if the reset is always high?
$endgroup$
– BeB00
3 hours ago




$begingroup$
How will you program your attiny if the reset is always high?
$endgroup$
– BeB00
3 hours ago












$begingroup$
when in doubt, use a 10kΩ resistor ..... that way you have a known state at the reset pin and you can pull it low if you have to for programming ..... direct connection to Vcc would prevent programming
$endgroup$
– jsotola
3 hours ago






$begingroup$
when in doubt, use a 10kΩ resistor ..... that way you have a known state at the reset pin and you can pull it low if you have to for programming ..... direct connection to Vcc would prevent programming
$endgroup$
– jsotola
3 hours ago












3 Answers
3






active

oldest

votes


















1












$begingroup$

I don't think theres a technical reason why you couldn't connect your reset pin directly to +V, as long as it was already programmed and you never wanted to modify that program. As far as I'm aware, there is no function of the attiny that requires the reset pin to be pulled low (for example, the watchdog timer doesn't try to pull the reset line low).



Having said that, there isn't really a good reason why you would want to have the line directly connected, and there are quite a few where you wouldn't want it to be directly connected (like programming, and manual reset etc).



The attiny does have an internal pull-up to VCC, but its quite weak (~100k iirc), so environmental conditions could cause a spontaneous reset. If you're worried about this, you should use an external pull-up resistor. It means using an extra component, but it's safer, especially if your reset pin is routed to a programming connector.






share|improve this answer









$endgroup$





















    1












    $begingroup$

    The reset pin is internally pulled-up and glitch filtered so you do not need a resistor.



    enter image description here



    You can leave the pin unconnected (no trace since a trace can pick up noise) and it would take some pretty strong noise to make the chip reset unexpectedly - probably enough that other bad things would happen first.



    If you really never want the chip to get reset then you can set the RSTDISBL (reset disable) fuse after programming your firmware. Once this fuse is set, the reset pin becomes an IO pin and will not reset the chip even if tied to ground. enter image description here



    Note that after disabling the reset pin with RSRDISBL it is either harder or impossible to reprogram the chip depending on which ATTINY you are using.






    share|improve this answer











    $endgroup$













    • $begingroup$
      To be fair, Atmel (Microchip) does recommend an external reset pull-up in noisy environments, per AVR042, suggesting that it's not an extremely rare event
      $endgroup$
      – BeB00
      3 hours ago












    • $begingroup$
      @beb00 Yea, that note also sort of maybe suggests attaching a capacitor between RESET and ground which doesn't make much sense. In practice, an extra pull-up might help if there is a long trace that connected to the RESET pin, but if the pin in connected then there is really very very little length there to pick up an e field and the glitch detector should block any inductively coupled impulses. I've never seen an ATTINY spontaneously reset due to noise on an unconnected RESET. Have you?
      $endgroup$
      – bigjosh
      2 hours ago










    • $begingroup$
      Note that I have seen ATTINYs spontaneously reset from a negative ESD strike directly to the Vcc line, but this is due to under voltage and not the reset line.
      $endgroup$
      – bigjosh
      2 hours ago



















    0












    $begingroup$

    datasheet shows a internal pull-up resistor



    First, in the ATtiny25/45/85 datasheet, page 161, it suggested that there's a internal pull-up resistor between 30 kΩ - 60 kΩ on the RESET pin. It means the MCU will almost always work for a hobby project. However, if the requirement is high reliability,




    I need to make sure that my ATtiny does not reset unexpectedly.




    Then you have to put external EMI/RFI into your consideration. I strongly suggest reading AVR040: EMC Design Considerations.



    datasheet






    share|improve this answer








    New contributor




    比尔盖子 is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
    Check out our Code of Conduct.






    $endgroup$













      Your Answer





      StackExchange.ifUsing("editor", function () {
      return StackExchange.using("mathjaxEditing", function () {
      StackExchange.MarkdownEditor.creationCallbacks.add(function (editor, postfix) {
      StackExchange.mathjaxEditing.prepareWmdForMathJax(editor, postfix, [["\$", "\$"]]);
      });
      });
      }, "mathjax-editing");

      StackExchange.ifUsing("editor", function () {
      return StackExchange.using("schematics", function () {
      StackExchange.schematics.init();
      });
      }, "cicuitlab");

      StackExchange.ready(function() {
      var channelOptions = {
      tags: "".split(" "),
      id: "135"
      };
      initTagRenderer("".split(" "), "".split(" "), channelOptions);

      StackExchange.using("externalEditor", function() {
      // Have to fire editor after snippets, if snippets enabled
      if (StackExchange.settings.snippets.snippetsEnabled) {
      StackExchange.using("snippets", function() {
      createEditor();
      });
      }
      else {
      createEditor();
      }
      });

      function createEditor() {
      StackExchange.prepareEditor({
      heartbeatType: 'answer',
      autoActivateHeartbeat: false,
      convertImagesToLinks: false,
      noModals: true,
      showLowRepImageUploadWarning: true,
      reputationToPostImages: null,
      bindNavPrevention: true,
      postfix: "",
      imageUploader: {
      brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
      contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
      allowUrls: true
      },
      onDemand: true,
      discardSelector: ".discard-answer"
      ,immediatelyShowMarkdownHelp:true
      });


      }
      });














      draft saved

      draft discarded


















      StackExchange.ready(
      function () {
      StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2felectronics.stackexchange.com%2fquestions%2f422895%2fdoes-attiny-reset-pin-need-a-resistor%23new-answer', 'question_page');
      }
      );

      Post as a guest















      Required, but never shown

























      3 Answers
      3






      active

      oldest

      votes








      3 Answers
      3






      active

      oldest

      votes









      active

      oldest

      votes






      active

      oldest

      votes









      1












      $begingroup$

      I don't think theres a technical reason why you couldn't connect your reset pin directly to +V, as long as it was already programmed and you never wanted to modify that program. As far as I'm aware, there is no function of the attiny that requires the reset pin to be pulled low (for example, the watchdog timer doesn't try to pull the reset line low).



      Having said that, there isn't really a good reason why you would want to have the line directly connected, and there are quite a few where you wouldn't want it to be directly connected (like programming, and manual reset etc).



      The attiny does have an internal pull-up to VCC, but its quite weak (~100k iirc), so environmental conditions could cause a spontaneous reset. If you're worried about this, you should use an external pull-up resistor. It means using an extra component, but it's safer, especially if your reset pin is routed to a programming connector.






      share|improve this answer









      $endgroup$


















        1












        $begingroup$

        I don't think theres a technical reason why you couldn't connect your reset pin directly to +V, as long as it was already programmed and you never wanted to modify that program. As far as I'm aware, there is no function of the attiny that requires the reset pin to be pulled low (for example, the watchdog timer doesn't try to pull the reset line low).



        Having said that, there isn't really a good reason why you would want to have the line directly connected, and there are quite a few where you wouldn't want it to be directly connected (like programming, and manual reset etc).



        The attiny does have an internal pull-up to VCC, but its quite weak (~100k iirc), so environmental conditions could cause a spontaneous reset. If you're worried about this, you should use an external pull-up resistor. It means using an extra component, but it's safer, especially if your reset pin is routed to a programming connector.






        share|improve this answer









        $endgroup$
















          1












          1








          1





          $begingroup$

          I don't think theres a technical reason why you couldn't connect your reset pin directly to +V, as long as it was already programmed and you never wanted to modify that program. As far as I'm aware, there is no function of the attiny that requires the reset pin to be pulled low (for example, the watchdog timer doesn't try to pull the reset line low).



          Having said that, there isn't really a good reason why you would want to have the line directly connected, and there are quite a few where you wouldn't want it to be directly connected (like programming, and manual reset etc).



          The attiny does have an internal pull-up to VCC, but its quite weak (~100k iirc), so environmental conditions could cause a spontaneous reset. If you're worried about this, you should use an external pull-up resistor. It means using an extra component, but it's safer, especially if your reset pin is routed to a programming connector.






          share|improve this answer









          $endgroup$



          I don't think theres a technical reason why you couldn't connect your reset pin directly to +V, as long as it was already programmed and you never wanted to modify that program. As far as I'm aware, there is no function of the attiny that requires the reset pin to be pulled low (for example, the watchdog timer doesn't try to pull the reset line low).



          Having said that, there isn't really a good reason why you would want to have the line directly connected, and there are quite a few where you wouldn't want it to be directly connected (like programming, and manual reset etc).



          The attiny does have an internal pull-up to VCC, but its quite weak (~100k iirc), so environmental conditions could cause a spontaneous reset. If you're worried about this, you should use an external pull-up resistor. It means using an extra component, but it's safer, especially if your reset pin is routed to a programming connector.







          share|improve this answer












          share|improve this answer



          share|improve this answer










          answered 3 hours ago









          BeB00BeB00

          2,932722




          2,932722

























              1












              $begingroup$

              The reset pin is internally pulled-up and glitch filtered so you do not need a resistor.



              enter image description here



              You can leave the pin unconnected (no trace since a trace can pick up noise) and it would take some pretty strong noise to make the chip reset unexpectedly - probably enough that other bad things would happen first.



              If you really never want the chip to get reset then you can set the RSTDISBL (reset disable) fuse after programming your firmware. Once this fuse is set, the reset pin becomes an IO pin and will not reset the chip even if tied to ground. enter image description here



              Note that after disabling the reset pin with RSRDISBL it is either harder or impossible to reprogram the chip depending on which ATTINY you are using.






              share|improve this answer











              $endgroup$













              • $begingroup$
                To be fair, Atmel (Microchip) does recommend an external reset pull-up in noisy environments, per AVR042, suggesting that it's not an extremely rare event
                $endgroup$
                – BeB00
                3 hours ago












              • $begingroup$
                @beb00 Yea, that note also sort of maybe suggests attaching a capacitor between RESET and ground which doesn't make much sense. In practice, an extra pull-up might help if there is a long trace that connected to the RESET pin, but if the pin in connected then there is really very very little length there to pick up an e field and the glitch detector should block any inductively coupled impulses. I've never seen an ATTINY spontaneously reset due to noise on an unconnected RESET. Have you?
                $endgroup$
                – bigjosh
                2 hours ago










              • $begingroup$
                Note that I have seen ATTINYs spontaneously reset from a negative ESD strike directly to the Vcc line, but this is due to under voltage and not the reset line.
                $endgroup$
                – bigjosh
                2 hours ago
















              1












              $begingroup$

              The reset pin is internally pulled-up and glitch filtered so you do not need a resistor.



              enter image description here



              You can leave the pin unconnected (no trace since a trace can pick up noise) and it would take some pretty strong noise to make the chip reset unexpectedly - probably enough that other bad things would happen first.



              If you really never want the chip to get reset then you can set the RSTDISBL (reset disable) fuse after programming your firmware. Once this fuse is set, the reset pin becomes an IO pin and will not reset the chip even if tied to ground. enter image description here



              Note that after disabling the reset pin with RSRDISBL it is either harder or impossible to reprogram the chip depending on which ATTINY you are using.






              share|improve this answer











              $endgroup$













              • $begingroup$
                To be fair, Atmel (Microchip) does recommend an external reset pull-up in noisy environments, per AVR042, suggesting that it's not an extremely rare event
                $endgroup$
                – BeB00
                3 hours ago












              • $begingroup$
                @beb00 Yea, that note also sort of maybe suggests attaching a capacitor between RESET and ground which doesn't make much sense. In practice, an extra pull-up might help if there is a long trace that connected to the RESET pin, but if the pin in connected then there is really very very little length there to pick up an e field and the glitch detector should block any inductively coupled impulses. I've never seen an ATTINY spontaneously reset due to noise on an unconnected RESET. Have you?
                $endgroup$
                – bigjosh
                2 hours ago










              • $begingroup$
                Note that I have seen ATTINYs spontaneously reset from a negative ESD strike directly to the Vcc line, but this is due to under voltage and not the reset line.
                $endgroup$
                – bigjosh
                2 hours ago














              1












              1








              1





              $begingroup$

              The reset pin is internally pulled-up and glitch filtered so you do not need a resistor.



              enter image description here



              You can leave the pin unconnected (no trace since a trace can pick up noise) and it would take some pretty strong noise to make the chip reset unexpectedly - probably enough that other bad things would happen first.



              If you really never want the chip to get reset then you can set the RSTDISBL (reset disable) fuse after programming your firmware. Once this fuse is set, the reset pin becomes an IO pin and will not reset the chip even if tied to ground. enter image description here



              Note that after disabling the reset pin with RSRDISBL it is either harder or impossible to reprogram the chip depending on which ATTINY you are using.






              share|improve this answer











              $endgroup$



              The reset pin is internally pulled-up and glitch filtered so you do not need a resistor.



              enter image description here



              You can leave the pin unconnected (no trace since a trace can pick up noise) and it would take some pretty strong noise to make the chip reset unexpectedly - probably enough that other bad things would happen first.



              If you really never want the chip to get reset then you can set the RSTDISBL (reset disable) fuse after programming your firmware. Once this fuse is set, the reset pin becomes an IO pin and will not reset the chip even if tied to ground. enter image description here



              Note that after disabling the reset pin with RSRDISBL it is either harder or impossible to reprogram the chip depending on which ATTINY you are using.







              share|improve this answer














              share|improve this answer



              share|improve this answer








              edited 3 hours ago

























              answered 3 hours ago









              bigjoshbigjosh

              7,1351736




              7,1351736












              • $begingroup$
                To be fair, Atmel (Microchip) does recommend an external reset pull-up in noisy environments, per AVR042, suggesting that it's not an extremely rare event
                $endgroup$
                – BeB00
                3 hours ago












              • $begingroup$
                @beb00 Yea, that note also sort of maybe suggests attaching a capacitor between RESET and ground which doesn't make much sense. In practice, an extra pull-up might help if there is a long trace that connected to the RESET pin, but if the pin in connected then there is really very very little length there to pick up an e field and the glitch detector should block any inductively coupled impulses. I've never seen an ATTINY spontaneously reset due to noise on an unconnected RESET. Have you?
                $endgroup$
                – bigjosh
                2 hours ago










              • $begingroup$
                Note that I have seen ATTINYs spontaneously reset from a negative ESD strike directly to the Vcc line, but this is due to under voltage and not the reset line.
                $endgroup$
                – bigjosh
                2 hours ago


















              • $begingroup$
                To be fair, Atmel (Microchip) does recommend an external reset pull-up in noisy environments, per AVR042, suggesting that it's not an extremely rare event
                $endgroup$
                – BeB00
                3 hours ago












              • $begingroup$
                @beb00 Yea, that note also sort of maybe suggests attaching a capacitor between RESET and ground which doesn't make much sense. In practice, an extra pull-up might help if there is a long trace that connected to the RESET pin, but if the pin in connected then there is really very very little length there to pick up an e field and the glitch detector should block any inductively coupled impulses. I've never seen an ATTINY spontaneously reset due to noise on an unconnected RESET. Have you?
                $endgroup$
                – bigjosh
                2 hours ago










              • $begingroup$
                Note that I have seen ATTINYs spontaneously reset from a negative ESD strike directly to the Vcc line, but this is due to under voltage and not the reset line.
                $endgroup$
                – bigjosh
                2 hours ago
















              $begingroup$
              To be fair, Atmel (Microchip) does recommend an external reset pull-up in noisy environments, per AVR042, suggesting that it's not an extremely rare event
              $endgroup$
              – BeB00
              3 hours ago






              $begingroup$
              To be fair, Atmel (Microchip) does recommend an external reset pull-up in noisy environments, per AVR042, suggesting that it's not an extremely rare event
              $endgroup$
              – BeB00
              3 hours ago














              $begingroup$
              @beb00 Yea, that note also sort of maybe suggests attaching a capacitor between RESET and ground which doesn't make much sense. In practice, an extra pull-up might help if there is a long trace that connected to the RESET pin, but if the pin in connected then there is really very very little length there to pick up an e field and the glitch detector should block any inductively coupled impulses. I've never seen an ATTINY spontaneously reset due to noise on an unconnected RESET. Have you?
              $endgroup$
              – bigjosh
              2 hours ago




              $begingroup$
              @beb00 Yea, that note also sort of maybe suggests attaching a capacitor between RESET and ground which doesn't make much sense. In practice, an extra pull-up might help if there is a long trace that connected to the RESET pin, but if the pin in connected then there is really very very little length there to pick up an e field and the glitch detector should block any inductively coupled impulses. I've never seen an ATTINY spontaneously reset due to noise on an unconnected RESET. Have you?
              $endgroup$
              – bigjosh
              2 hours ago












              $begingroup$
              Note that I have seen ATTINYs spontaneously reset from a negative ESD strike directly to the Vcc line, but this is due to under voltage and not the reset line.
              $endgroup$
              – bigjosh
              2 hours ago




              $begingroup$
              Note that I have seen ATTINYs spontaneously reset from a negative ESD strike directly to the Vcc line, but this is due to under voltage and not the reset line.
              $endgroup$
              – bigjosh
              2 hours ago











              0












              $begingroup$

              datasheet shows a internal pull-up resistor



              First, in the ATtiny25/45/85 datasheet, page 161, it suggested that there's a internal pull-up resistor between 30 kΩ - 60 kΩ on the RESET pin. It means the MCU will almost always work for a hobby project. However, if the requirement is high reliability,




              I need to make sure that my ATtiny does not reset unexpectedly.




              Then you have to put external EMI/RFI into your consideration. I strongly suggest reading AVR040: EMC Design Considerations.



              datasheet






              share|improve this answer








              New contributor




              比尔盖子 is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
              Check out our Code of Conduct.






              $endgroup$


















                0












                $begingroup$

                datasheet shows a internal pull-up resistor



                First, in the ATtiny25/45/85 datasheet, page 161, it suggested that there's a internal pull-up resistor between 30 kΩ - 60 kΩ on the RESET pin. It means the MCU will almost always work for a hobby project. However, if the requirement is high reliability,




                I need to make sure that my ATtiny does not reset unexpectedly.




                Then you have to put external EMI/RFI into your consideration. I strongly suggest reading AVR040: EMC Design Considerations.



                datasheet






                share|improve this answer








                New contributor




                比尔盖子 is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
                Check out our Code of Conduct.






                $endgroup$
















                  0












                  0








                  0





                  $begingroup$

                  datasheet shows a internal pull-up resistor



                  First, in the ATtiny25/45/85 datasheet, page 161, it suggested that there's a internal pull-up resistor between 30 kΩ - 60 kΩ on the RESET pin. It means the MCU will almost always work for a hobby project. However, if the requirement is high reliability,




                  I need to make sure that my ATtiny does not reset unexpectedly.




                  Then you have to put external EMI/RFI into your consideration. I strongly suggest reading AVR040: EMC Design Considerations.



                  datasheet






                  share|improve this answer








                  New contributor




                  比尔盖子 is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
                  Check out our Code of Conduct.






                  $endgroup$



                  datasheet shows a internal pull-up resistor



                  First, in the ATtiny25/45/85 datasheet, page 161, it suggested that there's a internal pull-up resistor between 30 kΩ - 60 kΩ on the RESET pin. It means the MCU will almost always work for a hobby project. However, if the requirement is high reliability,




                  I need to make sure that my ATtiny does not reset unexpectedly.




                  Then you have to put external EMI/RFI into your consideration. I strongly suggest reading AVR040: EMC Design Considerations.



                  datasheet







                  share|improve this answer








                  New contributor




                  比尔盖子 is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
                  Check out our Code of Conduct.









                  share|improve this answer



                  share|improve this answer






                  New contributor




                  比尔盖子 is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
                  Check out our Code of Conduct.









                  answered 36 mins ago









                  比尔盖子比尔盖子

                  1011




                  1011




                  New contributor




                  比尔盖子 is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
                  Check out our Code of Conduct.





                  New contributor





                  比尔盖子 is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
                  Check out our Code of Conduct.






                  比尔盖子 is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
                  Check out our Code of Conduct.






























                      draft saved

                      draft discarded




















































                      Thanks for contributing an answer to Electrical Engineering Stack Exchange!


                      • Please be sure to answer the question. Provide details and share your research!

                      But avoid



                      • Asking for help, clarification, or responding to other answers.

                      • Making statements based on opinion; back them up with references or personal experience.


                      Use MathJax to format equations. MathJax reference.


                      To learn more, see our tips on writing great answers.




                      draft saved


                      draft discarded














                      StackExchange.ready(
                      function () {
                      StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2felectronics.stackexchange.com%2fquestions%2f422895%2fdoes-attiny-reset-pin-need-a-resistor%23new-answer', 'question_page');
                      }
                      );

                      Post as a guest















                      Required, but never shown





















































                      Required, but never shown














                      Required, but never shown












                      Required, but never shown







                      Required, but never shown

































                      Required, but never shown














                      Required, but never shown












                      Required, but never shown







                      Required, but never shown







                      Popular posts from this blog

                      Statuo de Libereco

                      Tanganjiko

                      Liste der Baudenkmäler in Enneberg