help with a connection? Answered
Does any one know how to connect a web cam to a crt monitor without a computer or a VGA camera to a crt monitor
Question by techxpert | last reply
Does any one know how to connect a web cam to a crt monitor without a computer or a VGA camera to a crt monitor
Question by techxpert | last reply
When I click "connect with Facebook" button here is what happens: it tells me to sign in, then to accept instructables (witch I did) and then the window closes...2 seconds later instead of your Facebook account badge on instructables it just says "connect with Facebook" again! PLEASE FIX THIS
Topic by iproberry1
Link: https://www.instructables.com/id/High_Voltage_Power_Supply_For_Marx_Generator/?comments=all#CRLI0D7FV40AZSC
Question by rzigmu | last reply
I am trying to connect a wiimote to pc. i have a dealextreame $1.80 blutooth adapter. i have bluesolei and widcomm drivers installed. the pc is not recognizing my wiimote. any help is very appreciated.
Question by Krayzi99
I am doing a school project. I am charging 4 aa batteries(Ni-Mh 800mAh) with a solar panel.I want to lit 3mm white LED with the battery. how many LED I can connect to this batteries and did I need to use a resistance?
Question by CCCareU | last reply
I tried entering some codes to try to connect my samsung t301g to my mac. The phone didn't do much. I wasn't sure if I am supposed to enter the codes in the main menu. The link shows the codes that should work. http://www.metacafe.com/watch/582887/unlocking_hacking_tricks_for_samsung_cells/
Question by jbaker22 | last reply
How would you connect the wires from a USB (female) with wires that are red, black, green, and white, to a 5V boost regulator that only had three legs - Vin, Ground, Vout? It's not for a computer so I don't think we need the green and white wires, but I could be wrong. Which wire goes where? Thanks!
Question by mckywer | last reply
I have an old iPod touch that I can hook up to my tv I was wondering how can I use that To connect my new iPod touch to my tv wirelessly like I want to old iPod to be the receiver then I would tv out that on to my tv any suggestions thanks in advanced .
Topic by Darki34 | last reply
Hi guys, I think I might need a little help linking my instructables to my facebook. I have tried using the button several times, 10 I think, and I have made sure I carefully put in the username and the password correctly, but whenever I click sign in it always gives me a blank screen? Anyone else having the same problem, and does anyone know of a solution or a different way to connect the instructables and facebook accounts? Or is my facebook connected and I just cant tell because of the blank screen? When I log onto facebook seperatly it doesn't show in any way that I am connected to instructables. All of your answers would be helpful. Thanks!
Topic by NathanaelScheffler
Hey Guys. I have a laser tag project that I am making. Now I want to put high pressure air recoil on it. With the HPA being in the magazine and the recoil being a blow back valve in the gun. The issue I have ATM is the connection between the gun and the magazine. I basically want it like a butane connection. I can't find anywhere that shows designs or standards for this though. Or anyone who sells these parts. Also I don't want to use a gas magazine as I have custom magazines and guns. Cheers.
Topic by TrevorB42 | last reply
I need to know how to connect a gnss receiver to one specific transmitter to pinpoint its exact location. If the gnss receiver wont pinpoint the transmitter location I am wondering if theirs another chip that a gnss receiver could use to replace the transmitter. (If you have any chip suggestion please make sure their small). I prefer you email me @ jrocky38@gmail.com.
Topic by ahmad2013 | last reply
i wonder if an institution has a server what does it mean? - They have their own internet connection or who do they pay for at the end of the month? i have a modem that uses sim card let us call the mobile service providers that i use (xy). can anyone explain to me do the data connection i get come directly from (xy) servers or do i get it from somewhere else. and if( no where does it come from)if yes(who are they answerable to at the end of the month.****am a dummy i know so i dont expect am a dummy as an answer. pls anwer in a simple language
Question by mauricewarebee | last reply
This is a People counter, well hope to be if working.ha. Lazer across a doorway hitting a LDR. The 4 digit 7 seg display counting up 1 each time a person breaks the beam. As of now i have a counting sketch from the Sparkfun example. It is counting up 0 to 999 and at the same time i have an LDR reading to the serial monitor and blinking the LED on pin 13. But they are not "interacting". I am trying to get the beam breakes from the LDR to advance the count by 1 every time it is broken. In the loop function is the mills that was advancing the counting. I have changed it to displayNumber(counter). Among other things.But i haven't been successful in having the LDR advance the count. The sketch is still missing some "stuff". What could i change to have the counter advance by 1 every time the lazer beam is broken? Thanks W /* 6-13-2011 Spark Fun Electronics 2011 Nathan Seidle This code is public domain but you buy me a beer if you use this and we meet someday (Beerware license). 4 digit 7 segment display: http://www.sparkfun.com/products/9483 Datasheet: http://www.sparkfun.com/datasheets/Components/LED/7-Segment/YSD-439AR6B-35.pdf This is an example of how to drive a 7 segment LED display from an ATmega without the use of current limiting resistors. This technique is very common but requires some knowledge of electronics - you do run the risk of dumping too much current through the segments and burning out parts of the display. If you use the stock code you should be ok, but be careful editing the brightness values. This code should work with all colors (red, blue, yellow, green) but the brightness will vary from one color to the next because the forward voltage drop of each color is different. This code was written and calibrated for the red color. This code will work with most Arduinos but you may want to re-route some of the pins. 7 segments 4 digits 1 colon = 12 pins required for full control */ #define ldrPin A2 // pin used for input (analog) int digit1 = 11; //PWM Display pin 1 int digit2 = 10; //PWM Display pin 2 int digit3 = 9; //PWM Display pin 6 int digit4 = 6; //PWM Display pin 8 //Pin mapping from Arduino to the ATmega DIP28 if you need it //http://www.arduino.cc/en/Hacking/PinMapping //int ldrPin = A2; int segA = A1; //Display pin 14 int segB = 3; //Display pin 16 int segC = 4; //Display pin 13 int segD = 5; //Display pin 3 int segE = A0; //Display pin 5 int segF = 7; //Display pin 11 int segG = 8; //Display pin 15 int ldr_pinValue; int counter; int currState; int then; //int ldrpread; //int digit[4]; //int leftover; int LDR = A2; //analog pin to which LDR is connected, here we set it to 0 so it means A0 int LDRValue = 0; //that’s a variable to store LDR values int light_sensitivity = 500; //This is the approx value of light surrounding your LDR //int digit_to_show = 0; int ldr_Pin = 0; // LED status (0 = low, 1 = high) int inVal = 0; // variable used to store state of input int switchOn = 725; // value at which we switch LED on int switchOff = 550; // value at which we switch LED off void setup() { { Serial.begin(9600); //start the serial monitor with 9600 buad pinMode(13, OUTPUT); //we mostly use13 because there is already a built in yellow LED in arduino which shows output when 13 pin is enabled } pinMode(ldr_Pin, INPUT ); pinMode(segA, OUTPUT); pinMode(segB, OUTPUT); pinMode(segC, OUTPUT); pinMode(segD, OUTPUT); pinMode(segE, OUTPUT); pinMode(segF, OUTPUT); pinMode(segG, OUTPUT); pinMode(digit1, OUTPUT); pinMode(digit2, OUTPUT); pinMode(digit3, OUTPUT); pinMode(digit4, OUTPUT); pinMode(13, OUTPUT); } void loop(){ { LDRValue = analogRead(LDR); //reads the ldr’s value through LDR which we have set to Analog input 0 “A0″ Serial.println(LDRValue); //prints the LDR values to serial monitor delay(5); //This is the speed by which LDR sends value to arduino if (LDRValue < light_sensitivity) { digitalWrite(13, HIGH); } else { digitalWrite(13, LOW); { if (currState() > 300) then currState = HIGH } else currState = LOW //endif if currState != prevState and currState == LOW then // LOW or HIGH depending on the circuit counter++ prevState = currState endif //long startTime = millis(); displayNumber(counter); //while( (millis() - startTime) < 2000) { //displayNumber(1217); //} //delay(1000); } //Given a number, we display 10:22 //After running through the 4 numbers, the display is left turned off //Display brightness //Each digit is on for a certain amount of microseconds //Then it is off until we have reached a total of 20ms for the function call //Let's assume each digit is on for 1000us //Each digit is on for 1ms, there are 4 digits, so the display is off for 16ms. //That's a ratio of 1ms to 16ms or 6.25% on time (PWM). //Let's define a variable called brightness that varies from: //5000 blindingly bright (15.7mA current draw per digit) //2000 shockingly bright (11.4mA current draw per digit) //1000 pretty bright (5.9mA) //500 normal (3mA) //200 dim but readable (1.4mA) //50 dim but readable (0.56mA) //5 dim but readable (0.31mA) //1 dim but readable in dark (0.28mA) void displayNumber(int toDisplay) { #define DISPLAY_BRIGHTNESS 500 #define DIGIT_ON HIGH #define DIGIT_OFF LOW long beginTime = millis(); for(int digit = 4 ; digit > 0 ; digit--) { //Turn on a digit for a short amount of time switch(digit) { case 1: digitalWrite(digit1, DIGIT_ON); break; case 2: digitalWrite(digit2, DIGIT_ON); break; case 3: digitalWrite(digit3, DIGIT_ON); break; case 4: digitalWrite(digit4, DIGIT_ON); break; } //Turn on the right segments for this digit lightNumber(toDisplay % 10); toDisplay /= 10; delayMicroseconds(DISPLAY_BRIGHTNESS); //Display digit for fraction of a second (1us to 5000us, 500 is pretty good) //Turn off all segments lightNumber(10); //Turn off all digits digitalWrite(digit1, DIGIT_OFF); digitalWrite(digit2, DIGIT_OFF); digitalWrite(digit3, DIGIT_OFF); digitalWrite(digit4, DIGIT_OFF); } while( (millis() - beginTime) < 10) ; //Wait for 20ms to pass before we paint the display again } //Given a number, turns on those segments //If number == 10, then turn off number void lightNumber(int numberToDisplay) { #define SEGMENT_ON LOW #define SEGMENT_OFF HIGH switch (numberToDisplay){ case 0: digitalWrite(segA, SEGMENT_ON); digitalWrite(segB, SEGMENT_ON); digitalWrite(segC, SEGMENT_ON); digitalWrite(segD, SEGMENT_ON); digitalWrite(segE, SEGMENT_ON); digitalWrite(segF, SEGMENT_ON); digitalWrite(segG, SEGMENT_OFF); break; case 1: digitalWrite(segA, SEGMENT_OFF); digitalWrite(segB, SEGMENT_ON); digitalWrite(segC, SEGMENT_ON); digitalWrite(segD, SEGMENT_OFF); digitalWrite(segE, SEGMENT_OFF); digitalWrite(segF, SEGMENT_OFF); digitalWrite(segG, SEGMENT_OFF); break; case 2: digitalWrite(segA, SEGMENT_ON); digitalWrite(segB, SEGMENT_ON); digitalWrite(segC, SEGMENT_OFF); digitalWrite(segD, SEGMENT_ON); digitalWrite(segE, SEGMENT_ON); digitalWrite(segF, SEGMENT_OFF); digitalWrite(segG, SEGMENT_ON); break; case 3: digitalWrite(segA, SEGMENT_ON); digitalWrite(segB, SEGMENT_ON); digitalWrite(segC, SEGMENT_ON); digitalWrite(segD, SEGMENT_ON); digitalWrite(segE, SEGMENT_OFF); digitalWrite(segF, SEGMENT_OFF); digitalWrite(segG, SEGMENT_ON); break; case 4: digitalWrite(segA, SEGMENT_OFF); digitalWrite(segB, SEGMENT_ON); digitalWrite(segC, SEGMENT_ON); digitalWrite(segD, SEGMENT_OFF); digitalWrite(segE, SEGMENT_OFF); digitalWrite(segF, SEGMENT_ON); digitalWrite(segG, SEGMENT_ON); break; case 5: digitalWrite(segA, SEGMENT_ON); digitalWrite(segB, SEGMENT_OFF); digitalWrite(segC, SEGMENT_ON); digitalWrite(segD, SEGMENT_ON); digitalWrite(segE, SEGMENT_OFF); digitalWrite(segF, SEGMENT_ON); digitalWrite(segG, SEGMENT_ON); break; case 6: digitalWrite(segA, SEGMENT_ON); digitalWrite(segB, SEGMENT_OFF); digitalWrite(segC, SEGMENT_ON); digitalWrite(segD, SEGMENT_ON); digitalWrite(segE, SEGMENT_ON); digitalWrite(segF, SEGMENT_ON); digitalWrite(segG, SEGMENT_ON); break; case 7: digitalWrite(segA, SEGMENT_ON); digitalWrite(segB, SEGMENT_ON); digitalWrite(segC, SEGMENT_ON); digitalWrite(segD, SEGMENT_OFF); digitalWrite(segE, SEGMENT_OFF); digitalWrite(segF, SEGMENT_OFF); digitalWrite(segG, SEGMENT_OFF); break; case 8: digitalWrite(segA, SEGMENT_ON); digitalWrite(segB, SEGMENT_ON); digitalWrite(segC, SEGMENT_ON); digitalWrite(segD, SEGMENT_ON); digitalWrite(segE, SEGMENT_ON); digitalWrite(segF, SEGMENT_ON); digitalWrite(segG, SEGMENT_ON); break; case 9: digitalWrite(segA, SEGMENT_ON); digitalWrite(segB, SEGMENT_ON); digitalWrite(segC, SEGMENT_ON); digitalWrite(segD, SEGMENT_ON); digitalWrite(segE, SEGMENT_OFF); digitalWrite(segF, SEGMENT_ON); digitalWrite(segG, SEGMENT_ON); break; case 10: digitalWrite(segA, SEGMENT_OFF); digitalWrite(segB, SEGMENT_OFF); digitalWrite(segC, SEGMENT_OFF); digitalWrite(segD, SEGMENT_OFF); digitalWrite(segE, SEGMENT_OFF); digitalWrite(segF, SEGMENT_OFF); digitalWrite(segG, SEGMENT_OFF); break; } }
Question by WWC | last reply
I have attempted to sign up for Pro membership from 2 different locations but when I push the Pro Membership button I am directed to a "unable to connect" screen. Any idea's why? Suggestions on what I could try or is it on your end?
Topic by jetringer51 | last reply
I cant connect your web page with 3G connection but i can connect it with wifi connection, why?
Topic by mr.zawzawhtet | last reply
First things first notice: Iam in Europe so it's probably a bit different than in USA. I have electric radiator in my room. i bought thermo switch but i don't know how to connect it between the socket and the radiator. I must mention that the radiator had already same thermo switch before but it broke down after 5 years and I didn't write notes how it was connected. I already blown 4 fuses during the attempt. The wire has blue (P?), brown (N?) and yellow/ green (earth) wires. In the switch there's sheme sticker -> www.shrani.si/f/C/Nr/42sKtVVC/thermo.png. notice i have a plug and wire from the radiator both with mentioned wires. I checked blue wire and it's live (P??). Green-yellow wire is earth.. iam sure. so how do i connect the plug and the radiator??
Question by Karletto555 | last reply
Hi. I would like to know, how can I get the information to ARDUINO ... that other item/pcb has turn on a motor ??? The PCB that the cables are coming from to the motor is power by one AAA battery. When you turn on the pcb, it sends short bursts to the motor, so it vibrates every second (for half a second). Now I would like to know, how to connect the arduino to the motor, so that the arduino would know when the motor is on ??? Thanks
Question by zholy | last reply
I have a project in mind which would utilize a 12VDC 300ma computer fan. I would like to use an old peripheral wall plug style power supply. I have one rated at 12V 500ma which I think would work fine. Problem: How do I determine +/- if I cut the male plug off of the power supply without shorting out my apartment building or spending the weekend in intensive care? The cord is marked along one lead with a gray "dash".
Topic by blackbird03 | last reply
Ive managed to set up my eldest sons x box to x box live with no problems at all but cannot get my youngest sons x box to connect. Ive put in the code for the router. Ive got a netgear router which is password protected. Has anyone got any ideas what I should do?
Question by 11kj1972 | last reply
Hey, I got an old projector from my school from my school recently, that has a video in, and i have managed to make it wok with my DVD player. My question now is, is it possible to connect it to my computer? It only has One RCA (Actually, I'm not sure its called RCA. The cable that plugs into it looks like this http://www.darlingtoncomputerrepairs.co.uk/images/so123447.jpg) video in cable. I was wondering if this http://www.amazon.com/Sabrent-PC-TV-Converter-Box/dp/B002CMAW20/ref=sr_1_6?s=electronics&ie;=UTF8&qid;=1324852028&sr;=1-6 would work? Does anyone know please? Thanks in advance
Topic by schumi23 | last reply
How to connect IC L298n with Arduino ??
Topic by manjusulagna154 | last reply
I bought a tiny remote controlled helicoptor that connects to the controller to charge up, but where it joins up doesn't have a good connection and it doesn't charge well because of it, what would you recommend? The picture is the exact same one as I have.
Question by Kryptonite
I got a quick question. Is there a way to connect a PSP to a computer to share the internet connection? Like establish an adhoc connection or something or do i need a wireless router. Also is there a way to put games onto a psp without using a custom firmware.
Topic by thematthatter | last reply
Does anybody know how a laptop keyboard connects to the laptop? I'm having some trouble finding out. Also, more importantly, is there a way to convert this connection to USB or PS/2? I'm thinking about an awesome keyboard mod... so any help is greatly appreciated.
Topic by bomberman3 | last reply
Hi can a transformer connected in reverse. if 230v to 12v transformer is connected in reverse,. will it generate around 230v Just some silly doubt. Actually i was trying to find a step up transformer.. which converts 6v to 24v. what exactly its called.
Topic by nominds | last reply
I need help bridging my connections. everytime i try it says i must select two LAN connections that are not using internet connected sharing. i have looked all over and am pretty sure its all off, it wont let memerge the two together by highlighting them either it just moves the connection order around please please help. thank yoou!!!?
Question by RECONWARRIOR | last reply
Hello, I wanted to ask you guys where should connect +3V and ground from this laser pointer assemly, I have 10 of these lying around. So please tell me where I should connect +ve and -ve
Topic by atwajid123 | last reply
Hello I am a student electronic engineering I'm working on a project (the ball - on - plate) and I am having trouble connecting Arduino with matlab please help
Topic by aljaur
Hi guys How to connect orange pi 1with android mobile via vnc app
Question by Mr Qatanani
I have several old laptop screens and I would like to connect them together to show movies in my mancave using a dvd player is this possible
Question by 69olds | last reply
Windows diagnostic says WiFi doesn't have valid IP configuration. IPads and Kindle work fine. Was using it, shut it down, went back later and couldn't connect. It also says that my device is connected but may not be able to access anything on network which I can't. It also says to verify the network security key. I checked and it is the right password. FYI I am not computer savvy.
Question by PeggyS56 | last reply
i want to combine two of 10 ampere Trafo, so i can have 20 Ampere power supply i read a few article that say if we connect the sekunder(secondary) of identical Transformer in pararel, we can have a double time current flow on this connection. do anybody have try this before?
Question by beatobe | last reply
I wont be able to log on via facebook. tried everything and nothing works
Topic by mizka90
I bought a new wireless card for my computer and i can find my network but it refreshes every 5 seconds or so, so i cant connect because it times out. any ideas?
Question by gantyman | last reply
I would like to improve the signal from our modem. (serviced by centurylink)
Question by MizDaizy | last reply
I'm having trouble loading "TI-connect" on my mac so that I can write programs for the ti-84 on the computer. After downloading ti-connect, I click on it, and it seems to want to install it again. I've done the complete loop, repeating the download process about 4 times. Do any of you know what to do?
Topic by Toga_Dan | last reply
Hi im dng a project on traffic control system on emergency lane using image processing.Im done with the image processing part..now i don't know on how to connect xbee transmitter to webcam..can any1 help me
Question by esanthana | last reply
Hi there, I'm having a huge problem connecting my desktop pc to the new wireless network at my home. I can connect via laptop and iphone but just not via my desktop that is using a wireless USB adapter. What can I do to solve this problem? What information do you need for anyone to be able to be able to help. Look forward to any help
Topic by Nzginga | last reply
Dear All... I have an Ac motor FASCO no. 7160-0276 3wire: Back ( com.) Red (start) white(run) But unfortunate can not find this model on internet, So Could you help me to connection this motor with schema if must used with capacitor please tell me how value (mf)of the capacitor Please.Thank you very much for your time.
Question by lam.huuminh.3 | last reply
If your arm's tendon was connected to point 2 instead of 1, then wouldn't we be like 3-4 times stronger than we are now? A bit like C-3PO in Star wars. Look at a picture of his arms.
Question by Millawi Legend | last reply
I should solder 2 wires... one contact can be easily seen, but the other one seems to be... the black plastic???
Question by lllalllo | last reply
How can i replace the wire between my laptop and woofer, with a wireless alternative, so that i can play music from wherever i want at home ?
Question by sunboy89 | last reply
I'm in a family thats just bought a house on an island in Greece for use in the sommer. We would like to be able to connect to the internet from there, but we don't speak their language and don't know where to start looking? Is it possible to get some sort of 3g subscription, which you can pay for as u use it, or would it be better to get a cable let out? Any ideas?
Question by bjarkethomsen
I have a 5th gen IPOD video and while I was replacing the hard drive some of the prongs on a circuit board connection (the thing the ribbon wire connects to) broke off. Now the ribbon wire will not stay in place, the ribbon wire goes in but is not very secure. I was wondering if there was any quick and easy way to fix it. I may need to replace the part and solder a new one in..I personally do not know how to do that but I know someone who can. I just don't know where I could pick up a new part...any ideas?
Topic by breaddemon | last reply
I have a generator that provides 15.5 volts and I have it to one DC 12-volt Battery. I am using a 30Amp Diode, but when I connect the cables to the battery and the output only reads 12.75. When I turn on the 750 watt inverter, It seem to overtake the battery, and takes in very little charge. The battery is new and tested. What am I doing wrong? Thanks, Alex
My t-mobile acct. has been disconnected.But with my husband in Icu I kinda need my phone.If I buy a prepaid sim card can I still use my T-mobile phone?Desperate in Fl.
Question by miamihomegrl | last reply
I have an HP Windows 7 laptop that always had fast internet up until 4 months ago. Its been having 2-3, or sometimes 1 bar now. Im trying to use my personal hotspot but thats not even working. My sister has a Windows 7 laptop as well, uses the same internet and still has better internet connectivity than I do. FULL BARS! I know my laptop is capable of having fast speed too, I just don't know how. I think there is a setting or program stopping it from having better connects.How do I fix this?
Topic by JadeKS | last reply
Hi, everyone! I'm Jess.Before joining the team here at Instructables, I was an Elementary STEM and ESE Teacher, and I have loved art and maker/DIY projects pretty much my entire life. Recently, I’ve seen some really awesome and inspiring projects and noticed that the authors were teachers, so I thought it would be cool to connect here and share what we're working on with other teachers who also love to tinker and make. I'm so excited to learn about what you all are up to and celebrate your crafty, techie, maker awesomeness! :DFeel free to say hi and share about the things you love to create or link to your most recent project in the comments below.
Topic by WeTeachThemSTEM | last reply
Me and my family recently purchased an Auvio soundbar from radioshack. It came with an RCA cable to hook up to our TV. However, my TV uses an "S/PDIF" jack for audio. I don't know where to get one of these, but it's been really inconvenient having to switch the RCAs to whatever component I'm using at the time instead of just hooking it up to the TV. What should I do?
Question by General Eggs | last reply
I want my xbox360 to work on my sony pmf 42x1 monitor using the hdmi cable. I purchased a adapter (hdmi to DVI) from the shack. But when i hook it up i get and error from the sony saying "not in range". Can i adjust something on the monitor to allow it to receive the xbox signal? The only video input i recognize is the s-video. I included a pic from back of sony pmf 42x1 monitor. thx, d
Topic by dethtocats | last reply