IoT Edge Communication #IoT
7:04
Жыл бұрын
Exception handling in Python
10:36
Python dictionaries
17:49
Жыл бұрын
Control Arduino using Python #iot
11:18
Python and Flask backend development
19:14
Getting weather data in Python
14:34
2 жыл бұрын
Triggering HTTP requests with Python
12:38
Step out
3:28
2 жыл бұрын
Siliguri - Diwali night - Drone shot
2:38
Exploring a small cycling trail
2:53
Mahananda barrage - drone shots
2:24
Siliguri - Noukaghat - drone shots
1:17
The spur of river Teesta
3:17
4 жыл бұрын
Cellular IoT - Some ideas
13:50
4 жыл бұрын
Пікірлер
@yorlysflores6564
@yorlysflores6564 Ай бұрын
Hello, your video is excellent. I have a question. If I wanted to read two ports at the same time using pyserial, how would that be? Could you help me? Thanks.
@Avirup171
@Avirup171 23 күн бұрын
Hi. That should be possible, however I need to check it out. I’ll check and update you on the same.
@yorlysflores6564
@yorlysflores6564 4 күн бұрын
hi @@Avirup171 , how are you? Ok, I appreciate it.
@Avirup171
@Avirup171 4 күн бұрын
@@yorlysflores6564 Hi. I’m doing fine. Was involved in some personal projects. Will be back here on KZbin soon.
@pkthevio
@pkthevio 2 ай бұрын
import serial line 1, in <module> import serial ModuleNotFoundError: No module named 'serial' ~ I've installed pyserial in everyway possible and even tried unistalling and installing it again. I tried using sudo to put it in dev mode to get it back working to only focus on the microcontroller. None of them worked and I still get the no module named serial error! what should I do?
@MarkHall-d1p
@MarkHall-d1p 2 ай бұрын
Rocio Branch
@mixme8655
@mixme8655 3 ай бұрын
new subscriber thank you for sharing sir
@yonathegod
@yonathegod 4 ай бұрын
Thank you for the amazing tutorial!
@oladojasirajudeen.1215
@oladojasirajudeen.1215 4 ай бұрын
Wow this works, thanks so much
@YPat-uz7zp
@YPat-uz7zp 5 ай бұрын
Thank you brother, it worked. simple explanation.
@IesKorpershoek
@IesKorpershoek 5 ай бұрын
How do I bridge my local broker too two external brokers ? Simple put in 2 connection sections?
@kushagrakumar1992
@kushagrakumar1992 6 ай бұрын
bohot acha
@v24blog46
@v24blog46 7 ай бұрын
import serial Ple help ! File "c:/Users/youtb/Downloads/vehicle counting/CCom7.py", line 1, in <module> import serial ModuleNotFoundError: No module named 'serial'
@markestz9402
@markestz9402 4 ай бұрын
did you install a pyserial? in terminal:pip install pyserial
@unik8985
@unik8985 7 ай бұрын
Hello sir, May I ask if do you know how to fix the " Access is Denied " problem? I've been dealing with it for the past 12 hours. Thank you in advance!
@Avirup171
@Avirup171 7 ай бұрын
Can you make sure that the port isn’t being used anywhere else?
@lalithkumar2474
@lalithkumar2474 8 ай бұрын
Why not use esp ?
@schm0sbyy
@schm0sbyy 8 ай бұрын
I am trying to send a message to the IoT hub as well. I understood that the azure.iot.device.aio is for the async instance of IoT Hub Device client objects. However, if there is no internet connection, the device_client.send_message(data) will keep on retrying until the internet connection is restored which is a bit counter intuitive with the nature of its asynchronicity. Without internet connection, the device_client.send_message(data) becomes synchronous and will halt other operations. Is there a way to overcome this? I tried using threads but the issue persists.
@algercomalekmalki7997
@algercomalekmalki7997 8 ай бұрын
Thank you !
@cd-mar
@cd-mar 8 ай бұрын
Thank you !!! wonderful !! I can send data to my ardruino !!! You save my brain 🧠
@giovannifernandesgarciados9534
@giovannifernandesgarciados9534 9 ай бұрын
Thank you so much!
@kaniobed28
@kaniobed28 9 ай бұрын
Thank you very much for the tutorial.
@yrnn23
@yrnn23 9 ай бұрын
hello ı have some question . I want to use in virtual serial ports how can ı make
@craigthepony6259
@craigthepony6259 9 ай бұрын
how? I literally just get a syntax error
@Avirup171
@Avirup171 9 ай бұрын
Can you please paste the error once?
@omarcruz6326
@omarcruz6326 11 ай бұрын
hello Avirup. Great video !!! Unfortunately, I copy/pasted your code, the only thing that I changed was the connection string and even like that it didn"t work :( The error message says: 34 "asyncio.run() cannot be called from a running event loop") Any idea ?
@Avirup171
@Avirup171 11 ай бұрын
What issues are you facing? If possible let’s connect over a quick discovery call at Topmate. You can book a slot for free and I can help you out over the call. topmate.io/avirup171
@Avirup171
@Avirup171 11 ай бұрын
HI. I just tested my code again. It seems fine. You can also reach out to me directly on my email [email protected] and I should be able to guide you. Thanks.
@arifagustyawan1456
@arifagustyawan1456 11 ай бұрын
Hello SIr. I have watched your video. I have a problem related to python serial and barcode scanner. I have a USB Barcode Scanner and plug into my Ubuntu PC. The Scanner is work propperly, since when I used it, it will output the reuslt of barcode on every cursor i put (such as terminal, vscode, etc.) but the `received_string` variable is always empty. The script is not give any error. Do you have any idea? ``` import serial import time SerialObj = serial.Serial("/dev/ttyS0", 9600) time.sleep(3) SerialObj.timeout(3) print("Starting") while True: received_string = SerialObj.readline() print("Received: ", received_string) SerialObj.close() ``` I want to retrieve the data using Serial with the code, so the variable `received_string` will be assign with the value of the scanner data, but I always get `Received: b''`.
@agnichatian
@agnichatian Жыл бұрын
is the call ser.readline() a blocking call ? if so then how to do it without blocking the rest of the application ?
@Avirup171
@Avirup171 11 ай бұрын
Its a blocking call. One approach simply is to check if something is available in the serial first and then read it. Use an if statement to check ----- if (Serial.available() > 0) then continue to read else continue with other parts.
@sajadmohammadi3155
@sajadmohammadi3155 Жыл бұрын
Hello, I want to set the parameters of a variable frequency drive using a node through RS485 serial communication. In this project, I need to use the hexadecimal codes of an industrial drive and control the drive using the hexadecimal codes. Can you help me with this project with node-red-node-serialport?
@Avirup171
@Avirup171 11 ай бұрын
Hi. I can look into it. Please block a time for me at topmate.io/avirup171
@Dasol0135
@Dasol0135 Жыл бұрын
I like where you are going with this, could you turn your explanations into a project that we could follow along ie. a bmp280 sensor connected to a pi pico plugged into a pc, reading the data into file, then shipping the data to the cloud etc....
@Avirup171
@Avirup171 Жыл бұрын
Yes, that’s in the pipeline for sure. Will do it. Thanks for the recommendation
@gustavolimay
@gustavolimay Жыл бұрын
Superb! Thanks man!
@exclusiveforcroma8126
@exclusiveforcroma8126 Жыл бұрын
Clearly understood... thankyou
@exclusiveforcroma8126
@exclusiveforcroma8126 Жыл бұрын
theri level ... .Easy but superbly explained .
@exclusiveforcroma8126
@exclusiveforcroma8126 Жыл бұрын
Thanks Bro.... this much clearly no one told me.... superbly understood
@edinetgrunhed6000
@edinetgrunhed6000 Жыл бұрын
simple but concise!! thank u sir
@hellobro1461
@hellobro1461 Жыл бұрын
🛑🛑🛑🛑🛑🛑🛑🛑How to query USB port using python
@Avirup171
@Avirup171 Жыл бұрын
Can you please help me out with the details?
@priyangshusarkar6325
@priyangshusarkar6325 Жыл бұрын
👍✨
@TECHCODETWINS
@TECHCODETWINS Жыл бұрын
Hello sir, i have seen so much videos on youtube and didn't find any useful video except this. i am stuck at a line and the line is SerialException: could not open port 'COM4': PermissionError(13, 'Access is denied.', None, 5) how to solve this problem i have tried everything but didn't get solution please help me
@Avirup171
@Avirup171 Жыл бұрын
Is the same com port being used by any other application?
@aasifajawsi1928
@aasifajawsi1928 Жыл бұрын
@@Avirup171 I have also same problem. I used COM3 port in arduino IDE only. What can I do to overcome this problem sir?
@Avirup171
@Avirup171 Жыл бұрын
Hi. Ideally if the same port is accessed by another application, this problem happens. Since you are facing this issue, it will be gereat if we can get on a call to resolve this issue. Feel free to block my callender for a free quick chat. topmate.io/avirup171
@raniakhaled5523
@raniakhaled5523 Жыл бұрын
can do communiction between arduino and python wireless communicathion ?
@Avirup171
@Avirup171 Жыл бұрын
Yes it will work
@sumitmishra3037
@sumitmishra3037 Жыл бұрын
best explainaition regarding this project
@Avirup171
@Avirup171 Жыл бұрын
Thanks a lot Sumit.
@avijitdas114
@avijitdas114 Жыл бұрын
Very informative. Keep it up!
@Avirup171
@Avirup171 Жыл бұрын
Thank you Avijit Da.
@mayureedas8087
@mayureedas8087 Жыл бұрын
Thanks for giving such amazing information ❤
@Avirup171
@Avirup171 Жыл бұрын
Thanks a lot Mayuree.
@prakashgandhi93
@prakashgandhi93 Жыл бұрын
can i know about the full working of the project
@12345charliebrown
@12345charliebrown Жыл бұрын
Good morning sirs
@anandkumarrohal5761
@anandkumarrohal5761 Жыл бұрын
Keep going
@Avirup171
@Avirup171 Жыл бұрын
Thanks a lot.
@kolboy2028
@kolboy2028 2 жыл бұрын
Docker plz!
@Avirup171
@Avirup171 2 жыл бұрын
Sure. Next year will create a series on the same. Docker, Python and IoT. Thanks for the feedback.
@merazgaammar3134
@merazgaammar3134 2 жыл бұрын
how tosend data from lora node (heltec lora esp32 v2) to gateway (heltec wireless bridge wifi/ble --lora model htit-tb)
@Avirup171
@Avirup171 2 жыл бұрын
I've not specifically used this module, but if gateways support message sending from its config portal, it can allow. However, LoRa gateway is essentially using the same chipset. So you should be in a position to program it explicitely at FW level to do it. I will have a look at the module you mentioned and get back too.
@TheSumitBanik
@TheSumitBanik 2 жыл бұрын
Beautifully explained 👌 Expecting a FastAPI based video soon.
@Avirup171
@Avirup171 2 жыл бұрын
Thanks a lot. Will definitely look into it.
@rainejianoran908
@rainejianoran908 2 жыл бұрын
hello sir thank you for this video. but i have questions. where can i find you? thank you
@Avirup171
@Avirup171 2 жыл бұрын
You can reach out to me in LinkedIn “avirup171”
@devilshome9987
@devilshome9987 2 жыл бұрын
what if the address of two LoRa nodes is same , will they communicate of not with each other ?
@doozybrat
@doozybrat 2 жыл бұрын
Nice!
@Avirup171
@Avirup171 2 жыл бұрын
Thanks mate!
@manix7172
@manix7172 3 жыл бұрын
"Khujei pacchina maltake" "Ah khujei pacchina sundor jinis take"
@Avirup171
@Avirup171 3 жыл бұрын
Ha ha ...... I get that 😅😅😅
@hariadhikari6651
@hariadhikari6651 3 жыл бұрын
Beautiful piece of work,the background score is well synchronized with the video
@Avirup171
@Avirup171 3 жыл бұрын
Thanks a lot sir.
@manojsundaray3837
@manojsundaray3837 3 жыл бұрын
Jai Jawan Jai kisan Jai vigyan Mera Desh Bharat Mahaan I'm pure Indian Fan
@souviksarkar8050
@souviksarkar8050 3 жыл бұрын
Bro missed it again but probably you will drag me through for the next ride 😂
@Avirup171
@Avirup171 3 жыл бұрын
Bro next time for sure you should attend it. And lets go riding on weekends.
@toxicrider6321
@toxicrider6321 3 жыл бұрын
🔥❤️
@Avirup171
@Avirup171 3 жыл бұрын
Thanks a lot sir.