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
public class Employe | |
{ | |
public int Id { get; set; } | |
public string FirstName { get; set; } | |
public string LastName { get; set; } | |
[Display(Name="Years of Experience", ShortName="Nb Exp")] | |
public int ExpYear { get; set; } | |
} |
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
#include <dht11.h> | |
#include <DS1302.h> | |
#include <SD.h> | |
#include <EEPROM.h> | |
// PIN et objet pour le capteur de temperature et humidité (DHT11) | |
#define DHT11PIN 2 | |
dht11 DHT11; | |
// definition des PIN pour le module RTC et objet DS1302 |
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
#define pinRouge 9 | |
#define pinVert 10 | |
#define pinBleu 11 | |
int couleur=1; | |
int ledrgb[] = {0,0,255}; | |
int valNuance = 17; | |
int nbNuance = 15; | |
// valNuance * nbNuance = 255 |
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
#define pinRouge 9 | |
#define pinVert 10 | |
#define pinBleu 11 | |
#define intervalTemps 800 | |
void setup() | |
{ | |
pinMode(pinRouge, OUTPUT); | |
pinMode(pinVert, OUTPUT); | |
pinMode(pinBleu, OUTPUT); |