SDK Examples
List of examples to get started.
Hello World: https://github.com/waybyte/hello-world-logicrom
OS Example: https://github.com/waybyte/example-os
Console example: https://github.com/waybyte/example-console
Timer example: https://github.com/waybyte/example-timer
GPIO example: https://github.com/waybyte/example-gpio
UART example: https://github.com/waybyte/example-uart
ADC example: https://github.com/waybyte/example-adc
PWM example: https://github.com/waybyte/example-pwm
SPI example: https://github.com/waybyte/example-spi
I2C example: https://github.com/waybyte/example-i2c
Display example: https://github.com/waybyte/example-display
GPS/GNSS example: https://github.com/waybyte/example-gps
Socket example: https://github.com/waybyte/example-socket
SSL Socket example: https://github.com/waybyte/example-ssl-socket
SSL Socket with Client Authentication: https://github.com/waybyte/example-ssl-socket-clientauth
HTTP Client example: https://github.com/waybyte/example-httpclient
Steps to build example via PlatformIO command line:
# clone or download project
git clone https://github.com/waybyte/hello-world-logicrom
# enter project dirctory
cd hello-world-logicrom
# build project using PlatformIO
pio run
# upload project to device
pio run --target upload
