12 lines
274 B
JavaScript
12 lines
274 B
JavaScript
|
|
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' },
|
||
|
|
],
|
||
|
|
};
|