From cf3dcdc9e667629ca29039797b81c80d7594110c Mon Sep 17 00:00:00 2001 From: Stavros Korokithakis Date: Fri, 5 Apr 2024 02:53:20 +0300 Subject: [PATCH] Updates --- content/SUMMARY.md | 1 + .../details-about-my-sapphire-pro.md | 16 ++++++++ content/maker-things/index.md | 1 + .../cloning-cards-fobs-with-a-proxmark3.md | 37 ++++++++++++++----- 4 files changed, 46 insertions(+), 9 deletions(-) create mode 100644 content/maker-things/details-about-my-sapphire-pro.md diff --git a/content/SUMMARY.md b/content/SUMMARY.md index 4526be6..9593122 100644 --- a/content/SUMMARY.md +++ b/content/SUMMARY.md @@ -37,6 +37,7 @@ - [🗈 Mini Drak build condensed instructions](model-build-notes/mini-drak-build-condensed-instructions.md) - [📁 Maker things](maker-things/index.md) - [🗈 Battery discharge curves](maker-things/battery-discharge-curves.md) + - [🗈 Details about my Sapphire Pro](maker-things/details-about-my-sapphire-pro.md) - [🗈 Electronics tips](maker-things/electronics-tips.md) - [🗈 GRBL_ESP32 tips](maker-things/grbl-esp32-tips.md) - [🗈 How to properly level your 3D printer](maker-things/how-to-properly-level-your-3d-printer.md) diff --git a/content/maker-things/details-about-my-sapphire-pro.md b/content/maker-things/details-about-my-sapphire-pro.md new file mode 100644 index 0000000..9aa4726 --- /dev/null +++ b/content/maker-things/details-about-my-sapphire-pro.md @@ -0,0 +1,16 @@ +# Details about my Sapphire Pro + +My Sapphire Pro runs the MKS Robin Nano 1.2 board. Details on that board (pinouts, diagrams, etc) are here: + +https://github.com/makerbase-mks/MKS-Robin-Nano-V1.X/wiki/Wiring_Pinout_and_Size + +I've installed TMC2209 drivers and wired all their UARTs up to the same pin, PA13. Their addresses for X, Y, Z, and E are 0, 1, 2, and 3, respectively. It doesn't work with Klipper, I'm only getting the error message `TMC stepper_x failed to init: Unable to read tmc uart 'stepper_x' register IFCNT`. Nothing I've tried has worked. If you managed to make this work, please email me. + +I've installed the SFS 2.0 motion runout sensor on MT_DET1 and MT_DET2. This means that the motion sensor pin is PE6, and the switch sensor is PA4. That doesn't work either, Marlin keeps thinking the printer has run out of filament. + +* * * + +

+Last updated on April 05, 2024. For any questions/feedback, +email me at hi@stavros.io. +

diff --git a/content/maker-things/index.md b/content/maker-things/index.md index e9a0c97..3434a77 100644 --- a/content/maker-things/index.md +++ b/content/maker-things/index.md @@ -3,6 +3,7 @@ Click on a link in the list below to go to that page: 1. [Battery discharge curves](../../maker-things/battery-discharge-curves.html) +1. [Details about my Sapphire Pro](../../maker-things/details-about-my-sapphire-pro.html) 1. [Electronics tips](../../maker-things/electronics-tips.html) 1. [GRBL_ESP32 tips](../../maker-things/grbl-esp32-tips.html) 1. [How to properly level your 3D printer](../../maker-things/how-to-properly-level-your-3d-printer.html) diff --git a/content/software/cloning-cards-fobs-with-a-proxmark3.md b/content/software/cloning-cards-fobs-with-a-proxmark3.md index 85370ee..b404252 100644 --- a/content/software/cloning-cards-fobs-with-a-proxmark3.md +++ b/content/software/cloning-cards-fobs-with-a-proxmark3.md @@ -28,28 +28,47 @@ lf em 410x reader You should be done, but I haven't tested it as I don't have a Paxton reader handy. -### Related reading - -* [Iceman's Proxmark3 firmware (use this one)](https://github.com/RfidResearchGroup/proxmark3) -* [How to copy Paxton fobs using an RFIDler](https://gist.github.com/natmchugh/18e82761dbce52fa284c87c190dc926f#getting-hold-of-hitag2-tags) -* [ How to copy, read and write Paxton fobs and cards with a Proxmark ](https://badcfe.org/how-to-paxton-with-proxmark/) ## Cloning MiFare cards See [Cloning a Mifare Classic 1K](https://www.gavinjl.me/proxmark-3-cloning-a-mifare-classic-1k/). -## Card cloner -I have an AliExpress cloner which clones LF cards. Unfortunately, whenever it clones a card, it sets the password bit on it. To remove it with the Proxmark3, run: +## Card cloner password + +I have an AliExpress cloner which clones LF cards. Unfortunately, whenever it clones a card, it sets the password bit on it. This makes the card not respond to writes/wipes without the password (it just keeps having the same data, no matter what you write). + +To remove it with the Proxmark3, run: ``` -lf t55 wipe --p 51243648 +lf t55 wipe -p 51243648 ``` +## Cloning T5577 cards + +Read the card with: + +``` +lf em 410x reader +``` + +Write with: + +``` +lf EM 410x clone --id +``` + + +## Related reading + +* [Iceman's Proxmark3 firmware (use this one)](https://github.com/RfidResearchGroup/proxmark3) +* [How to copy Paxton fobs using an RFIDler](https://gist.github.com/natmchugh/18e82761dbce52fa284c87c190dc926f#getting-hold-of-hitag2-tags) +* [ How to copy, read and write Paxton fobs and cards with a Proxmark ](https://badcfe.org/how-to-paxton-with-proxmark/) + * * *

-Last updated on February 24, 2024. For any questions/feedback, +Last updated on March 04, 2024. For any questions/feedback, email me at hi@stavros.io.