An open API service indexing awesome lists of open source software.

https://github.com/va1da5/tinygo-pico-ssd1306

SSD1306 OLED testing with Raspberry Pi Pico and TinyGo
https://github.com/va1da5/tinygo-pico-ssd1306

bitmap golang oled pico ssd1306 tinygo

Last synced: 9 months ago
JSON representation

SSD1306 OLED testing with Raspberry Pi Pico and TinyGo

Awesome Lists containing this project

README

          

# Raspberry Pi Pico With OLED Display

## Working Examples

- [Static Bitmap](./bitmap/)
- [Animations](./animation/)
- [Serial Streaming](./serial/)

## Notes

### Device Drivers

The below command pulls [device drivers](https://tinygo.org/docs/reference/devices/) for Tinygo development environment.

```bash
go get tinygo.org/x/drivers
go get tinygo.org/x/tinydraw

```

### Monitoring

```bash
minicom -b 115200 -8 -D /dev/ttyACM0
```

### Wiring Diagram

![wiring diagram](./images/diagram.png)

## Raspberry Pi Pico Pinout

![pico pinout](./images/Pico_pinout.jpeg)

## References

- [TinyGo I2C](https://tinygo.org/docs/concepts/peripherals/i2c/)
- [TinyGo ssd1306 Driver](https://github.com/tinygo-org/drivers/tree/release/ssd1306)