How to Program NFC Tags/Cards
7:31
21 күн бұрын
Пікірлер
@franklinokeke8369
@franklinokeke8369 Күн бұрын
That great. Do you have a .grc file for it? or a video explaining it? I will appreciate that.
@franciskiran1380
@franciskiran1380 4 күн бұрын
Awesome
@ramtripathi1621
@ramtripathi1621 5 күн бұрын
Any resources would you suggest to learn working with this SDR?
@aymanalamin3367
@aymanalamin3367 6 күн бұрын
السلام عليكم ورحمة الله وبركاته Please we want a gnu radio program using hackrf to send and receive a digital video signal Using digital modulation qam or qpsk detailed explanation و بارك الله فيك
@dolbodolb6173
@dolbodolb6173 8 күн бұрын
You state that Periodic = power signal. But If Period -> infinity, then any signal could be considered "periodic" with period = infinity? What's the distinction then. Isn't white noise a non-periodic power signal?
@sqtrlixghtayeza
@sqtrlixghtayeza 9 күн бұрын
Assalamlaikum sir.i want some help in this SDR could you please share your contact number .Thank you in advance
@batuhanozyurek8153
@batuhanozyurek8153 11 күн бұрын
hello i want to make rx and tx design at plutosdr and gnuradio using 256 qam any suggestion can help me so much
@kofiowusu6373
@kofiowusu6373 12 күн бұрын
Great, when is the full video coming out. Also is possible to share the gnu radio file.
@usmankiyani
@usmankiyani 12 күн бұрын
Good catch..
@usmankiyani
@usmankiyani 12 күн бұрын
Nice explanation
@usmankiyani
@usmankiyani 12 күн бұрын
Good work
@usmankiyani
@usmankiyani 12 күн бұрын
Nice work sir
@usmankiyani
@usmankiyani 12 күн бұрын
Superb
@eustache_dauger
@eustache_dauger 13 күн бұрын
Can this be used to detect students wearing wireless earbuds during exam?
@Muhammed_Mustaqim
@Muhammed_Mustaqim 13 күн бұрын
I think you can, I need to try it for myself, it should work because earbuds continuously transmit at hopping sequence
@anlpereira
@anlpereira 15 күн бұрын
Can you share the .grc file please. Thanks
@Horrorshotproudcast
@Horrorshotproudcast 16 күн бұрын
But song is hindi 😂😂😂
@ptrube
@ptrube 16 күн бұрын
hi i was wondering if you have any problems running the latest version of gnu radio in wondows 11 24h2 .when i run the program nothing happens thx
@Muhammed_Mustaqim
@Muhammed_Mustaqim 16 күн бұрын
Gnuradio is not native to windows, so I don't know, I personally use either Mac or linux
@kashi8515
@kashi8515 16 күн бұрын
Good Morning Sir, Would like to connect to learn further GNU pl. May i know how to connect
@chemdimon
@chemdimon 17 күн бұрын
thank a lot for such informative video! what do you think, is it possible to use output power amplifier between sdr and antenna to make signal stronger?
@Muhammed_Mustaqim
@Muhammed_Mustaqim 16 күн бұрын
Yes, you can
@usmankhan-xi4dl
@usmankhan-xi4dl 17 күн бұрын
Can you add in airspy server?
@Muhammed_Mustaqim
@Muhammed_Mustaqim 16 күн бұрын
I haven't tried it
@ShawezShaikh-v9c
@ShawezShaikh-v9c 19 күн бұрын
thanks dude , you helped me twice!!
@Ferret488
@Ferret488 21 күн бұрын
Where are the links? I tried to search for RF Analyzer but nothing comes up.
@Muhammed_Mustaqim
@Muhammed_Mustaqim 20 күн бұрын
f-droid.org/en/packages/com.mantz_it.rfanalyzer/ Download the 1.5MB one
@dieselphiend
@dieselphiend 22 күн бұрын
Nice collection. I have one HackRF One R9 from Great Scott Gadgets, one Hack RF One clone with Portapack, a PandWaRF, and a bunch of small SDR USB sticks. Always looking to add more, and I've been eyeballing the B210 Mini SDR LibreSDR. So many good SDRs these days.
@nashnash4941
@nashnash4941 23 күн бұрын
How to install mirage?
@Muhammed_Mustaqim
@Muhammed_Mustaqim 22 күн бұрын
Just make a bootable thumb drive of DragonOS, and it's there
@tonkofonko
@tonkofonko 25 күн бұрын
Great. Please make video for how to clone RFID 13.56 mhz cards like MifareDesfire EV1 or EV2
@earndaily499
@earndaily499 25 күн бұрын
How to writte card data format
@נתאיבןיוסף-ו9ש
@נתאיבןיוסף-ו9ש 27 күн бұрын
Hi Muhammed, thank you very much for your videos! they are awesome! I have a question.. can i get your code that you write in the Embedded Python Block at the middle? the one that you worte in it your name.. we will be greatful for this!
@Muhammed_Mustaqim
@Muhammed_Mustaqim 26 күн бұрын
""" Embedded Python Blocks: Each time this file is saved, GRC will instantiate the first class it finds to get ports and parameters of your block. The arguments to __init__ will be the parameters. All of them are required to have default values! """ import numpy as np import pylab from gnuradio import gr import pmt class msg_block(gr.basic_block): # other base classes are basic_block, decim_block, interp_block """This block converts strings from the QT GUI Message Edit Box to uint8 vectors""" def __init__(self): # only default arguments here """arguments to this function show up as parameters in GRC""" gr.basic_block.__init__( self, name='Embedded Python Block', # will show up in GRC in_sig=None, out_sig=None ) self.message_port_register_out(pmt.intern('msg_out')) self.message_port_register_in(pmt.intern('msg_in')) self.set_msg_handler(pmt.intern('msg_in'), self.handle_msg) def handle_msg(self, msg): nvec = pmt.to_python(msg) self.message_port_pub(pmt.intern('msg_out'), pmt.cons(pmt.make_dict(), pmt.pmt_to_python.numpy_to_uvector(np.array([ord(c) for c in nvec], np.uint8)))) def work(self, input_items, output_items): pass
@valdenirseverino5824
@valdenirseverino5824 28 күн бұрын
What software did you use?
@Muhammed_Mustaqim
@Muhammed_Mustaqim 28 күн бұрын
Android app RF analyzer
@alistudio18042
@alistudio18042 29 күн бұрын
Thanks for such a nice video on Power Splitter. Can this device be used as a power combiner? If yes, what happens if we provide 0.5 W to both Port 1 and Port 2? Will we get a combined output of 1 W on Port 1, or will there be losses? If it cannot be used as a combiner, what types of splitters can function as combiners and vice versa?
@TheElectronicDilettante
@TheElectronicDilettante Ай бұрын
Ettus USRP has been on my wish list forever. Good thing everything it is basically is a Xilinx with AD 9361. I’ll see your Ettus and Raise you a JupyterSDR- Analog Device-ADRV9002. Does more than I know what to do with
@Muhammed_Mustaqim
@Muhammed_Mustaqim 29 күн бұрын
But Ettus is a pioneer of SDRs,
@unoproject20
@unoproject20 Ай бұрын
Can i add booster/amplifier 2g?
@Muhammed_Mustaqim
@Muhammed_Mustaqim Ай бұрын
Yes, Just attached an amplifier with sma port with the operating frequency range of GSM Band
@Anas-dh5js
@Anas-dh5js 29 күн бұрын
Hello sir can you share sdr equipment name plz
@tomcarlos6291
@tomcarlos6291 Ай бұрын
Thank you for your tutorial. I draw the flowchart in my own GRC and it does work. One question: I was wondering about the very low value at the last "multiple const". I played with several numbers and of course came to the same value of about 45u. Why is that so? Does the dat-file contain a "very loud" signal? Sould one try to keep everything below 0dB to find a "good" value? Or are there any other reasons?
@Muhammed_Mustaqim
@Muhammed_Mustaqim Ай бұрын
It might be due to .dat file, do try it with different values and also let me know,
@tomcarlos6291
@tomcarlos6291 Ай бұрын
@@Muhammed_Mustaqim Well thank you. I found out that 45u (or your value 47.62u) is ok. 50e-6 produces already an overmodulated signal, and 30e-6 is too quiet.
@MrTahir-fy1wl
@MrTahir-fy1wl Ай бұрын
Brother is Hackrf-one available in pakistan. If yes then how much it costs. Also how much differance is between RTL-sdr (~3k pkr) and HackRf One
@Muhammed_Mustaqim
@Muhammed_Mustaqim 29 күн бұрын
No, HackRF is not available,unless u get it from AliExpress
@drsohaibzkhan
@drsohaibzkhan Ай бұрын
Great learning!!
@Muhammed_Mustaqim
@Muhammed_Mustaqim Ай бұрын
Coming from an educator, researcher, scholar, it means alot
@brianbajamunde5895
@brianbajamunde5895 Ай бұрын
Hi Can you send me tutorial willing to pay here,
@tonkofonko
@tonkofonko Ай бұрын
What should I buy for create 4G Network with custom opensource features specified for mobile calling with good signal and allowed mobile data with internet via my wifi router ?
@Muhammed_Mustaqim
@Muhammed_Mustaqim Ай бұрын
go with USRPs, if no budget constraints, next is Limesdr, very good platform,
@iamfusta
@iamfusta Ай бұрын
Amazing video, thank you very much!
@wizardgmb
@wizardgmb Ай бұрын
Results are absolutely meaningless without injecting dc power for the antenna's built-in LNA.
@sikirachybeats5474
@sikirachybeats5474 Ай бұрын
Assalamu alaikum Please how can I protect myself from this attack
@imranebennageh7592
@imranebennageh7592 Ай бұрын
great videos Muhammed. I would like if the clever.py file could jam the 4G internet by specifying the bandwidth in json file
@tomcarlos6291
@tomcarlos6291 Ай бұрын
Why do the Low pass filter and the Time Sink have a sample rate at 256k and not 64k since they both follow the Ration Resampler which output is 256k/4?
@Muhammed_Mustaqim
@Muhammed_Mustaqim Ай бұрын
After rationale resampler, all the rest of the block will follow the same decimated samp_rate, even though it says samp_rate
@tomcarlos6291
@tomcarlos6291 Ай бұрын
@@Muhammed_Mustaqim Never knew this. Thank you!
@julianjoseph1243
@julianjoseph1243 Ай бұрын
where can I download the pre compiled tools please? My usr/src doesnt contain mirage
@Muhammed_Mustaqim
@Muhammed_Mustaqim Ай бұрын
Make a bootable thumb drive of DragonOS, and boot your machine, everything is there
@julianjoseph1243
@julianjoseph1243 Ай бұрын
@@Muhammed_Mustaqim Thanks for all your efforts. Really appreciate it.
@ArslanKhan-s6p8f
@ArslanKhan-s6p8f Ай бұрын
Lovely! ❤
@kaywhygg6980
@kaywhygg6980 Ай бұрын
Whats the range for this dongle? How can you upgrade the range
@roywongsotaruno
@roywongsotaruno Ай бұрын
what about noise and bias if using it as sdr?, remember that its cheap and design for tv dongle, i looking for cheap one using fitipower tuner
@moxinog
@moxinog Ай бұрын
Really helpful video Sir!
@usamahirsalan8766
@usamahirsalan8766 Ай бұрын
To the Point Explanation. Very well explained.
@Daniel-qo9uv
@Daniel-qo9uv Ай бұрын
Hi, Can it collect the phone number ? Thanks.
@moxinog
@moxinog Ай бұрын
Hats off sir, really well explained!