- Electroshock par Hugo JACKSON, Pascal CHANDELIER, Valentin MICHEL, Bastien MORTELECQUE et Elliot MAREN de l'Ecole Supérieure des Métiers Artistiques 2011
- Joe par Laetitia Butyn de l'EMCA (Angoulême)
- Road Rage par Nick Khoo
This file contains hidden or 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
| import serial | |
| import time | |
| class pypong: | |
| def __init__(self, port="/dev/ttyACM0", baudrate=38400): | |
| self.__s = serial.Serial(port=port, baudrate=baudrate) | |
| def send_text(self, data): | |
| if len(data) == 432: | |
| try: |
This file contains hidden or 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
| use <write.scad> | |
| // Define box size | |
| // it will compute the hole to leave inside these box | |
| // depending on the wall size | |
| box_size = [120,30,90]; | |
| wall_size = 1.6; | |
| inner_size = [ | |
| box_size[0] - (wall_size * 2), | |
| box_size[1] - (wall_size * 2), |
This file contains hidden or 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
| /Applications/Arduino.app/Contents/Resources/Java/hardware/tools/avr/bin/avr-g++ -c -g -Os -Wall -fno-exceptions -ffunction-sections -fdata-sections -mmcu=atmega2560 -DF_CPU=16000000L -DARDUINO=100 -I/Applications/Arduino.app/Contents/Resources/Java/hardware/arduino/cores/arduino -I/Applications/Arduino.app/Contents/Resources/Java/hardware/arduino/variants/mega -I/Applications/Arduino.app/Contents/Resources/Java/libraries/Wire -I/Users/alx/Documents/Arduino/libraries/Deuligne -I/Applications/Arduino.app/Contents/Resources/Java/libraries/LiquidCrystal /var/folders/df/rc0lj9613dn7fhgs1v1llrlw0000gn/T/build4813587601835859949.tmp/cardreader.cpp -o/var/folders/df/rc0lj9613dn7fhgs1v1llrlw0000gn/T/build4813587601835859949.tmp/cardreader.cpp.o | |
| In file included from cardreader.cpp:1: | |
| Marlin.h:75: warning: only initialized variables can be placed into program memory area | |
| Marlin.h:76: warning: only initialized variables can be placed into program memory area | |
| cardreader.cpp: In member function 'void CardReader::initsd( |
This file contains hidden or 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
| Smiley Deuligne: | |
| /Applications/Arduino.app/Contents/Resources/Java/hardware/tools/avr/bin/avr-g++ -c -g -Os -Wall -fno-exceptions -ffunction-sections -fdata-sections -mmcu=atmega2560 -DF_CPU=16000000L -DARDUINO=100 -I/Applications/Arduino.app/Contents/Resources/Java/hardware/arduino/cores/arduino -I/Applications/Arduino.app/Contents/Resources/Java/hardware/arduino/variants/mega -I/Applications/Arduino.app/Contents/Resources/Java/libraries/Wire -I/Users/alx/Documents/Arduino/libraries/Deuligne /var/folders/df/rc0lj9613dn7fhgs1v1llrlw0000gn/T/build4813587601835859949.tmp/Smiley.cpp -o/var/folders/df/rc0lj9613dn7fhgs1v1llrlw0000gn/T/build4813587601835859949.tmp/Smiley.cpp.o | |
| Marlin: | |
| /Applications/Arduino.app/Contents/Resources/Java/hardware/tools/avr/bin/avr-g++ -c -g -Os -Wall -fno-exceptions -ffunction-sections -fdata-sections -mmcu=atmega2560 -DF_CPU=16000000L -DARDUINO=100 -I/Applications/Arduino.app/Contents/Resources/Java/hardware/arduino/cores/arduino -I/Applications/Arduino.app/Contents/Resources/Jav |
This file contains hidden or 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
| Marlin.cpp: In function 'void screen_display()': | |
| Marlin.pde:-1: error: invalid conversion from 'int*' to 'int' | |
| temperature.h:37: error: too few arguments to function 'float analog2temp(int, uint8_t)' | |
| Marlin.pde:-1: error: at this point in file | |
| Marlin.pde:-1: error: invalid conversion from 'int*' to 'int' | |
| temperature.h:37: error: too few arguments to function 'float analog2temp(int, uint8_t)' | |
| Marlin.pde:-1: error: at this point in file | |
| temperature.h: In function 'void key_interaction(uint8_t)': | |
| temperature.h:35: error: too few arguments to function 'int temp2analog(int, uint8_t)' | |
| Marlin.pde:-1: error: at this point in file |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains hidden or 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
| rew install mplayer --use-gcc | |
| Warning: Building with LLVM, but this formula is reported to not work with LLVM: | |
| Missing symbols error while linking | |
| We are continuing anyway so if the build succeeds, please open a ticket with | |
| the following information: 2336-10.7. So | |
| that we can update the formula accordingly. Thanks! | |
| If it doesn't work you can try: brew install --use-clang |
This file contains hidden or 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
| require 'open-uri' | |
| require 'json' | |
| user = "alx" | |
| api_url = "http://github.com/api/v2/json/repos/watched/#{user}" | |
| nb_issues = 0 | |
| json = open(api_url) do |file| | |
| JSON.parse(file.read) |