Lana VulicLuigi Francesco Cerfeda
Published © LGPL

Fast-Tracked Python IoT Development - Zerynth and XinaBox

The XinaBox CW02 board allows developers to make their devices both smart and connected, with just a few lines of code in Python.

BeginnerProtip1 hour855
Fast-Tracked Python IoT Development - Zerynth and XinaBox

Things used in this project

Hardware components

CW02
XinaBox CW02
×1
IP01
XinaBox IP01
×1

Software apps and online services

Zerynth Studio
Zerynth Studio

Story

Read more

Schematics

XinaBox CW02 pin mapping

Code

Hello Zerynth

Python
###############################################################################
# Hello Zerynth
###############################################################################
 
# import the streams module, it is needed to send data around
import streams
 
# open the default serial port, the output will be visible in the serial console
streams.serial()  
 
# loop forever
while True:
    print("Hello Zerynth!")   # print automatically knows where to print!
    sleep(1000)

Credits

Lana Vulic

Lana Vulic

4 projects • 7 followers
Luigi Francesco Cerfeda

Luigi Francesco Cerfeda

6 projects • 95 followers
Yet another Tony Stark wannabe

Comments