Ingo Lohs
Published © GPL3+

Particle Photon Goes Python Via Zerynth

A beginner's step-by-step guide.

BeginnerProtip1 hour2,681
Particle Photon Goes Python Via Zerynth

Things used in this project

Hardware components

Photon
Particle Photon
×1

Software apps and online services

Zerynth Studio
Zerynth Studio

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

Ingo Lohs

48 projects • 191 followers
I am well over 50 years and come from the middle of Germany.

Comments

Add projectSign up / Login