سلام من تو یه برنامه از کریستال ساعت استفاده کردم ولی تو پروتیوس جواب میده عملی خیر، اصلا زمان اضافه نمیشه!!! کریستال رو به پایه های 28و29 وصل کردم
مشکلش کجاست
Config Timer2 = Timer , Prescale = 128 , Async = On
Enable Interrupts
Enable Timer2
Enable Ovf2
On Ovf2 Clock
Start Timer2
Dim S As Byte
Dim M As Byte
Dim H As Byte
S = 0
M = 0
H = 0
Start Timer2
Cls
Do
Home
Lcd "time"
Lowerline
Lcd " " ; H ; ":" ; M ; " " ; ":" ; S ; " "
Loop
Clock:
Stop Timer2
Incr S
If S > 59 Then
S = 0
Incr M
If M > 59 Then
M = 0
Incr H
If H > 23 Then
S = 0 : M = 0 : H = 0
Start Timer2
End If
End If
End If
Return
End 'end program
اینم یه برنامه واسه سنسور فتوسله که کار نمیکنه. Aref رو به یک 100nf زمین کردم یه سر فتوسل Vccیه سرش ADC(0 یه پتانسیومتر یه سرش زمین یه سرش ADC
$regfile = "m16def.dat"
$crystal = 1000000
Config Pinb.0 = Output
Config Adc = Single , Prescaler = Auto , Reference = Avcc
Dim X As Word
Start Adc
Do
X = Getadc(0)
If X > 122 Then Reset Portb.0
If X < 81 Then Set Portb.0
Loop
End 'end program
مشکلش کجاست
Config Timer2 = Timer , Prescale = 128 , Async = On
Enable Interrupts
Enable Timer2
Enable Ovf2
On Ovf2 Clock
Start Timer2
Dim S As Byte
Dim M As Byte
Dim H As Byte
S = 0
M = 0
H = 0
Start Timer2
Cls
Do
Home
Lcd "time"
Lowerline
Lcd " " ; H ; ":" ; M ; " " ; ":" ; S ; " "
Loop
Clock:
Stop Timer2
Incr S
If S > 59 Then
S = 0
Incr M
If M > 59 Then
M = 0
Incr H
If H > 23 Then
S = 0 : M = 0 : H = 0
Start Timer2
End If
End If
End If
Return
End 'end program
اینم یه برنامه واسه سنسور فتوسله که کار نمیکنه. Aref رو به یک 100nf زمین کردم یه سر فتوسل Vccیه سرش ADC(0 یه پتانسیومتر یه سرش زمین یه سرش ADC
$regfile = "m16def.dat"
$crystal = 1000000
Config Pinb.0 = Output
Config Adc = Single , Prescaler = Auto , Reference = Avcc
Dim X As Word
Start Adc
Do
X = Getadc(0)
If X > 122 Then Reset Portb.0
If X < 81 Then Set Portb.0
Loop
End 'end program
دیدگاه