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 ciuffoly

  1. C

    C codes for decoding RC5 signals using PIC microcontoller

    algorithm rc5 code example My last version, tested, all ok See photo and C source http://www.audiodesignguide.com/Volume/cs3310_v10c.c
  2. C

    C codes for decoding RC5 signals using PIC microcontoller

    +pic24 ir decoder code int rc5_receive(unsigned int * RC5addr, unsigned int * RC5data) { #define TIME_MIN (200) #define TIME_MAX (1728/2) #define TIME_STEP (5) int OffTime, OnTime, i, j, k; unsigned int code = 0; unsigned int gIRdata = 0, data = 0, addr = 0...
  3. C

    C codes for decoding RC5 signals using PIC microcontoller

    ic to transmit rc5 coding new version here, help me to get the data and addr unsigned int rc5_receive(void) { #define TIME_MAX (1728 / 2 + 100) #define TIME_STEP (10) int OffTime, OnTime, i, j, k; unsigned int code = 0; unsigned char data, addr; unsigned int...
  4. C

    C codes for decoding RC5 signals using PIC microcontoller

    rc5+ccs What you think about this my simple code ? unsigned int rc5_receive(void) { #define TIME_MAX (1728 / 2 + 100) #define TIME_STEP (10) int OffTime, OnTime, i; unsigned int code; if (!IR) { for (i = 0; i < TIME_MAX; i += TIME_STEP) { if (IR) break...

Part and Inventory Search

Back
Top