Wednesday, May 10, 2023

PiTrezor : A DIY bitcoin hardware wallet based on trezor and raspberry pi zero

Hardware wallets are one of the most secure way to handle your cryptocurrency like bitcoin.

The trezor is a hardware bitcoin and other cryptocurrency wallet made by satoshilabs  used to secure online transactions. The security reside in the fact that the private key used to sign a transaction never leave the device to your computer.


The hardware wallet device connect via USB to a host computer. Any transaction that would imply sending money to someone must be signed to be considered valid by the cryptocurrency network, like the bitcoin network. To perform that, the transaction is sent to the hardware wallet device via USB. The user can confirm its authenticity on the device display and press a button on the device to sign it with the private key. The hardware wallet device will send back the signed transaction to the computer to be broadcasted to the internet. In this process, the private key is never accessed by the computer.

On the other hand, the raspberry pi zero is a low cost and small but powerful computer. It is used on numerous projects by ton of developers and hobbyists around the world.

In this web page I will show you how to create your own hardware bitcoin wallet based on the original trezor source code and that run on it on a raspberry pi zero (or pi 4). This is a fun, low cost, D.I.Y. project for any cryptocurrency enthusiasm!

News: 

 refer to update procedure below before reflashing the SD card
  • Update 10 May 2023: pitrezor 1.12.1.0
    • Based on trezor firmware 1.12.1
  • Update 28 August 2022 :  pitrezor 1.11.2.0
    • Based on trezor firmware 1.11.2
  • Update 31 May 2022:  pitrezor 1.11.1.0
    • Based on trezor firmware 1.11.0
  • Update 3 February 2021: pitrezor 1.10.5.0
    • Based on trezor firmware 1.10.5
    • Now support Pi 0-2w. Still supporting Pi 0 and Pi 4
    • Migrated yocto to version "honister"
  • Update 20 December 2021: pitrezor 1.10.4.0
    • Based on trezor firmware 1.10.4
  • Update 29 September 2021: pitrezor 1.10.3.0
    • Based on trezor firmware 1.10.3
  • Update 26 July 2021: pitrezor 1.10.2.0
    • Based on trezor firmware 1.10.2
  • Update 23 May 2021: pitrezor 1.10.0.0
    • Based on trezor firmware 1.10.0
  • Update 30 March 2021: pitrezor 1.9.4.1
    • Support of raspberry pi 4
  • Update 18 February 2021: pitrezor-1.9.4.0.zip
    • Based on trezor firmware 1.9.4
    • Updated linux yocto platform to dunfell

Features:

  • Low cost
  • Easy to build if an existing raspberry pi hat is used
  • Run on pi zero, pi zero 2w and pi 4.
  • Use the original trezor One code. Only a thin layer is used to adapt the code to the raspberry pi Linux platform. 
  • All code modifications are open source, like the original trezor code.
  • 100% Compatible with trezor web wallet to perform transactions.
  • Use the hardware random number generator of the raspberry pi for more security.
  • Can be very secure if you use a pass phrase (see security section below)
  • Support small 128x64 OLED display and/or display via HDMI output.
  • Adjustable display scale factor on HDMI output
  • Fast boot (around 5 seconds)
  • Software is free (but donations are accepted!)

Block diagram

 

The block diagram shows the different possibilities to run the pitrezor:
  • A raspberry 0 or raspberry pi 4 can be used
  • An HDMI monitor can be used as the only display or as a second display with the OLED
  • The OLED must have a 128x64 resolution, I2C or SPI
  • The OLED and the the push buttons can be installed manually or a HAT can be used, as long as the OLED resolution is 128x64
  • For the pi 4, a keyboard can be used as input.

Thus for the pi 4, it is possible to build a pitrezor with just the pi 4, a keyboard and a hdmi screen.

For the pi 0, you need the buttons as input (as part of the hat or soldered directly). The display can be HDMI and/or OLED. Starting with HDMI is a simpler solution when beginning and testing.

Photos

OLED Display: 

 
A small OLED display can be attached to the pi zero. In that case, I recommend to use a small plastic box to protect the components and to give a more professional look!

Raspberry pi HAT:


(Picture courtesy of Damian Bevan)

