What is the voltage across the resistor

Assignment Help C/C++ Programming
Reference no: EM131299522

1) Very basic circuits 0.5 Amps pass through a 100-Ohm resistor. What is the voltage across the resistor? What is the law that you are using to solve this problem?

2) Given the circuit in the below figure. Ignore B1 and B2, they are included for completeness only. Current directions should be as they are here and you should not assume anything regarding the directions.

96_Circuit.jpg

a. Use Kirchoffs Current Law to find I3, if I1 = 4 Amps and I2 =1 Amps, at node 1.

b. At node 2, If I4 is 5 Amps, what is I5?

3) Short answer questions:

a. Mention three different methods to program an Arduino processing board? 1.

b. Provide the C (not Ardiuno) program statement to set ONLY PORTB pins 1 and 7 to logic one. Use bit-manipulation techniques.

c. Provide the C (not Ardiuno) program statement to reset ONLY PORTB pins 1 and 7 to logic zero. Use bit-manipulation techniques.

d. Given a sinusoid with 500 Hz frequency, what should be the minimum sampling frequency for an analog-to-digital converter, if we want to faithfully reconstruct the analog signal after the conversion? What is the name of the theorem that solves this problem? This was discussed in the Lecture several times.

e. If an analog signal is converted by an analog-to-digital converter to a binary representation and then back to an analog voltage using a DAC, will the original analog input voltage be the same as the resulting analog output voltage?

Circle your answer: YES NO. Explain your answer very briefly.

f. Describe the flow of events when an interrupt occurs.

g. There are two methods to doing GPIO that we discussed in Lecture. Name them. In the lecture, we had a funny unscientific name to one of them, mention it.

4) Given the code below:

a. Comment on each line of code as to what does that line of code do.

Use the comment symbols

b. Convert the Ardiuno Library functions except delay() to C code that manipulates the registers of the PORTs.

int led = 13;

voidsetup() {
pinMode(led, OUTPUT);
} void loop() {
digitalWrite(led, HIGH);
delay(1000);
digitalWrite(led, LOW);
delay(1000);

1635_Ardiuno.jpg

5) A Temperature sensor circuit is described in the code below.

a. Construct the circuit similar to the figure above i.e. draw the circuit schematic.
b. Modify the behavior of the circuit you have drawn in part a above and change the code below as necessary to light up a single LED for 100 milliseconds if the temperature goes above 75 degrees F.
c. Which of these two variables degreesC or degreesFis declared in the code below? Which one can you compare against?
d. Answer the questions in the comment next to each statement in the code.
e. Add the necessary modifications to the circuit that would cope with your changes to light up the LED when the temperature is between 75 degrees F and 85 degrees.

/*TEMPERATURE SENSOR

Use the "serial monitor" window to read a temperature sensor.

The TMP36 is an easy-to-use temperature sensor that outputs a voltage that's proportional to the ambient temperature.

Hardware connections:

The temperature sensor has a triangle logo and "TMP" in very tiny letters.

When looking at the flat side of the temperature sensor with the pins down, from left to right the pins are: 5V, SIGNAL, and GND.

Connect the 5V pin to 5 Volts (5V).
Connect the SIGNAL pin to ANALOG pin 0.
Connect the GND pin to ground (GND).

We'll use analog input 0 to measure the temperature sensor's signal pin. It analog input pin reads a value between 0 and 1024.
*/

constinttemperaturePin= 0;
void setup()
{
// What does this function do?
Serial.begin(9600);
}
// Why does this function return void?
void loop()
{
floatvoltage, degreesC, degreesF;
// What is the purpose of each of the statements below?
voltage= getVoltage(temperaturePin); //
// Now we'll convert the voltage to degrees Celsius.
degreesC= (voltage - 0.5) * 100.0; //
degreesF= degreesC* (9.0/5.0) + 32.0; //
Serial.print("voltage: ");
Serial.print(voltage);
Serial.print(" deg C: ");
Serial.print(degreesC);
Serial.print(" deg F: ");
Serial.println(degreesF);
delay(1000);
}
floatgetVoltage(intpin)
{
return(analogRead(pin) * 0.004882814);
}

