15 #include "pins_arduino.h"
16 #include "ArduinoAPI.h"
17 #include "PicoLogger.h"
18 #include "PicoHardwareSerial.h"
19 #include "PicoHardwareSPI.h"
20 #include "PicoGPIOFunction.h"
22 #include "PicoTimer.h"
23 #include "PicoThread.h"
24 #include "PicoSemaphore.h"
25 #include "PicoMulticoreFifo.h"
26 #include "PicoQueue.h"
27 #include "pico/stdlib.h"
28 #include "hardware/gpio.h"
29 #include "hardware/adc.h"
30 #include "hardware/pwm.h"
43 char *dtostrf (
double __val,
signed char __width,
unsigned char __prec,
char *__s);
44 char *dtostre (
double __val,
char *__s,
unsigned char __prec,
unsigned char __flags);
PicoDefaultSerial is using the pico default output. It is mapped to the Arduino Serial variable.
Definition: PicoHardwareSerial.h:18
The pico requires that the function of the pin is defined. In Arduino, there is no such concept: so w...
Definition: PicoGPIOFunction.h:31
Serial Stream for a defined UART. By default we use the following pins: UART0 tx/rx = gp0/gp1; UART1 ...
Definition: PicoHardwareSerial.h:102
A simple Logger that writes messages dependent on the log level.
Definition: PicoLogger.h:12