Skip to main content

Posts

Beaglebone Black board

https://www.youtube.com/watch?v=UMEUo6Wm6u4 Analog Pins must supply with max voltage of 1.8V     to get 1.8 V from sensor use Voltage divider with 1.8V (Vcc as Vdd_ADC (1.8V)) Getting started: https://www.youtube.com/watch?v=c81tmb7WJxw Step1: Connect Ethernet first then power Beaglebone Step2:  https://beagleboard.org/getting-started          notedown the IP Address:      Step3: Browse the IP address. Step4: select Cloud9 IDE. step5: take new select terminal step6: ifconfig          notedown IP address:  192.168.7.2 step7: close all for Using SSH     open putty----> type IP address----->password      The  BeagleBone Black  hardware has two  default  user names: 'debian' and 'root' . For 'debian' , the  default  password is 'temppwd' . For 'root' , the  default  password is empty: ''   congrats: Create New python program: -...
Recent posts

EDC

Unit 1 Part 1: PN Junction Diode Click the below link the lecture notes https://drive.google.com/file/d/1AcoRvK6wKmObQW8XEKx0n0I77VFqDHzA/view?usp=sharing e-text books for EDC  Click the below link:

Active and Passive Voice

ACTIVE & PASSIVE VOICE ACTIVE VOICE STRUCTURE: SUB + VERB + OBJ u The active voice is when the person or thing performing the verb is also the subject of the sentence. u The subject always comes before the verb . u The active voice makes the subject the focus of the sentence . EXAMPLE: ➢His parents are always praising him. ➢Lee Harvey Oswald assassinated John F. Kennedy . u I love my students Passive Voice STRUCTURE: OBJ + HV + VERB(V3) + BY + SUB u By using the passive voice, we make the object the focus of the sentence . u When we not aware of subject. u When subject is not important. EXAMPLE: u He is always being praised by his parents . u John F. Kennedy was assassinated by Lee Harvey Oswald . u My students are loved by me. STEPS TO CONVERT u IDENTIFY SUB, OBJ, VERB. u SWAP  SUB & OBJ u CONVERT VERB TO V3 FORM u ADD HELPING VERB BEFORE MAIN VERB u ADD BY BEFORE SUB. WHILE CHANGING SUBJECT TO OBJ u I      CHANGE ...

Robotics using Arduino

Robotics using Arduino  onchipLEDonprogram: void setup()  {   // put your setup code here, to run once:   pinMode(13, OUTPUT); } void loop()  {   // put your main code here, to run repeatedly:   digitalWrite(13,HIGH); } onchipLEDoffprogram void setup() {   // put your setup code here, to run once: pinMode(13, OUTPUT); } void loop() {   // put your main code here, to run repeatedly: digitalWrite(13,LOW); } onboardLEDblink1secdelay void setup() {   // put your setup code here, to run once: pinMode(13, OUTPUT); } void loop() {   // put your main code here, to run repeatedly: digitalWrite(13,LOW); delay(1000); digitalWrite(13,HIGH); delay(1000); } externalLEDON1secOFF2secdelay void setup() {   // put your setup code here, to run once: pinMode(2, OUTPUT); } void loop() {   // put your main code here, to run repeatedly: digitalWrite(2,LOW); delay(2000); digitalWrite(2,HIGH); delay(1000); } external4LEDspattern void setup() { ...