Page 1 of 1

Simple Library Example

Posted: 04 October 2012, 8:37 AM
by dkinzer
The attached .zip file contains two projects: one to build a simple library and another that uses a function in the library.

The library provides one subroutine that has the signature below. The purpose of the subroutine is to cause an LED whose cathode is connected to the specified pin to momentarily illuminate. The second project then calls this library subroutine in a loop to implement continuous blinking.

Code: Select all

Sub blink(ByVal pin as Byte)
See the readme.txt file in the archive for more information.