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

https://github.com/googlesamples/mugo

Sample on how to transpile a small subset of go to Arduino sketches
https://github.com/googlesamples/mugo

Last synced: 6 months ago
JSON representation

Sample on how to transpile a small subset of go to Arduino sketches

Awesome Lists containing this project

README

          

# µgo

[![Build Status](https://travis-ci.org/googlesamples/mugo.svg?branch=master)](https://travis-ci.org/googlesamples/mugo)

Sample on how to transpile a small subset of go to Arduino sketches using [go/ast](https://golang.org/pkg/go/ast/).

```
🍡 µ < blink/blink.go
void setup() {
pinMode(13, OUTPUT);
}
void loop() {
digitalWrite(13, HIGH);
delay(1000);
digitalWrite(13, LOW);
delay(1000);
}
```

# Disclaimer

This is not an official Google product.