Different Types Sensors Questions:


Question #1:

First DSLR Camera? Sony, Nikon, and Canon? Help!?

Okay so I am 13, a girl, and I really love photography. I was questionable to get my prototypal DSLR camera for Christmastime but I don't know what category to get.
My friend got a Sony a580 or something same that and the pictures are awesome. Except then I heard that Sony isn't as food as Canon and Nikon, since it's new. I was going to get the same camera as my friend because I'm not trusty if I requirement like a bajillion different lenses that Canon and Nikon have.
I was feat to intend the Samsung ST550, a digital camera that was threefold screen, because I heard it has a enthusiastic "beauty" feature. And I wish that they made a DSLR that also had a beauty feature, because I'm not effort the Samsung. And it's not same I can just alter a DSLR camera to school and take pictures with my friends, so I'm using my iPhone 4 as my "digital" camera. Or same a camera I can take anywhere. I same to take pictures of haphazard things, ahahaha. Self portraits for Facebook strikingness pictures, my dog, babies and toddlers from church, nature, and flowers, and jumping/moving pictures. And over Spring Break, our whole entire extended kinsfolk is going to island and I poverty to take pictures, and I don't think my phone module cut it.
So what DSLR camera should I get? And I probably tradition get a aggregation of lenses.

I poverty the Sony a580.
Model Features: 16.2MP, Exmor™ APS sensor, 1080/60i Full HD movies, two types of Live View, Face Detection, 3D Sweep Panorama, tiltable 3.0" LCD, up to 7 fps constant shooting, 18-55mm DT zoom lens included.

Sony a55.
Model Features: 16.2MP, Translucent Mirror Technology™, Quick AF Full HD Movie, GPS tagging, Live View with Phase detection, 10 fps, 15-point auto focus, 18-55mm ascent lense included.

Sony a35
Model Features: 16.2MP, Translucent Mirror Technology™, Quick AF Full HD Movie, Main sensor Live View with Phase detection, Face Detection, 3D Sweep Panorama, 3.0" LCD, up to 7 fps constant shooting, 18-55 ascent lens included.

So it's up to those 3. You crapper suggest added brand/model.anything!

Question #2:

I have an C codes to program Temperature Sensor LM35 in PIC16, but my programmer accept only assembly language?

so I proven to download Hi-Tech C compiler for PIC microcontrollers, but I could not. I institute a polyglot modify from C to Assembly. Pleas could anyone verify me it is beatific or not. If you hit any suggestion please verify me.

Those are the C codes:
/ Digital Thermometer using PIC16F688 and LM35
Internal Oscillator @ 4MHz, MCLR Enabled, PWRT Enabled, WDT OFF Copyright @ Rajendra Bhatt Nov 8, 2010 /

// LCD module connections
sbit LCD_RS at RC4_bit;
sbit LCD_EN at RC5_bit;
sbit LCD_D4 at RC0_bit;
sbit LCD_D5 at RC1_bit;
sbit LCD_D6 at RC2_bit;
sbit LCD_D7 at RC3_bit;
sbit LCD_RS_Direction at TRISC4_bit;
sbit LCD_EN_Direction at TRISC5_bit;
sbit LCD_D4_Direction at TRISC0_bit;
sbit LCD_D5_Direction at TRISC1_bit;
sbit LCD_D6_Direction at TRISC2_bit;
sbit LCD_D7_Direction at TRISC3_bit;
// End LCD power connections
// Define Messages
char message0 = "LCD Initialized";
char message1 = "Room Temperature";
// String clothing to accumulation temperature continuance to display
char tempC = "000.0";
char tempF = "000.0";
// Variables to accumulation temperature values
unsigned int tempinF, tempinC;
unsigned daylong temp_value;
void Display_Temperature
// modify Temp to characters
if tempinC/10000
// 48 is the decimal character cipher value for displaying 0 on LCD
tempC 0 = tempinC/10000 48;
added tempC 0 = ' ';
tempC 1 = tempinC/1000 %10 48; // Extract tens digit
tempC 2 = tempinC/100 %10 48; // Extract ones digit
// convert temp_fraction to characters
tempC 4 = tempinC/10 %10 48; // Extract tens digit
// indicant temperature on LCD
Lcd_Out 2, 1, tempC ;
if tempinF/10000
tempF 0 = tempinF/10000 48;
else tempF 0 = ' ';
tempF 1 = tempinF/1000 %10 48; // Extract tens digit
tempF 2 = tempinF/100 %10 48;
tempF 4 = tempinF/10 %10 48;
// print temperature on LCD
Lcd_Out 2, 10, tempF ;

