add translations

This commit is contained in:
Mario Pesch
2022-01-25 19:39:23 +01:00
parent 405b7fd465
commit 3e3956b185
5 changed files with 270 additions and 222 deletions
@@ -47,8 +47,8 @@ Blockly.Arduino.sensebox_ethernet = function () {
//Configure static IP setup (only needed if DHCP is disabled)
IPAddress myIp(${ip.replaceAll(".", ", ")});
IPAddress myDns(${dns.replaceAll(".", ",")});
IPAddress myGateway(${gateway.replaceAll(".", ",")}192, 168, 0, 177);
IPAddress mySubnet(${subnetmask.replaceAll(".", ",")}255, 255, 255, 0);
IPAddress myGateway(${gateway.replaceAll(".", ",")});
IPAddress mySubnet(${subnetmask.replaceAll(".", ",")});
`;
Blockly.Arduino.setupCode_["ethernet_setup"] = `
Ethernet.init(23);