esp32blockly/src/blocks/categories/i2c.js

12 lines
274 B
JavaScript
Raw Normal View History

2026-02-20 07:27:56 +00:00
export const i2cCategory = {
kind: 'category',
name: 'I2C',
colour: '200',
contents: [
{ kind: 'block', type: 'i2c_init' },
{ kind: 'block', type: 'i2c_scan' },
{ kind: 'block', type: 'i2c_writeto' },
{ kind: 'block', type: 'i2c_readfrom' },
],
};