<root>
<document schema='101' license='50,Dev User,XDKHX7' title='' description='' target='PIC.16F.16F877A' >
	<config data='!0,3f72%0,2%2,0%3,0%6,1%7,0%9,3%b,1%8,1%d,1' clkspd='19660800' simspd='0' usewdt='0' constif='0' />
	<plugins >
		<dll_dbg_icd enabled='0' >
			<data name='debug' value='1' />
			<data name='userpins' value='0' />
			<data name='speed' value='1000' />
			<data name='usev9' value='0' />
			<data name='breaks' value='8' />
			<data name='stacks' value='8' />
			<data name='clkport' value='1' />
			<data name='clkbit' value='6' />
			<data name='dataport' value='1' />
			<data name='databit' value='7' />
			<data name='monitor' value='1' />
			<data name='ictloop' value='1' />
			<data name='ictrate' value='1000' />
			<data name='ictmask' value='-1' />
		</dll_dbg_icd>
		<dll_models enabled='1' />
		<dll_upgrader enabled='1' />
		<dll_webhelp enabled='1' />
	</plugins>
	<supplement use='0' head='' body='' />
	<debug />
	<components >
		<settings autoimg='1' center='1' unitscale='0' fixedscale='0' fixedx='1' fixedy='1' fixedz='1' headcode='0' />
		<definition guid='151a96e1-9f3b-46db-94f3-2849efc39452' vmin='0' vmaj='1' srcleaf='' visiblename='' description='' category='' catenable='1' author='' manuname='' manucode='' sysinfo='0' keywords='' dynamic='0' iconpath='' />
		<component class_type='root' codename='panel' x='0' y='0' z='0' xsz='1' ysz='1' zsz='1' xang='0' yang='0' zang='0' xquat='0' yquat='0' zquat='0' wquat='1' visible='1' interactive='1' solid='1' layer='0' poslock='0' >
			<resources />
			<properties />
			<values />
			<events />
			<apis />
			<variables >
				<variable public='0' >
					<def class_type='variable' name='Count' type='u16' description='' isconst='0' isinit='0' usrinit='0' setinit='' />
				</variable>
				<variable public='0' >
					<def class_type='variable' name='false' type='b1' description='' isconst='1' isinit='1' usrinit='0' setinit='0' />
				</variable>
				<variable public='0' >
					<def class_type='variable' name='NumDisplays' type='s16' description='' isconst='1' isinit='1' usrinit='4' setinit='4' />
				</variable>
				<variable public='0' >
					<def class_type='variable' name='TimerCount' type='u8' description='' isconst='0' isinit='0' usrinit='0' setinit='' />
				</variable>
				<variable public='0' >
					<def class_type='variable' name='true' type='b1' description='' isconst='1' isinit='1' usrinit='1' setinit='1' />
				</variable>
			</variables>
			<macros >
				<macro >
					<flowline name='Main' description='' >
						<command class_type='calculation' title='Calculation' >
							<exp exp='Count = 0' />
							<exp exp='TimerCount = 0' />
						</command>
						<command class_type='interrupt' title='Interrupt' enable='1' name='TMR0' call='Timer_Int' >
							<settings timer='1' prescale='16' postscale='-1' rollover='-1' bitcount='-1' trigger='3' maskhi='--------------------------------------------------------------------------------------------------------------------------------------------------------------------------8' masklo='--------------------------------------------------------------------------------------------------------------------------------------------------------------------------8' >
								<option value='1' />
								<option value='0' />
								<option value='4' />
								<option value='-1' />
							</settings>
						</command>
						<command class_type='loop' title='Loop' type='0' exp='1' start='1' breakend='0' count='1' >
							<flowline >
								<command class_type='delay' title='Delay' exp='100' type='1' />
								<command class_type='calculation' title='Calculation' >
									<exp exp='Count = Count + 1' />
								</command>
							</flowline>
						</command>
					</flowline>
				</macro>
				<macro >
					<flowline name='Timer_Int' description='' >
						<local name='MaskedVar' type='u8' description='' isconst='0' isinit='0' usrinit='0' setinit='' />
						<command class_type='switch' title='Switch' textarea='36,25,36,25' exp='TimerCount' >
							<case >
								<flowline >
									<command class_type='calculation' title='Calculation' >
										<exp exp='.MaskedVar = (Count % 10000) / 1000' />
									</command>
									<command class_type='call' title='Call Component Macro' component='led_7seg_quad' macro='ShowDigit' >
										<argument exp='0' />
										<argument exp='.MaskedVar' />
										<argument exp='0' />
									</command>
								</flowline>
							</case>
							<case exp='1' >
								<flowline >
									<command class_type='calculation' title='Calculation' >
										<exp exp='.MaskedVar = (Count % 1000) / 100' />
									</command>
									<command class_type='call' title='Call Component Macro' component='led_7seg_quad' macro='ShowDigit' >
										<argument exp='1' />
										<argument exp='.MaskedVar' />
										<argument exp='0' />
									</command>
								</flowline>
							</case>
							<case exp='2' >
								<flowline >
									<command class_type='calculation' title='Calculation' >
										<exp exp='.MaskedVar = (Count % 100) / 10' />
									</command>
									<command class_type='call' title='Call Component Macro' component='led_7seg_quad' macro='ShowDigit' >
										<argument exp='2' />
										<argument exp='.MaskedVar' />
										<argument exp='1' />
									</command>
								</flowline>
							</case>
							<case exp='3' >
								<flowline >
									<command class_type='calculation' title='Calculation' >
										<exp exp='.MaskedVar = Count % 10' />
									</command>
									<command class_type='call' title='Call Component Macro' component='led_7seg_quad' macro='ShowDigit' >
										<argument exp='3' />
										<argument exp='.MaskedVar' />
										<argument exp='0' />
									</command>
								</flowline>
							</case>
						</command>
						<command class_type='calculation' title='Calculation' >
							<exp exp='TimerCount = TimerCount + 1' />
						</command>
						<command class_type='decision' title='Decision' exp='TimerCount = NumDisplays' swap='0' >
							<flowline >
								<command class_type='calculation' title='Reset Count' >
									<exp exp='TimerCount = 0' />
								</command>
							</flowline>
							<flowline />
						</command>
					</flowline>
				</macro>
			</macros>
			<component class_type='ref' guid='f4400e36-dd95-4472-86da-4bba68d68d5d' vmin='2' vmaj='1' codename='led_7seg_quad' x='-0.304849' y='-0.152425' z='0' xsz='50.4' ysz='19' zsz='8' xang='0' yang='0' zang='0' xquat='0' yquat='0' zquat='0' wquat='1' visible='1' interactive='1' solid='1' layer='0' poslock='0' >
				<resources />
				<properties />
				<values >
					<value target='Display_Type' data='001' />
					<value target='ShowSegLabels' data='1' />
					<value target='Common_Pin0' data='$PORTA.0' />
					<value target='Common_Pin1' data='$PORTA.1' />
					<value target='Common_Pin2' data='$PORTA.2' />
					<value target='Common_Pin3' data='$PORTA.3' />
					<value target='Pin0' data='$PORTB.0' />
					<value target='Pin1' data='$PORTB.1' />
					<value target='Pin2' data='$PORTB.2' />
					<value target='Pin3' data='$PORTB.3' />
					<value target='Pin4' data='$PORTB.4' />
					<value target='Pin5' data='$PORTB.5' />
					<value target='Pin6' data='$PORTB.6' />
					<value target='Pin7' data='$PORTB.7' />
					<value target='FGColor' data='65280' />
					<value target='BGColor' data='0' />
					<value target='LabelColor' data='16777215' />
				</values>
				<events />
				<apis />
				<variables />
				<macros />
			</component>
		</component>
	</components>
	<keymap />
	<panel2d shadows='0' lighting='0' brightness='0' perspective='0' >
		<background rgb='0' img='' style='0' />
		<camera xe='0' ye='0' ze='300' xt='0' yt='0' zt='0' xquat='0' yquat='0' zquat='0' wquat='1' />
	</panel2d>
	<panel3d shadows='0' lighting='0' brightness='0' perspective='0' >
		<background rgb='8409120' img='' style='5' />
		<table rgb='7360576' img='' style='0' size='25' />
		<camera xe='0' ye='0' ze='86.8446' xt='0' yt='0' zt='0' xquat='0' yquat='0' zquat='0' wquat='1' />
	</panel3d>
	<layout >
		<view type='0' name='Main' mode='0' placement='LAAAAAAAAAABAAAA---------------------wAAAAAUAAAAeAQAAJEDAAA' zoom='75' scrollx='0' scrolly='0' flags='0' />
		<view type='0' name='Timer_Int' mode='0' placement='LAAAAAAAAAABAAAA---------------------wAAAAAUAAAAeAQAAJEDAAA' zoom='75' scrollx='314' scrolly='0' flags='0' />
	</layout>
</document>
</root>
