Posts

 https://drive.google.com/file/d/1OUbmiXov2-zESzGsXuq_dUudAx48H2JV/view?usp=drivesdk https://docs.google.com/document/d/1OqQjGPLP-bUxXXJJRFLoik6u841GWwtz/edit?usp=drivesdk&ouid=115090957766397081934&rtpof=true&sd=true 5 https://docs.google.com/document/d/1OrTx2rrCQB4wj56vj6QX8YZVO3_DLpCe/edit?usp=drivesdk&ouid=115090957766397081934&rtpof=true&sd=true https://drive.google.com/file/d/1OUbmiXov2-zESzGsXuq_dUudAx48H2JV/view?usp=drivesdk
ELECTRONICS PRACTICALS h

electronics practicals

 TEXT AMD SENT DATA TRANSFER 21.2.24 EXP10 // LASER RECEIVER PROGRAMME CODE #define LDR_PIN A0 #define LED_PIN 13 int sensorValue; int threshold = 10; // Adjust this threshold based on ambient light conditions int bitDuration = 1; // Should match the period used in the transmitter void setup() {  pinMode(LED_PIN, OUTPUT);  Serial.begin(9600); } void loop() {  sensorValue = analogRead(LDR_PIN);  if (sensorValue > threshold) {  // Start of a bit received, wait for the center  delay(bitDuration / 2);  // Read the bit  int receivedBit = digitalRead(LDR_PIN);  // Process the received bit  if (receivedBit == HIGH) {  Serial.println("ROHAN- LASER ON");  } else {  Serial.println("GUNA -LASER OFF");  }  // Wait for the remainder of the bit duration  delay(bitDuration / 2); }  // Optionally, add a delay between received bits to prevent data overlap  delay(2000); } // LASER TRANSMITTER PROGRAMME CODE #define LASER_PIN 3 #define PERIOD 1 char* text = "HELLO"; // Te

ELECTRONICS JOURNALS

 ELECTRONICS FOR YOU   ELECTRONICS WEEKLY   DIGI TMES ASIA THESE JOURNALS ARE MORE POPULARLY IN THE WORLD  AND EW IS FREE FOR EVERYONE

IMPORTANT WEBSITES FOR ELECTRONICS PROJECTS SEARCH

  https://www.androiderode.com/ https://duino4projects.com/ https://diplomaschool.blogspot.com/ https://easyelectronicsproject.com/projects/ https://electronics-project-hub.com/ https://www.projectsof8051.com/android-based-projects/ https://www.electronics-lab.com/projects/ https://www.circuitspecialists.com/blog/electronics-projects/ http://www.learningaboutelectronics.com/Projects/ https://elonics.org/electronics-projects-on-breadboard/ https://www.circuits-diy.com/category/electronics-projects/ https://1000projects.org/ https://www.circuitstoday.com/electronics-mini-projects https://core-electronics.com.au/projects/ https://www.open-electronics.org/ https://www.homemade-circuits.com/how-to-kill-coronavirus-with-ozone-gas-generator/ https://microcontrollerslab.com/power-electronics-projects/ https://circuitdiagrams.in/mini-project/ https://makezine.com/

RESEARCH LABS IN INDIA AND TAMIL NADU

    I'm really interested in doing PhD  these kind of  electronics labs so I'm  glad to share this labs  centers  names. Those who have interested please the websites on the government companies or labs cheers have a nice day best of luck INDIAN GOVERNMENT ELETRONICS RESEARCH LABS     ·          Electronics and Radar Development Establishment (LRDE), Bengaluru ·          Central Electronics Engineering Research Institute (CEERI), Pilani ·          Semiconductor Laboratory (SCL), Mohali ·          Society for Applied Microwave Electronics Engineering & Research (SAMEER), Mumbai ·          Raja Ramanna Centre for Advanced Technology (RRCAT), Indore ·          Bharat Electronics Limited (BEL), Bengaluru ·          Defence Electronics Research Laboratory (DLRL), Hyderabad ·          Indian Space Research Organization (ISRO), Thiruvananthapuram ·          National Physical Laboratory (NPL), New Delhi ·          National Aerospace Laboratories (NAL), Ben

ELECTRONICS PRACTICALS FOR SEMESTER II ONLY PROGRAM CODES

THOSE WHO I HAVE INTERSTESTED TO VIEW PRACTICAL PROGRAMS TO CLICK THE BELOW LINK  https://drive.google.com/file/d/1YJQPbqZifJ2Q6B2o_c8okwlk30_qZRDm/view?usp=drivesdk