Continue to Site

Welcome to our site!

Electro Tech is an online community (with over 170,000 members) who enjoy talking about and building electronic circuits, projects and gadgets. To participate you need to register. Registration is free. Click here to register now.

  • Welcome to our site! Electro Tech is an online community (with over 170,000 members) who enjoy talking about and building electronic circuits, projects and gadgets. To participate you need to register. Registration is free. Click here to register now.

Recent content by john blue

  1. J

    connect the pic with mobile

    Hi, Here is one example: **broken link removed**
  2. J

    HI-Tech C compiler help for PIC12F675 needed

    Please pose your code :)
  3. J

    Switching on/off and turning left/right.

    You nee a h bridge: https://electrobedded.blogspot.com/2011/07/h-bridge.html
  4. J

    7447 BCD to 7 Segment Led with 3 common annode

    simulation with modelsim: https://www.youtube.com/watch?v=IhAHLm_ZQso
  5. J

    7447 BCD to 7 Segment Led with 3 common annode

    This should give you an idea on vwf. https://www.youtube.com/watch?v=8cG2ppWKvTc
  6. J

    7447 BCD to 7 Segment Led with 3 common annode

    There are 3 ways to do this: one is using the hardware - which is through pin assignment. 2nd and 3rd is only involved simulation. This can be done using vector waveform files( .vwf) . In this you find all nodes using View -> utility windows -> node finder. And select the relevant node to...
  7. J

    7447 BCD to 7 Segment Led with 3 common annode

    How do we know what you are doing?
  8. J

    7447 BCD to 7 Segment Led with 3 common annode

    go to assignments -> pin planner in quartus to link the dip switch with LT,BI and RBI. Not sure if thats what you want. Anyway, you will need the hardware to see whether it works or you can study the signal generated. There is no virtual components in quartus. :)
  9. J

    Hi Tech C software I2C DS1307 not working.

    Sorry for the late reply, here is the putch function. its needed for printf also. void putch(unsigned char byte) { /* output one byte */ while(!TRMT) /* set whilst TX in progress */ continue; TXREG = byte; } apparently, i just found out that no read and write from the I2C as it fails...
  10. J

    Simple LED program not working with P89v51rd2

    Please your code :)
  11. J

    ELECTRONICS - ADC, Summing Amplifier & Voltage Help

    1. 2.https://www.wisc-online.com/objects/ViewObject.aspx?ID=SSE3403 3.www.eecs.berkeley.edu/~boser/courses/past/summaries/.../feedback.pdf
  12. J

    Hi Tech C software I2C DS1307 not working.

    Nice suggestion but i will be using the USB as well :D. By the way, hows the mimicking of the problem :)
  13. J

    Hi Tech C software I2C DS1307 not working.

    Nope. will try it soon. :)
  14. J

    Hi Tech C software I2C DS1307 not working.

    Yup. I am using hardware I2C, so, i need software SPI :) Or, if i use hardware SPI, then I need software I2C ? :)

Latest threads

New Articles From Microcontroller Tips

Back
Top