This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
* 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/ | |
* | |
* |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System; | |
public class C { | |
int x=5; | |
public void check() { | |
if( x > 20) x=6; | |
} | |
} |