The project is a work in progress and is very beta version - there may be bugs...
This project not an official platform and is based on pico-sdk
Frameworks:
Baremetal ( pico- sdk ver 1.1.1 & 1.1.0 )
Arduino ( in progress )
https://github.com/Wiz-IO/wizio-pico
Debuging:
#include <Arduino.h>
void setup()
{
Serial.begin(115200);
Serial.println("\nArdiuno Raspberrypi PI Pico 2021 Georgi Angelov");
pinMode(LED, OUTPUT);
//analogInit(ADC_T);
}
void loop()
{
static int led = 0;
digitalWrite(LED, led);
led ^= 1;
delay(1000);
Serial.println( millis() );
//Serial.println(temperatureRead());
}
Comments