├── .gitignore ├── README.md ├── chatbot.js ├── hydrabot PCB ├── hydrabot esqematico.pdf ├── hydrabot.brd ├── hydrabot.png └── hydrabot.sch ├── imagens ├── artes │ ├── Ta_bom_a_resolucao_julia.png │ ├── desenhando-1.svg │ ├── desenhando.svg │ ├── dimension.svg │ ├── gota.scr │ ├── gota.svg │ ├── hydrabot pcb.svg │ ├── hydrabot.dxf │ ├── logo.scr │ ├── logo.svg │ ├── pattern.svg │ ├── placa.pdf │ ├── silk.svg │ └── texto.svg ├── hydrabot.png └── twitch-chat-esp.png ├── main.cpp ├── options-exemplo.json └── package.json /.gitignore: -------------------------------------------------------------------------------- 1 | options.json 2 | Thumbs.db 3 | .DS_Store 4 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Juliallabs/hydrabot/HEAD/README.md -------------------------------------------------------------------------------- /chatbot.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Juliallabs/hydrabot/HEAD/chatbot.js -------------------------------------------------------------------------------- /hydrabot PCB/hydrabot esqematico.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Juliallabs/hydrabot/HEAD/hydrabot PCB/hydrabot esqematico.pdf -------------------------------------------------------------------------------- /hydrabot PCB/hydrabot.brd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Juliallabs/hydrabot/HEAD/hydrabot PCB/hydrabot.brd -------------------------------------------------------------------------------- /hydrabot PCB/hydrabot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Juliallabs/hydrabot/HEAD/hydrabot PCB/hydrabot.png -------------------------------------------------------------------------------- /hydrabot PCB/hydrabot.sch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Juliallabs/hydrabot/HEAD/hydrabot PCB/hydrabot.sch -------------------------------------------------------------------------------- /imagens/artes/Ta_bom_a_resolucao_julia.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Juliallabs/hydrabot/HEAD/imagens/artes/Ta_bom_a_resolucao_julia.png -------------------------------------------------------------------------------- /imagens/artes/desenhando-1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Juliallabs/hydrabot/HEAD/imagens/artes/desenhando-1.svg -------------------------------------------------------------------------------- /imagens/artes/desenhando.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Juliallabs/hydrabot/HEAD/imagens/artes/desenhando.svg -------------------------------------------------------------------------------- /imagens/artes/dimension.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Juliallabs/hydrabot/HEAD/imagens/artes/dimension.svg -------------------------------------------------------------------------------- /imagens/artes/gota.scr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Juliallabs/hydrabot/HEAD/imagens/artes/gota.scr -------------------------------------------------------------------------------- /imagens/artes/gota.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Juliallabs/hydrabot/HEAD/imagens/artes/gota.svg -------------------------------------------------------------------------------- /imagens/artes/hydrabot pcb.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Juliallabs/hydrabot/HEAD/imagens/artes/hydrabot pcb.svg -------------------------------------------------------------------------------- /imagens/artes/hydrabot.dxf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Juliallabs/hydrabot/HEAD/imagens/artes/hydrabot.dxf -------------------------------------------------------------------------------- /imagens/artes/logo.scr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Juliallabs/hydrabot/HEAD/imagens/artes/logo.scr -------------------------------------------------------------------------------- /imagens/artes/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Juliallabs/hydrabot/HEAD/imagens/artes/logo.svg -------------------------------------------------------------------------------- /imagens/artes/pattern.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Juliallabs/hydrabot/HEAD/imagens/artes/pattern.svg -------------------------------------------------------------------------------- /imagens/artes/placa.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Juliallabs/hydrabot/HEAD/imagens/artes/placa.pdf -------------------------------------------------------------------------------- /imagens/artes/silk.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Juliallabs/hydrabot/HEAD/imagens/artes/silk.svg -------------------------------------------------------------------------------- /imagens/artes/texto.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Juliallabs/hydrabot/HEAD/imagens/artes/texto.svg -------------------------------------------------------------------------------- /imagens/hydrabot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Juliallabs/hydrabot/HEAD/imagens/hydrabot.png -------------------------------------------------------------------------------- /imagens/twitch-chat-esp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Juliallabs/hydrabot/HEAD/imagens/twitch-chat-esp.png -------------------------------------------------------------------------------- /main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Juliallabs/hydrabot/HEAD/main.cpp -------------------------------------------------------------------------------- /options-exemplo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Juliallabs/hydrabot/HEAD/options-exemplo.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Juliallabs/hydrabot/HEAD/package.json --------------------------------------------------------------------------------