It is also possible to use the Adafruit bonnet (see https://www.adafruit.com/product/3531) or similar HAT. In that case you just have to install the pins on the pi if required and connect the bonnet!

Quick start guide:

List of required components:


Required components for the PiTrezor

  1. A raspberry pi zero (v1.3 to avoid unknown compatibility issue). You don't need the pi zero W, it cost probably a little bit more than the regular pi zero, but it will work anyway. The difference is that pi zero W has wifi and bluetooth but this project don't use it. The network drivers are not loaded by the platform so the W can be considered as secure. As mentionnend, you can use a pi 4 also if you already have one but it is more expensive than the pi 0.
  2. An SD card. The image to write on the SD card is very small (around 100 Megs) so virtually any decent SD card should work. Make sure you have one that is compatible with the pi.
  3. A good micro-usb to usb cable.
  4. A mini HDMI male to HDMI female adapter to verify the output via the HDMI output. You need HDMI cable and a TV or monitor too!
  5. Two push buttons (normally open contact, SPST)
  6. Some wires to solder the buttons to the p.
  7. Optionally, an I2C or SPI OLED display. Supported OLED are based on the SH1106 controller or Adafruit controller.
  8. Optionally, a box or enclosure for a more professional look. 

You will also need standard tool like solder iron, pliers, ...

Of course, If you are using the Adafruit bonnet, you don't need separate push buttons or OLED. Refer to Hat documentation about how to connect the bonnet to the pi zero.

Videos:

Some users had the courtesy of making videos to help you build your pitrezor. Here are some links:

Step-By-Step instructions:

  1. If you don't have the software called "etcher" already installed in your computer, download it here : https://etcher.io/ . This software is used to write the program image to the SD card.
  2. Download the latest pitrezor SD card image by clicking here and select "save" to save the zip file
  3. Start etcher and follow the instructions. You will need to connect the SD card to your computer to flash the pitrezor image file.
  4. After the card is flashed, put it in the SD card slot in the pi.
  5. Connect the HDMI output to a monitor or tv using the cable and adapter. On the pi 4, use the mini HDMI connector just beside the usb-c connector.
  6. Connect the USB cable in the USB port near the center of the pi, not the one near the corner. Refer to next picture. For the pi 4, the usb-c connector is used.
  7. Connect the other end of the USB cable to your computer or a USB power supply. You should see the pi boot sequence in the monitor and after 4-5 seconds the trezor logo should appear. Good! That confirms that your pi and SD card are working correctly.
  8. At this point you cannot do much, so disconnect the USB cable, HDMI adapter and cable and remove SD card.
  9. If you are using the Adafruit bonnet, it is time to connect it and go straight to the "Configuration" section below. Otherwise, continue reading
  10. Solder the 2 buttons to the pi as showed in the following diagram. The left button (called "no") is connected to the pins 30 and 32 (in yellow in the next picture). The right button (called "yes") is connected to the pins 34 and 36 (in red in the picture). This is the default setup but can be tweaked from configuration file. The pi 4 use the same pins.
    connecting the button
  11. Put back the SD card in the pi and reconnect the HDMI and USB cable back to your computer.
  12. It should boot again, otherwise that means something went bad during the soldering of the buttons :(
  13. Open a browser on your computer and navigate to https://suite.trezor.io/web/
  14. You can be requested to install the trezor bridge but on chrome it is not absolutly necessary if your system support webusb. Select your operating system to download the correct bridge software if required and perform installation
  15. If you installed the bridge, close and reopen your browser and go back to https://suite.trezor.io/web/
  16. If you don't plan to use the bridge on Linux, don't forget to set the permission accordingly. Refer to setting up chrome on linux
  17. If the bridge is already installed, you should see a message that invites you to connect your trezor. Connect the USB cable of your pi.
  18. The browser application should detect the device and invite you to perform the trezor setup.
  19. During the setup you will need the buttons to, at least, go from one seed word to another.
  20. If all is working correctly you can disconnect everything to solder the OLED display. The I2C OLED display need 4 wires to solder and the SPI OLED uses 7 wires. Refer to the next picture to determine how to solder the OLED depending on interface. The pins are the same for the pi 4:
  21. Connect the SD card back to your computer and refer to the configuration section below to correctly configure your OLED model and orientation. Their is only 2 possibles orientations so you can try both and see which one is better for you.
  22. Reconnect everything and retry your device. Now you should see the output on the HDMI connector if connected and also on the OLED at the same time.
  23. If that work, put everything in a box!
  24. Enjoy! And please don't forget to send a donation to continue the support this project update (see below). Any amount is welcome.

Download


The latest pitrezor SD card images:

For Pi 0 : click here for version 1.12.1.0

md5sum of the zip is e1140edb9b73270b02066d202d8ae665


For Pi 0 2W : click here for version 1.12.1.0

md5sum of the zip is 54a17e6afa7555af6a6471dfa1926f94

 

For Pi 4: click here for version 1.12.1.0

md5sum of the zip is 9497443c921375a508bf5429779d7917



Configuration

If you connect the SD card in your computer you should see a file named "pitrezor.config" in the first partition (boot partition). You can open this file with your favorite text editor. You will be able to change the configuration variables which are:
  • TREZOR_OLED_SCALE : This control the scale factor of the display to apply when using the HDMI output. A scale factor of 1 means the default size of 128x64 pixel. A scale factor of 2 will stretch the image to 256x128 and so on.
  • TREZOR_OLED_TYPE: Specify the type of OLED connected to the pi zero. The file enumerate the different value and their meaning. Select the one that match your OLED display.
  • TREZOR_OLED_FLIP: Set to 0 or 1 to control the image vertically (normal or inverted) This is useful depending how you assemble the OLED in n enclosure.
  • TREZOR_GPIO_YES and TREZOR_GPIO_NO : Specify the GPIO number to use for the yes/no button. If you soldered the buttons like mentionned in the tutorial, you can keep the default values.
When you change a value, keep the line formating as-is with the export statement. Just change the number after the equal sign. If you change something else, this could prevent the pi trezor application to start correctly.

For the Adafruit bonnet, you must change the values to these:

export TREZOR_OLED_TYPE=1
export TREZOR_OLED_FLIP=1
export TREZOR_GPIO_YES=6
export TREZOR_GPIO_NO=5

Is this secure ?

The main difference of this device versus the real trezor device is that the pi zero stores everything on the SD card. The equivalent of the flash memory for the trezor is stored in a file on the first partition. That means that anybody that has your SD card can access your seed words and private key.

However, the wallet supports the usage of a passphrase. The passphrase is a kind of an extra seed word that is not stored on SD card. By using a passphrase, you would prevent a thief that could have your SD card to empty your wallet.

Thus, the recommendation is to always use a passphrase!

Updating from previous pitrezor image

If you are updating your pitrezor to the latest image you will need your seed words with you:

  1. Make sure that you have seed backup available. This mean your word list !! If not, you'll need to transfer all your funds to another wallet and disconnect other services (like U2F, password manager etc.
  2. Erase (Wipe) your pitrezor from trezor wallet or trezor suite application. This step improve the security before putting back the SD card in a PC in case it is infected.
  3. Put the SD card in a PC and copy your pitrezor.config file from the SD card to the computer
  4. Flash the SD card with the latest downloaded image
  5. Disconnect and reconnect the SD card to your computer
  6. Copy your pitrezor.config file from the computer to the SD card to overwrite the default version with your own version.
  7. Eject the SD card from your computer and install it in the pi zero
  8. Boot your pitrezor as usual
  9. When you will go to the wallet web site, your pitrezor will be detected as a new device. Select the recover option. You will have to enter all the words of your seed word list (advanced recovery mode is recommended so that your seed will never be entered on a computer).
  10. Don't forget to enable the passphrase option after if you were using one before. You should! If you haven't you can create new hidden wallet with a passphrase.

For developers


The modification to trezor original code are available in this repo: https://github.com/heneault/trezor-firmware

The platform code is based on yocto to which I added my own layer and some build scripts. The repo is there: https://github.com/heneault/yocto-pitrezor

Questions ?


Comments are welcome in the comment section below. You can also reach me at info@pitrezor.com

Scan to send bitcoin donation!

Donation !

A lot of work and effort has been put in this project and still needed to keep it up to date. If you like it, please consider giving a donation. Any amount is welcome!

Bitcoin: 1trezor8MpRmFHcMCLdANpiVoEM9zqe2n

Paypal:


Copyright and Legal Warning

There are inherent dangers in the use of any software available for download on the Internet, and I caution you to make sure that you completely understand the potential risks before downloading any of the software.
The Software and SD card image available on this website are provided "as is" without warranty of any kind, either express or implied. Use at your own risk.
The use of the software and SD card image downloaded on this site is done at your own discretion and risk and with agreement that you will be solely responsible for any damage to your computer system or loss of data that results from such activities. You are solely responsible for adequate protection and backup of the data and equipment used in connection with any of the software, and I will not be liable for any damages that you may suffer in connection with using, modifying or distributing any of this software. No advice or information, whether oral or written, obtained by you from me or from this website shall create any warranty for the software.
I make no warranty that:

  • the software will meet your requirements
  • the software will be uninterrupted, timely, secure or error-free
  • the results that may be obtained from the use of the software will be effective, accurate or reliable
  • the quality of the software will meet your expectations
  • any errors in the software obtained from me will be corrected.
The software, SD card image and its documentation made available on this website:

  • could include technical or other mistakes, inaccuracies or typographical errors. I may make changes to the software or documentation made available on its web site at any time without prior-notice.
  • may be out of date, and I make no commitment to update such materials.
I assume no responsibility for errors or omissions in the software or documentation available from its web site.
In no event shall I be liable to you or any third parties for any special, punitive, incidental, indirect or consequential damages of any kind, or any damages whatsoever, including, without limitation, those resulting from loss of use, data or profits, and on any theory of liability, arising out of or in connection with the use of this software. 

© Yannick Heneault, 2018 and up. Unauthorized use and/or duplication of this material without express and written permission from this blog’s author and owner is strictly prohibited. Excerpts and links may be used, provided that full and clear credit is given to Yannick Heneault with appropriate and specific direction to the original content.

The name and logo trezor are the properties of satoshilabs
The name and logo raspberry pi and raspberry pi zero are properties of the raspberry pi foundation

442 comments:

  1. Wow this is very good. I will test this once I got the parts.

    Question: In future, how about updates to the software?

    ReplyDelete
  2. Make sure you get the proper oled device. Right now I'm supporting only I2C (not SPI).

    For the update, I will align my updates on the official firmware release from trezor. Basically you will have 2 options. I will post a page with the details on first update. 1) You simply reflash the sd card. That mean you will lost all your data and will have to reenter your seed words via the wallet application. 2) You backup the emulator.img file in the boot partition on a computer. then you flash the sd card and you move back the emulator.img file. This is an extra manipulation but will save time.

    ReplyDelete
  3. Are there any pitrezor images to RPI 1, RPI2 or RPI3 variants? (What's the modification that are needed to pizero image?)

    ReplyDelete
    Replies
    1. No I only have pizero image because only this model can be used as a USB device.

      On regular pi, you can recompile trezor code in "emulator" mode to play with. You will simply need a keyboard and a screen to interact with it.

      Delete
  4. Is there a way to change the pins that the buttons use?

    ReplyDelete
    Replies
    1. This can be easily changed in the code but will require to recompile pitrezor. I'm about to release a new image, I could make it configurable via the config file if you need this feature.

      Delete
    2. That would be awesome if you can make it configurable via the config file.

      Delete
  5. Would it be possible to add g_mass_storage to use the rest of the sd card?
    e.g. a third partition that takes up the remaining space and gets mounted as a usb drive when plugged in to devices.
    I guess it would only be useful if the pi doesn't get unpluged

    ReplyDelete
    Replies
    1. Exactly, I think their will be some risk of corruption if not disconnected at the right moment but that would be possible. A bootup script could extend the partition, format it and export it as usb key. Do you have an idea in mind about its usage?

      Delete
    2. well I would like to use it to carry around the browser Plugin for TREZOR and possibly a portable version of a web browser with the trezor wallet site as the homepage.

      Delete
    3. mostly read-only files

      Delete
    4. The different bridges and the chrome plugin could be downloaded and put in a usb image but the trezor javascript wallet code doesn't seem to be on trezor github anymore. Maybe an alternative like electrum, that can use the trezor hardwarde, could be preinstalled.

      Delete
    5. if config file had way to enable/disable and set read/write or read only mode

      maybe it can be used to boot a pc to a Live OS

      Delete
    6. That could probably work. An iso could probably be exported (and kept read only) to avoid security breach from the host computer. Something to look at!

      Delete
  6. hello,

    i'm using an ssd 1306 1.3" 128x64 OLED display from adafruit. it doesnt power on. is the wiring scheme the same? do i need to install any additional software? thanks.

    ReplyDelete
    Replies
    1. Look at the pitrezor.config file on the sd and check that TREZOR_OLED_TYPE is set to the Adafruit SSD 1306 I2C

      Delete
    2. 'Adafruit SSD 1306 I2C' is 'OLED_ADAFRUIT_I2C_128x64'
      so you change the number in the line
      export TREZOR_OLED_TYPE=3
      to a 1
      export TREZOR_OLED_TYPE=1

      Delete
    3. Please let me know if that work correctly. I don't have myself this oled to test but the driver code in the platform should work. The I2C wiring is the same. I only tested using oled with sh1106 controller.

      Btw, next release will also have SPI interface oled driver code in it.

      Delete
    4. Hi Yannick,

      I changed the config to type=1 but it still wont power on. FYI my wiring scheme is (from OLED to pi zero):

      Vin to pin 1
      Gnd to pin 6
      Data to pin 3
      Clk to pin 5
      Rst to pin 18

      I bridged connections of the back of the OLED on pads SJ1 and Sj2, as mentioned by Adafruit to enable I2C functionality.

      Is this correct? I can email you screenshots of the wiring if that helps. Thanks.

      Delete
    5. It works with the 'Adafruit 128x64 OLED Bonnet for Raspberry Pi'
      https://www.adafruit.com/product/3531https://ibb.co/nmzi1n
      but the buttons and joystick on it need the pin config feature

      pic of the screen working
      https://image.ibb.co/dtZGMn/2018_04_15_170032_workingCopy.png
      I used some jumper wires to get the buttons to work
      -Damian

      Delete
    6. https://learn.adafruit.com/monochrome-oled-breakouts/wiring-128x64-oleds
      if I'm reading this right Vin needs 5v but you have it plugged into pin 1 and that's 3.3v
      http://webofthings.org/wp-content/uploads/2016/10/pi-gpio.png
      pin 2 and 4 are 5v

      Delete
    7. Awesome work with the Bonnets! Would you mind sending some good pic to info@pitrezor.com. I could add it to the blog. I could also provide you a test image with gpio buttons configurable to test it.

      Delete
    8. I don't think you need rst to be connected in i2c mode. Maybe the 3.3v / 5v is the solution. Otherwise, you can probably follow adafruit tutorial to make sure its driver is working correctly. I found some tutorial for the 128x32 at https://learn.adafruit.com/adafruit-pioled-128x32-mini-oled-for-raspberry-pi?view=all to start playing with.

      Delete
  7. Yannick I sent you an email just wondering if you have received it yet?
    -Damian

    ReplyDelete
    Replies
    1. I just answered. You can check your email.

      Delete
    2. Hi Yannick
      If we send you an email how long should we wait for a reply?

      Delete
  8. Hi Yannick

    Are the pitrezor image is not available, links is not works.

    ReplyDelete
    Replies
    1. I just restored the link for download. It seems my file hosting provider has some issue...

      Delete
  9. Thank you for tutorial,
    Trezor update firmware to 1.6.1, how can we update too?

    ReplyDelete
    Replies
    1. I'm in the process of updating the image and documentation. It should be ready in the next few days.

      Delete
    2. Hi Yannick, any good news on 1.6.1?

      Delete
    3. Finally I got the time to update the site! It is there!

      Delete
  10. Hi,
    Awesome tutorial.
    I am also using the "Adafruit 128x64 OLED Bonnet for Raspberry Pi". (https://www.adafruit.com/product/3531).
    I change the config file to use the OLED Bonnet. The OLED Bonnet powers up and displays the Lock with the "Go to trezor.io/start" text.
    I installed the Trezor Bridge but the raspberry pi w does not connect to the Trezor Wallet. The browser application DOES NOT detect the device. Not sure what is the problem..... Any help would be appreciated.

    Also, is there a way to configure the buttons on the Bonnet OLED screen?

    Thanks,
    Tony

    ReplyDelete
    Replies
    1. Is the usb plugged into the port labeled "usb" on the pi?

      Delete
    2. The next image will support the bonnet as-is, it should be available in the next few days.

      Delete
    3. Yes, I plugged the usb cable into the port labeled "usb" on the pi and plugged the other end into the computer. It was not detected by the computer. At one point the computer did say "unrecognized usb", but it was not detected by the Wallet.

      Cool, cant wait for the new image.

      Thanks for the help,
      Tony

      Delete
    4. What operating system are you guys using? I am using Windows 10. Maybe that is the issue.... I also tried using the chrome extension, still didn't get recognized. The raspberry pi is not recognized by windows....

      Tony

      Delete
    5. Windows in general can be a bit fussy with usb devices.
      have you tried plugging it into a different usb port on the windows system end (sometimes that works as it thinks its a new device and installs the driver)

      But you still would need to wait until Yannick releases the next image to use the buttons on your Bonnet OLED screen.
      If it still won't get recognized by windows let me know.
      -Dave

      Delete
    6. Check with another usb cable if you can. Sometime a bad quality cable can cause this

      Delete
    7. Still working on it. I tried another usb port, still doesnt work. I tried a new usb cable, still doesnt work. I will wait for the new image that utilizes the Bonnet OLED.

      Thanks,
      Tony

      Delete
    8. New image is there if you want to give it a shot. Maybe trying on another computer could be something worth to try.

      Delete
    9. Awesome! Thanks. So, I used windows 7 and it took a while to install drivers, but it worked. The raspberry pi finally connected to the computer and connected to the website. The buttons for the OLED Bonnet works too.

      Delete
    10. I'm glad to hear that! Congratulation!

      Delete
  11. Do you have a 3d-model (.stl) file for the closing box? I appreciate if you upload it as well!

    ReplyDelete
    Replies
    1. I don't have the files but that would be awesome if someone could send them to me. For my version I used a standard ABS box and I cut plastic with a dremel cutting disc. My main concern with 3D files would be the buttons. Depending on the type of buttons, the position/size would not be the same. At least, Oled on the other hand are relatively standard.

      Delete
    2. After some research, I'll try to print the following module: https://www.thingiverse.com/thing:1193350 . Though, I agree with the concerns about the buttons.

      Delete
    3. Some things I noticed about it. The usb port opening is not the correct one. It seems to expose the usb power. Also it doesn't seem to have scoket to use screws to maintain the back in place.

      Delete
    4. That is correct! After some modification it works great . I will upload the new stl files in the following week.

      Delete
  12. Any chance to get this working with the new firmware for the Trezor Model T? https://github.com/trezor/trezor-core
    It would require a touchscreen to be hooked to the Pi Zero.

    ReplyDelete
    Replies
    1. Yes I was thinking of it but the price of a touchscreen color display make me think that this port would be less interesting as a DIY project.

      Delete
    2. Would such one be sufficient ?

      https://www.aliexpress.com/item/for-Raspberry-Pi-3-Model-B-3-5-Inches-Touch-Screen-Display-Monitor-480x320-LCD-Kit/32837597848.html?spm=a2g0s.13010208.99999999.267.6f6f3c008zzUkQ

      Delete
    3. seems to be already done https://gk2.sk/trezor-emulator-on-raspberry-pi/

      Delete
  13. Can you highlights the modification that you were doing to the trezor's source code ? (For security reasons, and to learn more about how to add new feature to it..). I found it really hard to make a diff with the trezor repo.

    ReplyDelete
    Replies
    1. you can see the diff to original trezor code directly in github : https://github.com/trezor/trezor-mcu/compare/master...heneault:pitrezor

      Fell free to ask questions if something is not clear

      Delete
  14. Hi Yannick,

    Great tutorial! I was wondering if I can get some help.
    I am new to yocto. I am trying to understand yocto and the layers. Why did you created meta-pitrezor layer? Could you have just built a generic raspberry pi distro and run the trezor code on it? Is that possible? Im just trying to learn and understand. Thanks.

    ReplyDelete
    Replies
    1. The meta-pitrezor layer allow me to add my port of the trezor application as part of yocto build. It also contain the image file that list the applications to install in the image file. This allow me to create a very small distro with only was is required to run. The layer also contains some fixes to other application and some custom configurations to reduce the image footprint.

      I think yocto was the best choice for this project. Distro for the pi like raspbian contain a lot of softwares not required for pitrezor because they are more desktop oriented. Using a distro like this would have implied to remove or cleanup a lot of packages. With yocto I can select what I want to be installed more granulary.

      I you have some other questions about yocto, feel free to PM me.

      Delete
  15. Hey, thank you for the tutorial! Unfortunately I'm having some trouble. I can get the device to show the Trezor screen on a TV connected via HDMI, but when I go to the trezor.io/start page, it never gets past asking me to connect my device to start.
    As a separate issue I can't seem to get the Adafruit Bonnet to work, but I think that's just my own problem with being unfamiliar with it.

    ReplyDelete
    Replies
    1. some things you could try: Check with another usb cable, check with another monitor, check in system manager for the list of usb device connected to see if it is there. You can also try to reflash the sd card with an original Pi distro like raspbian to see if it boot correctly and if you have hdmi output.

      Delete
  16. Hi friends. It's a great project, I've ordered parts and waiting for delivery. But I wanted to inform you that I am a graphic designer and a 3D designer. How will everything be made up at home, I will make a box and a public. If the interest and creator of the PiTrezor project will want, I can present myself as part of this blog. I ordered the Adafruit 128x64 OLED Bonnet. If I get in the Czech Republic, I will make a second modification. (or you can send it to me - I'll pay). Here it is just in the Czech Republic OLED model http://rpishop.cz/displeje/874-adafruit-128x32-pioled.html.

    I apologize for poor English I am from the Czech Republic. My nick is MoDDO / fX - (moddo@moddo.cz)

    ReplyDelete
    Replies
    1. I would also like to try this. Has anyone not tried yet? https://bit.ly/2IQZ6Fu

      Delete
  17. WOW! This is awesome. I have a few Pi Zero W units laying around, so I popped in a new 2G MicroSD card and followed your tutorial. I have a couple of cheap Ebay SPI OLED (128x64 .96") also which work perfectly with the following layout.
    Changed the config file to use #4, with a zoom of 1.

    RPI Pin OLED Pin
    #17 -> DC
    #18 -> VCC
    #19 -> GND
    #20 -> D1
    #21 -> RES
    #22 (not used)
    #23 -> CS
    #24 -> D0

    The setup on the Trezor site was very easy, and worked perfectly using the buttons also. I have now ordered a non-wifi model of the PiZero dedicated for this purpose. I also have a 3D which I'll have to look at designing a case for this unit now. Something to hang off my car or house keys maybe.

    ReplyDelete
  18. Ok, I have made a 3D case for this as a thanks. It fits my unit just fine. Also, the RPI Pin# I quoted yesterday were reversed, sorry. Brain fade. The correct pin names here.

    SPI - Your image
    GND (GND)
    VCC (VCC)
    D0 (CLK)
    D1 (MOSI)
    RST (RST)
    DC (DC)
    CS (CS)

    Hope you like it, feel free to modify for yourself.
    https://www.thingiverse.com/thing:2984762

    ReplyDelete
    Replies
    1. Wow impressive! Thank you for sharing the 3D files. I'm sure some people will use them!

      Delete
  19. Thanks Yannick, the update worked fine. Entering the passphrases was simple enough to recover, and no more "Firmware Update requrired" on the trezor page. Appreciate the effort you have done here.

    ReplyDelete
  20. incredible work ..... is an update to the new firmware 1.6.3 planned? THANK YOU

    ReplyDelete
  21. Thank you! Yes update is on the way

    ReplyDelete
  22. thanks for that quick update!

    ReplyDelete
  23. Is there a way to see the private keys by looking at the sd card on a pc? Could I enter my own private key on the sd?

    ReplyDelete
  24. by dumping the emulator.img file in the sd card you could retrieve the seed words that were used to generate the private keys. This is why you should always use a passphrase. The passphrase is not stored on the sd card and act as an extra word in the conversion from the word seed list to private keys.

    ReplyDelete
  25. Have you considered encrypting the SD card with LUKS?
    Seems this could drastically increase security.

    Would also be good to limit number PIN tries + auto wipe seed.

    ReplyDelete
    Replies
    1. The protection would be limited. I'm trying to minimize the changes with the original trezor code to avoid to introduce all kinds of possible errors (security, malfunction..) and to keep 100% compatibility with the online wallet. Also, all the code is open source, so anybody could review it and see how encryption is used. The passphrase could in theory be used to protect the partition that hold the flash image, but, when the online wallet is asking for it when the trezor is connected, the flash image is already loaded by the pitrezor to tell wallet to ask for the password. This is a chicken'n'egg problem. I could solve it by breaking the flash in 2 parts (one encrypted, one not) but that will be a big change from the original code.

      The pin is not a real protection because it can be extracted from a dump of the flash image. The best protection is the passphrase because it is never stored.

      Delete
  26. For the 'ultra paranoid' security conscious people, couldn't you just add passphrase protection, then remove the SD card from your Pi-Trezor, put it in your "Etcher" application and create a new image, then encrypt the image with say TrueCrypt (yes I know about it's apparent flaws) and store it on a second USB drive somewhere offline, and extract the encrypted image only when needed?

    This is untested by myself, just theory in my head.

    ReplyDelete
  27. Hello there! Thank you for this amazing work.
    Looking at build-pitrezor.sh I noticed that it is using /dev/random as a source. How safe it is? Shouldn't it use /dev/hwrng instead?
    https://www.raspberrypi.org/forums/viewtopic.php?t=127706

    ReplyDelete
    Replies
    1. The daemon rng-tool is running as a separate process. This is the one that read from /dev/hwrng and feeds /dev/random to keep entropy high. The kernel will mix that source of entropy with others sources. This way, reading from /dev/random cannot block because you always have the hw generator as a fallback source of entropy. It still secure because it is not the only one source and it is better than urandom because the kernel avoid the pseudo software number generator (/dev/urandom)

      Delete
  28. LGTM. Thanks for detailed answer.

    ReplyDelete
  29. Is there anyway to change the welcome image?

    ReplyDelete
    Replies
    1. yes, you can follow information from here https://wiki.trezor.io/User_manual:Homescreen

      Delete
  30. Hi there. Yannick, you made a great job! I followed your instructions and made this device. I had no Pi Zero available, only Raspberry Pi Model A+ and 3B, fortunately Pi Model A+ allows similar configuration, but you need USB Type A (Male to Male) cable to connect to PC and replace string in config.txt file on SDcard "dtoverlay=dwc2" to this one "dtoverlay=dwc2,dr_mode=peripheral". Hope this helps someone.

    ReplyDelete
    Replies
    1. Hi. I was unaware the model a+ could work as usb gadget! I will try it. Did you had to add the proper boot files in the boot partition because my image contains only the file for the pizero? Thanks for sharing.

      Delete
    2. I just used precompiled firmware that you provide, because A+ and Zero share the same hardware, no additional boot files needed. Good luck.

      Delete
  31. Just finished the assembly, works great, thanx Yannick!
    Protected all the solder joints and reinforced the usb connector with the steel epoxy.
    The case is 3d printed, just slightly larger than the pi zero itself.
    Feel free to check the photos:
    https://i.imgur.com/aiXNuaT.jpg
    https://i.imgur.com/EWt60JR.jpg
    https://i.imgur.com/bfAlP8f.jpg

    ReplyDelete
    Replies
    1. Hey! Great Works. Look professional. Thanks for the good word!

      Delete
    2. I like how slim you made the unit! Congrats. I'll have to do some thorough redesign of my quick hack case to look as good as yours :)

      Delete
    3. Great 3d printed design! Could you share your 3d design?

      Delete
  32. This comment has been removed by the author.

    ReplyDelete
  33. do i need a mini HDMI male to HDMI female adapter? i dont have one. can i directly connect with jumper cables plugged in to the OLED display via GPIO PINS????
    BTW can u tell me the OLED TYPE for this one? https://www.aliexpress.com/item/32595065663.html

    ReplyDelete
    Replies
    1. This comment has been removed by the author.

      Delete
    2. The hdmi connector is needed only if you dont have an oled. But because you seems to have one, it can be used to help troubleshoot if the oled is not working, i.e. the hdmi clone the oled output so it should shows that pi is running software correctly.

      The oled is probably one of two type OLED_ADAFRUIT_ SPI OR I2C depending on interface.

      Delete
  34. works perfectly. There is a new Trezor version btw ;-)

    ReplyDelete
    Replies
    1. Thanks! Yeah I will deploy the update soon :)

      Delete
  35. Hello, i will be also writing this via e-mail. I was wondering if it would be possible to use this with a 16x2 LCD display? Thank you so much.

    ReplyDelete
  36. Great Work!
    Is there a way to way to run this and an alternative OS?
    A dual boot option selectable on the screen perhaps?
    Is the model T code able to be emulated in this way?

    Just questions, thank you for your hard work!

    ReplyDelete
    Replies
    1. The current OS is based on yocto but yes in theory another OS like raspbian should work. However, it would require to apply the same patch (kernel linux patch) to work properly.
      For the model T, I didn't invest time into it as it would require a color touch screen LCD and that would increase the cost of this project.

      Delete
    2. I meant like a dual boot situation.
      Hold one button to boot into the wallet, hold nothing for say, raspbian to load.

      More stealthy...

      I see about the model T as far as touchscreen goes.

      Thank you, once again, for your hard work. It is awesome.

      Delete
  37. Would love to see the key/passphrase encrypted on the SD card, and unlockable via added NFC, such as an NFC ring or yubi key.

    ReplyDelete
    Replies
    1. That would be great as a fork project because I try to keep 100% compatibility with original trezor

      Delete
  38. This comment has been removed by the author.

    ReplyDelete
  39. Hi Yannick!
    First of all awesome work thanks for your effort! :)
    I was just logging in in my pitrezor and realized there is a new firmware. (1.9.0)
    Can we expect an update in the near future?

    ReplyDelete
  40. Hi Yannik.
    Thanks for your great work.
    Any plans for an update of the firmware?

    ReplyDelete
    Replies
    1. Yes update is in progress. I'm doing the testing...

      Delete
    2. That's great news.
      Thanks again for your great work.

      Delete
    3. Thanks for the update! :)

      Delete
    4. No problem. Don't forget that donation are always welcome!

      Delete
  41. hey bro are you working on the new version too . thank you

    ReplyDelete
  42. Could you explain to me how to solder the buttons. I tried and they didn’t work for me . What pins should I be soldering ?

    ReplyDelete
    Replies
    1. look carefully at step 10 to know where to sold them. You must use buttons that make contact when you press them (current flowing when pressed). You can try with a tester on that back of the pcb to check if current is flowing when pressed. Could be a bad solder.

      Delete
  43. This comment has been removed by the author.

    ReplyDelete
  44. Is it possible to encrypt the sd card in a way that it will work ? do u have any suggestion how i can do it ? or is it not possible ? I looked it up and a lot of answers says its in general very difficult to encrypt a sd card or not worth bc of the power and so on. How can i secure the hardware wallet more? Thank you very much! :)

    ReplyDelete
    Replies
    1. Encryption would require to change the original firmware and wallet software to let the user input the key to unlock part of the SD that contain the firmware (at least the seed). This change would made the pitrezor not compatible with the current trezor ecosystem. The best thing right now is to use a passphrase when you open the trezor wallet. This is fully supported by the trezor wallet and the passphrase is not stored on the SD card so it provides a good protection.

      Delete
  45. Hello, thank you very much for such a good tutorial, I have applied it and I just have my wallet working perfect. Now Trezor has just released a firmware update, how should I apply the update, can I do it directly from the Trezor page, how to follow the steps for the commercial device, or should I do it by loading the new firmware to SD memory? I have that little question. I appreciate the information.

    ReplyDelete
    Replies
    1. Thank for the good feedback. No, you cannot use the official firmware from trezor because it is not compatible with the pi. I will provide a new firmware update on this site in the next few days...

      Delete
  46. does this version of setup support all the coins? such as XRP?

    ReplyDelete
    Replies
    1. It supports the same coins as the original trezor https://trezor.io/coins/

      Delete
  47. hello im using the Waveshare oled LCD 1.3 i got a black screen can you help me ? thank you yan

    ReplyDelete
    Replies
    1. fixed not but windows 10 can't show the trezor it's not detected

      Delete
  48. Hello Yann sorry can you help me about my issue my pitrezor is not recognized

    ReplyDelete
    Replies
    1. some things to check:
      - make sure the usb cable is connected in the proper usb port of the pi zero (refer to image)
      - try to use the wallet with the latest version of chrome.
      - try to install the trezor bridge
      - make sure your usb cable can transfer data.
      - try different usb ports on the computer (front/back)
      - to make sure it this not an hardware issue, you can try the standard raspberry pi image configured as a usb network connection : https://www.instructables.com/id/Raspberry-Pi-Zero-USB-Dongle/

      Delete
  49. Thank you very much for your work.
    There is a new firmware update for trezor. Are you planning to update the piTrezor?
    Thank you very much

    ReplyDelete
    Replies
    1. yes the update should come in the next few days

      Delete
    2. Thanks Yannick!!
      I have made a video about the pitrezor in Spanish
      https://lbry.tv/@Loquesemepone:a/DIY-hardware-wallet-basada-en-Trezor:3
      I hope it helps to publicize the Pitrezor

      Delete
    3. Thank you very much or the video. I had the idea of doing something similar but I don't have the talent for that. I put the link to your video in the page just beside the instructions.

      Delete
  50. Curious, I am looking at using the Adafruit minipitft display (https://www.adafruit.com/product/4393) because it has 2 buttons built in and just thought it would be slick. However I'm not sure if it's compatible do you have any knowledge of this working?

    ReplyDelete
    Replies
    1. it seems to have a kernel driver so maybe the SDL layer that is used to drive the frame buffer for the HDMI output could be used as-is or with few modifications.

      Delete
    2. That is the info I needed, thank you so much for responding!

      Delete
    3. did you get this working? if so, would you mind sharing the config you used?
      that looks like a very neat option.

      Delete
  51. This comment has been removed by the author.

    ReplyDelete
  52. Yannick, this is a really great work! Congratulations! I have two small questions, you mention that it can be created a wallet passphrase to add more security, where do you create it? And second one, with this image you can create either a Trezor One or Trezor T wallet? Thanks in advance.

    ReplyDelete
    Replies
    1. Thank you. Here is the link that explain passphrase https://wiki.trezor.io/Passphrase
      . For the image it support only the Trezor One

      Delete
    2. Hi Yannick!
      If I've already a wallet created and I want now to add a passphrase, is it possible? I have to make a new wallet with the passphrase and send the crypto from one to the other? Sorry my noob question :)

      Delete
    3. Unfortunately, you will have to make a transaction (and pay the transaction fee) to move the fund from the original account to an address controlled by the password protected account

      Delete
  53. Hello, ask. Has anyone used pioled tft 1.3" inch 240x240 tft add-on oled spi interface for raspberry pi (https://a.aliexpress.com/_BTzImT) successfully for pi trezor configuration? I intend to buy this model.

    ReplyDelete
    Replies
    1. Hello! Coukd you solve this? Im using an OLED SPI of 128x128 and cant get the image working

      Delete
  54. hello dude, usually i dont comment out on anything however I would like to thank you for the excellent job on this one! i just managed to install on my new pi zero w + waveshare display from aliexpress, I really hope you can keep up updating new versions as they come.

    thanks!

    ReplyDelete
    Replies
    1. Thank you for the comments (and don't forget small donations are always welcome). I usually post update a few days after they are released officially by trezor.

      Delete
    2. Would you share the config you use for the waveshare display and in which mode you configured it ? Thank you

      Delete
    3. Yes definitely! I am using pi zero w as mentioned, My display in question is from ali express: Waveshare sh1106 > https://pt.aliexpress.com/item/4000266744249.html?spm=a2g0s.9042311.0.0.5e2ab90a3k9CMC

      This display has 3 KEY buttons and a FULL joystick although we are only using KEY1 (CONFIRM) and KEY2 (CANCEL). The config file looks like this:

      # Scale factor of display when using hdmi
      export TREZOR_OLED_SCALE=2
      # Type of oled to use
      export TREZOR_OLED_TYPE=5
      # Flip the display vertically. Set to 0 or 1
      export TREZOR_OLED_FLIP=0
      # Set gpio number to use for the yes/no buttons
      export TREZOR_GPIO_YES=21
      export TREZOR_GPIO_NO=16

      Those last 2 numbers from GPIO Pins were taken from waveshare PDF documentation about the display (over their website)

      Here you have some pics so you can add to the post.
      - https://preview.redd.it/vhwuxkg4i8061.jpg?width=3024&format=pjpg&auto=webp&s=726a9d190908304ce668918959f7d4a2d2222ee4
      - https://preview.redd.it/jluo5a6hi8061.jpg?width=3024&format=pjpg&auto=webp&s=1234da1db2df67abe20f7046c287600e3ca619b2

      thanks again for your time yannick really appreciate it

      Delete
    4. Thank you. This will help other guys with the same display!

      Delete
  55. Strange question can i try it on my pi4 ?!

    ReplyDelete
    Replies
    1. I think it could be possible but not with the current image (1.9.3) I hosted here. I think the pi4 can be used in usb otg mode (i.e. as a slave usb device) However, that would be overkill to run the trezor firmware ! If their is interest, I could try to update my next platform release to support it.

      Delete
    2. yeahh for sure if you can just do it for the pi4. could be good for some people i know its not for the pi4 but why not and thank you again! Yannick really really i appreciate what you do for us . iam a pi4 and pizero w owner btw

      Delete
  56. Hello I just noticed that something is wrong with the firmware. It's OK with my pizero wh but won't work with the pizero 1.3

    ReplyDelete
    Replies
    1. It is strange because is should be the same board. The WH has the GPIO header presoldered

      Delete
  57. hello you think its possible to build a model t firmware for this board ? https://www.st.com/en/evaluation-tools/32f429idiscovery.html

    ReplyDelete
    Replies
    1. I am not sure that board is touch screen. Otherwise from a quick reading of the spec that would seem possible but that would be a totally different project of the one

      Delete
  58. Extremely well-documented and satisfying project! Small donation does not reflect my massive appreciation!

    ReplyDelete
    Replies
    1. Thank you very much for you good feedback and donation. This is always appreciated! I hope you had fun building it.

      Delete
  59. Hi, Please can I connect LCDTFT ili9341 320x240 ? pinout ? Thanks.

    ReplyDelete
  60. is this still stable using the pi zero w?
    does the trezor build disable the onboard wifi?

    ReplyDelete
    Replies
    1. Yes, in the default image I don't initialize the wifi nor the Bluetooth to improve security so it is safe to use the pi zero w. Personally, I use this model only for debugging or troubleshooting (via network) by using a special debug image.

      Delete
  61. Thanks for your great work and happy new year:) Do you accept donations in other currencies? Network fee on btc currently is almost as big as donation I would like to make.

    ReplyDelete
    Replies
    1. I have a paypal link also that you can use if this is easier. Thank you very much in advance!

      Delete
  62. Hi Yannick, I tested this on my Pi zero using firmware 1.9.3. I noticed a bug which caused it to crash.

    When using non-English characters in the passphrase (i.e. Japanese) the pitrezor process seems to crash with a flash of text on the screen. This is followed by the pitrezor process restarting. I also tried a passphrase using Chinese characters, the same thing happened.

    Note: I use Japanese characters on my existing Trezor wallet which is running firmware 1.8.1. It doesn't have any problem.

    ReplyDelete
    Replies
    1. Interesting, can you update your existing trezor to firmware 1.9.3 to compare. I will check this on my side too.

      Delete
  63. Does it work on 128x128 displays? I am using this one:

    https://www.amazon.ca/gp/product/B07RLPL7FS/ref=ppx_yo_dt_b_asin_title_o01_s01?ie=UTF8&psc=1

    I am able to output to my pc screen but the LCD is only displaying a white screen

    ReplyDelete
    Replies
    1. no it require oled of proper dimension to match firmware (128x64)

      Delete
  64. Great work man. Installed and works as intended although I couldn't create xlm wallets through stellar account viewer (webUSB) and it just keeps loading nor sync with exodus even with the latest bridge installed.

    Trezor Suite works fine too. Thanks again man

    ReplyDelete
    Replies
    1. Your welcome! I never tried stellar. If that help, I know that it works with electrum on a local PC.

      Delete
  65. I just bought the parts for this. I can't wait to set this up and keep my ERC20 tokens safe

    ReplyDelete
  66. Hi Yannick, awesome work! Based on your guide I am planning to build my own trezor as well. Could you just tell me, since I am not that skilled in the problematics, what happens if you will one day decide not to support the development of this beautiful solution any more? Will still my own built hardware trezor be still compatible with the online trezor interface? Or would I need to transfer my hardware bitcoin wallet somewhere else? Just trying to assess all the risks... Thanks a lot for your time!

    ReplyDelete
    Replies
    1. As long as trezor respects the same communication protocol it should work. I doubt they will change it for backward compatibility with old devices. In the eventuality of an issue, you can download and use the electrum wallet on your computer which can connect to the pitrezor/trezor. A third alternative could be to switch to a real trezor and recover the wallet with the exacts same seed words.

      Delete
  67. Hello , Can I do this with a raspberry pi pico or I need to do with a raspberry pi zero ?

    ReplyDelete
    Replies
    1. For the moment, this only work on the pi zero.

      Delete
  68. Is there a way to get the 240x240 1.3" hat from adafruit to work?

    ReplyDelete
    Replies
    1. not out-of-the-box. That would require to modify the code

      Delete
    2. Hi, thank you for making this and sharing with us. I have the same question about adafruit bonnet 1.3 TFT 240x240, how can I use it, can you share settings or code to change that so we can use this bonnet please? I'm willing to give donation for this to work ;-) Thanks

      Delete
  69. Thank you for your work. Do you have any plans in the future to have support for firmware for Trezor T?

    ReplyDelete
    Replies
    1. Not for the moment. The trezor T need a OLED with touchscreen which would increase the price to this project

      Delete
  70. Hello Yannick,
    First of all great work.
    I just made two of them one for me and one for a friend.
    I want to ask if its ok to edit pitrezor.config after storing some coins(lets say im using my computer screen for now and im going to buy a screen(an I2C or SPI OLED or even Adafruit bonnet) after some months.

    Thanks in advance!

    ReplyDelete
    Replies
    1. Their is no problem. You can edit the config anytime. This doesn't interfere with the normal operation of the trezor/pitrezor.

      Delete
  71. could this also work with an Kobo mini?

    ReplyDelete
    Replies
    1. I don't think so. I don't think kobo as open sourced their platform and I would doubt they have a good random number generator.

      Delete
  72. Hello, I would like to compliment you, your work is precious! As a designer I am proud to contribuite to this project, I made a case for the PiTrezor, let me know what you think of it https://www.thingiverse.com/thing:4749545
    I'm having troubles with your paypal link for the donation, let me know if it works for you

    ReplyDelete
    Replies
    1. Wow I am impress, very nice design! Mine is more thick but I will give your a shot eventually because it look like more compact. Adding the name on it (pitrezor) add to the elegance :)

      Thanks to tell me about the broken Paypal link. I refresh it. It should work now.

      Delete
  73. Anyone know for sure that the PiTrezor below Zero v1.3 does not work?

    ReplyDelete
  74. Hi, perfect project. I ordered the stuff to build one and am really looking forward. I have one question. Would it be possible to use a epaper screen on the pi for this, it would look really cool and the buttons could be on the back or sides...

    ReplyDelete
    Replies
    1. right now the driver for the epaper screen is not there but that would be great

      Delete
  75. from my understanding 128x128 SPI OLED will not work because of firmware.
    but, is it possible to edit the code to make it match ?
    alos, it possible, i dont mind if half of the screen will be off to match 128x64.
    is is possible ?
    where should i look ?

    this is the screen i am talking about: https://www.waveshare.net/wiki/1.44inch_LCD_HAT

    ReplyDelete
  76. many people ask this question but unfortunately I didn't added other drivers than for the 128x64 displays. To support the 128x128 or other format would required to add new driver for the device variation. I added a command line tool that could help to implement it in C.
    However, I am in the process of leverage the platform and the kernel. This should enable me to use the builtin linux lcd driver which cover more model.

    ReplyDelete
  77. New versions of Trezor firmware are now available.

    ReplyDelete
    Replies
    1. yes I know. I will try to perform the update and the tests for this week.

      Delete
  78. Since the pi 0 is many times faster than the Original trezor 1, is it possible to run trezor model t firmware except still have the trezor 1 interface? I want to store monero on the trezor but it seems like its not possible with the slower speed of the original trezor one... Is there any way I can bypass this?

    ReplyDelete
    Replies
    1. I second this. I wish to store Monero among other coins.


      Also, is it possible to use the Raspberry Pi Pico in the future?

      Delete
    2. For the model T, I was not considering whenit I started this project as it required a touchscreen color lcd and that was expensive. However, things have change since, price are going down and trezor support only some coins on the model T. So this is something I am considering to check in a near future.

      For the pico am not quite sure. Since their is no Linux OS, the emulator would have to be ported to the provided sdk directly.

      Delete
    3. I look forward to your future plans. Thank you for this project. I love it so much. If you can get the model T features that would be great but you've done a lot already :))

      Delete
  79. Replies
    1. No. The firmware is so small any today's SD cards will work.

      Delete
    2. Good evening,

      When do you think the latest firmware will be available to load on to the device? Also I just built mine today following your guide it works flawlessly! Expect donation soon, fun and cost saving project.

      Delete
    3. So, I have a few 128mb SD cards from flashing BTT 3d printer boards. With these cards it did NOT work. When I flashed an 8gb card, it worked.

      I read online that the pi zero cant be used in "gadget mode" with a card less than 4GB.

      However, I am having another issue, I have a few of these OLEDS:

      https://www.amazon.com/gp/product/B076PM5ZSJ/ref=ppx_yo_dt_b_search_asin_title?ie=UTF8&th=1

      I have used them in other projects without issue, however, they are not working for this. I have tried both I2C options in the config file to no avail. Is it possible they need to be connected to different pins?

      Delete
    4. For the oled, it seems they use an i2c address that is different from the standard. Contact my in private. I will try to send you a new build to test if we can make it work.

      Delete
  80. I seem to be having trouble with the actual connections of the device and I can't find a fix. The image works perfectly and displays, however the Trezor website wont recognize it. I've tried every single USB cable I own and bought high quality ones hoping to fix the issue, but no dice.
    Any idea what might be the problem here? It only seems to be a connection problem. I'm using the most recent firmware for the PiTrezor and have reimaged and tried virtually everything I can think of.

    ReplyDelete
  81. This comment has been removed by the author.

    ReplyDelete
  82. Hi! I uploaded a video of the building of the pitrezor with the case I designed. Check it out: https://youtu.be/jHhMpy6VFOI

    ReplyDelete

Please share your thoughts