element14 Community
element14 Community
    Register Log In
  • Site
  • Search
  • Log In Register
  • Community Hub
    Community Hub
    • What's New on element14
    • Feedback and Support
    • Benefits of Membership
    • Personal Blogs
    • Members Area
    • Achievement Levels
  • Learn
    Learn
    • Ask an Expert
    • eBooks
    • element14 presents
    • Learning Center
    • Tech Spotlight
    • STEM Academy
    • Webinars, Training and Events
    • Learning Groups
  • Technologies
    Technologies
    • 3D Printing
    • FPGA
    • Industrial Automation
    • Internet of Things
    • Power & Energy
    • Sensors
    • Technology Groups
  • Challenges & Projects
    Challenges & Projects
    • Design Challenges
    • element14 presents Projects
    • Project14
    • Arduino Projects
    • Raspberry Pi Projects
    • Project Groups
  • Products
    Products
    • Arduino
    • Avnet & Tria Boards Community
    • Dev Tools
    • Manufacturers
    • Multicomp Pro
    • Product Groups
    • Raspberry Pi
    • RoadTests & Reviews
  • About Us
    About the element14 Community
  • Store
    Store
    • Visit Your Store
    • Choose another store...
      • Europe
      •  Austria (German)
      •  Belgium (Dutch, French)
      •  Bulgaria (Bulgarian)
      •  Czech Republic (Czech)
      •  Denmark (Danish)
      •  Estonia (Estonian)
      •  Finland (Finnish)
      •  France (French)
      •  Germany (German)
      •  Hungary (Hungarian)
      •  Ireland
      •  Israel
      •  Italy (Italian)
      •  Latvia (Latvian)
      •  
      •  Lithuania (Lithuanian)
      •  Netherlands (Dutch)
      •  Norway (Norwegian)
      •  Poland (Polish)
      •  Portugal (Portuguese)
      •  Romania (Romanian)
      •  Russia (Russian)
      •  Slovakia (Slovak)
      •  Slovenia (Slovenian)
      •  Spain (Spanish)
      •  Sweden (Swedish)
      •  Switzerland(German, French)
      •  Turkey (Turkish)
      •  United Kingdom
      • Asia Pacific
      •  Australia
      •  China
      •  Hong Kong
      •  India
      •  Japan
      •  Korea (Korean)
      •  Malaysia
      •  New Zealand
      •  Philippines
      •  Singapore
      •  Taiwan
      •  Thailand (Thai)
      •  Vietnam
      • Americas
      •  Brazil (Portuguese)
      •  Canada
      •  Mexico (Spanish)
      •  United States
      Can't find the country/region you're looking for? Visit our export site or find a local distributor.
  • Translate
  • Profile
  • Settings
Arduino
  • Products
  • More
Arduino
Arduino Forum Arduino Nano Project Questions
  • Blog
  • Forum
  • Documents
  • Quiz
  • Events
  • Polls
  • Files
  • Members
  • Mentions
  • Sub-Groups
  • Tags
  • More
  • Cancel
  • New
Join Arduino to participate - click to join for free!
Actions
  • Share
  • More
  • Cancel
Forum Thread Details
  • State Not Answered
  • Replies 3 replies
  • Subscribers 416 subscribers
  • Views 597 views
  • Users 0 members are here
Related

Arduino Nano Project Questions

e14 Contributor
e14 Contributor over 12 years ago

I have a project that I would like to use the Arduino Nano . This project has the following requirements:

  • 1.       Run off a 12vdc power supply
  • 2.       To read a voltage that will vary form 0 - 12vdc volts, by a 90ohm pot.
  • 3.       Output a 0-12vdc voltage to an analog gauge.
  • 4.       Read an 8k pulse per single turn magnetic pulse generator. Output Voltage unknown as I am guessing somewhere in the MV range. Two wire system, GND and siginal.
  • 5.       0-12vdc Vacuum sensor.

Items 1 & 5 I know I can use the Analog input. It is item 3 & 4 I am not sure of. Any help with hardware and software would be appreciated.

  • Sign in to reply
  • Cancel
