Skip to content

Instantly share code, notes, and snippets.

View Sarah-C's full-sized avatar

Sarah Cartwright Sarah-C

View GitHub Profile
/*
* Simple code for a flickering candle project.
*
* This version is for Texas Instruments eZ430-F2013 MCU.
* Using Code Composer Essentials for MSP430 version 2.0.4.2
*
* Based on a project by Garde ( http://www.instructables.com/member/Gadre/ )
* http://www.instructables.com/id/YAFLC_Yet_Another_Flickering_LED_Candle/
*
*
using System;
public class C {
int x=5;
public void check() {
if( x > 20) x=6;
}
}