Skip to main content

DIY IoT: sweet memories

With all the hype that do-it-yourself IoT is getting today, we're seing solderless boards connected to computers. That brings back good old memories to me.

At the back of my books you can read that I controlled my electric train using an Atari ST. It was HO scale and I used the computer's parallel port connected to some relays. That was circa 1990.

Well I don't have pictures of that but then I moved on to controlling a tinier train with a Psion Series 3 circa 1992. Same solderless boards and relays. I don't have pictures from that time either but I do still have the hardware, thanks to my parents:


Unfortunately it's disconnected now, but wouldn't require much to get connected again. Between the parallel port and relays there where (one for each output) a transistor and a resistor. 8 relays, 8 resistors, 8 transistors: I managed to control 8 independent outputs. Which allowed me in turn to control the train's movement (forward, backwards), plus rail switches. That was hell of a funny DIY project. Bad part was that the computer couldn't receive feedback from the train.

An Atari ST couldn't be connected to the internet. But the Psion Series 3 had a 14K modem which allowed it to connect to the newborn internet. So it could have been IoT. In fact it wasn't, since you could not connect at the same time the parallel adapter and the modem: they were on the same port. Anyway, back in 1991 who would have been crazy enough to think that internet could be connected to hardware? ;-)

Comments

Popular posts from this blog

Vue semaine gratuite pour Windows Phone 7.5

J’ai le plaisir d’annoncer la disponibilité sur le marketplace de mon application Free Week Calendar . C’est la première application gratuite à vous fournir une vue semaine de vos rendez-vous. L’utilisation est aussi simple que fluide. Par défaut vos rendez-vous de la semaine courante sont affichés (les copies d’écran sont en anglais mais l’application est intégralement localisée en français): En glissant le doigt à gauche ou à droite vous obtenez la semaine suivante ou précédente. En écartant les doigts vous zoomez sur vos rendez-vous, et en les rapprochant vous revenez à la vue globale. Contrairement à d’autres applications, celle-ci est entièrement localisée pour fonctionner en français et respecter le lundi comme premier jour de la semaine. P.S: merci à l’ Accélérateur Windows Phone et Dalhia pour leur aide. Sans eux cette application aurait mis plus de temps à sortir.

Gift idea : help your loved ones take their IT skills to the next level

You surely know a special person who works in IT. Learn Kubernetes & Docker enables them to quickly ramp up on those two technologies that one doesn't want to miss in 2021. With smoother operations, better scaling and availability, DevOps tooling, containers and containers orchestration smartly solve many problems that developers and system administrators commonly face. Don't let your loved ones face problems in their IT job : offer them the book that takes them from zero to productive in a matter of days. Grab it now! Get the ebook from Leanpub , Amazon or choose from many retailers . Get the print edition from Lulu .  

Tutoriel: Insérer un flux RSS dans une page ASP.net

Nous allons ici voir comment rapidement incorporer un flux RSS dans un formulaire Web ASP.net. Plus exactement, nous allons nous abonner à un flux Atom. Le but est d'afficher en tant que HTML les titres des entrées du flux, avec les liens vers les articles, et d'incorporer le tout au formulaire Web, comme je le fais sur ma page: Dans cet exemple, nous prendrons le flux RSS provenant de l'URL http://arnaudweil.blogspot.com/rss.xml . Puisque le RSS est du XML , nous allons facilement pouvoir le transformer en HTML grâce au contrôle ASP.net Xml et à une transformation XSLT . Dans ma page blog.aspx, j'écris donc: <asp:Xml ID="Xml1" runat="server" TransformSource="~/rss2table.xsl" /> Il me faut ensuite créer la transormation XSLT. J'ajoute donc à la racine de mon site un fichier rss2table.xsl avec le contenu suivant (cliquez avec le bouton droit sur le nom du projet dans l'Explorateur de Solutions de Visual Studio et ch...