Electronic Dice Circuit With PIC12F629

| August 4, 2019 Updated
Electronic Dice Circuit With PIC12F629

the PIC12F629 on a microcontroller based electronic dice. electronic DICE with 14 LEDs dual membranes prepared for application software mikroc used to give random results when a button is pressed for 3 seconds if not used within 15 seconds after it goes to sleep mode normal operation of the circuit of the button continues. Electronic DICE circuit PCB Sprint layout prepared with ISIS simulation software source code that belong to the file and drawing.

Electronic Dice circuit

Electronic Dice Micro C Software

#define Butt GPIO.F3
#define On 0 // button on - GP3=0

void main()
{
unsigned char LED1, LED2, i, Timer = 0, Time_off = 0;

TRISIO = 0;
GPIO = 0;
INTCON = (1<<GPIE); //
IOC=0b00001000; // enable int. on change GP3
T1CON = 1 ; // TMR1-on, 1/65535
CMCON = 7 ;

while(1)
{
if (PIR1.TMR1IF == 1)
{
PIR1.TMR1IF = 0;
Time_off++ ; // increment off-timer to 1 at each 65ms
}

if (Butt == On)
{
Time_off = 0; // clear off-timer
LED1 = (TMR1L%6)+1; //
LED2 = (TMR1H%6)+1; // rand. led1 and led2

for (i=0; i<150; i++) // indication 150*20ms = 3 sec.
{ GPIO = (1<<4)|LED1;
Delay_ms(10);
GPIO = (1<<5)|LED2; Delay_ms(10); } GPIO = 0; } else { if (Time_off > 250)
{ // to sleep in 15s
Time_off = 0;
INTCON.GPIF=0;
GPIO = 0;
asm sleep;
}
}
}
}

Electronic Dice schematic

ciftli-elektronik-zar-elektronik-zar-devresi

source: cxem.net/mc/mc352.php alternative link:

FILE DOWNLOAD LINK LIST (in TXT format): LINKS-25433.zip

Published: 2016/04/22 Tags: ,



2 Comments “Electronic Dice Circuit With PIC12F629

  1. Electronics CircuitsElectronics Circuits

    Microwave Oven Transformer Made with electro magnets

    If you want to make a simple but powerful electromagnet, micro-wave oven transformer and the transformer is cut off with a grinding machine of Palm’s primarily some sufficient labor is subtracted from the primary voltage to the secondary coil of hair after it is given

    handmade electro magnets

    REPLY
  2. Elektronisch ProjekteElektronisch Projekte

    Elektronischer Würfel Schaltplan Mit PIC12F629

    der PIC12F629 auf einem mikrocontroller basierten elektronischen Würfel. elektronischer WÜRFEL mit 14 LEDs, dual-Membranen bereit für die Anwendung der software mikroc verwendet, um zufällige Ergebnisse, wenn Sie eine Taste für 3 Sekunden, wenn nicht innerhalb von 15 Sekunden nach geht es in den Schlaf-Modus Normalbetrieb der Schaltung der Schaltfläche weiter. Elektronischer WÜRFEL-Stromkreis Leiterplatte Sprint-layout vorbereitet mit ISIS-simulation, software-Quellcodes, gehören Sie zu der Datei und Zeichnung.

    REPLY

Leave a Reply

Your email address will not be published. Required fields are marked *

 

Comment moderation is enabled. Your comment may take some time to appear.