3 min read
Data wrenching with Azure Machine Learning Workbench
Hi all, This blog post will cover how to transform data with Azure Machine Learning Workbench. One of the most important aspects in any Machine...
I finally got my hands on some Azure IoT Developer kits! In this blogpost I will cover how to get started with the Devkit, make sure it’s connected to the internet, upgrade the firmware and install all the prerequisites on your computer.
The IoT Development Kit is based on the MXChip AZ3166 board. The AZ3166 board is Arduino compatible with a very large number of peripherals and sensors built directly on the board. This board is being built as an ideal platform for prototyping IoT and Smart Device solutions. The main control unit of the AZ3166 is a EMW3166-a low power consumption Wi-Fi module developed by MXCHIP. With a DAP Link emulator and 128×64 OLED and other resources such as LED lights. The development kit has an audio processing unit to connect to Azure for voice recognition and voice play. The full list of all features:
IoT projects rely on internet connectivity. So the first thing you will need to do is configuring your IoT devkit to connect to your wireless network.
Hold down button B, push and release the reset button, and then release button B. Your DevKit enters accespoint or AP mode for configuring Wi-Fi. The screen displays the service set identifier(SSID) of the DevKit and the configuration portal IP address:
Then connect to the new wireless using your laptop
and browse to the IP address shown in the screen of your DevKit:
Select the Wi-Fi network that you want the DevKit to connect to, and then type the password. Select Connect. As soon as you do this the Devkit will try and connect to your wireless network:
When the connection succeeds, the DevKit reboots in a few seconds. You then see the Wi-Fi name and IP address on the screen
As soon as the Devkit connects to the internet it will check if there is a new firmware available. As you can see my firmware was not the latest one so I quickly upgraded it to the latest version:
Download the latest version from here.
Wait until the file is copied, then the DevKit will reboot to the latest firmware.
You will need to download the latest development environment from here. The zip file contains the following tools and packages:
If you already have some of them installed, the script will can and skip them.
During installation, you can see the progress of each tool or package being installed
Now that we have everything installed and up and running, let’s test the built in sensors. Just press the button B once to test the sensors:
Teaser: I’m going send the data generated by the sensors to IoT hub later on.
It was really easy to configure my Azure Iot Devkit and connect it to the internet. In less than 30 minutes everything was connected, upgraded and installed. In fact it took me longer to write this blogpost than to get started with the Azure Iot Devkit.
I will experiment with some cool projects in the next coming days/weeks and connect my Devkit to Azure IotHub . So stay tuned for some exciting experiments!
3 min read
Hi all, This blog post will cover how to transform data with Azure Machine Learning Workbench. One of the most important aspects in any Machine...
2 min read
I like my Azure DevOps branches to be well structured and well named. When we create a new ARM template a new feature branch is created based on the...
3 min read
We use ARM outputs quite extensively in our Azure DevOps pipelines. At times you may need to get outputs from previous steps and store them as...