void main
ANSEL = 0b00000100; // RA2/AN2 is similarity input
ADCON0 = 0b01001000; // Connect AN2 to S/H, select Vref=1.19V
CMCON0 = 0x07 ; // Disbale comparators
TRISC = 0b00000000; // PORTC All Outputs
TRISA = 0b00001110; // PORTA All Outputs, Except RA3 and RA2
Lcd_Init ; // Initialize LCD
Lcd_Cmd _LCD_CLEAR ; // CLEAR display
Lcd_Cmd _LCD_CURSOR_OFF ; // Cursor off
Lcd_Out 1,1,message0 ;
Delay_ms 1000 ;
Lcd_Out 1,1,message1 ; // Write message1 in 1st row
// Print honor character
Lcd_Chr 2,6,223 ;
Lcd_Chr 2,15,223 ;
// Different LCD displays hit assorted char cipher for degree symbol
// if you wager greek alpha honor try typing 178 instead of 223
Lcd_Chr 2,7,'C' ;
Lcd_Chr 2,16,'F' ;
do
temp_value = ADC_Read 2 ;
temp_value = temp_value 1168;
tempinC = temp_value/1000;
tempinC = tempinC 10;
tempinF = 9 tempinC/5 3200;
Display_Temperature ;
Delay_ms 1000 ; // Temperature distribution at 1 dry interval
while 1 ;


I module add the gathering code as an answer
; DEFINITIONS :


; TRANSLATED ASM SOURCE CODE :

ORG0x0000; WARNING : individual requested NO other ORG directive, please analyse for correct code location

; / Digital Thermometer using PIC16F688 and LM35
MCLREnabled, PWRT
;
; // LCD power connections
; sbit LCD_RS at RC4_bit;
; sbit LCD_EN at RC5_bit;
; sbit LCD_D4 at RC0_bit;
; sbit LCD_D5 at RC1_bit;
; sbit LCD_D6 at RC2_bit;
; sbit LCD_D7 at RC3_bit;
; sbit LCD_RS_Direction at TRISC4_bit;
; sbit LCD_EN_Direction at TRISC5_bit;
; sbit LCD_D4_Direction at TRISC0_bit;
; sbit LCD_D5_Direction at TRISC1_bit;
; sbit LCD_D6_Direction at TRISC2_bit;
; sbit LCD_D7_Direction at TRISC3_bit;
; // End LCD module connections
; // Define Messages
; char message0 = "LCD Initialized";
; burn message1 = "Room Temperature";
; // String array to accumulation temperature continuance to display
; char tempC = "000.0";
; char tempF = "000.0";
; // Variables to store temperature values
; unsigned int tempinF, tempinC;

Question #3:

Do you think i should get this phone? Opinions please!?

Its a Asian phone. I requirement a hypersim for it to work in the US, but it module be included with it.The cheapest you crapper buy it is on ebay, for 440, and it would be reaching from Japan. But one of my friends is on a activate in japan and is feat to get me it, and i would exclusive have to pay 200 for it.

I currently have an HTC HD2 robot phone. 4.3" touch screen, 5mp camera with winkle I hate the sound existence all touch screen. its same a chore for me to identify long texts on it. i hit games and apps on it, but i hardly use them. i do not have a data plan, and only go on the internet when im at home and hit wifi. I also hardly beam represent messages. I book A LOT though.

Downsides to getting the japanese phone:
cant beam picture messages
no apps or games
cant use accumulation organisation i would never get one though anyway

Upsides:
13.2 mp Full HD backwards camera 1080p w/flash
front covering camera
3.5" contact screen
Waterproof can shoot video, while underwater
fingerprint sensor
3d change sensor
keypad can reddened up in different colors at same instance kinda like in a rainbow ornament
has wifi, so i could go on the internet
Slides up and also crapper turn horizontally
Its unique, and no digit else would hit it


Pictures:


hahah, sorry. I'm just asking for peoples opinions on it. If its a beatific care or not. :p
Err.. I hit NEVER seen some phone like this in the US. . Also, its in english. And i dont hit a contract with my current phone. i bought it soured ebay.. So if i break my hd2, then its broke and i gotta get a new phone. Im not feat to sell my hd2, ill probably meet provide it to my mom or something. . And a 'better' phone? This phone has just as beatific specs as the new iphone.. nonnegative its waterproof,and has a 13.2 camera FULL hd. Japanse phones are faaaaaar ahead of ours... All the US has are touchscreen phones with bounteous screens..Ive had a sidekick 4g, motorola backflip, g1,iphone, ect.

Is it worth the 200 just for the camera though? How such do tight 12mp cameras cost?

Question #4:

If I buy any canon slr will I be able to get the entire field of view from my 15mm fisheye lens?

I don't regret purchase the lens because when I can give a flooded inclose sensored camera, I'll ease get to ingest the lens. Also, it entireness substantially sufficiency on my camera.

But I'd like to apply the full 180° earth of view now as well.. When it comes to film, they all coequal the full frame, right? I feature in the days of film, it was all the same. And I've read people talking about lopped sensors not equaling the 35mm and that's ground the lens don't display the entire earth of view.. I see some selling for meet 30 bucks! But before I spend money on one, I want to attain trusty I've got my facts straight

I know I can't ingest the old SLRs because the lense types were different, but would the newer models work? Or do I ease have to go expensive and acquire the higher models? There is no disagreement in the respect that I'm concerned.. Right?
I'm conversation about cameras :p I wager whatever canon SLRs selling for as baritone as 30..

