Author |
Message |
Topic: RDA5807 FM Tuner Module Library |
necati
Replies: 2
Views: 5819
|
Forum: General CCS C Discussion Posted: Mon Sep 25, 2023 12:45 am Subject: RDA5807 FM Tuner Module Library |
http://microcontrolandos.blogspot.com/2014/12/pic-rda5807.html |
Topic: Rotary Encoder |
necati
Replies: 18
Views: 40193
|
Forum: General CCS C Discussion Posted: Sat Nov 19, 2016 10:48 am Subject: Rotary Encoder |
https://sites.google.com/site/proyectosroboticos/encoder/encoder-por-software |
Topic: Reading a rotary encoder..... |
necati
Replies: 15
Views: 50102
|
Forum: General CCS C Discussion Posted: Wed Apr 20, 2016 10:02 pm Subject: encoder |
https://sites.google.com/site/proyectosroboticos/encoder/encoder-por-software |
Topic: sine pwm |
necati
Replies: 6
Views: 14835
|
Forum: General CCS C Discussion Posted: Wed Jul 29, 2015 9:18 am Subject: spwm |
http://www.picvietnam.com/forum/showthread.php?t=1487&page=5 |
Topic: hx-711 driver |
necati
Replies: 2
Views: 19938
|
Forum: General CCS C Discussion Posted: Tue Mar 24, 2015 4:43 pm Subject: hx711 |
#include <main.h>
#include <stdio.h>
#ZERO_RAM
#define HX711_DO PIN_B15
#define HX711_CLK PIN_B14
int32 measurement(void);
void main()
{
int1 test=0;
u ... |
Topic: Sounds and Melodys 16F887 |
necati
Replies: 14
Views: 27098
|
Forum: General CCS C Discussion Posted: Mon Mar 16, 2015 12:19 am Subject: Sounds and Melodys 16F887 |
http://larios.tecnologia.ws/iBlog/archives/6632 |
Topic: reading rotary encoder without interrupts(?) |
necati
Replies: 13
Views: 22897
|
Forum: General CCS C Discussion Posted: Sun Feb 15, 2015 3:23 am Subject: PIC Encoder |
https://sites.google.com/site/proyectosroboticos/encoder/encoder-por-software/encoder-simple-con-16f628a
https://sites.google.com/site/proyectosroboticos/encoder/encoder-por-software |
Topic: how add hysteresis in my code |
necati
Replies: 17
Views: 35071
|
Forum: General CCS C Discussion Posted: Sun Apr 28, 2013 4:12 pm Subject: adc |
while(1){
set_adc_channel(0);
delay_ms(1);
adc_u=read_adc();
if (adc_u>= 170 || adc_u<= 240){output_high(pin_a5);
else{output_low(pin_a5);}
} |
Topic: NOKIA .C |
necati
Replies: 6
Views: 12183
|
Forum: General CCS C Discussion Posted: Sat Mar 16, 2013 2:21 pm Subject: pcf8833 |
//pcf8833.c
////////////////////////////////////////////////////////////////////////////////
//// GFX driver for Nokia 6100 color LCD screen ////
//// Graphic Con ... |
Topic: source code for load cell |
necati
Replies: 8
Views: 16573
|
Forum: General CCS C Discussion Posted: Fri Mar 01, 2013 12:23 pm Subject: losd cell |
http://www.steeman.be/?p=192
http://steeman.be/files/Load%20cell%20amplifier/18F2550%20timer.c |
Topic: Power Meter ADC problems |
necati
Replies: 22
Views: 37179
|
Forum: General CCS C Discussion Posted: Mon Feb 25, 2013 8:17 pm Subject: Power Meter ADC problems |
http://coolcircuit.com/project/digital_amp_meter/picmicro_digital_amp_meter.html
Calculating volt to amp for Vcc 5V
From ACS712 data sheet we know :
0 A = Vcc/2 = 2.5V or 512 analog counts or 0 ... |
Topic: Printf Code |
necati
Replies: 12
Views: 14100
|
Forum: General CCS C Discussion Posted: Sun Feb 24, 2013 7:00 am Subject: pwm |
/*
* File: Test.c
* Author: Administrator
*
* Created on February 22, 2013, 9:15 PM
*/
#include <18f4431.h>
#device ADC=10
#device *=16
//#fuses INTRC_IO,NOWDT,NOPROTECT, ... |
Topic: Problem for pic16f877a with siemen tc35 gsm modem using ccs |
necati
Replies: 6
Views: 8932
|
Forum: General CCS C Discussion Posted: Sat Jan 19, 2013 8:34 am Subject: SMS GSM TC35i |
http://www.aquihayapuntes.com/indice-practicas-pic-en-c/control-de-mensajes-sms-a-traves-de-un-pic.html?start=1 |
Topic: 2 rotary encoders interrupt problem |
necati
Replies: 10
Views: 13032
|
Forum: General CCS C Discussion Posted: Sun Jun 17, 2012 6:35 pm Subject: rotary encoder |
http://320volt.com/pic16f628-74hc595-sayici-ccs-c/ |
Topic: PYD1998 read |
necati
Replies: 3
Views: 7052
|
Forum: General CCS C Discussion Posted: Sat Jun 16, 2012 4:26 am Subject: PYD1998 read |
#define IRSENSE_IO PIN_C4 //
int8 i,j;
int16 data=0,dat;
void PYD1998(void){
data=0;
input(IRSENSE_IO);
while(!input(IRSENSE_IO)){
for ... |
|