Ingo Lohs
Published © GPL3+

Particle Photon Goes Python Via Zerynth

A beginner's step-by-step guide.

BeginnerProtip1 hour2,764
Particle Photon Goes Python Via Zerynth

Things used in this project

Story

Read more

Code

Hello World

Python
Source: Example from Zerynth-Studio
###############################################################################
# Hello Zerynth
#
# Created by Zerynth Team 2015 CC
# Authors: G. Baldi, D. Mazzei
###############################################################################

# 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

Ingo Lohs
182 projects • 198 followers
I am well over 50 years and come from the middle of Germany.
Contact

Comments

Please log in or sign up to comment.