Posts

PCB Session Day one Class 1 Lecture

Image
  Free PCB Design Course: Resources and Insights Recently, I conducted a free session on PCB design, and I'm excited to share the resources and insights from that session with you. Whether you attended the session or missed it, these materials will be valuable for your PCB design journey. Accessing the Resources I've made the session materials available for download: - [Download Documents] (https://docs.google.com/document/d/1ESiOPqPbmocsteJskw-eSmMeCnPgp2-p/edit?usp=sharing&ouid=103182625766365943779&rtpof=true&sd=true)**: This document contains detailed notes, instructions, and examples covering PCB design concepts. - [Download Presentation] (https://docs.google.com/presentation/d/1tp32pO58Zc4WD0Hxi3W1cpnsG4plWvTt/edit?usp=sharing&ouid=103182625766365943779&rtpof=true&sd=true)**: The presentation slides offer a visual guide to key topics discussed during the session.  Getting Started with PCB Design If you're new to PCB design or looking to enhance...

Wrong Category selected in SPSC How to change category in SPSC

  Email: info@spsc.gov.pk Subject: Request for Category Change in SST BPS-16 Post Application   Dear Sindh Public Service Commission Help Desk,   I hope this email finds you well. My name is [Your Full Name], and I recently applied for the SST BPS-16 post. However, I am writing to bring to your attention an inadvertent error in my application – I mistakenly selected the wrong category.   Details of my application are as follows:   Full Name: [Your Full Name] CNIC Number: [ ID-Number without Dashes] Post Applied For: SST BPS-16 I have realized that I selected the wrong category during the application process. The correct category for my application should be [Correct Category]. I sincerely apologize for any inconvenience caused due to this mistake.   I kindly request your assistance in rectifying this error by updating my category to the correct one. If there is any additional information or documentation required from my end to facilitate this change, pl...

Flasher Circuit by Using Arduino UNO | LED Patterns with Arduino | Chaser Circuit | 8 Patterns

A flasher circuit or chaser circuit with Arduino UNO can be designed to create various LED patterns. In this example, I'll explain how to create a chaser circuit with 8 different LED patterns using an Arduino UNO. This circuit will control a set of LEDs to produce patterns like chasing, blinking, and fading.   Components you will need:   Arduino UNO LEDs (as many as you want for your pattern) Resistors (220-330 ohms) for each LED Jumper wires Breadboard (optional) Here's the step-by-step explanation of the circuit: Connecting LEDs: Connect the positive (longer) leg of each LED to a separate digital output pin on the Arduino UNO. Connect the negative (shorter) leg of each LED to a current-limiting resistor (220-330 ohms is typical) and connect the other end of the resistor to the Arduino's GND (Ground) pin.   Arduino Code: Write the Arduino code to control the LED patterns. Below is a code that creates 8 different LED patterns. You can upload this...

Online Tutor

 <a href="https://www.teacheron.com/tutor-profile/8nB6?r=8nB6" target="_blank" style="display: inline-block;"><img src="https://www.teacheron.com/resources/assets/img/badges/proudToBeTeacher.png" style="width: 336px !important; height: 144px !important"></a>

RFID door lock access control system | How to make an RFID door lock system using Arduino

Image
CODE WILL BE UPLOADED SOON INSHAHALLAH  

Basic Functions and commands of MATLAB:

Image
Task # 1 Investigate the effect of the following commands. (i) a(2) (ii) sum =a+b   (iii) diff =a-b (iv) ab=[ a b] (v) ab(2:6) (vi) a`       CODE   a=[2 4, 7 5]; b=[1 3, 8 9]; %i a(2) %ii sum = a+b %iii diff = a-b %iv ab = [a b] %v ab(2:6) OUTPUT ans =      4 sum =      3     7    15    14 diff =      1     1    -1    -4 ab =      2     4     7     5     1     3     8     9 ans =      4     7     5     1     3 TASK # 2:  Investigate the effect of the following commands. (i) z' (ii) z*a (iii) a * z (iv) [a;b] (v)  [z; a'] (vi)  z+a' MATLAB CODE a=[2 4 7 5]; b=[1 3 8 9]; z=[1; 1; 0; 0]; % i z' % ii z*a % iii a * z % iv [a;b] % v [...