element14 Community
element14 Community
    Register Log In
  • Site
  • Search
  • Log In Register
  • Community Hub
    Community Hub
    • What's New on element14
    • Feedback and Support
    • Benefits of Membership
    • Personal Blogs
    • Members Area
    • Achievement Levels
  • Learn
    Learn
    • Ask an Expert
    • eBooks
    • element14 presents
    • Learning Center
    • Tech Spotlight
    • STEM Academy
    • Webinars, Training and Events
    • Learning Groups
  • Technologies
    Technologies
    • 3D Printing
    • FPGA
    • Industrial Automation
    • Internet of Things
    • Power & Energy
    • Sensors
    • Technology Groups
  • Challenges & Projects
    Challenges & Projects
    • Design Challenges
    • element14 presents Projects
    • Project14
    • Arduino Projects
    • Raspberry Pi Projects
    • Project Groups
  • Products
    Products
    • Arduino
    • Avnet Boards Community
    • Dev Tools
    • Manufacturers
    • Multicomp Pro
    • Product Groups
    • Raspberry Pi
    • RoadTests & Reviews
  • Store
    Store
    • Visit Your Store
    • Choose another store...
      • Europe
      •  Austria (German)
      •  Belgium (Dutch, French)
      •  Bulgaria (Bulgarian)
      •  Czech Republic (Czech)
      •  Denmark (Danish)
      •  Estonia (Estonian)
      •  Finland (Finnish)
      •  France (French)
      •  Germany (German)
      •  Hungary (Hungarian)
      •  Ireland
      •  Israel
      •  Italy (Italian)
      •  Latvia (Latvian)
      •  
      •  Lithuania (Lithuanian)
      •  Netherlands (Dutch)
      •  Norway (Norwegian)
      •  Poland (Polish)
      •  Portugal (Portuguese)
      •  Romania (Romanian)
      •  Russia (Russian)
      •  Slovakia (Slovak)
      •  Slovenia (Slovenian)
      •  Spain (Spanish)
      •  Sweden (Swedish)
      •  Switzerland(German, French)
      •  Turkey (Turkish)
      •  United Kingdom
      • Asia Pacific
      •  Australia
      •  China
      •  Hong Kong
      •  India
      •  Korea (Korean)
      •  Malaysia
      •  New Zealand
      •  Philippines
      •  Singapore
      •  Taiwan
      •  Thailand (Thai)
      • Americas
      •  Brazil (Portuguese)
      •  Canada
      •  Mexico (Spanish)
      •  United States
      Can't find the country/region you're looking for? Visit our export site or find a local distributor.
  • Translate
  • Profile
  • Settings
Arduino Projects
  • Products
  • Arduino
  • Arduino Projects
  • More
  • Cancel
Arduino Projects
Blog Modifying the Arduino Uno R4: Making it 3.3V-Friendly
  • Blog
  • Documents
  • Events
  • Polls
  • Files
  • Members
  • Mentions
  • Sub-Groups
  • Tags
  • More
  • Cancel
  • New
Join Arduino Projects to participate - click to join for free!
  • Share
  • More
  • Cancel
Group Actions
  • Group RSS
  • More
  • Cancel
Engagement
  • Author Author: shabaz
  • Date Created: 10 Jul 2023 7:22 PM Date Created
  • Views 7942 views
  • Likes 16 likes
  • Comments 13 comments
  • RA4M1
  • arduino uno rev4 minima
  • uno r4
  • renesas
  • arduino uno rev4
  • Arduino Uno R4 Minima
Related
Recommended

Modifying the Arduino Uno R4: Making it 3.3V-Friendly

shabaz
shabaz
10 Jul 2023

Table of Contents

  • Introduction
  • What if you don’t want to do this?
    • Inputs to the R4 board
    • Outputs from the R4 board
  • Any Disadvantages?
  • Arduino Uno R4 Minima Modifications
  • What is Needed?
  • Doing the Modifications
  • Summary

Disclaimer: I *think* there is no harm in making the changes suggested in this blog post. Please don’t blame me if it damages the Arduino, or any plugged-in devices, including your PC! If I have made mistakes, please let me know in the comments so everyone can benefit. Board-level modifications may invalidate any warranty.

