My favorites | Sign in
Project Home Downloads Issues Source
Checkout   Browse   Changes    
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
-- Title: Blink-a-LED sample for Jaluino Medium (18F4550 based)
-- Author: Sébastien Lelong, Copyright (c) 2008..2009, all rights reserved.
-- Adapted-by:
-- Compiler: 2.4l
-- Revision: $Revision$
--
-- This file is part of jaluino (http://jaluino.googlecode.com)
-- Released under the BSD license (http://www.opensource.org/licenses/bsd-license.php)
--
-- Description: this program blinks a LED for ever... LED is connected to RA0, through a 1K
-- resistor
--

include jaluino_medium
include delay

-- Assuming LED is enable on hardware (jumper)
onboard_led_direction = output

forever loop
onboard_led = on
delay_1ms(250)
onboard_led = off
delay_1ms(250)
end loop

Change log

r373 by sebastien.lelong on Jul 31, 2011   Diff
added Revision: field in jal source files
Go to: 
Project members, sign in to write a code review

Older revisions

r272 by sebastien.lelong on Dec 5, 2010   Diff
jaluino_blink using onboard LED
r243 by sebastien.lelong on Aug 16, 2010   Diff
fix comments, added Editra as SVN
external ref
r72 by sebastien.lelong on Dec 23, 2009   Diff
basic getting started in README
All revisions of this file

File info

Size: 683 bytes, 26 lines

File properties

svn:keywords
Revision
Powered by Google Project Hosting