Artifact 1fc2cb87a485664d5d6d7cceeeaa567c0fbdb146:
- File Pensum/Semestre2/ArteInteractividad/Manizales_011/ARDUINO/Arduino Code/MULTI/arduino_SimpleSM_0.2/SimpleMessageSystem_example_1/SimpleMessageSystem.h — part of check-in [943a54e959] at 2013-01-24 16:47:47 on branch trunk — Organizando las memorias del pensum de lo visto/hecho hasta el momento, por semestres (user: offray size: 1318)
- File Pensum/Semestre2/ArteInteractividad/Manizales_011/ARDUINO/Arduino Code/OUTPUT/Camara_Opto/Camara_Opto/Camara_Opto_sms/SimpleMessageSystem_example_1/SimpleMessageSystem.h — part of check-in [943a54e959] at 2013-01-24 16:47:47 on branch trunk — Organizando las memorias del pensum de lo visto/hecho hasta el momento, por semestres (user: offray size: 1318)
- File Pensum/Semestre2/ArteInteractividad/Manizales_011/ARDUINO/Arduino Code/OUTPUT/Camara_Opto/Camara_Opto/Camara_Opto_sms/SimpleMessageSystem_example_1/applet/SimpleMessageSystem.h — part of check-in [943a54e959] at 2013-01-24 16:47:47 on branch trunk — Organizando las memorias del pensum de lo visto/hecho hasta el momento, por semestres (user: offray size: 1318)
- File Pensum/Semestre2/ArteInteractividad/Manizales_011/ARDUINO/Arduino Code/OUTPUT/Motor DC/Motor_DC_sms/SimpleMessageSystem_example_1/SimpleMessageSystem.h — part of check-in [943a54e959] at 2013-01-24 16:47:47 on branch trunk — Organizando las memorias del pensum de lo visto/hecho hasta el momento, por semestres (user: offray size: 1318)
- File Pensum/Semestre2/ArteInteractividad/Manizales_011/ARDUINO/Arduino Code/OUTPUT/Motor DC/Motor_DC_sms/SimpleMessageSystem_example_1/applet/SimpleMessageSystem.h — part of check-in [943a54e959] at 2013-01-24 16:47:47 on branch trunk — Organizando las memorias del pensum de lo visto/hecho hasta el momento, por semestres (user: offray size: 1318)
- File Pensum/Semestre2/ArteInteractividad/Manizales_011/ARDUINO/Arduino Code/OUTPUT/Pwm output/PWM_leds_sms/SimpleMessageSystem_example_1/SimpleMessageSystem.h — part of check-in [943a54e959] at 2013-01-24 16:47:47 on branch trunk — Organizando las memorias del pensum de lo visto/hecho hasta el momento, por semestres (user: offray size: 1318)
- File Pensum/Semestre2/ArteInteractividad/Manizales_011/ARDUINO/Arduino Code/Wireless/arduino_SimpleSM_0.2/SimpleMessageSystem_example_1/SimpleMessageSystem.h — part of check-in [943a54e959] at 2013-01-24 16:47:47 on branch trunk — Organizando las memorias del pensum de lo visto/hecho hasta el momento, por semestres (user: offray size: 1318)
- File Pensum/Semestre2/ArteInteractividad/Manizales_011/ARDUINO/Arduino Code/Wireless/arduino_SimpleSM_0.2/SimpleMessageSystem_example_1/applet/SimpleMessageSystem.h — part of check-in [943a54e959] at 2013-01-24 16:47:47 on branch trunk — Organizando las memorias del pensum de lo visto/hecho hasta el momento, por semestres (user: offray size: 1318)
/* Made by Thomas Ouellet Fredericks Comments and questions: tof@danslchamp.org Use as you like. Orignal version: 27th of June 2006. Approximative library size: 500 bytes. SimpleMessageSystem is a library for Arduino. It facilitates communication with terminals or message based programs like Pure Data or Max/Msp. */ #ifndef SimpleMessageSystem_h #define SimpleMessageSystem_h // ---- FUNCTIONS ---- // RECEIVING // If the message has been terminated, returns the size of the message including spaces. // WARNING: if you make a call to messageBuild() it will discard any previous message! int messageBuild(); // If a word is available, returns it as a char. If no word is available it will return 0. // WARNING: if you send something like "foo", it will return 'f' and discard "oo". char messageGetChar(); // If a word is available, returns it as an integer. If no word is available it will return 0. int messageGetInt(); // SENDING // Send a character, prepend a space if it the second element sent. void messageSendChar(char value); // Send an integer, prepend a space if it the second element sent. void messageSendInt(int value); // Terminate the message to signal the target that the message can be processed. void messageEnd(); #endif