Introduction

The Arduino Uno R4 is designed for 5V logic levels. This is all well and good, but sometimes 3.3V logic levels are preferred or needed.

Logic-level translators could be used to perform the adaptation, among other methods.

This blog post discusses a more brutal approach, simply forcing the Uno R4 to run with a 3.3V supply instead of 5V. As a result, all inputs/outputs will be 3.3V logic level compatible, and 5V logic level operation will be gone (however, a benefit will be that some pins are still 5-V input tolerant!).

In other words, I was interested to see if the actual Arduino Uno Rev 4 board itself could be modified permanently for 3.3V operation in situations where 5V logic levels are not required at all. 

In brief, the answer is yes, the Uno R4 can be converted. However, one could argue that you may as well purchase a different 3.3V-compatible Arduino, such as an Arduino MKR, or build your own custom microcontroller board, or just buy logic-level translators.

In any event, potential use-case, or lack of it, aside, this blog post will still discuss it. The modification is not too difficult; three changes need to be made to the board, but you will need a decent soldering iron tip since one of the components is 0402-sized.

This blog post applies to the Arduino Uno R4 Minima board. This blog does not cover the Arduino R4 WiFi version.

image

What if you don’t want to do this?

You could use a different Arduino board! An example would be the Arduino MKR Zero, which has 3.3V logic operation by default. Otherwise, you could purchase a converter board of some sort, or you could build your own circuitry, which will be briefly discussed here:

Inputs to the R4 board

The normal Uno R4 logic input threshold for logic high is about 3.5-4V (depending on the input pin), although the I2C pins theoretically have a much lower threshold of 2.2V. I2C devices could interface at 3.3V (I believe; I have not tried it yet since the Arduino R4 is still new! and it depends on the Arduino I2C code too).

In any case, if you’re not using I2C, then it will not be possible to connect 3.3V logic devices to the Arduino inputs without some form of level translation; consider using transistors or an IC such as M74VHC1GT50DTT1G for a single pin, or even any 74HC logic IC will do at a pinch (if you’re not using a proper level translator chip). A 74HC86 quad XOR gate is convenient, and you can use it to optionally invert inputs as required too, which can be handy.

Outputs from the R4 board

For outputs from the Arduino other than I2C, one could use a resistor divider (potential divider) or, if high-speed operation is needed, logic-level translator circuitry based on active devices to drop the 5V outputs to 3.3V. An M74VHC1GT50DTT1G device can be used for a single pin. Otherwise, a device such as 74LVC240 could be used.

Any Disadvantages?

By performing the modifications described below, there are no significant disadvantages that I can think of other than that the 5V rail is gone. If you have any Arduino shields that require 5V power to come from the Arduino board, then they will no longer be compatible.

Arduino Uno R4 Minima Modifications


If you're not interested in the technical detail and want to go ahead and perform the modification, then skip to the next section!

Three modifications are needed:

(1) A resistor is changed to convert the on-board DC-DC converter to generate 3.3V instead of 5V

(2) A Schottky diode is moved to redirect the USB supply from the normally 5V rail to the input of the DC-DC converter instead

(3) The 5V rail is shorted with the 3.3V rail since this is the simplest way of supplying power to the microcontroller for the USB functionality.

The circuit diagram below shows what the modifications are. The first mod is to replace the 13.7k resistor with a 22k one instead. The second mod is to desolder a Schottky diode so that one leg can be isolated and soldered elsewhere, as shown with the red arrow in the diagram below. The third modification bridges the 3.3V and 5V labeled connections so that the microcontroller’s VCC_USB connection is at 3.3V (it’s not strictly essential to perform this last modification, but I think it may as well be done).

image

What is Needed?

To perform the modifications, the following items are used:

(a) A 22k resistor (ideally 1% tolerance). The resistor should ideally be 0402 sized, but 0603 can work too. 0603 might be easier unless you have good tweezers (although you still need fairly good tweezers for 0603 size parts)

(b) A soldering iron with a small tip (1 mm tip max)

(c) Thin solder (ideally 0.38mm)

(d) Desoldering braid is useful for cleaning up the pads