Reference no: EM131299522

Questions Cloud

Focus on ease of use design considerations : Your technology requirement needs to focus on "ease of use" design considerations. Include in this section how this requirement will positively impact ease of use.
Identify and discuss the key steps in the closing process : Identify and discuss the key steps in the closing process that provide the most opportunity to make mistakes in processing account transactions. Why did you select these steps and what makes them confusing?
Design low-pass op amp circuit to pass only the fundamental : Design a low-pass OP AMP circuit to pass only the fundamental and the next nonzero harmonic of a 20π ms square wave. The gain of the OP AMP should be +5.
General journal for the adjusting entries : Prepare the Income Statement, Statement of Owner's Capital and Balance Sheet for Ace Lawn Care for May, 2014 - Prepare journal entries, in good form, to record the May adjusting entries. Explanations are optional. Start with Page 3 of the General ..
What is the voltage across the resistor : Very basic circuits 0.5 Amps pass through a 100-Ohm resistor. What is the voltage across the resistor? What is the law that you are using to solve this problem?
Find the fourier coefficients of the input : Compare the magnitudes of the fundamental and of the fifth harmonic with that of the third harmonic at the input and output of the tuned filter.
Find the rms value of a half-wave rectified sine wave : Use MATLAB to find the rms value of a half-wave rectified sine wave. Find the fraction of the total average power carried by the dc component plus the first three nonzero ac components in the Fourier series.
What fraction is carried by the ac components : What fraction of the total average power is carried by the dc component? What fraction is carried by the ac components?
Discuss the organisation entrepreneurial orientation : Using the case study you have constructed from the above task as a vehicle for discussion and analysis and using appropriate evaluative frameworks critically appraise and discuss the organisation's entrepreneurial orientation

Reviews

Write a Review

C/C++ Programming Questions & Answers

  Two-dimensional array to compute the polar coordinates

Write a C program that will read from the input file the time, the x-coordinate, and the y-coordinate values into a two-dimensional array. The program will use the two-dimensional array to compute the polar coordinates.

  Write a program that allows a user to enter 12 double values

Write a program that allows a user to enter 12 double values representing store sales for each month of one year. After all 12 values are entered,

  Local diner that allows customers to see the diner''s menu

Design a program to be used for a small local diner that allows customers to see the diner's menu and then make their meal selections using the program.The program will also calculate and print an itemized bill.

  Object-oriented programming-event-driven programming

Use the Internet or Strayer databases to research the advantages, features, and common examples of OOP and EDP. Note: You may use the Association for Computing Machinery (ACM) Digital Library to support research on the above topics. Instructions d..

  What is the key for table t

Please indicate which record can be added into table T without violating any of the functional dependencies in F. If the record or row cannot be legally added, please indicate which functional dependency is violated.

  Write a function called makemat that will receive two row

Write a function called makemat that will receive two row vectors as input arguments, and from them create and return a matrix with two rows.

  Reduction polynomial on the computation

What is the influence of the choice of the reduction polynomial on the computation?

  Develop the implementation file student.cpp

The data fields have self explanatory identifiers, and their meaning should be clear from the Introduction.

  Write an abstract class carbon footprint

Using an abstract class with only pure virtual functions, create three small classes unrelated by inheritance---clases Building, Car and Bicycle.

  Using powerpoint, word, visio or any other graphical editor

Using Powerpoint, Word, Visio or any other graphical editor that allows you to create shapes and arrows, create a simple flow chart  that provides the functionality for this pseudocode: Write "Enter the price in dollars: " Input Price

  What is the business rule in the e-r model segment

What is the business rule that is being illustrated in the E-R model segment in the below figure?

  Write a function called distance

Write a function called distance that takes two Points as arguments and returns the distance between them.

Free Assignment Quote

Assured A++ Grade

Get guaranteed satisfaction & time on delivery in every assignment order you paid with us! We ensure premium quality solution document along with free turntin report!

All rights reserved! Copyrights ©2019-2020 ExpertsMind IT Educational Pvt Ltd