sirleech/Webduino - GitHub
FABLAB FRANCE - Google Maps - Nightly
Site Ouvert en août 2010, ouverture en préfiguration objectif 2013 pour le projet d’envergure. Format : ouvert (cotisation 30 euros pour les salariés, 20 euros pour les étudiants) Evaluation : label d... SiteOuvert en août 2010, ouverture en préfiguration objectif 2013 pour le projet d’envergure.Format : ouvert (cotisation 30 euros pour les salariés, 20 euros pour les étudiants)Evaluation : label du MIT - autoévaluation ABAB Statut : association Subventions : mairie de Toulouse (8000 euros), fonds sociaux européens (19000 euros) et fonds du Grand Emprunt (à venir, via Inmediats), budget annuel de 60 000 euros. Equipement : découpe laser, fraiseuse numérique, imprimante 3D MakerBot Cupcake. Projets : Out of Memory, projet artistique présenté dans le cadre du festival Novela 2010 ; Bio fab lab ; Artis factum, projet d’art numérique présenté dans le cadre du festival Novela 2011.
Jeenode infrared project part 1: getting started | Maartendamen's blog
Today I received new Jeenodes, so it’s time for more electronics fun :-) One thing that I head in my head for a while was an infrared receiver and sender. I want it to be like an advanced Logitech Harmony, the main downside on the Logitech Harmony is that there is no status tracking. What happens if the TV is already on, and your Harmony tries to turn it “on”? (right.. *poof* your TV just got powered off) So, in my opinion an ideal remote has integration with my home automation system, and keeps tracking of device statuses (I can use Plugwise for example to determine if my TV is powered on or off) And what to think about turning on the TV on at your preferred time on your preferred channel? Hardware used 1 x Jeenode 1 x USB-BUB 1 x Vishay TSOP 1838 IR receiver (datasheet: 1 x Breadboard Some jumper cables, to connect stuff around… Here’s a picture of my initial setup: Image 1: Jeenode connected to IR receiver module. Software
FoldaRap
La première acquisition de l'Atelier du c01n a été un exemplaire de la FoldaRap d'Emmanuel Gilloz qui est venu en personne l'assembler avec nous courant décembre 2012. Les informations ci-dessous, bien que majoritairement généralistes, concernent le modèle #012 v2.0 dont la carte d'origine Azteeg X1 a été remplacée par une Sanguinololu piloté par un ordinateur sous Xubuntu 12.04 32 bits. Slic3r Slic3r permet de transformer un fichier d'objet 3D en fichier interprétable pour être imprimé. En l’occurrence, dans notre cas, il permet de transformer un fichier .stl en fichier .gcode en lui conférant toute les caractéristiques de l'impression, de l'imprimante et du fil utilisé afin que Pronterface pilote la Foldarap en conséquence. Télécharger l'archive ici, la décompresser, et lancer sclic3r qui se trouve dans le dossier bin. traduction et explication des parametres de Slic3r ici Configuration Pronterface Il existe un PPA pour Ubunutu 12.04: Arduino sudo apt-get install openjdk-7-jre OpenSCAD SketchUp
A Multi-Protocol Infrared Remote Library for the Arduino
Do you want to control your Arduino with an IR remote? Do you want to use your Arduino to control your stereo or other devices? This IR remote library lets you both send and receive IR remote codes in multiple protocols. To use the library, download from github and follow the installation instructions in the readme. How to send This infrared remote library consists of two parts: IRsend transmits IR remote packets, while IRrecv receives and decodes an IR message. #include <IRremote.h> IRsend irsend; void setup() { Serial.begin(9600); } void loop() { if (Serial.read() ! This sketch sends a Sony TV power on/off code whenever a character is sent to the serial port, allowing the Arduino to turn the TV on or off. How to receive IRrecv uses an infrared detector connected to any digital input pin. The examples/IRrecvDemo sketch provides a simple example of how to receive codes: The IRrecv class performs the decoding, and is initialized with enableIRIn(). Hardware setup Some background on IR codes
à la machine | Pas très Net - Nightly
L’édition 2012 de la conférence « Le Web », qui a lieu à Paris du 4 au 6 décembre, a pour thème l’Internet des Objets (IoT, Internet of Things). En français, IdO... Pour expliquer l’importance du sujet, les responsables de l’événement avancent un chiffre : en 2020, 50 milliards de machines seront connectées à Internet. Puis ils citent Michael Nelson, professeur au département Technologie, Culture et Communication de l’université Georgetown (à Washington) : « essayer de déterminer la taille du marché de l’Internet des Objets, c’est comme si, en 1940, on avait essayé de calculer le marché futur des matières plastiques. A l’époque, il était difficile d’imaginer qu’un jour, le plastique serait partout." L’IdO peut signifier mille choses - entre autres, que les machines vont communiquer directement entre elles. On peut aussi extrapoler, en faisant le lien avec un autre processus : l’autonomisation des machines. Mais on s’éloigne de "Le Web 2012".
software → arduino ethernet
Feb 3, 2011 Version 1.0b4 Arduino 0017 or later Download Version History Arduino Ethernet is a collection of libraries I have written to use within the Arduino programming environment in conjunction with the Ethernet shield. While the individual libraries are downloaded within a single archive, they do not depend on each other (unless noted otherwise) and can be used independently. The libraries are published under the GPLv2 (or, at your discretion, any later version). Individual libraries EthernetBonjour | Documentation EthernetDHCP | Documentation EthernetDNS | Documentation Also, by popular demand, I've prepared a very simple demo sketch using DNS, DHCP and Bonjour together. Installation To install the libraries, you need to place the folders contained within the download zip into your "libraries" folder. On a Mac, you will want to create a folder named "libraries" in in the "Documents" → "Arduino" folder within your home directory. Disclaimer
Les nombreuses applications de l'Internet des objets - France Info - Nightly
L'Internet des objets, en anglais : IoT, Internet of Things, est un concept qui consiste à brancher les objets physiques sur un monde virtuel des réseaux informatiques. D'ici à 2020, il devrait y avoir 50 milliards d'objets connectés à Internet. Ordinateurs, smartphones et tablettes, capteurs de températures, lampes, meubles, produits alimentaires, ou même des lieux comme une place ou une rue... Withings est une société qui conçoit, développe, fabrique et commercialise des objets connectés. L'internet des objets a de nombreuses applications, notamment en domotique. La protection des données personnelles "Il faudra instaurer un droit au silence des puces," dit Bernard Benhamou délégué aux usages de l'internet. Un potentiel économique Ce secteur est en très forte croissance. LeWeb sera l'occasion pour plusieurs sociétés de faire le point sur leurs activités et sur le financement des start-up.
aJson – an Arduino JSON Library — Interactive Matter
What is JSON Exchanging data with other computers can be a daunting task with Arduino. No matter if you just want to pass some information to Processing, to a Web Service or something else – You always have to encode the data and decode the answer. There always have been solutions like XML for structured data. It’s like XML, but fat-free. JSON is quite widespread used so that is perfect for exchanging data with other applications. What is aJson aJson is an Arduino library to enable JSON processing with Arduino. It is based on the cJSON implementation, reduced in size and mising one or two features: The code has very limited support on ATmega168 – there is just not enough memory and memory fragmentation is a serious problem Arrays and Lists are max 255 elements big There is no proper Unicode handling in this code There is an internal buffer eating up 256 bytes of RAM You can download the latest version of aJsons from Github. Parsing JSON Parsing streams Filtering while parsing Lists in aJson