Algunas buenas prácticas para programar
Lineamientos Generales para todos los lenguajes
Lineamientos Generales para todos los lenguajes
Tomando en cuenta una pequeña comunidad que hay acá en C.R. sobre Intel Galileo GEN2, acá les presentamos un pequeño resumen introductorio. La línea Galileo de Intel parece estar más orientada a la parte didáctica de microcontroladores que funcionan con ARDUINO mezclada con Micro-computadores que corren LINUX. Enlace con Especificaciones Para “iniciar” con este dispositivo no se necesita... » leer más
Un código muy sencillo que es realmente útil a la hora de almacenar valores en un archivo y leerlos luego. A very simple piece of code that is really useful to read values stored in a file. String readFileValue(){ FILE *filePointer; filePointer = fopen("/myStoredData.txt","r"); char fileContent[100]; fgets (fileContent , 100, filePointer); Serial.println(fileContent); return fileContent; } #Howto... » leer más
Una forma sencilla de crear comandos de LINUX desde el ARDUINO IDE de manera dinámica.
Spanish Version Here One of the many super-powers of Galileo and Edison platforms from Intel is the availablity of LINUX and the possibility of executing LINUX commands from an ARDUINO sketch. In this recipe I am sharing how to make dynamic calls to LINUX from an ARDUINO sketch, concatenating values in an String object and... » leer más