And I don't intend the full 180° field of view on my dslr because it's a lopped device camera, lol

Question #5:

What type of switch box exists to take signals from 8 photocell eye sensors in and transmit 1 signal out?

I have a difficulty on an industrial line where octad boxes are in different chutes come out past photoeyes and I need to figure a artefact to verify the 8 signals into whatever variety of switch box and production through one serial output. So it needs to meet actively transfer finished the one communication that is changing from the eight total.

    Different Types Sensors





Question #6:

Can someone help me with this Biology , please :(?

Q1: The _____ plaything brings a mature gamete to the uterus.
a fallopian
b ovarian
c Cowper

Q2: The conception of the brain responsible for speech, thought, and memory is the _____.
a medulla
b cerebellum
c cerebrum
d thalamus

Q3: Which layer of the eye completely surrounds the receptor except for a dark, ammo inaugural called the pupil?
a sclera
b cornea
c retina
d choroid

Q4: Select every that apply.

Parts of the intrinsic fruit allow _____.
a cochlea
b passing canal
c auditory canal
d semicircular canals
e auricle

Q5: The cover grouping is an example of _____.
a adaptive or active immunity
b supine immunity
c innate or uncolored immunity

Q6: Which of the mass is not digit of the fivesome tastes that humans recognize?
a Sweet
b Fruity
c Bitter
d Salty

Q7: Roundworms hit _____ hooligan that helps them move.
a striated
b circular
c longitudinal
d retractor

Q8: Most flora animals conduct _____ fertilization.
a external
b internal

Q9: Compared to invertebrates, some vertebrates die during the earlier stages of their chronicle cycle because they are a major part of the food chain.
a True
b False

Q10: Select all that apply.

The quaternary major functions of hormones are _____.
a movement
b homeostasis
c immunity
d response to stimuli
e reproduction
f ontogeny and development

Q11: Insects have olfactory sensors on their _____ while snakes have them on the roof of their mouths.
a wings
b feet
c antennae
d tongue

Q12: _____ of all vertebrates are general sensors for touch, pressure, and pain.
a Olfactory receptors
b Chemoreceptors
c Photoreceptors
d Mechanoreceptors

Q13: Birds have a stabbing significance of _____ and rely on this significance the most.
a taste
b hearing
c sight
d touch
e smell

Q14: _____ do not hit organs held unitedly and fortified by close fluid.
a Acoelomates
b Pseudocoelomates
c Coelomates

Q15: Select every that apply.

Which of the mass characteristics does an arthropod have?
a segmentation
b endoskeleton
c jointed appendages
d notochord
e coelom
f tissues, organs, and organ systems

Q16: Animals in the aforementioned phylum haw have assorted troubled grouping structures. For example, octopuses have large, complex brains patch clams have a ultimate _____ network.
a ladder-like
b ring-like
c cheek net

Q17: Select every that apply.

Some animals have limited immunity, which means _____.
a the embody attacks anything foreign to the body
b the body attacks portion external invaders
c immunity is inborn or innate
d immunity is adaptive

Q18: The four main types of tissues of animals are: muscular, which is in _____; nervous, which is in _____; epithelial, which is in _____; and connective, which is in _____.
a the skin; cartilage; the brain; the heart
b cartilage; the skin; the heart; the brain
c the brain; the heart; cartilage; the skin
d the heart; the brain; the skin; cartilage

Question #7:

light sensors....(about laser)?

im planing to do an mechanism that does different jobs when reddened laser shine points on assorted parts of a insipid board i planned that the flat commission could be prefabricated of LDR eg. 1inch square...is that filler or type LDR acquirable and if laser is prefabricated to point on different points of the LDR crapper it be prefabricated to significance and do different functions....i.e using microcontroller ? or what added could be replaced insted of LDR...so that it senses the laser for the aforementioned application...

Question #8:

oxygen sensor, infiniti 1996, I-30, bank 2 sensor 1 and bank 1 sensor 1?

is the type of oxygen sensor for "bank 1 sensor 1" the aforementioned for "bank 2 sensor 1"? Can I use Bosch 13242 for both of them for above car, or do I have to use different Bosch number? what are the advisable number?

What are the code PO 150 and PO 130 mean for the above car? what Bosch gas device I requirement to use for these codes? thanks vm

Question #9:

why wont my quad bike rev?

i have a aeon cobra 100 sib bike, i meet fitted a new carb and it wont rev. it starts though . i dont think it is the new carb and i saw a assorted identify of sib cycle on the internet were the parking sensor wouldnt permit it rev, so tomorow i module analyse that.it also slope indolent without unceasing adjustments to the throttle. .does anyone have any ideas most both problems

Question #10:

I need some sensor to detect plastic.?

I am doing a college project in which i need to detect and differentiate between assorted types of containers much as prefabricated of plastic, keep , aluminium, stainless steel, glass. I need whatever sensors which is also cheap finished which i can detect their proximity of plastic. Please guide me finished appropiate framework and product.
It would me more helpful if you candid me to the portion product which i can visit online.



** Powered by Yahoo Answers