Parents
  • dougw
    0 dougw over 12 years ago

    Hi Phil,

    If this is a vehicle, keep in mind the nominal 12V signals can be as high as 14.4V when the vehicle is running, so your voltage dividers on "12V" sensors should reduce 15V to 5V (for a little safety margin).

    To amplify an analog signal from 5V to 12V you can use a non-inverting op-amp circuit such as in this app note:

    http://www.ti.com/ww/en/bobpease/assets/AN-31.pdf

    I would regulate the 14V battery to 12V with a low dropout regulator to supply voltage to the op-amp which would need to be a rail-to-rail model.

    The Arduino would use a 5V regulator.

    Magnetic pickup output voltage varies with gear speed and physical gap and different models output anywhere from zero to 200Vac, usually at least 7 Vp-p. They all output AC voltage, unless there is built-in circuitry. If there is no built-in circuitry, you can convert the AC signal to DC pulses using a diode to only pass the positive phase of the AC signal followed by a resistor and 4.7V zener diode to clamp the maximum to 4.7 volts. More sensitive circuitry is possible, but also more complex. This digital pulse signal may need to feed an interrupt pin or a counter.

    Doug

    • Cancel
    • Vote Up 0 Vote Down
    • Sign in to reply
    • Verify Answer
    • Cancel
Reply
  • dougw
    0 dougw over 12 years ago

    Hi Phil,

    If this is a vehicle, keep in mind the nominal 12V signals can be as high as 14.4V when the vehicle is running, so your voltage dividers on "12V" sensors should reduce 15V to 5V (for a little safety margin).

    To amplify an analog signal from 5V to 12V you can use a non-inverting op-amp circuit such as in this app note:

    http://www.ti.com/ww/en/bobpease/assets/AN-31.pdf

    I would regulate the 14V battery to 12V with a low dropout regulator to supply voltage to the op-amp which would need to be a rail-to-rail model.

    The Arduino would use a 5V regulator.

    Magnetic pickup output voltage varies with gear speed and physical gap and different models output anywhere from zero to 200Vac, usually at least 7 Vp-p. They all output AC voltage, unless there is built-in circuitry. If there is no built-in circuitry, you can convert the AC signal to DC pulses using a diode to only pass the positive phase of the AC signal followed by a resistor and 4.7V zener diode to clamp the maximum to 4.7 volts. More sensitive circuitry is possible, but also more complex. This digital pulse signal may need to feed an interrupt pin or a counter.

    Doug

    • Cancel
    • Vote Up 0 Vote Down
    • Sign in to reply
    • Verify Answer
    • Cancel
Children
  • e14 Contributor
    0 e14 Contributor over 12 years ago in reply to dougw

    Thanks Doug for the reply. And yes this will go in to a car. I thought from the spec I read, the board was good up to 20vdc max. If I understand you correctly the inputs must be 5vdc max and all outputs will need to control 5vdc relays. And does the 5vdc max go for the Analog input to.

    If so any analog signals (0-12vdc) will need to be reduced to 0-5vdc for the Analog Input. And I guess I will need a DAC for the output of 0-12vdc.

    1 function of what need to control is my gas gauge. I replaced the tank in an old car and it does not have any baffles in it and the gas gauge bounces all around. I figured I would input the sending unit into an analog input. Write code so when I start the car it would take the current reading and output that voltage to the gauge then I would sample the sending unit every 1sec for 15sec's take the average of those readings and compare to the current output voltage and if within 95% of the current output then reset the output to the new reading then repeat. If it was not within the 95% then skip and repeat.

    Once I get this working I then want to add a Miles per Gal display which will require a Flow meter & a speed sensor, which I think I will use a proxy instead of the magnetic sensor.

    And the finial function would be to control the Lockup Torque Converter in the new transmission I installed. This will also require a Vacuum analog sensor and an analog Throttle Position Sensor along with the Speed Sensor.

    • Cancel
    • Vote Up 0 Vote Down
    • Sign in to reply
    • Verify Answer
    • Cancel
element14 Community

element14 is the first online community specifically for engineers. Connect with your peers and get expert answers to your questions.

  • Members
  • Learn
  • Technologies
  • Challenges & Projects
  • Products
  • Store
  • About Us
  • Feedback & Support
  • FAQs
  • Terms of Use
  • Privacy Policy
  • Legal and Copyright Notices
  • Sitemap
  • Cookies

An Avnet Company © 2026 Premier Farnell Limited. All Rights Reserved.

Premier Farnell Ltd, registered in England and Wales (no 00876412), registered office: Farnell House, Forge Lane, Leeds LS12 2NE.

Follow element14

  • X
  • Facebook
  • linkedin
  • YouTube