Pular para o conteúdo principal

IoT simplified by IoTSurfboard

IoT, the Internet of Things, is about putting things on the internet, making the world smarter and connected. Is one of the last steps until we reach ubiquonUbiquitous computing. I remember when I heard about it in the college... Now it is happening.
The problem I see that if I want to create applications using things I will have to get in the middle of the chaos that is happening right now. Of course, in the software side there're great initiatives, such as RHIOT and MQTT, but in the hardware side, well, I bought a lot of sensors, devices and I always have to spend some time with it to actually start creating applications.. Then I found the IoT Surfboard project.

About IoTSurfboard


The project leader is the java champion Vinicius Senger and it is aimed to allow from beginners to experts to create IoT applications. It is a board that is based on Arduino and comes with components and sensors already integrated:

IoT Surfboard
IoTSurfboard components

The good thing is that its API is powerful and allow non programmers to read the sensors only sending simple commands to the serial port such as temp(returns the current temperature), light(returns the light intensity based on a LSD sensor) and also switch relays using, for example, relay?1, relay?0 and much more!
For advanced users, the board can have its featured extended by, for example adding a Zigbee module, integrating it with a RaspberryPi or integrating it with known technologies, such as MQTT. There are hundreds of possibilities!

How it works?

These are the exact steps I followed on my Linux machine:
  • After unboxing the board, I connected it to some of my available USB ports. It will blink some leds, like it is booting, so I waited a few minutes;
An adult with his toy

  • Then I opened Arduino IDE and selected the port where the surfboard is connected(menu tools -> port);

  • Next I selected the serial monitor and typed speaker?1 and then I heard beeeeeeppppp and my wife got mad because our baby was sleeping, after I typed speaker?0 and the beeeeeeppppp stopped.
And that's our hello world! As you can see, you can make the basic usage of surfboard by simply sending commands and reading the response in the serial port where the surfboard is connected. I did not install anything, I just connected the device and started sending commands.

The surfboard, of course, has a lot of other features. Here's a self explanatory summary of basic commands to read sensors and control some I/O:

Sensors: 
temp humidity light pot clock alcohol*

Leds and speaker:
red?0­1 green?0­255 blue?0­255 speaker?0­1
 
I/O
relay?0­1 transistor?01

* The alcohol sensor must be connected manually

There are also a few advanced commands:

?: Return all the board features in JSON format;
??: All the details plus ID, serial and key of the board;
sensors: all the sensors state in JSON format.

Conclusion


The IotSurfboard is a great starting point for who is looking to start creating IoT applications. Next post regarding IotSurfboard we will talk about its Java API!


Comentários

Postagens mais visitadas deste blog

Dancing lights with Arduino - The idea

I have been having fun with Arduino these days! In this article I am going to show how did I use an electret mic with Arduino to create a Dancing Lights circuit. Dancing Lights   I used to be an eletronician before starting the IT college. I had my own electronics maintenance office to fix television, radios, etc. In my free time I used to create electronic projects to sell and I made a few "reais" selling a version of Dancing lights, but it was too limited: it simply animated lamps using a relay in the output of a 4017 CMOS IC. The circuit was a decimal counter  controlled by a 555. 4017 decimal counter. Source in the image When I met Arduino a few years ago, I was skeptical because I said: I can do this with IC, why should I use a microcontroller. I thought that Arduino was for kids. But now my pride is gone and I am having a lot of fun with Arduino :-) The implementation of Dancing Lights with Arduino uses an electret mic to capture the sound and light leds...

Simplest JavaFX ComboBox autocomplete

Based on this Brazilian community post , I've created a sample Combobox auto complete. What it basically does is: When user type with the combobox selected, it will work on a temporary string to store the typed text; Each key typed leads to the combobox to be showed and updated If backspace is type, we update the filter Each key typed shows the combo box items, when the combobox is hidden, the filter is cleaned and the tooltip is hidden:   The class code and a sample application is below. I also added the source to my personal github , sent me PR to improve it and there are a lot of things to improve, like space and accents support.

Genetic algorithms with Java

One of the most fascinating topics in computer science world is Artificial Intelligence . A subset of Artificial intelligence are the algorithms that were created inspired in the nature. In this group, we have Genetic Algorithms  (GA). Genetic Algorithms  To find out more about this topic I recommend the following MIT lecture and the Nature of Code book and videos created by Daniel Shiffman. Genetic Algorithms using Java After I remembered the basics about it, I wanted to practice, so I tried my own implementation, but I would have to write a lot of code to do what certainly others already did. So I started looking for Genetic Algorithm libraries and found Jenetics , which is a modern library that uses Java 8 concepts and APIs, and there's also JGAP . I decided to use Jenetics because the User Guide was so clear and it has no other dependency, but Java 8. The only thing I missed for Jenetics are more small examples like the ones I will show i...