10 liens privés
while (Serial.available()<9) {} // Wait 'till there are 9 Bytes waiting
for(int n=0; n<9; n++)
RFin_bytes[n] = Serial.read(); // Then: Get them.
//zoomkat 9-9-10 simple delimited ',' string parce
//from serial port input (via serial monitor)
//and print result out serial port
// CR/LF could also be a delimiter
String readString;
void setup() {
Serial.begin(9600);
}
void loop() {
//expect a string like wer,qwe rty,123 456,hyre kjhg,
//or like hello world,who are you?,bye!,
while (Serial.available()) {
delay(1); //small delay to allow input buffer to fill
char c = Serial.read(); //gets one byte from serial buffer
if (c == ',') {break;} //breaks out of capture loop to print readstring
readString += c; //makes the string readString
}
if (readString.length() >0) {
Serial.println(readString); //prints string to serial port out
//do stuff here
readString=""; //clears variable for new input
}
}
essayer de changer l'alimentation
essayer avec deux rasp
essayer avec arudino
affichage de l heure
Timer pour la cuisine
affichage de la température
affichage du score live des matchs de rennes http://www.foot-national.com/live/live179.html
a comparer avec NCH6100HV et Nixie tubes / Magic eye tubes high voltage power supply module kit DIY (ce dernier est utiloisé ici http://www.instructables.com/id/Driving-two-Nixie-tubes-with-an-Arduino-via-a-shif/?ALLSTEPS) me sembl ele mieux décrit
http://www.ebay.com/itm/261169220982?ssPageName=STRK:MEWAX:IT&_trksid=p3984.m1423.l2649
http://www.ebay.co.uk/itm/NCH6100HV-High-Voltage-DC-Power-Supply-Module-For-Nixie-Tube-Glow-Tube-Magic-Eye/331738257874?_trksid=p2047675.c100005.m1851&_trkparms=aid%3D222007%26algo%3DSIC.MBE%26ao%3D1%26asc%3D20140122125356%26meid%3D1766353119a143f492262012a814a960%26pid%3D100005%26rk%3D1%26rkt%3D6%26sd%3D140964710395
regarder comment sont gerer les cathodes et anodes