Continue to Site

Welcome to EDAboard.com

Welcome to our site! EDAboard.com is an international Electronics Discussion Forum focused on EDA software, circuits, schematics, books, theory, papers, asic, pld, 8051, DSP, Network, RF, Analog Design, PCB, Service Manuals... and a whole lot more! To participate you need to register. Registration is free. Click here to register now.

Recent content by Kfir Maymon

  1. K

    Looking for us descriptor file for consumer, volume control

    Looking for usb discriptor file for consomer, volume control Dear friends, I'm trying to make volume knob to my pc and i cant figure out how to make a discriptor file, If anybody have consomer discriptor file please please send me moderator action: removed eMail address Thanks in advance
  2. K

    hay guys i decided to build a simple third hand tool

    hay guys i decided to build a simple third hand tool, for more videos please subscribe to my channel
  3. K

    homemade pcb, hay guys i starting a new youtube channel

    hay guys i starting a new youtube channel, i will like to hear what you think. i will make electronic tutorial and electronic project. i will add subtitles to each movie i you want to see more please like and subscribe
  4. K

    [PIC] led dimmer with PWM giving wrong math answer

    temp is a "unsigned long" its a 32 bit (0 to 2147483647) i think my problem is with the "unsigned short" if i write the code: duty1= 255; i get output "duty1 = -3"
  5. K

    [PIC] led dimmer with PWM giving wrong math answer

    i need number between 0-255 for the duty cycle 0% to 100%, i am use "unsigned long temp=0;" i am trying to debug it and doing just this code: temp = (1020 * 254); // make adc value fit short to duty cycle temp= temp/1024; duty1 = temp; now i getting duty1= -2 for some reason he...
  6. K

    [PIC] led dimmer with PWM giving wrong math answer

    i`m building led dimmer with PWM for some reason i get wrong math answer, unsigned short duty1=127; // pwm duty cycle unsigned long temp=0; unsigned int adcval1=0; //ADC 10 bit value char ADCTXT[7],TEMPTXT[11]; //debug string char DUTYTXT[5]; //debug string void...
  7. K

    [SOLVED] PIC UART Routine Yielding Unexpected Results

    same problem with unsigned, i start to think i`m crazy. update: i found the problem, i needed to change, this: IntToStrWithZeros(temp, txtt); to this: LongWordToStrWithZeros(temp, txtt);
  8. K

    [SOLVED] PIC UART Routine Yielding Unexpected Results

    hi, sorry for the stupid question but what i am doing wrong? long temp=0; char txtt[11]; void init(){ CM1CON0=0x07; ANSEL=0x0f; TRISC=0x00; TRISB=0xf0; } void main() { init(); UART1_Init(19200); while(1){ temp = (1023 * 254); IntToStrWithZeros(temp, txtt); UART1_Write_Text("TEMP...
  9. K

    1 sec timer with PIC16F877A

    i build time laps station to one of my friend, for this i needed a 1 second interrupt i used a real time clock ds1307 he save time and data and work separately form the mcu, you can read when ever you like and the time is very accurate.
  10. K

    Calculating max load for relay

    power = voltage * current, for the reliability i take 5 or 10 present insurance, 10 amp * 125 volt = 1250 Watt i would use max 1250 * 90%= 1125 Watt.
  11. K

    LED driving question, Why do I need the resistor?

    i thinking you can use a low pass filter, and you change the value, i hope i don't worng, let's wait and see what brian think i learn form him a lot.
  12. K

    [PIC] i am trying to operate air conditioner with pic 18f4550 and sim900 help!

    this command AT+CMGL="ALL read all massage
  13. K

    [PIC] i am trying to operate air conditioner with pic 18f4550 and sim900 help!

    sorry, i am using mikroc a IR led to control the air conditioner and its working, my problem is when the pic communicate with sim900. i try to explain with this line: pic send:AT+CMGF=1 sim900 send:OK pic send:AT+CMGDA="DEL ALL" sim900 send:OK "when sim get sms" sim900 send:\r\n +CMTI: "SM",1...
  14. K

    [PIC] i am trying to operate air conditioner with pic 18f4550 and sim900 help!

    hi, i am trying to operate air conditioner with pic 18f4550 and sim900, every thing work great when i sending command throw pc terminal and sometime it`s work even with the pic. i think my problem is with the timing. hear is the code:

Part and Inventory Search

Back
Top