element14 Community
element14 Community
    Register Log In
  • Site
  • Search
  • Log In Register
  • About Us
  • 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
Experts, Learning and Guidance
  • Technologies
  • More
Experts, Learning and Guidance
Ask an Expert Forum Trying to understand NFC ASK Modulation
  • Blog
  • Forum
  • Documents
  • Leaderboard
  • Files
  • Members
  • Mentions
  • Sub-Groups
  • Tags
  • More
  • Cancel
  • New
Join Experts, Learning and Guidance to participate - click to join for free!
Actions
  • Share
  • More
  • Cancel
Forum Thread Details
  • State Not Answered
  • Replies 19 replies
  • Subscribers 288 subscribers
  • Views 2928 views
  • Users 0 members are here
  • raspberry pico
  • nfc
  • nfc-a
Related
See a helpful answer?

Be sure to click 'more' and select 'suggest as answer'!

If you're the thread creator, be sure to click 'more' then 'Verify as Answer'!

Trying to understand NFC ASK Modulation

BigG
BigG over 2 years ago

According to my Google search, NFC uses ASK modulation to transmit data:

https://www.rfwireless-world.com/Tutorials/NFC-Near-Field-Communication-tutorial.html

https://www.rfwireless-world.com/Tutorials/NFC-Modulation-and-NFC-Coding.html

Which I have interpreted as the following where the "Mixing Circuit" includes the NFC tuned antenna and two picoFarad capacitors... but what else is needed.

image

As a non electronics engineer I am trying to work out a minimum circuit required.

Then my lofty intentions is to use a Raspberry Pi Pico to generate my clock signal using PIO and as there is also a Manchester Encoding PIO example, I will attempt to use that too.

So could this work, I wonder?

  • Sign in to reply
  • Cancel

Top Replies

  • jc2048
    jc2048 over 2 years ago +3
    I'm far from being an expert, but this is my understanding of the basic principles in case it helps (this is 20 years out of date, but the basic stuff won't have changed too much). I think I'm duplicating…
  • michaelkellett
    michaelkellett over 2 years ago +2
    This will be harder than you think ! A long time ago (2006) I did work designing antennae for MIFARE (same thing, more or less) and it's quite tricky. NXP still are fairly active in this field and…
  • scottiebabe
    scottiebabe over 2 years ago +2
    It is possible for sure, but its not really a project I would recommend taking on without an oscilloscope. So if your looking for an excuse to purchase an MXO4 scope, id say go for it ;) I am Rx/Tx…
Parents
  • shabaz
    0 shabaz over 2 years ago

    Hi Colin,

    If all you require is ASK, then the circuit would be just a gate or switch (if the 13.56 MHz signal is not coming from the Pico). If you're generating the 13.56 MHz signal from the Pico somehow, then for ASK it just needs to be switched on/off in software. 

    I've no idea if this would work though, I've never studied NFC at this low-level, and don't know if it requires bidirectional comms or anything else. Also, the output signal would be very low, since the Pico GPIO can't provide a lot of power, so then you'd need an amplifier.

    The capacitor(s)/inductor usually form a resonant circuit, but it wouldn't ordinarily be connected to a GPIO. The resonant circuit is part of an oscillator, which is usually created with (say) a transistor of some sort, i.e. it's a different topology that isn't contained within the Pico, and not normally directly drivable by the Pico either, instead it becomes part of a frequency synth circuit (which isn't all that easy to build without using a dedicated chip). In your case, if you're trying to use a Pico for this, then you may as well connect an amplifier to the Pico, and drive the inductor with that. I think it's unlikely to work though (but I don't know for sure! I could be totally wrong, since I know ~zero about this), I'm guessing NFC protocol is more complex.

    • Cancel
    • Vote Up +1 Vote Down
    • Sign in to reply
    • Verify Answer
    • Cancel
Reply
  • shabaz
    0 shabaz over 2 years ago

    Hi Colin,

    If all you require is ASK, then the circuit would be just a gate or switch (if the 13.56 MHz signal is not coming from the Pico). If you're generating the 13.56 MHz signal from the Pico somehow, then for ASK it just needs to be switched on/off in software. 

    I've no idea if this would work though, I've never studied NFC at this low-level, and don't know if it requires bidirectional comms or anything else. Also, the output signal would be very low, since the Pico GPIO can't provide a lot of power, so then you'd need an amplifier.

    The capacitor(s)/inductor usually form a resonant circuit, but it wouldn't ordinarily be connected to a GPIO. The resonant circuit is part of an oscillator, which is usually created with (say) a transistor of some sort, i.e. it's a different topology that isn't contained within the Pico, and not normally directly drivable by the Pico either, instead it becomes part of a frequency synth circuit (which isn't all that easy to build without using a dedicated chip). In your case, if you're trying to use a Pico for this, then you may as well connect an amplifier to the Pico, and drive the inductor with that. I think it's unlikely to work though (but I don't know for sure! I could be totally wrong, since I know ~zero about this), I'm guessing NFC protocol is more complex.

    • Cancel
    • Vote Up +1 Vote Down
    • Sign in to reply
    • Verify Answer
    • Cancel
Children
No Data
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