Can I control a servo using this over a serial connection to arduino ide…. If yes then can u pls make a vid on that
@orlin3694 ай бұрын
Can you please share the code from the Arduino? I am interest in code that communicate with Excel.
@stoneddayandnight4 ай бұрын
Thanks a ton Sir !
@Jenyfal_Sampson4 ай бұрын
You're always welcome dear🙂
@lightinrhythm85485 ай бұрын
ANGREJ KI AULAMMM
@pkkushwaha46459 ай бұрын
Hi brother How to contact you??
@mushi17211 ай бұрын
sir you have taken example of FF and 01, then this code is ok..but if inputs are FF and 04 then AL should be 03 and carry must be 1. but in your program u r not reseting the value of AL, then ADC AL,AL will generate 07, which is invalid...what to do??
@mushi17211 ай бұрын
seriously sir..I have seen many video to clear this addition..but your explanation is best in all...thanku
@antonelliaraujo3533 Жыл бұрын
This was very helpful sir What is the code to write a routine that receives in register pair HL the first address of a vector of bytes and the accumulator its length. then find the minimum and store its value in register C and its position in register DE
@mandylangosh Жыл бұрын
😑 "PromoSM"
@yeruvabaludu1099 Жыл бұрын
Sir can suggest gate books and how to prepare for the exam
@eeshapai9768 Жыл бұрын
Can you please explain how to correct the error L6236E No section matches selector no section to be FIRST/LAST
@poisonousprince2377 Жыл бұрын
What is the need of Loop B Loop?
@Jenyfal_Sampson Жыл бұрын
To my knowledge, it is just to execute that line repeatedly until the STOP button is pressed.
@poisonousprince2377 Жыл бұрын
@@Jenyfal_Sampson ok thanks, subbed!
@omenechris46982 жыл бұрын
You are a born instructor and God's sent, thank you very much. It is just that the voice of the early part of this GREAT Tutorial was not very clear, but you improved much. Remain Blessed Jenyfal!
@Jenyfal_Sampson2 жыл бұрын
Am happy for your positive encouragement and support, if it was worth it.
@buvanesh10712 жыл бұрын
👍
@omenechris46982 жыл бұрын
The poor quality of the video marred the powerful explanation.
@omenechris46982 жыл бұрын
very poor quality video but great explanation. Thank you very much.
@Jenyfal_Sampson2 жыл бұрын
Thank you for the feedback. Will be improving the same in upcoming videos.
9. Program to add two 16-bit numbers. Statement: Add numbers 1124H & 2253H and store result in memory location 2055H & 2056H. LXI H,1124H //Load 16-bit data 1124H to HL pair LXI D,2253H //Load 16-bit data 2253H to DE pair MOV A,L //Move contents of register L to Accumulator ADD E //Add contents of Accumulator and E register MOV L,A //Move contents of Accumulator to L register MOV A,H //Move contents of register H to Accumulator ADC D //Add contents of Accumulator and D register with carry MOV H,A //Move contents of Accumulator to register H SHLD 2055H //Store contents of HL pair in memory address 2055H & 2056H HLT //Terminate the program. Input: Register Pair Data HL 1124H DE 2253H Output: Memory Location Data 2055H 77H 2056H 33H How to do this?
@niranjangosavi14792 жыл бұрын
Thank you very much sir
@Jenyfal_Sampson2 жыл бұрын
You're Welcome Niranjan😊
@deedewald17072 жыл бұрын
Nice explained Sir, thank you !
@azimahzainal49772 жыл бұрын
hello can you share the coding?
@Jenyfal_Sampson2 жыл бұрын
Hi! www.tinkercad.com/things/3Rx1j97WHID-street-light-principle-using-relay-jenyfal-sampson/editel Code is available in this link.
@azimahzainal49772 жыл бұрын
@@Jenyfal_Sampson tq🥰
@tiyyaguraanilkumarreddy59552 жыл бұрын
@@Jenyfal_Sampson its is showing that the page is removed broo
Thank you so much for the Feedback. Am rectifying the same in my future videos.
@aniruddhapatil26472 жыл бұрын
Whr can i get the keil 4??.. i m unable to download.. pls help me
@Jenyfal_Sampson2 жыл бұрын
Keil software is available at keil.com. In that you have to go to Downloads.
@Jenyfal_Sampson2 жыл бұрын
These links would help: kzbin.info/www/bejne/aXWVgperaLCjidU kzbin.info/www/bejne/mpCyY6eraqiAmLM
@aniruddhapatil26472 жыл бұрын
@@Jenyfal_Sampson thanks sir 🙏
@Jenyfal_Sampson2 жыл бұрын
@@aniruddhapatil2647 You're Welcome
@aniruddhapatil26472 жыл бұрын
Nice video
@Jenyfal_Sampson2 жыл бұрын
Thank You
@gautamgupta1013 жыл бұрын
Sor can you tell a command to change speed
@Jenyfal_Sampson3 жыл бұрын
Hi Gautam.......Pulse Width Modulation (varying the Duty Cycle) is the solution to change the speed. You need to make sure the DC motor is connected to one of the PWM pins. Instead of digitalWrite, analogWrite needs to be given. For example: if(Serial.available()) { int speed = Serial.parseInt(); //Receive Value from serial monitor Serial.println(speed) analogWrite(EN, speed); //sets the motors speed
@gautamgupta1013 жыл бұрын
Thanku very much sir, this was helpful
@ayushirajshekhar51283 жыл бұрын
Voice is too low. But well explained!
@sairam5443 жыл бұрын
Good Explanation sir.we want more videos like this sir.Thank you
@Jenyfal_Sampson3 жыл бұрын
Thank You, Sai Ram.
@muhammadtalhatv33093 жыл бұрын
very helpful for us , cleared, thanks from Pakistan
@Jenyfal_Sampson3 жыл бұрын
You're Welcome always.😇
@mzpavithra92863 жыл бұрын
Excuse me sir it's really well explained here but I can't give the inputs in the memory view in my android can u pls tell me what to do
@vishal89063 жыл бұрын
Label C050 is not defined. Also check the label definition, there may be some issues on that line. Sir im facing this error can you tell what is this?
@Jenyfal_Sampson3 жыл бұрын
Could you send me a screen shot of your code, Vishal.
@vishal89063 жыл бұрын
@@Jenyfal_Sampson sir how can i share the image in comment?
@Jenyfal_Sampson3 жыл бұрын
@@vishal8906 Sorry about that. You may mail the same to [email protected]
@mzpavithra92863 жыл бұрын
What to do ...to find the largest in an array??
@Jenyfal_Sampson3 жыл бұрын
It is well explained in www.tutorialspoint.com/program-to-find-the-largest-number-in-an-array-of-data-in-8085-microprocessor. If required, I will make a video on the same explaining it. Is it required from your side.
@mzpavithra92863 жыл бұрын
@@Jenyfal_Sampson can you tell where to give the inputs...simulating in Android
@Jenyfal_Sampson3 жыл бұрын
@@mzpavithra9286 Inputs need to be given at the MEMORY VIEW available on the right side. There would be little difficulty while using a phone. No other way.
@mzpavithra92863 жыл бұрын
@@Jenyfal_Sampson ok tq
@mzpavithra92863 жыл бұрын
@@Jenyfal_Sampson sir if u don't mind can u make a video of simulation of 8085 for finding a largest number by changing the inputs ...I would be grateful to u thank u sir
@divyashreem98993 жыл бұрын
Nice explanation Sir...thank you
@Jenyfal_Sampson3 жыл бұрын
You're Welcome :-)
@amritsingh9783 жыл бұрын
MY LEFT EAR WORKING AFTER THIS VIDEO ENDS , THANK YOU SIR .
@sokillr76203 жыл бұрын
sir i have sent you a mail please respond as fast possible please
@Jenyfal_Sampson3 жыл бұрын
Really Sorry Dear.......Could you send that mail again......I did not receive any mail.....
@SaravananPrediction3 жыл бұрын
Audio is not good sir
@sairamtuamigo3 жыл бұрын
Audio very poor
@ghostedwholf20843 жыл бұрын
Can you make a division one?
@AnkitKumar-br4oc4 жыл бұрын
ye PSW register kya show krta h..plzz explain the function of PSW register
@AnkitKumar-br4oc4 жыл бұрын
sir for 16 bit number how to get 2's compliment
@arunkumarvishwakarma2313 жыл бұрын
sir , is this video belongs to 1's compliment or 2's compliment???
@prateekshapatil91264 жыл бұрын
thank you sir:)..this helped me a lott!! please do make more videos like find greatest of two numbers...transfer of blocks...reverse order etc..
@Jenyfal_Sampson4 жыл бұрын
You're Welcome Patil...Thank You for the Support. If you could share the List of Experiments of your Syllabus, I would be willing to post more videos based on them. kzbin.info/www/bejne/jXqpfXiJhbuZY9E is the link for Largest of two numbers, which I have posted earlier.
@done78414 жыл бұрын
Hi! Great video! How do we save the output in the accumulator?
@Jenyfal_Sampson4 жыл бұрын
8- bit operation, Outputs are by default saved in the Accumulator. If not the case, Using the MOV A, reg. instruction would be the simplest way.
@done78414 жыл бұрын
@@Jenyfal_Sampson Thanks for the answer! But I wanna move HL for the A place, how can i do that?
@Jenyfal_Sampson4 жыл бұрын
@@done7841 HL is 16 bit register. A is an 8 bit register. Sorry that I am not able to understand the question properly. Probably I could help you with this doubt further, if you mail me to [email protected].