(e) A head-mounted magnifier is very useful since the parts are quite small

(f) A small piece of Kapton tape (heat-resistant tape) to act as an insulator when isolating one end of the Schottky diode

(g) Optionally, a couple of 0603-sized zero-ohm resistors to make solder bridges more easily.

Doing the Modifications

First off, desolder the 13.7k resistor labeled (1) in the photo below, and discard it. Secondly, desolder the diode labeled (2), but keep it!

image

Replace the resistor with a 22k one, as shown in the photo below. If, like me, you only have an 0603 sized resistor instead of a 0402-sized one, then it is possible to pre-tin the right side of the resistor, place it at an angle, tack down the right side, and then bridge the left side with a solder blob, to attach it to the adjacent resistor.

For the earlier removed diode, place a small piece of Kapton tape on the right side footprint pad on the board, and then resolder the diode (with the correct orientation as shown in the photo). Bridge the right side to the lower diode. I used a 0603-sized zero-ohm link to help with that.

image


Examine with a magnifier, and ensure no other pads were accidentally shorted during the operation. There are several pads very close to the resistor, and they must not be accidentally bridged.

Finally, flip the board over (it lifts out of the plastic carrier easily) and bridge the 3.3V and 5V connections. I used another zero-ohm link for that:

image

Power up the board (ideally without initially involving your PC), and verify that the 5V and 3.3V header connections are now both at 3.3V. The Arduino R4 is now 3.3V-ready!

Summary

Three simple changes are needed to convert the Arduino Uno R4 to 3.3V logic levels. A 22k resistor is needed, but since the part to be removed is quite small (0402-sized), some experience will be needed working with surface-mount parts.

Please share any findings if you perform the modifications. Any feedback or improvements are welcome.

Thanks for reading!

  • Sign in to reply

Top Comments

  • Fred27
    Fred27 over 2 years ago +1
    Can I suggest one more step? Label it clearly as modified so that when someone - maybe you, maybe someone else - grabs it from a drawer in a year's time they aren't left wondering why it doesn't work …
  • shabaz
    shabaz over 1 year ago

    A small additional optional modification:

    image

    The modification provides the 5V USB connection onto a wire end : ) This could be handy for the cases where, even if 3.3V logic levels are needed, a 5V supply might be wanted too. Obviously, this is limited to whatever the connected USB host will provide.

    Incidentally, anyone noticed that the fancy silver positive and negative symbols on the Arduino Minima board are actually real pads (perhaps used for testing); they actually are electrically connected to the positive and negative rails!

    image

    • Cancel
    • Vote Up 0 Vote Down
    • Sign in to reply
    • More
    • Cancel
  • shabaz
    shabaz over 1 year ago in reply to Spain_mtg

    Thanks!

    • Cancel
    • Vote Up 0 Vote Down
    • Sign in to reply
    • More
    • Cancel
  • Spain_mtg
    Spain_mtg over 1 year ago

    Good tutotial, thanks.

    • Cancel
    • Vote Up 0 Vote Down
    • Sign in to reply
    • More
    • Cancel
  • shabaz
    shabaz over 2 years ago in reply to DAB

    Hi DAB,

    Thanks!

    • Cancel
    • Vote Up 0 Vote Down
    • Sign in to reply
    • More
    • Cancel
  • DAB
    DAB over 2 years ago

    Nice mod.

    • Cancel
    • Vote Up 0 Vote Down
    • Sign in to reply
    • More
    • Cancel
>
element14 Community

element14 is the first online community specifically for engineers. Connect with your peers and get expert answers to your questions.

  • Members
  • Learn
  • Technologies
  • Challenges & Projects
  • Products
  • Store
  • About Us
  • Feedback & Support
  • FAQs
  • Terms of Use
  • Privacy Policy
  • Legal and Copyright Notices
  • Sitemap
  • Cookies

An Avnet Company © 2025 Premier Farnell Limited. All Rights Reserved.

Premier Farnell Ltd, registered in England and Wales (no 00876412), registered office: Farnell House, Forge Lane, Leeds LS12 2NE.

ICP 备案号 10220084.

Follow element14

  • X
  • Facebook
  • linkedin
  • YouTube