├── .github ├── FUNDING.yml └── workflows │ └── build.yml ├── .gitignore ├── CHANGELOG.md ├── CONTRIBUTING.md ├── LICENSE ├── Makefile ├── README-net.md ├── README.md ├── adafruit4650 ├── device.go ├── device_test.go └── expected_hello_world.png ├── adt7410 ├── adt7410.go ├── adt7410_test.go └── registers.go ├── adxl345 ├── adxl345.go └── registers.go ├── aht20 ├── aht20.go ├── aht20_test.go └── registers.go ├── amg88xx ├── amg88xx.go └── registers.go ├── apa102 ├── apa102.go └── softspi.go ├── apds9960 ├── apds9960.go ├── apds9960_generic.go ├── apds9960_nano_33_ble.go └── registers.go ├── as560x ├── as5600.go ├── as5601.go ├── as560x.go ├── helpers.go ├── i2c_register.go └── registers.go ├── at24cx ├── at24cx.go └── registers.go ├── axp192 ├── axp192.go ├── m5stack-core2-axp192 │ └── axp192.go └── registers.go ├── bh1750 ├── bh1750.go └── registers.go ├── blinkm ├── blinkm.go └── registers.go ├── bma42x ├── bma421-config-waspos.bin ├── bma425-config-waspos.bin ├── bma42x.go └── registers.go ├── bme280 ├── bme280.go └── registers.go ├── bmi160 ├── bmi160.go └── registers.go ├── bmp180 ├── bmp180.go └── registers.go ├── bmp280 ├── bmp280.go └── registers.go ├── bmp388 ├── bmp388.go └── registers.go ├── buzzer ├── buzzer.go └── notes.go ├── cmd └── convert2bin │ └── convert2bin.go ├── comboat ├── comboat.go └── errors.go ├── delay ├── sleep.c └── sleep.go ├── dht ├── constants.go ├── device.go ├── device_internal_test.go ├── highfreq.go ├── lowfreq.go ├── thermometer.go ├── timesafethermometer.go └── util.go ├── displayer.go ├── drivers.go ├── ds1307 ├── ds1307.go └── registers.go ├── ds18b20 └── ds18b20.go ├── ds3231 ├── ds3231.go ├── ds3231_test.go └── registers.go ├── easystepper └── easystepper.go ├── encoders ├── quadrature_device.go └── quadrature_interrupt.go ├── ens160 ├── ens160.go ├── ens160_test.go └── registers.go ├── espat ├── README.md ├── commands.go ├── espat.go ├── tcp.go └── wifi.go ├── examples ├── adafruit4650 │ └── main.go ├── adt7410 │ └── main.go ├── adxl345 │ └── main.go ├── aht20 │ └── main.go ├── amg88xx │ ├── colors.go │ └── main.go ├── apa102 │ ├── itsybitsy-m0 │ │ └── main.go │ └── main.go ├── apds9960 │ ├── color │ │ └── main.go │ ├── gesture │ │ └── main.go │ └── proximity │ │ └── main.go ├── as560x │ └── main.go ├── at24cx │ └── main.go ├── axp192 │ └── m5stack-core2-blinky │ │ └── main.go ├── bh1750 │ └── main.go ├── blinkm │ └── main.go ├── bma42x │ └── main.go ├── bme280 │ └── main.go ├── bmi160 │ └── main.go ├── bmp180 │ └── main.go ├── bmp280 │ └── main.go ├── bmp388 │ └── main.go ├── buzzer │ └── main.go ├── delay │ └── delay.go ├── dht │ └── main.go ├── ds1307 │ ├── sram │ │ └── main.go │ └── time │ │ └── main.go ├── ds18b20 │ └── main.go ├── ds3231 │ └── main.go ├── easystepper │ └── main.go ├── encoders │ └── quadrature-interrupt │ │ └── main.go ├── ens160 │ └── main.go ├── flash │ └── console │ │ ├── console_example.go │ │ ├── qspi │ │ └── main.go │ │ └── spi │ │ └── main.go ├── ft6336 │ ├── basic │ │ ├── m5stack_core2.go │ │ └── main.go │ └── touchpaint │ │ ├── m5stack_core2.go │ │ └── main.go ├── gc9a01 │ └── main.go ├── gps │ ├── i2c │ │ └── main.go │ └── uart │ │ └── main.go ├── hcsr04 │ └── main.go ├── hd44780 │ ├── customchar │ │ └── main.go │ └── text │ │ └── main.go ├── hd44780i2c │ └── main.go ├── hts221 │ └── main.go ├── hub75 │ ├── gopherimg │ │ └── gopherimg.go │ └── main.go ├── i2csoft │ └── adt7410 │ │ └── main.go ├── ili9341 │ ├── basic │ │ └── main.go │ ├── initdisplay │ │ ├── atsamd21.go │ │ ├── feather.go │ │ ├── m5stack.go │ │ ├── m5stack_core2.go │ │ ├── pyportal.go │ │ └── wioterminal.go │ ├── pyportal_boing │ │ ├── graphics │ │ │ └── boing_graphics.go │ │ └── main.go │ ├── scroll │ │ └── main.go │ └── slideshow │ │ ├── README.md │ │ ├── images.go │ │ ├── main.go │ │ └── slideshow.jpg ├── ina219 │ └── main.go ├── ina260 │ └── main.go ├── irremote │ └── main.go ├── is31fl3731 │ └── main.go ├── keypad4x4 │ └── main.go ├── l293x │ ├── simple │ │ └── main.go │ └── speed │ │ └── main.go ├── l3gd20 │ └── main.go ├── l9110x │ ├── simple │ │ └── main.go │ └── speed │ │ └── main.go ├── lis2mdl │ └── main.go ├── lis3dh │ └── main.go ├── lora │ └── lorawan │ │ ├── atcmd │ │ ├── README.md │ │ ├── commands.go │ │ ├── main.go │ │ └── parser.go │ │ ├── basic-demo │ │ ├── README.md │ │ ├── keys-default.go │ │ └── main.go │ │ └── common │ │ ├── featherwing.go │ │ ├── lgt92.go │ │ ├── radio.go │ │ ├── sim.go │ │ ├── stm32wlx.go │ │ ├── sx126x.go │ │ ├── sx127x.go │ │ └── version.go ├── lps22hb │ └── main.go ├── lsm303agr │ └── main.go ├── lsm303dlhc │ └── main.go ├── lsm6ds3 │ └── main.go ├── lsm6ds3tr │ └── main.go ├── lsm6dsox │ └── main.go ├── lsm9ds1 │ └── main.go ├── mag3110 │ └── main.go ├── makeybutton │ └── main.go ├── max6675 │ └── main.go ├── max72xx │ └── main.go ├── mcp23017-multiple │ └── main.go ├── mcp23017 │ └── main.go ├── mcp2515 │ └── main.go ├── mcp3008 │ └── main.go ├── mcp9808 │ └── main.go ├── microbitmatrix │ └── main.go ├── microphone │ └── main.go ├── mma8653 │ └── main.go ├── mpu6050 │ └── main.go ├── mpu6886 │ └── main.go ├── mpu9150 │ └── main.go ├── ndir │ └── main_ndir.go ├── net │ ├── http-get │ │ └── main.go │ ├── http-head │ │ └── main.go │ ├── http-post │ │ └── main.go │ ├── http-postform │ │ └── main.go │ ├── mqttclient │ │ ├── natiu │ │ │ └── main.go │ │ └── paho │ │ │ └── main.go │ ├── ntpclient │ │ └── main.go │ ├── snake │ │ ├── init.go │ │ ├── main.go │ │ └── server │ │ │ └── main.go │ ├── socket │ │ └── main.go │ ├── tcpclient │ │ └── main.go │ ├── tcpecho │ │ └── main.go │ ├── tlsclient │ │ └── main.go │ ├── webclient-tinyterm │ │ └── main.go │ ├── webclient │ │ └── main.go │ ├── webserver │ │ └── main.go │ ├── websocket │ │ ├── dial │ │ │ └── main.go │ │ └── handler │ │ │ └── main.go │ └── webstatic │ │ ├── images │ │ └── tinygo-logo.png │ │ ├── index.html │ │ └── main.go ├── onewire │ └── main.go ├── p1am │ └── main.go ├── pca9685 │ └── main.go ├── pcd8544 │ ├── setbuffer │ │ ├── data │ │ │ └── data.go │ │ └── main.go │ └── setpixel │ │ └── main.go ├── pcf8523 │ └── main.go ├── pcf8563 │ ├── alarm │ │ └── main.go │ ├── clkout │ │ └── main.go │ ├── time │ │ └── main.go │ └── timer │ │ └── main.go ├── pcf8591 │ └── main.go ├── qmi8658c │ └── main.go ├── scd4x │ └── main.go ├── sdcard │ └── console │ │ ├── console.go │ │ ├── feather-m4.go │ │ ├── grandcentral-m4.go │ │ ├── m0.go │ │ ├── main.go │ │ ├── p1am-100.go │ │ ├── pygamer.go │ │ ├── pyportal.go │ │ ├── thingplus-rp2040.go │ │ └── wioterminal.go ├── seesaw │ ├── rotary-encoder │ │ └── main.go │ └── soil-sensor │ │ └── main.go ├── semihosting │ └── semihosting.go ├── servo │ └── servo.go ├── sgp30 │ └── main.go ├── sh1106 │ └── macropad_spi │ │ └── main.go ├── sharpmem │ └── main.go ├── shifter │ └── main.go ├── shiftregister │ └── main.go ├── sht3x │ └── main.go ├── sht4x │ └── main.go ├── shtc3 │ └── main.go ├── ssd1289 │ └── main.go ├── ssd1306 │ ├── main.go │ ├── main_i2c_xiao-ble.go │ ├── main_spi_thumby.go │ └── main_spi_xiao-rp2040.go ├── ssd1331 │ └── main.go ├── ssd1351 │ └── main.go ├── st7735 │ └── main.go ├── st7789 │ └── main.go ├── sx126x │ ├── lora_continuous │ │ ├── lora_continuous.go │ │ ├── radio.go │ │ └── radio_stm32wl.go │ └── lora_rxtx │ │ ├── lora_rxtx.go │ │ ├── radio.go │ │ └── radio_stm32wl.go ├── sx127x │ └── lora_rxtx │ │ └── lora_rxtx.go ├── thermistor │ └── main.go ├── tm1637 │ └── main.go ├── tmc2209 │ └── main.go ├── tmc5160 │ └── main.go ├── tmp102 │ └── main.go ├── tone │ └── tone.go ├── touch │ ├── capacitive │ │ └── main.go │ └── resistive │ │ ├── fourwire │ │ └── main.go │ │ └── pyportal_touchpaint │ │ └── main.go ├── ttp229 │ └── main.go ├── uc8151 │ └── main.go ├── veml6070 │ └── main.go ├── vl53l1x │ └── main.go ├── vl6180x │ └── main.go ├── waveshare-epd │ ├── epd1in54 │ │ └── main.go │ ├── epd2in13 │ │ └── main.go │ ├── epd2in13x │ │ └── main.go │ ├── epd2in66b │ │ └── main.go │ ├── epd2in9 │ │ └── main.go │ └── epd4in2 │ │ └── main.go ├── ws2812 │ ├── arduino.go │ ├── digispark.go │ ├── main.go │ ├── others.go │ └── qtpy.go └── xpt2046 │ └── main.go ├── flash ├── devices.go ├── flash.go ├── transport_qspi_samd.go └── transport_spi.go ├── ft6336 ├── ft6336.go └── registers.go ├── gc9a01 ├── gc9a01.go └── registers.go ├── go.mod ├── go.sum ├── gps ├── gps.go ├── gpsparser.go ├── gpsparser_test.go ├── registers.go └── ublox.go ├── hcsr04 └── hcsr04.go ├── hd44780 ├── gpio.go ├── hd44780.go └── registers.go ├── hd44780i2c ├── hd44780i2c.go └── registers.go ├── hts221 ├── hts221.go ├── hts221_generic.go ├── hts221_nano_33_ble.go └── registers.go ├── hub75 └── hub75.go ├── i2c.go ├── i2csoft └── i2csoft.go ├── ili9341 ├── README.md ├── ili9341.go ├── parallel_atsamd51.go ├── registers.go ├── spi.go ├── spi_atsamd21.go └── spi_atsamd51.go ├── image ├── README.md ├── internal │ ├── compress │ │ ├── flate │ │ │ ├── deflate.go │ │ │ ├── deflate_test.go │ │ │ ├── deflatefast.go │ │ │ ├── dict_decoder.go │ │ │ ├── dict_decoder_test.go │ │ │ ├── example_test.go │ │ │ ├── flate_test.go │ │ │ ├── huffman_bit_writer.go │ │ │ ├── huffman_bit_writer_test.go │ │ │ ├── huffman_code.go │ │ │ ├── inflate.go │ │ │ ├── inflate_test.go │ │ │ ├── reader_test.go │ │ │ ├── token.go │ │ │ └── writer_test.go │ │ └── zlib │ │ │ ├── example_test.go │ │ │ ├── reader.go │ │ │ ├── reader_test.go │ │ │ ├── writer.go │ │ │ └── writer_test.go │ └── imageutil │ │ ├── gen.go │ │ ├── imageutil.go │ │ └── impl.go ├── jpeg │ ├── callback.go │ ├── dct_test.go │ ├── fdct.go │ ├── huffman.go │ ├── idct.go │ ├── reader.go │ ├── reader_test.go │ ├── scan.go │ ├── writer.go │ └── writer_test.go └── png │ ├── callback.go │ ├── example_test.go │ ├── fuzz.go │ ├── paeth.go │ ├── paeth_test.go │ ├── reader.go │ ├── reader_test.go │ ├── writer.go │ └── writer_test.go ├── ina219 ├── config.go ├── errors.go ├── ina219.go ├── ina219_test.go └── registers.go ├── ina260 ├── ina260.go ├── ina260_test.go └── registers.go ├── internal └── legacy │ └── i2clegacy.go ├── irremote └── receiver.go ├── is31fl3731 ├── is31fl3731.go ├── is31fl3731_acw15x7.go └── registers.go ├── keypad4x4 └── keypad4x4.go ├── l293x └── l293x.go ├── l3gd20 ├── i2c.go ├── l3gd20.go └── registers.go ├── l9110x └── l9110x.go ├── lis2mdl ├── lis2mdl.go ├── lis2mdl_test.go └── registers.go ├── lis3dh ├── lis3dh.go └── registers.go ├── lora ├── config.go ├── lorawan │ ├── adaptor.go │ ├── bytes.go │ ├── cmac.go │ ├── mic.go │ ├── otaa.go │ ├── region │ │ ├── au915.go │ │ ├── channel.go │ │ ├── eu868.go │ │ ├── settings.go │ │ └── us915.go │ └── session.go ├── radio.go └── radio_event.go ├── lps22hb ├── lps22hb.go ├── lps22hb_generic.go ├── lps22hb_nano_33_ble.go └── registers.go ├── lsm303agr ├── lsm303agr.go └── registers.go ├── lsm303dlhc ├── lsm303dlhc.go └── registers.go ├── lsm6ds3 ├── lsm6ds3.go └── registers.go ├── lsm6ds3tr ├── lsm6ds3tr.go ├── lsm6ds3tr_generic.go ├── lsm6ds3tr_xiao_ble.go └── registers.go ├── lsm6dsox ├── lsm6dsox.go └── registers.go ├── lsm9ds1 ├── lsm9ds1.go ├── lsm9ds1_generic.go ├── lsm9ds1_nano_33_ble.go └── registers.go ├── mag3110 ├── mag3110.go └── registers.go ├── makeybutton ├── buffer.go └── button.go ├── max6675 └── max6675.go ├── max72xx ├── max72xx.go └── registers.go ├── mcp23017 ├── device.go ├── device_test.go ├── multidevice.go └── multidevice_test.go ├── mcp2515 ├── mcp2515.go └── registers.go ├── mcp3008 └── mcp3008.go ├── mcp9808 ├── mcp9808.go └── registers.go ├── microbitmatrix ├── microbitmatrix-v1.go ├── microbitmatrix-v2.go └── microbitmatrix.go ├── microphone └── microphone.go ├── mma8653 ├── mma8653.go └── registers.go ├── mpu6050 ├── mpu6050.go └── registers.go ├── mpu6886 ├── mpu6886.go └── registers.go ├── mpu9150 ├── mpu9150.go └── registers.go ├── ndir └── ndir.go ├── netdev ├── README.md └── netdev.go ├── netlink ├── README.md ├── netlink.go └── probe │ ├── comboat.go │ ├── espat.go │ ├── mrkwifi1010.go │ ├── rtl8720dn.go │ └── wifinina.go ├── onewire └── onewire.go ├── p1am ├── defines.go ├── internal │ └── cmd │ │ └── gen_defines │ │ └── main.go └── p1am.go ├── pca9685 ├── errors.go ├── io.go ├── pca9685.go ├── pca9685_buffered.go └── registers.go ├── pcd8544 ├── pcd8544.go └── registers.go ├── pcf8523 ├── pcf8523.go ├── pcf8523_test.go └── registers.go ├── pcf8563 ├── pcf8563.go └── registers.go ├── pcf8591 ├── pcf8591.go └── registers.go ├── pixel ├── image.go ├── image_test.go └── pixel.go ├── qmi8658c ├── qmi8658c.go └── registers.go ├── rtl8720dn ├── README.md ├── crc16.go ├── debug.go ├── rpc.go ├── rpc_util.go ├── rtl8720dn.go └── tmp.go ├── scd4x ├── registers.go ├── scd4x.go └── scd4x_test.go ├── sdcard ├── README.md ├── cid.go ├── const.go ├── csd.go ├── sdcard.go └── timer.go ├── seesaw ├── encoder.go ├── mocki2c_test.go ├── registers.go ├── seesaw.go └── seesaw_test.go ├── semihosting ├── semihosting.go └── stdio.go ├── sensor.go ├── servo └── servo.go ├── sgp30 └── sgp30.go ├── sh1106 ├── registers.go └── sh1106.go ├── sharpmem ├── sharpmem.go ├── sharpmem_test.go └── util.go ├── shifter ├── pybadge.go └── shifter.go ├── shiftregister └── shiftregister.go ├── sht3x ├── registers.go └── sht3x.go ├── sht4x └── sht4x.go ├── shtc3 ├── registers.go └── shtc3.go ├── smoketest.go ├── smoketest.sh ├── spi.go ├── ssd1289 ├── pinbus.go ├── registers.go ├── rp2040bus.go └── ssd1289.go ├── ssd1306 ├── registers.go ├── ssd1306.go ├── ssd1306_i2c.go └── ssd1306_spi.go ├── ssd1331 ├── registers.go └── ssd1331.go ├── ssd1351 ├── commands.go └── ssd1351.go ├── st7735 ├── README.md ├── registers.go └── st7735.go ├── st7789 ├── registers.go └── st7789.go ├── sx126x ├── README.md ├── radiocontrol.go ├── radiocontrol_gnse.go ├── radiocontrol_lorae5.go ├── radiocontrol_pins.go ├── radiocontrol_stm32wl.go ├── radiocontrol_wl55jc.go ├── registers.go └── sx126x.go ├── sx127x ├── README.md ├── radiocontrol.go ├── radiocontrol_pins.go ├── registers.go └── sx127x.go ├── tester ├── device.go ├── device16.go ├── device16_test.go ├── device8.go ├── device8_test.go ├── devicecmd.go ├── i2c.go └── tester.go ├── thermistor └── thermistor.go ├── tm1637 ├── registers.go └── tm1637.go ├── tmc2209 ├── README.md ├── address.go ├── current.go ├── motor_config.go ├── stealthchop.go ├── tmc2209.go ├── uartcomm.go ├── utils.go └── velocity.go ├── tmc5160 ├── README.MD ├── address.go ├── helpers.go ├── registers.go ├── spicomm.go ├── stepper.go ├── tmc5160.go ├── uartcomm.go └── utils.go ├── tmp102 ├── registers.go └── tmp102.go ├── tone ├── notes.go └── tone.go ├── touch ├── capacitive │ └── gpio.go ├── point.go └── resistive │ └── fourwire.go ├── ttp229 └── ttp229.go ├── uart.go ├── uc8151 ├── lut.go ├── registers.go └── uc8151.go ├── veml6070 ├── registers.go └── veml6070.go ├── version.go ├── vl53l1x ├── registers.go └── vl53l1x.go ├── vl6180x ├── registers.go └── vl6180x.go ├── waveshare-epd ├── doc.go ├── epd1in54 │ ├── epd1in54.go │ └── registers.go ├── epd2in13 │ ├── epd2in13.go │ └── registers.go ├── epd2in13x │ ├── epd2in13x.go │ └── registers.go ├── epd2in66b │ ├── dev.go │ ├── dev_pico.go │ └── dev_test.go ├── epd2in9 │ ├── epd2in9.go │ └── registers.go └── epd4in2 │ ├── epd4in2.go │ └── registers.go ├── wifinina ├── Dockerfile ├── README.md ├── debug.go ├── firmware.sh ├── pins.go ├── updater │ ├── CheckFirmwareVersion.ino.uf2 │ ├── SerialNINAPassthrough.ino.nano_33_iot.bin │ ├── SerialNINAPassthrough.ino.nano_rp2040_connect.uf2 │ └── update_ninafw_nano33iot.sh └── wifinina.go ├── ws2812 ├── gen-ws2812.go ├── ws2812-asm_cortexm.go ├── ws2812-asm_tinygoriscv.go ├── ws2812.go ├── ws2812_avr.go ├── ws2812_cortexm.go ├── ws2812_generic.go ├── ws2812_tinygoriscv.go └── ws2812_xtensa.go └── xpt2046 └── xpt2046.go /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | build 2 | .vscode/ 3 | -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/Makefile -------------------------------------------------------------------------------- /README-net.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/README-net.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/README.md -------------------------------------------------------------------------------- /adafruit4650/device.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/adafruit4650/device.go -------------------------------------------------------------------------------- /adafruit4650/device_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/adafruit4650/device_test.go -------------------------------------------------------------------------------- /adafruit4650/expected_hello_world.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/adafruit4650/expected_hello_world.png -------------------------------------------------------------------------------- /adt7410/adt7410.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/adt7410/adt7410.go -------------------------------------------------------------------------------- /adt7410/adt7410_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/adt7410/adt7410_test.go -------------------------------------------------------------------------------- /adt7410/registers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/adt7410/registers.go -------------------------------------------------------------------------------- /adxl345/adxl345.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/adxl345/adxl345.go -------------------------------------------------------------------------------- /adxl345/registers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/adxl345/registers.go -------------------------------------------------------------------------------- /aht20/aht20.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/aht20/aht20.go -------------------------------------------------------------------------------- /aht20/aht20_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/aht20/aht20_test.go -------------------------------------------------------------------------------- /aht20/registers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/aht20/registers.go -------------------------------------------------------------------------------- /amg88xx/amg88xx.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/amg88xx/amg88xx.go -------------------------------------------------------------------------------- /amg88xx/registers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/amg88xx/registers.go -------------------------------------------------------------------------------- /apa102/apa102.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/apa102/apa102.go -------------------------------------------------------------------------------- /apa102/softspi.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/apa102/softspi.go -------------------------------------------------------------------------------- /apds9960/apds9960.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/apds9960/apds9960.go -------------------------------------------------------------------------------- /apds9960/apds9960_generic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/apds9960/apds9960_generic.go -------------------------------------------------------------------------------- /apds9960/apds9960_nano_33_ble.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/apds9960/apds9960_nano_33_ble.go -------------------------------------------------------------------------------- /apds9960/registers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/apds9960/registers.go -------------------------------------------------------------------------------- /as560x/as5600.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/as560x/as5600.go -------------------------------------------------------------------------------- /as560x/as5601.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/as560x/as5601.go -------------------------------------------------------------------------------- /as560x/as560x.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/as560x/as560x.go -------------------------------------------------------------------------------- /as560x/helpers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/as560x/helpers.go -------------------------------------------------------------------------------- /as560x/i2c_register.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/as560x/i2c_register.go -------------------------------------------------------------------------------- /as560x/registers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/as560x/registers.go -------------------------------------------------------------------------------- /at24cx/at24cx.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/at24cx/at24cx.go -------------------------------------------------------------------------------- /at24cx/registers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/at24cx/registers.go -------------------------------------------------------------------------------- /axp192/axp192.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/axp192/axp192.go -------------------------------------------------------------------------------- /axp192/m5stack-core2-axp192/axp192.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/axp192/m5stack-core2-axp192/axp192.go -------------------------------------------------------------------------------- /axp192/registers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/axp192/registers.go -------------------------------------------------------------------------------- /bh1750/bh1750.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/bh1750/bh1750.go -------------------------------------------------------------------------------- /bh1750/registers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/bh1750/registers.go -------------------------------------------------------------------------------- /blinkm/blinkm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/blinkm/blinkm.go -------------------------------------------------------------------------------- /blinkm/registers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/blinkm/registers.go -------------------------------------------------------------------------------- /bma42x/bma421-config-waspos.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/bma42x/bma421-config-waspos.bin -------------------------------------------------------------------------------- /bma42x/bma425-config-waspos.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/bma42x/bma425-config-waspos.bin -------------------------------------------------------------------------------- /bma42x/bma42x.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/bma42x/bma42x.go -------------------------------------------------------------------------------- /bma42x/registers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/bma42x/registers.go -------------------------------------------------------------------------------- /bme280/bme280.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/bme280/bme280.go -------------------------------------------------------------------------------- /bme280/registers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/bme280/registers.go -------------------------------------------------------------------------------- /bmi160/bmi160.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/bmi160/bmi160.go -------------------------------------------------------------------------------- /bmi160/registers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/bmi160/registers.go -------------------------------------------------------------------------------- /bmp180/bmp180.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/bmp180/bmp180.go -------------------------------------------------------------------------------- /bmp180/registers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/bmp180/registers.go -------------------------------------------------------------------------------- /bmp280/bmp280.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/bmp280/bmp280.go -------------------------------------------------------------------------------- /bmp280/registers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/bmp280/registers.go -------------------------------------------------------------------------------- /bmp388/bmp388.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/bmp388/bmp388.go -------------------------------------------------------------------------------- /bmp388/registers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/bmp388/registers.go -------------------------------------------------------------------------------- /buzzer/buzzer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/buzzer/buzzer.go -------------------------------------------------------------------------------- /buzzer/notes.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/buzzer/notes.go -------------------------------------------------------------------------------- /cmd/convert2bin/convert2bin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/cmd/convert2bin/convert2bin.go -------------------------------------------------------------------------------- /comboat/comboat.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/comboat/comboat.go -------------------------------------------------------------------------------- /comboat/errors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/comboat/errors.go -------------------------------------------------------------------------------- /delay/sleep.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/delay/sleep.c -------------------------------------------------------------------------------- /delay/sleep.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/delay/sleep.go -------------------------------------------------------------------------------- /dht/constants.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/dht/constants.go -------------------------------------------------------------------------------- /dht/device.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/dht/device.go -------------------------------------------------------------------------------- /dht/device_internal_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/dht/device_internal_test.go -------------------------------------------------------------------------------- /dht/highfreq.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/dht/highfreq.go -------------------------------------------------------------------------------- /dht/lowfreq.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/dht/lowfreq.go -------------------------------------------------------------------------------- /dht/thermometer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/dht/thermometer.go -------------------------------------------------------------------------------- /dht/timesafethermometer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/dht/timesafethermometer.go -------------------------------------------------------------------------------- /dht/util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/dht/util.go -------------------------------------------------------------------------------- /displayer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/displayer.go -------------------------------------------------------------------------------- /drivers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/drivers.go -------------------------------------------------------------------------------- /ds1307/ds1307.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/ds1307/ds1307.go -------------------------------------------------------------------------------- /ds1307/registers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/ds1307/registers.go -------------------------------------------------------------------------------- /ds18b20/ds18b20.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/ds18b20/ds18b20.go -------------------------------------------------------------------------------- /ds3231/ds3231.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/ds3231/ds3231.go -------------------------------------------------------------------------------- /ds3231/ds3231_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/ds3231/ds3231_test.go -------------------------------------------------------------------------------- /ds3231/registers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/ds3231/registers.go -------------------------------------------------------------------------------- /easystepper/easystepper.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/easystepper/easystepper.go -------------------------------------------------------------------------------- /encoders/quadrature_device.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/encoders/quadrature_device.go -------------------------------------------------------------------------------- /encoders/quadrature_interrupt.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/encoders/quadrature_interrupt.go -------------------------------------------------------------------------------- /ens160/ens160.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/ens160/ens160.go -------------------------------------------------------------------------------- /ens160/ens160_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/ens160/ens160_test.go -------------------------------------------------------------------------------- /ens160/registers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/ens160/registers.go -------------------------------------------------------------------------------- /espat/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/espat/README.md -------------------------------------------------------------------------------- /espat/commands.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/espat/commands.go -------------------------------------------------------------------------------- /espat/espat.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/espat/espat.go -------------------------------------------------------------------------------- /espat/tcp.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/espat/tcp.go -------------------------------------------------------------------------------- /espat/wifi.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/espat/wifi.go -------------------------------------------------------------------------------- /examples/adafruit4650/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/examples/adafruit4650/main.go -------------------------------------------------------------------------------- /examples/adt7410/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/examples/adt7410/main.go -------------------------------------------------------------------------------- /examples/adxl345/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/examples/adxl345/main.go -------------------------------------------------------------------------------- /examples/aht20/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/examples/aht20/main.go -------------------------------------------------------------------------------- /examples/amg88xx/colors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/examples/amg88xx/colors.go -------------------------------------------------------------------------------- /examples/amg88xx/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/examples/amg88xx/main.go -------------------------------------------------------------------------------- /examples/apa102/itsybitsy-m0/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/examples/apa102/itsybitsy-m0/main.go -------------------------------------------------------------------------------- /examples/apa102/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/examples/apa102/main.go -------------------------------------------------------------------------------- /examples/apds9960/color/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/examples/apds9960/color/main.go -------------------------------------------------------------------------------- /examples/apds9960/gesture/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/examples/apds9960/gesture/main.go -------------------------------------------------------------------------------- /examples/apds9960/proximity/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/examples/apds9960/proximity/main.go -------------------------------------------------------------------------------- /examples/as560x/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/examples/as560x/main.go -------------------------------------------------------------------------------- /examples/at24cx/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/examples/at24cx/main.go -------------------------------------------------------------------------------- /examples/axp192/m5stack-core2-blinky/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/examples/axp192/m5stack-core2-blinky/main.go -------------------------------------------------------------------------------- /examples/bh1750/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/examples/bh1750/main.go -------------------------------------------------------------------------------- /examples/blinkm/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/examples/blinkm/main.go -------------------------------------------------------------------------------- /examples/bma42x/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/examples/bma42x/main.go -------------------------------------------------------------------------------- /examples/bme280/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/examples/bme280/main.go -------------------------------------------------------------------------------- /examples/bmi160/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/examples/bmi160/main.go -------------------------------------------------------------------------------- /examples/bmp180/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/examples/bmp180/main.go -------------------------------------------------------------------------------- /examples/bmp280/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/examples/bmp280/main.go -------------------------------------------------------------------------------- /examples/bmp388/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/examples/bmp388/main.go -------------------------------------------------------------------------------- /examples/buzzer/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/examples/buzzer/main.go -------------------------------------------------------------------------------- /examples/delay/delay.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/examples/delay/delay.go -------------------------------------------------------------------------------- /examples/dht/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/examples/dht/main.go -------------------------------------------------------------------------------- /examples/ds1307/sram/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/examples/ds1307/sram/main.go -------------------------------------------------------------------------------- /examples/ds1307/time/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/examples/ds1307/time/main.go -------------------------------------------------------------------------------- /examples/ds18b20/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/examples/ds18b20/main.go -------------------------------------------------------------------------------- /examples/ds3231/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/examples/ds3231/main.go -------------------------------------------------------------------------------- /examples/easystepper/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/examples/easystepper/main.go -------------------------------------------------------------------------------- /examples/encoders/quadrature-interrupt/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/examples/encoders/quadrature-interrupt/main.go -------------------------------------------------------------------------------- /examples/ens160/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/examples/ens160/main.go -------------------------------------------------------------------------------- /examples/flash/console/console_example.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/examples/flash/console/console_example.go -------------------------------------------------------------------------------- /examples/flash/console/qspi/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/examples/flash/console/qspi/main.go -------------------------------------------------------------------------------- /examples/flash/console/spi/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/examples/flash/console/spi/main.go -------------------------------------------------------------------------------- /examples/ft6336/basic/m5stack_core2.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/examples/ft6336/basic/m5stack_core2.go -------------------------------------------------------------------------------- /examples/ft6336/basic/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/examples/ft6336/basic/main.go -------------------------------------------------------------------------------- /examples/ft6336/touchpaint/m5stack_core2.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/examples/ft6336/touchpaint/m5stack_core2.go -------------------------------------------------------------------------------- /examples/ft6336/touchpaint/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/examples/ft6336/touchpaint/main.go -------------------------------------------------------------------------------- /examples/gc9a01/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/examples/gc9a01/main.go -------------------------------------------------------------------------------- /examples/gps/i2c/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/examples/gps/i2c/main.go -------------------------------------------------------------------------------- /examples/gps/uart/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/examples/gps/uart/main.go -------------------------------------------------------------------------------- /examples/hcsr04/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/examples/hcsr04/main.go -------------------------------------------------------------------------------- /examples/hd44780/customchar/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/examples/hd44780/customchar/main.go -------------------------------------------------------------------------------- /examples/hd44780/text/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/examples/hd44780/text/main.go -------------------------------------------------------------------------------- /examples/hd44780i2c/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/examples/hd44780i2c/main.go -------------------------------------------------------------------------------- /examples/hts221/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/examples/hts221/main.go -------------------------------------------------------------------------------- /examples/hub75/gopherimg/gopherimg.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/examples/hub75/gopherimg/gopherimg.go -------------------------------------------------------------------------------- /examples/hub75/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/examples/hub75/main.go -------------------------------------------------------------------------------- /examples/i2csoft/adt7410/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/examples/i2csoft/adt7410/main.go -------------------------------------------------------------------------------- /examples/ili9341/basic/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/examples/ili9341/basic/main.go -------------------------------------------------------------------------------- /examples/ili9341/initdisplay/atsamd21.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/examples/ili9341/initdisplay/atsamd21.go -------------------------------------------------------------------------------- /examples/ili9341/initdisplay/feather.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/examples/ili9341/initdisplay/feather.go -------------------------------------------------------------------------------- /examples/ili9341/initdisplay/m5stack.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/examples/ili9341/initdisplay/m5stack.go -------------------------------------------------------------------------------- /examples/ili9341/initdisplay/m5stack_core2.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/examples/ili9341/initdisplay/m5stack_core2.go -------------------------------------------------------------------------------- /examples/ili9341/initdisplay/pyportal.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/examples/ili9341/initdisplay/pyportal.go -------------------------------------------------------------------------------- /examples/ili9341/initdisplay/wioterminal.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/examples/ili9341/initdisplay/wioterminal.go -------------------------------------------------------------------------------- /examples/ili9341/pyportal_boing/graphics/boing_graphics.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/examples/ili9341/pyportal_boing/graphics/boing_graphics.go -------------------------------------------------------------------------------- /examples/ili9341/pyportal_boing/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/examples/ili9341/pyportal_boing/main.go -------------------------------------------------------------------------------- /examples/ili9341/scroll/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/examples/ili9341/scroll/main.go -------------------------------------------------------------------------------- /examples/ili9341/slideshow/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/examples/ili9341/slideshow/README.md -------------------------------------------------------------------------------- /examples/ili9341/slideshow/images.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/examples/ili9341/slideshow/images.go -------------------------------------------------------------------------------- /examples/ili9341/slideshow/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/examples/ili9341/slideshow/main.go -------------------------------------------------------------------------------- /examples/ili9341/slideshow/slideshow.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/examples/ili9341/slideshow/slideshow.jpg -------------------------------------------------------------------------------- /examples/ina219/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/examples/ina219/main.go -------------------------------------------------------------------------------- /examples/ina260/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/examples/ina260/main.go -------------------------------------------------------------------------------- /examples/irremote/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/examples/irremote/main.go -------------------------------------------------------------------------------- /examples/is31fl3731/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/examples/is31fl3731/main.go -------------------------------------------------------------------------------- /examples/keypad4x4/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/examples/keypad4x4/main.go -------------------------------------------------------------------------------- /examples/l293x/simple/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/examples/l293x/simple/main.go -------------------------------------------------------------------------------- /examples/l293x/speed/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/examples/l293x/speed/main.go -------------------------------------------------------------------------------- /examples/l3gd20/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/examples/l3gd20/main.go -------------------------------------------------------------------------------- /examples/l9110x/simple/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/examples/l9110x/simple/main.go -------------------------------------------------------------------------------- /examples/l9110x/speed/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/examples/l9110x/speed/main.go -------------------------------------------------------------------------------- /examples/lis2mdl/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/examples/lis2mdl/main.go -------------------------------------------------------------------------------- /examples/lis3dh/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/examples/lis3dh/main.go -------------------------------------------------------------------------------- /examples/lora/lorawan/atcmd/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/examples/lora/lorawan/atcmd/README.md -------------------------------------------------------------------------------- /examples/lora/lorawan/atcmd/commands.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/examples/lora/lorawan/atcmd/commands.go -------------------------------------------------------------------------------- /examples/lora/lorawan/atcmd/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/examples/lora/lorawan/atcmd/main.go -------------------------------------------------------------------------------- /examples/lora/lorawan/atcmd/parser.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/examples/lora/lorawan/atcmd/parser.go -------------------------------------------------------------------------------- /examples/lora/lorawan/basic-demo/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/examples/lora/lorawan/basic-demo/README.md -------------------------------------------------------------------------------- /examples/lora/lorawan/basic-demo/keys-default.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/examples/lora/lorawan/basic-demo/keys-default.go -------------------------------------------------------------------------------- /examples/lora/lorawan/basic-demo/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/examples/lora/lorawan/basic-demo/main.go -------------------------------------------------------------------------------- /examples/lora/lorawan/common/featherwing.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/examples/lora/lorawan/common/featherwing.go -------------------------------------------------------------------------------- /examples/lora/lorawan/common/lgt92.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/examples/lora/lorawan/common/lgt92.go -------------------------------------------------------------------------------- /examples/lora/lorawan/common/radio.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/examples/lora/lorawan/common/radio.go -------------------------------------------------------------------------------- /examples/lora/lorawan/common/sim.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/examples/lora/lorawan/common/sim.go -------------------------------------------------------------------------------- /examples/lora/lorawan/common/stm32wlx.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/examples/lora/lorawan/common/stm32wlx.go -------------------------------------------------------------------------------- /examples/lora/lorawan/common/sx126x.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/examples/lora/lorawan/common/sx126x.go -------------------------------------------------------------------------------- /examples/lora/lorawan/common/sx127x.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/examples/lora/lorawan/common/sx127x.go -------------------------------------------------------------------------------- /examples/lora/lorawan/common/version.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/examples/lora/lorawan/common/version.go -------------------------------------------------------------------------------- /examples/lps22hb/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/examples/lps22hb/main.go -------------------------------------------------------------------------------- /examples/lsm303agr/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/examples/lsm303agr/main.go -------------------------------------------------------------------------------- /examples/lsm303dlhc/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/examples/lsm303dlhc/main.go -------------------------------------------------------------------------------- /examples/lsm6ds3/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/examples/lsm6ds3/main.go -------------------------------------------------------------------------------- /examples/lsm6ds3tr/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/examples/lsm6ds3tr/main.go -------------------------------------------------------------------------------- /examples/lsm6dsox/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/examples/lsm6dsox/main.go -------------------------------------------------------------------------------- /examples/lsm9ds1/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/examples/lsm9ds1/main.go -------------------------------------------------------------------------------- /examples/mag3110/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/examples/mag3110/main.go -------------------------------------------------------------------------------- /examples/makeybutton/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/examples/makeybutton/main.go -------------------------------------------------------------------------------- /examples/max6675/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/examples/max6675/main.go -------------------------------------------------------------------------------- /examples/max72xx/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/examples/max72xx/main.go -------------------------------------------------------------------------------- /examples/mcp23017-multiple/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/examples/mcp23017-multiple/main.go -------------------------------------------------------------------------------- /examples/mcp23017/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/examples/mcp23017/main.go -------------------------------------------------------------------------------- /examples/mcp2515/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/examples/mcp2515/main.go -------------------------------------------------------------------------------- /examples/mcp3008/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/examples/mcp3008/main.go -------------------------------------------------------------------------------- /examples/mcp9808/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/examples/mcp9808/main.go -------------------------------------------------------------------------------- /examples/microbitmatrix/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/examples/microbitmatrix/main.go -------------------------------------------------------------------------------- /examples/microphone/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/examples/microphone/main.go -------------------------------------------------------------------------------- /examples/mma8653/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/examples/mma8653/main.go -------------------------------------------------------------------------------- /examples/mpu6050/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/examples/mpu6050/main.go -------------------------------------------------------------------------------- /examples/mpu6886/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/examples/mpu6886/main.go -------------------------------------------------------------------------------- /examples/mpu9150/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/examples/mpu9150/main.go -------------------------------------------------------------------------------- /examples/ndir/main_ndir.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/examples/ndir/main_ndir.go -------------------------------------------------------------------------------- /examples/net/http-get/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/examples/net/http-get/main.go -------------------------------------------------------------------------------- /examples/net/http-head/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/examples/net/http-head/main.go -------------------------------------------------------------------------------- /examples/net/http-post/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/examples/net/http-post/main.go -------------------------------------------------------------------------------- /examples/net/http-postform/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/examples/net/http-postform/main.go -------------------------------------------------------------------------------- /examples/net/mqttclient/natiu/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/examples/net/mqttclient/natiu/main.go -------------------------------------------------------------------------------- /examples/net/mqttclient/paho/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/examples/net/mqttclient/paho/main.go -------------------------------------------------------------------------------- /examples/net/ntpclient/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/examples/net/ntpclient/main.go -------------------------------------------------------------------------------- /examples/net/snake/init.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/examples/net/snake/init.go -------------------------------------------------------------------------------- /examples/net/snake/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/examples/net/snake/main.go -------------------------------------------------------------------------------- /examples/net/snake/server/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/examples/net/snake/server/main.go -------------------------------------------------------------------------------- /examples/net/socket/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/examples/net/socket/main.go -------------------------------------------------------------------------------- /examples/net/tcpclient/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/examples/net/tcpclient/main.go -------------------------------------------------------------------------------- /examples/net/tcpecho/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/examples/net/tcpecho/main.go -------------------------------------------------------------------------------- /examples/net/tlsclient/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/examples/net/tlsclient/main.go -------------------------------------------------------------------------------- /examples/net/webclient-tinyterm/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/examples/net/webclient-tinyterm/main.go -------------------------------------------------------------------------------- /examples/net/webclient/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/examples/net/webclient/main.go -------------------------------------------------------------------------------- /examples/net/webserver/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/examples/net/webserver/main.go -------------------------------------------------------------------------------- /examples/net/websocket/dial/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/examples/net/websocket/dial/main.go -------------------------------------------------------------------------------- /examples/net/websocket/handler/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/examples/net/websocket/handler/main.go -------------------------------------------------------------------------------- /examples/net/webstatic/images/tinygo-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/examples/net/webstatic/images/tinygo-logo.png -------------------------------------------------------------------------------- /examples/net/webstatic/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/examples/net/webstatic/index.html -------------------------------------------------------------------------------- /examples/net/webstatic/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/examples/net/webstatic/main.go -------------------------------------------------------------------------------- /examples/onewire/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/examples/onewire/main.go -------------------------------------------------------------------------------- /examples/p1am/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/examples/p1am/main.go -------------------------------------------------------------------------------- /examples/pca9685/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/examples/pca9685/main.go -------------------------------------------------------------------------------- /examples/pcd8544/setbuffer/data/data.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/examples/pcd8544/setbuffer/data/data.go -------------------------------------------------------------------------------- /examples/pcd8544/setbuffer/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/examples/pcd8544/setbuffer/main.go -------------------------------------------------------------------------------- /examples/pcd8544/setpixel/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/examples/pcd8544/setpixel/main.go -------------------------------------------------------------------------------- /examples/pcf8523/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/examples/pcf8523/main.go -------------------------------------------------------------------------------- /examples/pcf8563/alarm/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/examples/pcf8563/alarm/main.go -------------------------------------------------------------------------------- /examples/pcf8563/clkout/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/examples/pcf8563/clkout/main.go -------------------------------------------------------------------------------- /examples/pcf8563/time/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/examples/pcf8563/time/main.go -------------------------------------------------------------------------------- /examples/pcf8563/timer/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/examples/pcf8563/timer/main.go -------------------------------------------------------------------------------- /examples/pcf8591/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/examples/pcf8591/main.go -------------------------------------------------------------------------------- /examples/qmi8658c/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/examples/qmi8658c/main.go -------------------------------------------------------------------------------- /examples/scd4x/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/examples/scd4x/main.go -------------------------------------------------------------------------------- /examples/sdcard/console/console.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/examples/sdcard/console/console.go -------------------------------------------------------------------------------- /examples/sdcard/console/feather-m4.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/examples/sdcard/console/feather-m4.go -------------------------------------------------------------------------------- /examples/sdcard/console/grandcentral-m4.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/examples/sdcard/console/grandcentral-m4.go -------------------------------------------------------------------------------- /examples/sdcard/console/m0.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/examples/sdcard/console/m0.go -------------------------------------------------------------------------------- /examples/sdcard/console/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/examples/sdcard/console/main.go -------------------------------------------------------------------------------- /examples/sdcard/console/p1am-100.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/examples/sdcard/console/p1am-100.go -------------------------------------------------------------------------------- /examples/sdcard/console/pygamer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/examples/sdcard/console/pygamer.go -------------------------------------------------------------------------------- /examples/sdcard/console/pyportal.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/examples/sdcard/console/pyportal.go -------------------------------------------------------------------------------- /examples/sdcard/console/thingplus-rp2040.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/examples/sdcard/console/thingplus-rp2040.go -------------------------------------------------------------------------------- /examples/sdcard/console/wioterminal.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/examples/sdcard/console/wioterminal.go -------------------------------------------------------------------------------- /examples/seesaw/rotary-encoder/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/examples/seesaw/rotary-encoder/main.go -------------------------------------------------------------------------------- /examples/seesaw/soil-sensor/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/examples/seesaw/soil-sensor/main.go -------------------------------------------------------------------------------- /examples/semihosting/semihosting.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/examples/semihosting/semihosting.go -------------------------------------------------------------------------------- /examples/servo/servo.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/examples/servo/servo.go -------------------------------------------------------------------------------- /examples/sgp30/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/examples/sgp30/main.go -------------------------------------------------------------------------------- /examples/sh1106/macropad_spi/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/examples/sh1106/macropad_spi/main.go -------------------------------------------------------------------------------- /examples/sharpmem/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/examples/sharpmem/main.go -------------------------------------------------------------------------------- /examples/shifter/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/examples/shifter/main.go -------------------------------------------------------------------------------- /examples/shiftregister/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/examples/shiftregister/main.go -------------------------------------------------------------------------------- /examples/sht3x/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/examples/sht3x/main.go -------------------------------------------------------------------------------- /examples/sht4x/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/examples/sht4x/main.go -------------------------------------------------------------------------------- /examples/shtc3/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/examples/shtc3/main.go -------------------------------------------------------------------------------- /examples/ssd1289/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/examples/ssd1289/main.go -------------------------------------------------------------------------------- /examples/ssd1306/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/examples/ssd1306/main.go -------------------------------------------------------------------------------- /examples/ssd1306/main_i2c_xiao-ble.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/examples/ssd1306/main_i2c_xiao-ble.go -------------------------------------------------------------------------------- /examples/ssd1306/main_spi_thumby.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/examples/ssd1306/main_spi_thumby.go -------------------------------------------------------------------------------- /examples/ssd1306/main_spi_xiao-rp2040.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/examples/ssd1306/main_spi_xiao-rp2040.go -------------------------------------------------------------------------------- /examples/ssd1331/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/examples/ssd1331/main.go -------------------------------------------------------------------------------- /examples/ssd1351/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/examples/ssd1351/main.go -------------------------------------------------------------------------------- /examples/st7735/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/examples/st7735/main.go -------------------------------------------------------------------------------- /examples/st7789/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/examples/st7789/main.go -------------------------------------------------------------------------------- /examples/sx126x/lora_continuous/lora_continuous.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/examples/sx126x/lora_continuous/lora_continuous.go -------------------------------------------------------------------------------- /examples/sx126x/lora_continuous/radio.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/examples/sx126x/lora_continuous/radio.go -------------------------------------------------------------------------------- /examples/sx126x/lora_continuous/radio_stm32wl.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/examples/sx126x/lora_continuous/radio_stm32wl.go -------------------------------------------------------------------------------- /examples/sx126x/lora_rxtx/lora_rxtx.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/examples/sx126x/lora_rxtx/lora_rxtx.go -------------------------------------------------------------------------------- /examples/sx126x/lora_rxtx/radio.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/examples/sx126x/lora_rxtx/radio.go -------------------------------------------------------------------------------- /examples/sx126x/lora_rxtx/radio_stm32wl.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/examples/sx126x/lora_rxtx/radio_stm32wl.go -------------------------------------------------------------------------------- /examples/sx127x/lora_rxtx/lora_rxtx.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/examples/sx127x/lora_rxtx/lora_rxtx.go -------------------------------------------------------------------------------- /examples/thermistor/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/examples/thermistor/main.go -------------------------------------------------------------------------------- /examples/tm1637/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/examples/tm1637/main.go -------------------------------------------------------------------------------- /examples/tmc2209/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/examples/tmc2209/main.go -------------------------------------------------------------------------------- /examples/tmc5160/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/examples/tmc5160/main.go -------------------------------------------------------------------------------- /examples/tmp102/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/examples/tmp102/main.go -------------------------------------------------------------------------------- /examples/tone/tone.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/examples/tone/tone.go -------------------------------------------------------------------------------- /examples/touch/capacitive/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/examples/touch/capacitive/main.go -------------------------------------------------------------------------------- /examples/touch/resistive/fourwire/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/examples/touch/resistive/fourwire/main.go -------------------------------------------------------------------------------- /examples/touch/resistive/pyportal_touchpaint/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/examples/touch/resistive/pyportal_touchpaint/main.go -------------------------------------------------------------------------------- /examples/ttp229/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/examples/ttp229/main.go -------------------------------------------------------------------------------- /examples/uc8151/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/examples/uc8151/main.go -------------------------------------------------------------------------------- /examples/veml6070/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/examples/veml6070/main.go -------------------------------------------------------------------------------- /examples/vl53l1x/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/examples/vl53l1x/main.go -------------------------------------------------------------------------------- /examples/vl6180x/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/examples/vl6180x/main.go -------------------------------------------------------------------------------- /examples/waveshare-epd/epd1in54/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/examples/waveshare-epd/epd1in54/main.go -------------------------------------------------------------------------------- /examples/waveshare-epd/epd2in13/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/examples/waveshare-epd/epd2in13/main.go -------------------------------------------------------------------------------- /examples/waveshare-epd/epd2in13x/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/examples/waveshare-epd/epd2in13x/main.go -------------------------------------------------------------------------------- /examples/waveshare-epd/epd2in66b/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/examples/waveshare-epd/epd2in66b/main.go -------------------------------------------------------------------------------- /examples/waveshare-epd/epd2in9/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/examples/waveshare-epd/epd2in9/main.go -------------------------------------------------------------------------------- /examples/waveshare-epd/epd4in2/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/examples/waveshare-epd/epd4in2/main.go -------------------------------------------------------------------------------- /examples/ws2812/arduino.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/examples/ws2812/arduino.go -------------------------------------------------------------------------------- /examples/ws2812/digispark.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/examples/ws2812/digispark.go -------------------------------------------------------------------------------- /examples/ws2812/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/examples/ws2812/main.go -------------------------------------------------------------------------------- /examples/ws2812/others.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/examples/ws2812/others.go -------------------------------------------------------------------------------- /examples/ws2812/qtpy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/examples/ws2812/qtpy.go -------------------------------------------------------------------------------- /examples/xpt2046/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/examples/xpt2046/main.go -------------------------------------------------------------------------------- /flash/devices.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/flash/devices.go -------------------------------------------------------------------------------- /flash/flash.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/flash/flash.go -------------------------------------------------------------------------------- /flash/transport_qspi_samd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/flash/transport_qspi_samd.go -------------------------------------------------------------------------------- /flash/transport_spi.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/flash/transport_spi.go -------------------------------------------------------------------------------- /ft6336/ft6336.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/ft6336/ft6336.go -------------------------------------------------------------------------------- /ft6336/registers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/ft6336/registers.go -------------------------------------------------------------------------------- /gc9a01/gc9a01.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/gc9a01/gc9a01.go -------------------------------------------------------------------------------- /gc9a01/registers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/gc9a01/registers.go -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/go.sum -------------------------------------------------------------------------------- /gps/gps.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/gps/gps.go -------------------------------------------------------------------------------- /gps/gpsparser.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/gps/gpsparser.go -------------------------------------------------------------------------------- /gps/gpsparser_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/gps/gpsparser_test.go -------------------------------------------------------------------------------- /gps/registers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/gps/registers.go -------------------------------------------------------------------------------- /gps/ublox.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/gps/ublox.go -------------------------------------------------------------------------------- /hcsr04/hcsr04.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/hcsr04/hcsr04.go -------------------------------------------------------------------------------- /hd44780/gpio.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/hd44780/gpio.go -------------------------------------------------------------------------------- /hd44780/hd44780.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/hd44780/hd44780.go -------------------------------------------------------------------------------- /hd44780/registers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/hd44780/registers.go -------------------------------------------------------------------------------- /hd44780i2c/hd44780i2c.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/hd44780i2c/hd44780i2c.go -------------------------------------------------------------------------------- /hd44780i2c/registers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/hd44780i2c/registers.go -------------------------------------------------------------------------------- /hts221/hts221.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/hts221/hts221.go -------------------------------------------------------------------------------- /hts221/hts221_generic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/hts221/hts221_generic.go -------------------------------------------------------------------------------- /hts221/hts221_nano_33_ble.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/hts221/hts221_nano_33_ble.go -------------------------------------------------------------------------------- /hts221/registers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/hts221/registers.go -------------------------------------------------------------------------------- /hub75/hub75.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/hub75/hub75.go -------------------------------------------------------------------------------- /i2c.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/i2c.go -------------------------------------------------------------------------------- /i2csoft/i2csoft.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/i2csoft/i2csoft.go -------------------------------------------------------------------------------- /ili9341/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/ili9341/README.md -------------------------------------------------------------------------------- /ili9341/ili9341.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/ili9341/ili9341.go -------------------------------------------------------------------------------- /ili9341/parallel_atsamd51.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/ili9341/parallel_atsamd51.go -------------------------------------------------------------------------------- /ili9341/registers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/ili9341/registers.go -------------------------------------------------------------------------------- /ili9341/spi.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/ili9341/spi.go -------------------------------------------------------------------------------- /ili9341/spi_atsamd21.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/ili9341/spi_atsamd21.go -------------------------------------------------------------------------------- /ili9341/spi_atsamd51.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/ili9341/spi_atsamd51.go -------------------------------------------------------------------------------- /image/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/image/README.md -------------------------------------------------------------------------------- /image/internal/compress/flate/deflate.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/image/internal/compress/flate/deflate.go -------------------------------------------------------------------------------- /image/internal/compress/flate/deflate_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/image/internal/compress/flate/deflate_test.go -------------------------------------------------------------------------------- /image/internal/compress/flate/deflatefast.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/image/internal/compress/flate/deflatefast.go -------------------------------------------------------------------------------- /image/internal/compress/flate/dict_decoder.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/image/internal/compress/flate/dict_decoder.go -------------------------------------------------------------------------------- /image/internal/compress/flate/dict_decoder_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/image/internal/compress/flate/dict_decoder_test.go -------------------------------------------------------------------------------- /image/internal/compress/flate/example_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/image/internal/compress/flate/example_test.go -------------------------------------------------------------------------------- /image/internal/compress/flate/flate_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/image/internal/compress/flate/flate_test.go -------------------------------------------------------------------------------- /image/internal/compress/flate/huffman_bit_writer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/image/internal/compress/flate/huffman_bit_writer.go -------------------------------------------------------------------------------- /image/internal/compress/flate/huffman_bit_writer_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/image/internal/compress/flate/huffman_bit_writer_test.go -------------------------------------------------------------------------------- /image/internal/compress/flate/huffman_code.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/image/internal/compress/flate/huffman_code.go -------------------------------------------------------------------------------- /image/internal/compress/flate/inflate.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/image/internal/compress/flate/inflate.go -------------------------------------------------------------------------------- /image/internal/compress/flate/inflate_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/image/internal/compress/flate/inflate_test.go -------------------------------------------------------------------------------- /image/internal/compress/flate/reader_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/image/internal/compress/flate/reader_test.go -------------------------------------------------------------------------------- /image/internal/compress/flate/token.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/image/internal/compress/flate/token.go -------------------------------------------------------------------------------- /image/internal/compress/flate/writer_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/image/internal/compress/flate/writer_test.go -------------------------------------------------------------------------------- /image/internal/compress/zlib/example_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/image/internal/compress/zlib/example_test.go -------------------------------------------------------------------------------- /image/internal/compress/zlib/reader.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/image/internal/compress/zlib/reader.go -------------------------------------------------------------------------------- /image/internal/compress/zlib/reader_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/image/internal/compress/zlib/reader_test.go -------------------------------------------------------------------------------- /image/internal/compress/zlib/writer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/image/internal/compress/zlib/writer.go -------------------------------------------------------------------------------- /image/internal/compress/zlib/writer_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/image/internal/compress/zlib/writer_test.go -------------------------------------------------------------------------------- /image/internal/imageutil/gen.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/image/internal/imageutil/gen.go -------------------------------------------------------------------------------- /image/internal/imageutil/imageutil.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/image/internal/imageutil/imageutil.go -------------------------------------------------------------------------------- /image/internal/imageutil/impl.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/image/internal/imageutil/impl.go -------------------------------------------------------------------------------- /image/jpeg/callback.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/image/jpeg/callback.go -------------------------------------------------------------------------------- /image/jpeg/dct_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/image/jpeg/dct_test.go -------------------------------------------------------------------------------- /image/jpeg/fdct.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/image/jpeg/fdct.go -------------------------------------------------------------------------------- /image/jpeg/huffman.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/image/jpeg/huffman.go -------------------------------------------------------------------------------- /image/jpeg/idct.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/image/jpeg/idct.go -------------------------------------------------------------------------------- /image/jpeg/reader.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/image/jpeg/reader.go -------------------------------------------------------------------------------- /image/jpeg/reader_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/image/jpeg/reader_test.go -------------------------------------------------------------------------------- /image/jpeg/scan.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/image/jpeg/scan.go -------------------------------------------------------------------------------- /image/jpeg/writer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/image/jpeg/writer.go -------------------------------------------------------------------------------- /image/jpeg/writer_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/image/jpeg/writer_test.go -------------------------------------------------------------------------------- /image/png/callback.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/image/png/callback.go -------------------------------------------------------------------------------- /image/png/example_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/image/png/example_test.go -------------------------------------------------------------------------------- /image/png/fuzz.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/image/png/fuzz.go -------------------------------------------------------------------------------- /image/png/paeth.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/image/png/paeth.go -------------------------------------------------------------------------------- /image/png/paeth_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/image/png/paeth_test.go -------------------------------------------------------------------------------- /image/png/reader.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/image/png/reader.go -------------------------------------------------------------------------------- /image/png/reader_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/image/png/reader_test.go -------------------------------------------------------------------------------- /image/png/writer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/image/png/writer.go -------------------------------------------------------------------------------- /image/png/writer_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/image/png/writer_test.go -------------------------------------------------------------------------------- /ina219/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/ina219/config.go -------------------------------------------------------------------------------- /ina219/errors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/ina219/errors.go -------------------------------------------------------------------------------- /ina219/ina219.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/ina219/ina219.go -------------------------------------------------------------------------------- /ina219/ina219_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/ina219/ina219_test.go -------------------------------------------------------------------------------- /ina219/registers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/ina219/registers.go -------------------------------------------------------------------------------- /ina260/ina260.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/ina260/ina260.go -------------------------------------------------------------------------------- /ina260/ina260_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/ina260/ina260_test.go -------------------------------------------------------------------------------- /ina260/registers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/ina260/registers.go -------------------------------------------------------------------------------- /internal/legacy/i2clegacy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/internal/legacy/i2clegacy.go -------------------------------------------------------------------------------- /irremote/receiver.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/irremote/receiver.go -------------------------------------------------------------------------------- /is31fl3731/is31fl3731.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/is31fl3731/is31fl3731.go -------------------------------------------------------------------------------- /is31fl3731/is31fl3731_acw15x7.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/is31fl3731/is31fl3731_acw15x7.go -------------------------------------------------------------------------------- /is31fl3731/registers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/is31fl3731/registers.go -------------------------------------------------------------------------------- /keypad4x4/keypad4x4.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/keypad4x4/keypad4x4.go -------------------------------------------------------------------------------- /l293x/l293x.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/l293x/l293x.go -------------------------------------------------------------------------------- /l3gd20/i2c.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/l3gd20/i2c.go -------------------------------------------------------------------------------- /l3gd20/l3gd20.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/l3gd20/l3gd20.go -------------------------------------------------------------------------------- /l3gd20/registers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/l3gd20/registers.go -------------------------------------------------------------------------------- /l9110x/l9110x.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/l9110x/l9110x.go -------------------------------------------------------------------------------- /lis2mdl/lis2mdl.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/lis2mdl/lis2mdl.go -------------------------------------------------------------------------------- /lis2mdl/lis2mdl_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/lis2mdl/lis2mdl_test.go -------------------------------------------------------------------------------- /lis2mdl/registers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/lis2mdl/registers.go -------------------------------------------------------------------------------- /lis3dh/lis3dh.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/lis3dh/lis3dh.go -------------------------------------------------------------------------------- /lis3dh/registers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/lis3dh/registers.go -------------------------------------------------------------------------------- /lora/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/lora/config.go -------------------------------------------------------------------------------- /lora/lorawan/adaptor.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/lora/lorawan/adaptor.go -------------------------------------------------------------------------------- /lora/lorawan/bytes.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/lora/lorawan/bytes.go -------------------------------------------------------------------------------- /lora/lorawan/cmac.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/lora/lorawan/cmac.go -------------------------------------------------------------------------------- /lora/lorawan/mic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/lora/lorawan/mic.go -------------------------------------------------------------------------------- /lora/lorawan/otaa.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/lora/lorawan/otaa.go -------------------------------------------------------------------------------- /lora/lorawan/region/au915.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/lora/lorawan/region/au915.go -------------------------------------------------------------------------------- /lora/lorawan/region/channel.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/lora/lorawan/region/channel.go -------------------------------------------------------------------------------- /lora/lorawan/region/eu868.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/lora/lorawan/region/eu868.go -------------------------------------------------------------------------------- /lora/lorawan/region/settings.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/lora/lorawan/region/settings.go -------------------------------------------------------------------------------- /lora/lorawan/region/us915.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/lora/lorawan/region/us915.go -------------------------------------------------------------------------------- /lora/lorawan/session.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/lora/lorawan/session.go -------------------------------------------------------------------------------- /lora/radio.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/lora/radio.go -------------------------------------------------------------------------------- /lora/radio_event.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/lora/radio_event.go -------------------------------------------------------------------------------- /lps22hb/lps22hb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/lps22hb/lps22hb.go -------------------------------------------------------------------------------- /lps22hb/lps22hb_generic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/lps22hb/lps22hb_generic.go -------------------------------------------------------------------------------- /lps22hb/lps22hb_nano_33_ble.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/lps22hb/lps22hb_nano_33_ble.go -------------------------------------------------------------------------------- /lps22hb/registers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/lps22hb/registers.go -------------------------------------------------------------------------------- /lsm303agr/lsm303agr.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/lsm303agr/lsm303agr.go -------------------------------------------------------------------------------- /lsm303agr/registers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/lsm303agr/registers.go -------------------------------------------------------------------------------- /lsm303dlhc/lsm303dlhc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/lsm303dlhc/lsm303dlhc.go -------------------------------------------------------------------------------- /lsm303dlhc/registers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/lsm303dlhc/registers.go -------------------------------------------------------------------------------- /lsm6ds3/lsm6ds3.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/lsm6ds3/lsm6ds3.go -------------------------------------------------------------------------------- /lsm6ds3/registers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/lsm6ds3/registers.go -------------------------------------------------------------------------------- /lsm6ds3tr/lsm6ds3tr.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/lsm6ds3tr/lsm6ds3tr.go -------------------------------------------------------------------------------- /lsm6ds3tr/lsm6ds3tr_generic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/lsm6ds3tr/lsm6ds3tr_generic.go -------------------------------------------------------------------------------- /lsm6ds3tr/lsm6ds3tr_xiao_ble.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/lsm6ds3tr/lsm6ds3tr_xiao_ble.go -------------------------------------------------------------------------------- /lsm6ds3tr/registers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/lsm6ds3tr/registers.go -------------------------------------------------------------------------------- /lsm6dsox/lsm6dsox.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/lsm6dsox/lsm6dsox.go -------------------------------------------------------------------------------- /lsm6dsox/registers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/lsm6dsox/registers.go -------------------------------------------------------------------------------- /lsm9ds1/lsm9ds1.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/lsm9ds1/lsm9ds1.go -------------------------------------------------------------------------------- /lsm9ds1/lsm9ds1_generic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/lsm9ds1/lsm9ds1_generic.go -------------------------------------------------------------------------------- /lsm9ds1/lsm9ds1_nano_33_ble.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/lsm9ds1/lsm9ds1_nano_33_ble.go -------------------------------------------------------------------------------- /lsm9ds1/registers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/lsm9ds1/registers.go -------------------------------------------------------------------------------- /mag3110/mag3110.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/mag3110/mag3110.go -------------------------------------------------------------------------------- /mag3110/registers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/mag3110/registers.go -------------------------------------------------------------------------------- /makeybutton/buffer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/makeybutton/buffer.go -------------------------------------------------------------------------------- /makeybutton/button.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/makeybutton/button.go -------------------------------------------------------------------------------- /max6675/max6675.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/max6675/max6675.go -------------------------------------------------------------------------------- /max72xx/max72xx.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/max72xx/max72xx.go -------------------------------------------------------------------------------- /max72xx/registers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/max72xx/registers.go -------------------------------------------------------------------------------- /mcp23017/device.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/mcp23017/device.go -------------------------------------------------------------------------------- /mcp23017/device_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/mcp23017/device_test.go -------------------------------------------------------------------------------- /mcp23017/multidevice.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/mcp23017/multidevice.go -------------------------------------------------------------------------------- /mcp23017/multidevice_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/mcp23017/multidevice_test.go -------------------------------------------------------------------------------- /mcp2515/mcp2515.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/mcp2515/mcp2515.go -------------------------------------------------------------------------------- /mcp2515/registers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/mcp2515/registers.go -------------------------------------------------------------------------------- /mcp3008/mcp3008.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/mcp3008/mcp3008.go -------------------------------------------------------------------------------- /mcp9808/mcp9808.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/mcp9808/mcp9808.go -------------------------------------------------------------------------------- /mcp9808/registers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/mcp9808/registers.go -------------------------------------------------------------------------------- /microbitmatrix/microbitmatrix-v1.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/microbitmatrix/microbitmatrix-v1.go -------------------------------------------------------------------------------- /microbitmatrix/microbitmatrix-v2.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/microbitmatrix/microbitmatrix-v2.go -------------------------------------------------------------------------------- /microbitmatrix/microbitmatrix.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/microbitmatrix/microbitmatrix.go -------------------------------------------------------------------------------- /microphone/microphone.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/microphone/microphone.go -------------------------------------------------------------------------------- /mma8653/mma8653.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/mma8653/mma8653.go -------------------------------------------------------------------------------- /mma8653/registers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/mma8653/registers.go -------------------------------------------------------------------------------- /mpu6050/mpu6050.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/mpu6050/mpu6050.go -------------------------------------------------------------------------------- /mpu6050/registers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/mpu6050/registers.go -------------------------------------------------------------------------------- /mpu6886/mpu6886.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/mpu6886/mpu6886.go -------------------------------------------------------------------------------- /mpu6886/registers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/mpu6886/registers.go -------------------------------------------------------------------------------- /mpu9150/mpu9150.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/mpu9150/mpu9150.go -------------------------------------------------------------------------------- /mpu9150/registers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/mpu9150/registers.go -------------------------------------------------------------------------------- /ndir/ndir.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/ndir/ndir.go -------------------------------------------------------------------------------- /netdev/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/netdev/README.md -------------------------------------------------------------------------------- /netdev/netdev.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/netdev/netdev.go -------------------------------------------------------------------------------- /netlink/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/netlink/README.md -------------------------------------------------------------------------------- /netlink/netlink.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/netlink/netlink.go -------------------------------------------------------------------------------- /netlink/probe/comboat.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/netlink/probe/comboat.go -------------------------------------------------------------------------------- /netlink/probe/espat.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/netlink/probe/espat.go -------------------------------------------------------------------------------- /netlink/probe/mrkwifi1010.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/netlink/probe/mrkwifi1010.go -------------------------------------------------------------------------------- /netlink/probe/rtl8720dn.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/netlink/probe/rtl8720dn.go -------------------------------------------------------------------------------- /netlink/probe/wifinina.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/netlink/probe/wifinina.go -------------------------------------------------------------------------------- /onewire/onewire.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/onewire/onewire.go -------------------------------------------------------------------------------- /p1am/defines.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/p1am/defines.go -------------------------------------------------------------------------------- /p1am/internal/cmd/gen_defines/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/p1am/internal/cmd/gen_defines/main.go -------------------------------------------------------------------------------- /p1am/p1am.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/p1am/p1am.go -------------------------------------------------------------------------------- /pca9685/errors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/pca9685/errors.go -------------------------------------------------------------------------------- /pca9685/io.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/pca9685/io.go -------------------------------------------------------------------------------- /pca9685/pca9685.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/pca9685/pca9685.go -------------------------------------------------------------------------------- /pca9685/pca9685_buffered.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/pca9685/pca9685_buffered.go -------------------------------------------------------------------------------- /pca9685/registers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/pca9685/registers.go -------------------------------------------------------------------------------- /pcd8544/pcd8544.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/pcd8544/pcd8544.go -------------------------------------------------------------------------------- /pcd8544/registers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/pcd8544/registers.go -------------------------------------------------------------------------------- /pcf8523/pcf8523.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/pcf8523/pcf8523.go -------------------------------------------------------------------------------- /pcf8523/pcf8523_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/pcf8523/pcf8523_test.go -------------------------------------------------------------------------------- /pcf8523/registers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/pcf8523/registers.go -------------------------------------------------------------------------------- /pcf8563/pcf8563.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/pcf8563/pcf8563.go -------------------------------------------------------------------------------- /pcf8563/registers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/pcf8563/registers.go -------------------------------------------------------------------------------- /pcf8591/pcf8591.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/pcf8591/pcf8591.go -------------------------------------------------------------------------------- /pcf8591/registers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/pcf8591/registers.go -------------------------------------------------------------------------------- /pixel/image.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/pixel/image.go -------------------------------------------------------------------------------- /pixel/image_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/pixel/image_test.go -------------------------------------------------------------------------------- /pixel/pixel.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/pixel/pixel.go -------------------------------------------------------------------------------- /qmi8658c/qmi8658c.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/qmi8658c/qmi8658c.go -------------------------------------------------------------------------------- /qmi8658c/registers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/qmi8658c/registers.go -------------------------------------------------------------------------------- /rtl8720dn/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/rtl8720dn/README.md -------------------------------------------------------------------------------- /rtl8720dn/crc16.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/rtl8720dn/crc16.go -------------------------------------------------------------------------------- /rtl8720dn/debug.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/rtl8720dn/debug.go -------------------------------------------------------------------------------- /rtl8720dn/rpc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/rtl8720dn/rpc.go -------------------------------------------------------------------------------- /rtl8720dn/rpc_util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/rtl8720dn/rpc_util.go -------------------------------------------------------------------------------- /rtl8720dn/rtl8720dn.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/rtl8720dn/rtl8720dn.go -------------------------------------------------------------------------------- /rtl8720dn/tmp.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/rtl8720dn/tmp.go -------------------------------------------------------------------------------- /scd4x/registers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/scd4x/registers.go -------------------------------------------------------------------------------- /scd4x/scd4x.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/scd4x/scd4x.go -------------------------------------------------------------------------------- /scd4x/scd4x_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/scd4x/scd4x_test.go -------------------------------------------------------------------------------- /sdcard/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/sdcard/README.md -------------------------------------------------------------------------------- /sdcard/cid.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/sdcard/cid.go -------------------------------------------------------------------------------- /sdcard/const.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/sdcard/const.go -------------------------------------------------------------------------------- /sdcard/csd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/sdcard/csd.go -------------------------------------------------------------------------------- /sdcard/sdcard.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/sdcard/sdcard.go -------------------------------------------------------------------------------- /sdcard/timer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/sdcard/timer.go -------------------------------------------------------------------------------- /seesaw/encoder.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/seesaw/encoder.go -------------------------------------------------------------------------------- /seesaw/mocki2c_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/seesaw/mocki2c_test.go -------------------------------------------------------------------------------- /seesaw/registers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/seesaw/registers.go -------------------------------------------------------------------------------- /seesaw/seesaw.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/seesaw/seesaw.go -------------------------------------------------------------------------------- /seesaw/seesaw_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/seesaw/seesaw_test.go -------------------------------------------------------------------------------- /semihosting/semihosting.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/semihosting/semihosting.go -------------------------------------------------------------------------------- /semihosting/stdio.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/semihosting/stdio.go -------------------------------------------------------------------------------- /sensor.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/sensor.go -------------------------------------------------------------------------------- /servo/servo.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/servo/servo.go -------------------------------------------------------------------------------- /sgp30/sgp30.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/sgp30/sgp30.go -------------------------------------------------------------------------------- /sh1106/registers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/sh1106/registers.go -------------------------------------------------------------------------------- /sh1106/sh1106.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/sh1106/sh1106.go -------------------------------------------------------------------------------- /sharpmem/sharpmem.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/sharpmem/sharpmem.go -------------------------------------------------------------------------------- /sharpmem/sharpmem_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/sharpmem/sharpmem_test.go -------------------------------------------------------------------------------- /sharpmem/util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/sharpmem/util.go -------------------------------------------------------------------------------- /shifter/pybadge.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/shifter/pybadge.go -------------------------------------------------------------------------------- /shifter/shifter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/shifter/shifter.go -------------------------------------------------------------------------------- /shiftregister/shiftregister.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/shiftregister/shiftregister.go -------------------------------------------------------------------------------- /sht3x/registers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/sht3x/registers.go -------------------------------------------------------------------------------- /sht3x/sht3x.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/sht3x/sht3x.go -------------------------------------------------------------------------------- /sht4x/sht4x.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/sht4x/sht4x.go -------------------------------------------------------------------------------- /shtc3/registers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/shtc3/registers.go -------------------------------------------------------------------------------- /shtc3/shtc3.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/shtc3/shtc3.go -------------------------------------------------------------------------------- /smoketest.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/smoketest.go -------------------------------------------------------------------------------- /smoketest.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/smoketest.sh -------------------------------------------------------------------------------- /spi.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/spi.go -------------------------------------------------------------------------------- /ssd1289/pinbus.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/ssd1289/pinbus.go -------------------------------------------------------------------------------- /ssd1289/registers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/ssd1289/registers.go -------------------------------------------------------------------------------- /ssd1289/rp2040bus.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/ssd1289/rp2040bus.go -------------------------------------------------------------------------------- /ssd1289/ssd1289.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/ssd1289/ssd1289.go -------------------------------------------------------------------------------- /ssd1306/registers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/ssd1306/registers.go -------------------------------------------------------------------------------- /ssd1306/ssd1306.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/ssd1306/ssd1306.go -------------------------------------------------------------------------------- /ssd1306/ssd1306_i2c.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/ssd1306/ssd1306_i2c.go -------------------------------------------------------------------------------- /ssd1306/ssd1306_spi.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/ssd1306/ssd1306_spi.go -------------------------------------------------------------------------------- /ssd1331/registers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/ssd1331/registers.go -------------------------------------------------------------------------------- /ssd1331/ssd1331.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/ssd1331/ssd1331.go -------------------------------------------------------------------------------- /ssd1351/commands.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/ssd1351/commands.go -------------------------------------------------------------------------------- /ssd1351/ssd1351.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/ssd1351/ssd1351.go -------------------------------------------------------------------------------- /st7735/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/st7735/README.md -------------------------------------------------------------------------------- /st7735/registers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/st7735/registers.go -------------------------------------------------------------------------------- /st7735/st7735.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/st7735/st7735.go -------------------------------------------------------------------------------- /st7789/registers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/st7789/registers.go -------------------------------------------------------------------------------- /st7789/st7789.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/st7789/st7789.go -------------------------------------------------------------------------------- /sx126x/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/sx126x/README.md -------------------------------------------------------------------------------- /sx126x/radiocontrol.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/sx126x/radiocontrol.go -------------------------------------------------------------------------------- /sx126x/radiocontrol_gnse.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/sx126x/radiocontrol_gnse.go -------------------------------------------------------------------------------- /sx126x/radiocontrol_lorae5.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/sx126x/radiocontrol_lorae5.go -------------------------------------------------------------------------------- /sx126x/radiocontrol_pins.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/sx126x/radiocontrol_pins.go -------------------------------------------------------------------------------- /sx126x/radiocontrol_stm32wl.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/sx126x/radiocontrol_stm32wl.go -------------------------------------------------------------------------------- /sx126x/radiocontrol_wl55jc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/sx126x/radiocontrol_wl55jc.go -------------------------------------------------------------------------------- /sx126x/registers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/sx126x/registers.go -------------------------------------------------------------------------------- /sx126x/sx126x.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/sx126x/sx126x.go -------------------------------------------------------------------------------- /sx127x/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/sx127x/README.md -------------------------------------------------------------------------------- /sx127x/radiocontrol.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/sx127x/radiocontrol.go -------------------------------------------------------------------------------- /sx127x/radiocontrol_pins.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/sx127x/radiocontrol_pins.go -------------------------------------------------------------------------------- /sx127x/registers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/sx127x/registers.go -------------------------------------------------------------------------------- /sx127x/sx127x.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/sx127x/sx127x.go -------------------------------------------------------------------------------- /tester/device.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/tester/device.go -------------------------------------------------------------------------------- /tester/device16.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/tester/device16.go -------------------------------------------------------------------------------- /tester/device16_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/tester/device16_test.go -------------------------------------------------------------------------------- /tester/device8.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/tester/device8.go -------------------------------------------------------------------------------- /tester/device8_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/tester/device8_test.go -------------------------------------------------------------------------------- /tester/devicecmd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/tester/devicecmd.go -------------------------------------------------------------------------------- /tester/i2c.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/tester/i2c.go -------------------------------------------------------------------------------- /tester/tester.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/tester/tester.go -------------------------------------------------------------------------------- /thermistor/thermistor.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/thermistor/thermistor.go -------------------------------------------------------------------------------- /tm1637/registers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/tm1637/registers.go -------------------------------------------------------------------------------- /tm1637/tm1637.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/tm1637/tm1637.go -------------------------------------------------------------------------------- /tmc2209/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/tmc2209/README.md -------------------------------------------------------------------------------- /tmc2209/address.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/tmc2209/address.go -------------------------------------------------------------------------------- /tmc2209/current.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/tmc2209/current.go -------------------------------------------------------------------------------- /tmc2209/motor_config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/tmc2209/motor_config.go -------------------------------------------------------------------------------- /tmc2209/stealthchop.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/tmc2209/stealthchop.go -------------------------------------------------------------------------------- /tmc2209/tmc2209.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/tmc2209/tmc2209.go -------------------------------------------------------------------------------- /tmc2209/uartcomm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/tmc2209/uartcomm.go -------------------------------------------------------------------------------- /tmc2209/utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/tmc2209/utils.go -------------------------------------------------------------------------------- /tmc2209/velocity.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/tmc2209/velocity.go -------------------------------------------------------------------------------- /tmc5160/README.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/tmc5160/README.MD -------------------------------------------------------------------------------- /tmc5160/address.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/tmc5160/address.go -------------------------------------------------------------------------------- /tmc5160/helpers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/tmc5160/helpers.go -------------------------------------------------------------------------------- /tmc5160/registers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/tmc5160/registers.go -------------------------------------------------------------------------------- /tmc5160/spicomm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/tmc5160/spicomm.go -------------------------------------------------------------------------------- /tmc5160/stepper.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/tmc5160/stepper.go -------------------------------------------------------------------------------- /tmc5160/tmc5160.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/tmc5160/tmc5160.go -------------------------------------------------------------------------------- /tmc5160/uartcomm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/tmc5160/uartcomm.go -------------------------------------------------------------------------------- /tmc5160/utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/tmc5160/utils.go -------------------------------------------------------------------------------- /tmp102/registers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/tmp102/registers.go -------------------------------------------------------------------------------- /tmp102/tmp102.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/tmp102/tmp102.go -------------------------------------------------------------------------------- /tone/notes.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/tone/notes.go -------------------------------------------------------------------------------- /tone/tone.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/tone/tone.go -------------------------------------------------------------------------------- /touch/capacitive/gpio.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/touch/capacitive/gpio.go -------------------------------------------------------------------------------- /touch/point.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/touch/point.go -------------------------------------------------------------------------------- /touch/resistive/fourwire.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/touch/resistive/fourwire.go -------------------------------------------------------------------------------- /ttp229/ttp229.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/ttp229/ttp229.go -------------------------------------------------------------------------------- /uart.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/uart.go -------------------------------------------------------------------------------- /uc8151/lut.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/uc8151/lut.go -------------------------------------------------------------------------------- /uc8151/registers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/uc8151/registers.go -------------------------------------------------------------------------------- /uc8151/uc8151.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/uc8151/uc8151.go -------------------------------------------------------------------------------- /veml6070/registers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/veml6070/registers.go -------------------------------------------------------------------------------- /veml6070/veml6070.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/veml6070/veml6070.go -------------------------------------------------------------------------------- /version.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/version.go -------------------------------------------------------------------------------- /vl53l1x/registers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/vl53l1x/registers.go -------------------------------------------------------------------------------- /vl53l1x/vl53l1x.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/vl53l1x/vl53l1x.go -------------------------------------------------------------------------------- /vl6180x/registers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/vl6180x/registers.go -------------------------------------------------------------------------------- /vl6180x/vl6180x.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/vl6180x/vl6180x.go -------------------------------------------------------------------------------- /waveshare-epd/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/waveshare-epd/doc.go -------------------------------------------------------------------------------- /waveshare-epd/epd1in54/epd1in54.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/waveshare-epd/epd1in54/epd1in54.go -------------------------------------------------------------------------------- /waveshare-epd/epd1in54/registers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/waveshare-epd/epd1in54/registers.go -------------------------------------------------------------------------------- /waveshare-epd/epd2in13/epd2in13.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/waveshare-epd/epd2in13/epd2in13.go -------------------------------------------------------------------------------- /waveshare-epd/epd2in13/registers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/waveshare-epd/epd2in13/registers.go -------------------------------------------------------------------------------- /waveshare-epd/epd2in13x/epd2in13x.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/waveshare-epd/epd2in13x/epd2in13x.go -------------------------------------------------------------------------------- /waveshare-epd/epd2in13x/registers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/waveshare-epd/epd2in13x/registers.go -------------------------------------------------------------------------------- /waveshare-epd/epd2in66b/dev.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/waveshare-epd/epd2in66b/dev.go -------------------------------------------------------------------------------- /waveshare-epd/epd2in66b/dev_pico.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/waveshare-epd/epd2in66b/dev_pico.go -------------------------------------------------------------------------------- /waveshare-epd/epd2in66b/dev_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/waveshare-epd/epd2in66b/dev_test.go -------------------------------------------------------------------------------- /waveshare-epd/epd2in9/epd2in9.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/waveshare-epd/epd2in9/epd2in9.go -------------------------------------------------------------------------------- /waveshare-epd/epd2in9/registers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/waveshare-epd/epd2in9/registers.go -------------------------------------------------------------------------------- /waveshare-epd/epd4in2/epd4in2.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/waveshare-epd/epd4in2/epd4in2.go -------------------------------------------------------------------------------- /waveshare-epd/epd4in2/registers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/waveshare-epd/epd4in2/registers.go -------------------------------------------------------------------------------- /wifinina/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/wifinina/Dockerfile -------------------------------------------------------------------------------- /wifinina/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/wifinina/README.md -------------------------------------------------------------------------------- /wifinina/debug.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/wifinina/debug.go -------------------------------------------------------------------------------- /wifinina/firmware.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/wifinina/firmware.sh -------------------------------------------------------------------------------- /wifinina/pins.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/wifinina/pins.go -------------------------------------------------------------------------------- /wifinina/updater/CheckFirmwareVersion.ino.uf2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/wifinina/updater/CheckFirmwareVersion.ino.uf2 -------------------------------------------------------------------------------- /wifinina/updater/SerialNINAPassthrough.ino.nano_33_iot.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/wifinina/updater/SerialNINAPassthrough.ino.nano_33_iot.bin -------------------------------------------------------------------------------- /wifinina/updater/SerialNINAPassthrough.ino.nano_rp2040_connect.uf2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/wifinina/updater/SerialNINAPassthrough.ino.nano_rp2040_connect.uf2 -------------------------------------------------------------------------------- /wifinina/updater/update_ninafw_nano33iot.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/wifinina/updater/update_ninafw_nano33iot.sh -------------------------------------------------------------------------------- /wifinina/wifinina.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/wifinina/wifinina.go -------------------------------------------------------------------------------- /ws2812/gen-ws2812.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/ws2812/gen-ws2812.go -------------------------------------------------------------------------------- /ws2812/ws2812-asm_cortexm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/ws2812/ws2812-asm_cortexm.go -------------------------------------------------------------------------------- /ws2812/ws2812-asm_tinygoriscv.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/ws2812/ws2812-asm_tinygoriscv.go -------------------------------------------------------------------------------- /ws2812/ws2812.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/ws2812/ws2812.go -------------------------------------------------------------------------------- /ws2812/ws2812_avr.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/ws2812/ws2812_avr.go -------------------------------------------------------------------------------- /ws2812/ws2812_cortexm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/ws2812/ws2812_cortexm.go -------------------------------------------------------------------------------- /ws2812/ws2812_generic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/ws2812/ws2812_generic.go -------------------------------------------------------------------------------- /ws2812/ws2812_tinygoriscv.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/ws2812/ws2812_tinygoriscv.go -------------------------------------------------------------------------------- /ws2812/ws2812_xtensa.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/ws2812/ws2812_xtensa.go -------------------------------------------------------------------------------- /xpt2046/xpt2046.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/drivers/HEAD/xpt2046/xpt2046.go --------------------------------------------------------------------------------