Gönderen Konu: C DİLİ DÖKÜMANLAR VE DERLEYİCİ PROGRAMLARI  (Okunma sayısı 6069 defa)

0 Üye ve 1 Ziyaretçi konuyu incelemekte.

Çevrimdışı huseyin05

  • Yüzbaşı
  • ***
  • İleti: 769
  • Cinsiyet: Bay
C DİLİ DÖKÜMANLAR VE DERLEYİCİ PROGRAMLARI
« : 03 Ocak 2011, 04:08:32 »
http://hotfile.com/dl/93793388/56dd2db/c_dl_le_lgl.rar.html arkadaşlar c dili ile ilgili dökümanlara ve derleyecilere buradan ulaşabilirsiniz. ;)

Çevrimdışı cihan19

  • Yüzbaşı
  • ***
  • İleti: 393
  • Cinsiyet: Bay
  • Çalışarak emek vererek devam edeceğiz.
Ynt: C DİLİ DÖKÜMANLAR VE DERLEYİCİ PROGRAMLARI
« Yanıtla #1 : 02 Mart 2011, 01:21:56 »
telif hakkı yüzünden silinmiştir diyo yenilerseniz sevinirim iyi çalışmalar.
ENDUSTRİYEL ELEKTRONİK FETHİYE

Çevrimdışı huseyin05

  • Yüzbaşı
  • ***
  • İleti: 769
  • Cinsiyet: Bay

Çevrimdışı atilla büyükçelebi

  • Er
  • İleti: 1
  • www.teknolojiekibi.com
RGB 12f675 programı
« Yanıtla #3 : 26 Nisan 2019, 09:47:18 »

arkadaşlar
 12f675 ile rgb programı yapmak istiyorum
yani 4 kanallı devrede 1. led yanarken 3.led de yanacak 2.led yanarken 3 led yanaca
4.led yanarken 2 led ile birlitde yanmasını istiyorum nasıl yapa bilirim
bu rada 5 ledli  sırayla yana  devre programı var bunu
rgb olarak çalıştırmak istiyorum  yardım ederseniz cok sevinirim..teşekkürler










#include <12f5 led.h>
 #fuses INTRC_IO,NOWDT,NOPUT,NOPROTECT,NOCPD,NOMCLR 
 #use delay(clock=4000000)   
 #define GP0 PIN_A0   
 #define GP1 PIN_A1   
 #define GP2 PIN_A2   
 #define GP3 PIN_A3   
 #define GP4 PIN_A4   
 #define GP5 PIN_A5   
 void init()   
 {   
 set_tris_a( 0b10000 ); // set GP1 output, all other inputs   
 setup_comparator( NC_NC_NC_NC ); // disable comparators   
 setup_adc_ports( NO_ANALOGS ); // disable analog inputs   
 setup_adc( ADC_OFF ); // disable A2D   
 }   
 main()   
 {   
 init();   
 while ( TRUE ) // blink LED   
 {   
 output_high( GP0 ); // turn LED on   
 delay_ms( 500 ); // wait 250ms   
 output_low( GP0 ); // turn LED off   
 delay_ms( 150 ); // wait 250ms 
 
 output_high( GP1); // turn LED on   
 delay_ms( 600 ); // wait 250ms 
  output_low( GP1 ); // turn LED off   
 delay_ms( 150 ); // wait 250ms
 
  output_high(GP2); // turn LED on   
 delay_ms( 700 ); // wait 250ms   
 output_low( GP2 ); // turn LED off   
 delay_ms( 150 ); // wait 250ms   
 
 output_high(GP4); // turn LED on   
 delay_ms( 800 ); // wait 250ms   
 output_low( GP4 ); // turn LED off   
 delay_ms( 150 ); // wait 250ms 
 
 output_high(GP5); // turn LED on   
 delay_ms( 900 ); // wait 250ms   
 output_low( GP5 ); // turn LED off   
 delay_ms( 150 ); // wait 250ms   
 }   
 }