Compare commits
66 Commits
dev/add-mo
...
master
Author | SHA1 | Date | |
---|---|---|---|
323c1ab6a9 | |||
d71926b967 | |||
ab1578e5b0 | |||
|
1edf238a6b | ||
6cdb2c8e81 | |||
42e3718fea | |||
6eb9293879 | |||
681b36c34d | |||
de6af2d8cc | |||
2b11b9399b | |||
dd8c615cd0 | |||
|
0f47977804 | ||
|
d479f7afd0 | ||
|
4d28340061 | ||
|
65184855e2 | ||
|
20652daf92 | ||
|
ebd945711a | ||
|
a969727a48 | ||
|
a1167b436b | ||
|
7524e78fc6 | ||
|
f8cfb6691b | ||
|
abce42f764 | ||
|
7c60869124 | ||
|
2f4538dc89 | ||
|
d87e47205f | ||
|
7ca5287b86 | ||
|
67bac98e65 | ||
|
2ea773601e | ||
|
7969bf2ed7 | ||
|
684417750a | ||
|
df4db30c72 | ||
|
2064fa2fb3 | ||
|
98f97d6313 | ||
|
ace2237529 | ||
|
07cd39f364 | ||
|
02de052879 | ||
|
ade6f3d4bd | ||
|
53d7c77eb5 | ||
|
426d618769 | ||
|
69f3bf1db0 | ||
|
e1b659cda5 | ||
|
2c1594227e | ||
|
512839e1f5 | ||
|
ec141088cc | ||
|
be51eff3c8 | ||
|
d05eede14f | ||
|
d1b3761349 | ||
|
fb9e5c53ff | ||
|
cfd6fedc6e | ||
|
126606f4f5 | ||
|
cb12aef535 | ||
|
345c15ed77 | ||
|
b05b3017e1 | ||
|
a4641938f0 | ||
|
9526b154bf | ||
|
745f6940ec | ||
|
2874620a9f | ||
|
9bf17aed67 | ||
|
f6e5d086b5 | ||
|
50ffad0ad2 | ||
|
3a6fd07647 | ||
|
9295d92c65 | ||
|
338a0aada6 | ||
|
a528bb7378 | ||
|
719be33756 | ||
|
d983677d22 |
41
.gitea/workflows/build.yaml
Normal file
41
.gitea/workflows/build.yaml
Normal file
@ -0,0 +1,41 @@
|
||||
name: Build and push image
|
||||
on:
|
||||
push:
|
||||
branches:
|
||||
- master
|
||||
jobs:
|
||||
build:
|
||||
runs-on: ubuntu-latest
|
||||
container:
|
||||
image: catthehacker/ubuntu:act-latest
|
||||
#defaults:
|
||||
# run:
|
||||
# working-directory: /repo
|
||||
steps:
|
||||
- name: Checkout
|
||||
uses: actions/checkout@v3
|
||||
with:
|
||||
fetch-depth: 0 # all history for all branches and tags
|
||||
|
||||
- name: Login to gitea.simonzeyer.de Repo
|
||||
uses: docker/login-action@v2
|
||||
with:
|
||||
registry: gitea.simonzeyer.de
|
||||
username: ${{ secrets.DOCKER_REPO_USER }}
|
||||
password: ${{ secrets.DOCKER_REPO_PASSWD }}
|
||||
|
||||
- name: Get Meta
|
||||
id: meta
|
||||
run: |
|
||||
echo REPO_NAME=$(echo ${GITHUB_REPOSITORY} | awk -F"/" '{print $2}') >> $GITHUB_OUTPUT
|
||||
echo REPO_VERSION=$(git describe --always | sed 's/^v//') >> $GITHUB_OUTPUT
|
||||
- name: Build and push
|
||||
uses: docker/build-push-action@v4
|
||||
env:
|
||||
ACTIONS_RUNTIME_TOKEN: '' # See https://gitea.com/gitea/act_runner/issues/119
|
||||
with:
|
||||
context: .
|
||||
file: ./Dockerfile
|
||||
push: true
|
||||
tags: |
|
||||
gitea.simonzeyer.de/schuelerlabor-cleverlab/smarti:${{ steps.meta.outputs.REPO_VERSION }}
|
38
.github/ISSUE_TEMPLATE/bug_report.md
vendored
Normal file
38
.github/ISSUE_TEMPLATE/bug_report.md
vendored
Normal file
@ -0,0 +1,38 @@
|
||||
---
|
||||
name: Bug report
|
||||
about: Create a report to help us improve
|
||||
title: ''
|
||||
labels: ''
|
||||
assignees: ''
|
||||
|
||||
---
|
||||
|
||||
**Describe the bug**
|
||||
A clear and concise description of what the bug is.
|
||||
|
||||
**To Reproduce**
|
||||
Steps to reproduce the behavior:
|
||||
1. Go to '...'
|
||||
2. Click on '....'
|
||||
3. Scroll down to '....'
|
||||
4. See error
|
||||
|
||||
**Expected behavior**
|
||||
A clear and concise description of what you expected to happen.
|
||||
|
||||
**Screenshots**
|
||||
If applicable, add screenshots to help explain your problem.
|
||||
|
||||
**Desktop (please complete the following information):**
|
||||
- OS: [e.g. iOS]
|
||||
- Browser [e.g. chrome, safari]
|
||||
- Version [e.g. 22]
|
||||
|
||||
**Smartphone (please complete the following information):**
|
||||
- Device: [e.g. iPhone6]
|
||||
- OS: [e.g. iOS8.1]
|
||||
- Browser [e.g. stock browser, safari]
|
||||
- Version [e.g. 22]
|
||||
|
||||
**Additional context**
|
||||
Add any other context about the problem here.
|
20
.github/ISSUE_TEMPLATE/feature_request.md
vendored
Normal file
20
.github/ISSUE_TEMPLATE/feature_request.md
vendored
Normal file
@ -0,0 +1,20 @@
|
||||
---
|
||||
name: Feature request
|
||||
about: Suggest an idea for this project
|
||||
title: ''
|
||||
labels: ''
|
||||
assignees: ''
|
||||
|
||||
---
|
||||
|
||||
**Is your feature request related to a problem? Please describe.**
|
||||
A clear and concise description of what the problem is. Ex. I'm always frustrated when [...]
|
||||
|
||||
**Describe the solution you'd like**
|
||||
A clear and concise description of what you want to happen.
|
||||
|
||||
**Describe alternatives you've considered**
|
||||
A clear and concise description of any alternative solutions or features you've considered.
|
||||
|
||||
**Additional context**
|
||||
Add any other context or screenshots about the feature request here.
|
14
.github/ISSUE_TEMPLATE/short-issue.md
vendored
Normal file
14
.github/ISSUE_TEMPLATE/short-issue.md
vendored
Normal file
@ -0,0 +1,14 @@
|
||||
---
|
||||
name: Short Issue
|
||||
about: Template for Short Issues
|
||||
title: ''
|
||||
labels: ''
|
||||
assignees: ''
|
||||
|
||||
---
|
||||
|
||||
### Current behaviour
|
||||
Describe the current behaviour
|
||||
|
||||
### Expected behaviour
|
||||
Describe how it is supposed to work
|
12
Dockerfile
Normal file
12
Dockerfile
Normal file
@ -0,0 +1,12 @@
|
||||
# specify the node base image with your desired version node:<version>
|
||||
FROM node:16 as build
|
||||
WORKDIR /app
|
||||
copy ./ /app
|
||||
RUN npm install --verbose
|
||||
RUN npm run build --verbose
|
||||
|
||||
FROM nginx:alpine
|
||||
COPY --from=build /app/build/ /usr/share/nginx/html
|
||||
RUN chmod 755 /usr/share/nginx/html/ -R
|
||||
EXPOSE 80
|
||||
ENTRYPOINT ["sh", "-c", "cd /usr/share/nginx/html/ && nginx -g 'daemon off;'"]
|
11
docker-compose.yaml
Normal file
11
docker-compose.yaml
Normal file
@ -0,0 +1,11 @@
|
||||
# docker-compose.yml
|
||||
services:
|
||||
smarti:
|
||||
mem_limit: 2048m
|
||||
mem_reservation: 128M
|
||||
cpus: 2
|
||||
build:
|
||||
dockerfile: Dockerfile
|
||||
ports:
|
||||
- "80"
|
||||
|
27
package.json
27
package.json
@ -3,18 +3,18 @@
|
||||
"version": "1.0.0",
|
||||
"private": true,
|
||||
"dependencies": {
|
||||
"@blockly/block-plus-minus": "^3.0.5",
|
||||
"@blockly/field-grid-dropdown": "^1.0.31",
|
||||
"@blockly/field-slider": "^3.0.5",
|
||||
"@blockly/plugin-scroll-options": "^2.0.5",
|
||||
"@blockly/plugin-typed-variable-modal": "^4.0.5",
|
||||
"@blockly/workspace-backpack": "^2.0.12",
|
||||
"@blockly/zoom-to-fit": "^2.0.14",
|
||||
"@blockly/block-plus-minus": "^4.0.4",
|
||||
"@blockly/field-grid-dropdown": "^2.0.4",
|
||||
"@blockly/field-slider": "4.0.4",
|
||||
"@blockly/plugin-scroll-options": "^3.0.5",
|
||||
"@blockly/plugin-typed-variable-modal": "^5.0.6",
|
||||
"@blockly/workspace-backpack": "^3.0.4",
|
||||
"@blockly/zoom-to-fit": "^3.0.4",
|
||||
"@emotion/react": "^11.10.5",
|
||||
"@emotion/styled": "^11.10.5",
|
||||
"@fortawesome/fontawesome-svg-core": "^1.2.36",
|
||||
"@fortawesome/free-solid-svg-icons": "^5.15.4",
|
||||
"@fortawesome/react-fontawesome": "^0.1.19",
|
||||
"@fortawesome/fontawesome-svg-core": "^6.2.1",
|
||||
"@fortawesome/free-solid-svg-icons": "^6.2.1",
|
||||
"@fortawesome/react-fontawesome": "^0.2.0",
|
||||
"@monaco-editor/react": "^4.3.1",
|
||||
"@mui/lab": "^5.0.0-alpha.110",
|
||||
"@mui/material": "^5.10.16",
|
||||
@ -23,7 +23,7 @@
|
||||
"@testing-library/react": "^12.1.2",
|
||||
"@testing-library/user-event": "^7.2.1",
|
||||
"axios": "^0.22.0",
|
||||
"blockly": "^8.0.3",
|
||||
"blockly": "^9.2.0",
|
||||
"file-saver": "^2.0.5",
|
||||
"markdown-it": "^12.3.2",
|
||||
"mnemonic-id": "^3.2.7",
|
||||
@ -70,5 +70,8 @@
|
||||
">0.2%",
|
||||
"not dead",
|
||||
"not op_mini all"
|
||||
]
|
||||
],
|
||||
"devDependencies": {
|
||||
"@babel/plugin-proposal-private-property-in-object": "7.21.11"
|
||||
}
|
||||
}
|
||||
|
BIN
public/media/hardware/expander.png
Normal file
BIN
public/media/hardware/expander.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 122 KiB |
BIN
public/media/hardware/jst-qwiic.png
Normal file
BIN
public/media/hardware/jst-qwiic.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 777 KiB |
BIN
public/media/hardware/qwiic-qwiic.png
Normal file
BIN
public/media/hardware/qwiic-qwiic.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 728 KiB |
BIN
public/media/hardware/sps30.png
Normal file
BIN
public/media/hardware/sps30.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 77 KiB |
BIN
public/media/hardware/wassertemp.png
Normal file
BIN
public/media/hardware/wassertemp.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 79 KiB |
@ -16,7 +16,7 @@ export const onChangeCode = () => (dispatch, getState) => {
|
||||
code.arduino = Blockly.Arduino.workspaceToCode(workspace);
|
||||
var xmlDom = Blockly.Xml.workspaceToDom(workspace);
|
||||
code.xml = Blockly.Xml.domToPrettyText(xmlDom);
|
||||
var selectedBlock = Blockly.selected
|
||||
var selectedBlock = Blockly.getSelected();
|
||||
if (selectedBlock !== null) {
|
||||
code.helpurl = selectedBlock.helpUrl
|
||||
code.tooltip = selectedBlock.tooltip
|
||||
|
@ -45,6 +45,7 @@ class BlocklyWindow extends Component {
|
||||
const workspace = Blockly.getMainWorkspace();
|
||||
var xml = this.props.initialXml;
|
||||
if (props.selectedBoard !== this.props.selectedBoard) {
|
||||
xml = localStorage.getItem("autoSaveXML");
|
||||
// change board
|
||||
if(!xml) xml = initialXml;
|
||||
var xmlDom = Blockly.Xml.textToDom(xml);
|
||||
@ -62,6 +63,7 @@ class BlocklyWindow extends Component {
|
||||
}
|
||||
if (props.language !== this.props.language) {
|
||||
// change language
|
||||
xml = localStorage.getItem("autoSaveXML");
|
||||
if (!xml) xml = initialXml;
|
||||
xmlDom = Blockly.Xml.textToDom(xml);
|
||||
Blockly.Xml.clearWorkspaceAndLoadFromXml(xmlDom, workspace);
|
||||
|
88
src/components/Blockly/blocks/CleVerLab.js
Normal file
88
src/components/Blockly/blocks/CleVerLab.js
Normal file
@ -0,0 +1,88 @@
|
||||
import Blockly from "blockly";
|
||||
import { getColour } from "../helpers/colour";
|
||||
import * as Types from "../helpers/types";
|
||||
import { selectedBoard } from "../helpers/board";
|
||||
import { FieldGridDropdown } from "@blockly/field-grid-dropdown";
|
||||
|
||||
/**
|
||||
* DS18B20 Temperatursonde
|
||||
*
|
||||
*/
|
||||
Blockly.Blocks["CleVerLab_dummy1"] = {
|
||||
init: function () {
|
||||
this.setColour(getColour().cleverlab);
|
||||
this.appendDummyInput()
|
||||
.appendField("tut nichts")
|
||||
this.setOutput(true, Types.NUMBER.typeName);
|
||||
this.data = {name: "empty"};
|
||||
},
|
||||
};
|
||||
|
||||
|
||||
Blockly.Blocks["CleVerLab_temperature"] = {
|
||||
init: function () {
|
||||
this.setColour(getColour().cleverlab);
|
||||
this.appendDummyInput()
|
||||
.appendField("Temperatur")
|
||||
.appendField("Digital Port:")
|
||||
.appendField(new Blockly.FieldDropdown(selectedBoard().digitalPorts), "DigitalPin");
|
||||
this.setOutput(true, Types.NUMBER.typeName);
|
||||
this.data = {name: "ds18b20"};
|
||||
},
|
||||
};
|
||||
/**
|
||||
* PH Wert
|
||||
*
|
||||
*/
|
||||
Blockly.Blocks["CleVerLab_pH"] = {
|
||||
init: function () {
|
||||
|
||||
this.setColour(getColour().cleverlab);
|
||||
this.appendDummyInput()
|
||||
.appendField("pH Wert")
|
||||
.appendField("Digital Port:")
|
||||
.appendField(new Blockly.FieldDropdown(selectedBoard().digitalPins), "DigitalPin");
|
||||
this.setOutput(true, Types.NUMBER.typeName);
|
||||
this.data = {name: "phoderso"};
|
||||
},
|
||||
};
|
||||
Blockly.Blocks["CleVerLab_cali1"] = {
|
||||
init: function () {
|
||||
this.appendDummyInput()
|
||||
.appendField("Kalibriere pH Sensor");
|
||||
this.appendValueInput("VAR1", "Number")
|
||||
.appendField("Referenzlösung pH 4.00 =")
|
||||
.setAlign(Blockly.ALIGN_RIGHT);
|
||||
this.appendValueInput("VAR2", "Number2")
|
||||
.appendField("Referenzlösung pH 7.00 =")
|
||||
.setAlign(Blockly.ALIGN_RIGHT);
|
||||
this.setPreviousStatement(true, null);
|
||||
this.setNextStatement(true, null);
|
||||
this.setColour(getColour().cleverlab);
|
||||
this.setOutput(true, Types.NUMBER.typeName);
|
||||
this.data = {name: "dsasda"};
|
||||
},
|
||||
};
|
||||
|
||||
/**
|
||||
* Pump
|
||||
*
|
||||
*/
|
||||
Blockly.Blocks['CleVerLab_pump'] = {
|
||||
init: function() {
|
||||
this.setColour(getColour().cleverlab);
|
||||
var dropdown = new Blockly.FieldDropdown([
|
||||
[ 'START','HIGH'],
|
||||
[ 'STOPP','LOW']
|
||||
]);
|
||||
this.appendDummyInput()
|
||||
.appendField(dropdown, "Mode")
|
||||
.appendField(" Pumpe ")
|
||||
.appendField(new Blockly.FieldDropdown(selectedBoard().digitalPins), "DigitalPin");
|
||||
this.setPreviousStatement(true, null);
|
||||
this.setNextStatement(true, null);
|
||||
//this.setOutput(true, "Number");
|
||||
this.setTooltip('');
|
||||
this.setHelpUrl('');
|
||||
}
|
||||
};
|
@ -10,6 +10,7 @@ import "./sensebox-motors";
|
||||
import "./sensebox-lora";
|
||||
import "./sensebox-led";
|
||||
import "./sensebox-rtc";
|
||||
import "./sensebox-ntp";
|
||||
import "./sensebox-ble";
|
||||
import "./sensebox-sd";
|
||||
import "./mqtt";
|
||||
@ -25,5 +26,6 @@ import "./variables";
|
||||
import "./lists";
|
||||
import "./watchdog";
|
||||
import "./webserver";
|
||||
import "./CleVerLab"
|
||||
|
||||
import "../helpers/types";
|
||||
|
42
src/components/Blockly/blocks/sensebox-ntp.js
Normal file
42
src/components/Blockly/blocks/sensebox-ntp.js
Normal file
@ -0,0 +1,42 @@
|
||||
import * as Blockly from "blockly";
|
||||
import { getColour } from "../helpers/colour";
|
||||
import * as Types from "../helpers/types";
|
||||
|
||||
Blockly.Blocks["sensebox_ntp_init"] = {
|
||||
init: function () {
|
||||
this.setHelpUrl(Blockly.Msg.sensebox_ntp_helpurl);
|
||||
this.setColour(getColour().time);
|
||||
this.appendDummyInput().appendField(Blockly.Msg.sensebox_ntp_init);
|
||||
this.setPreviousStatement(true);
|
||||
this.setNextStatement(true);
|
||||
this.setTooltip(Blockly.Msg.sensebox_ntp_tooltip);
|
||||
},
|
||||
};
|
||||
|
||||
Blockly.Blocks["sensebox_ntp_get"] = {
|
||||
init: function () {
|
||||
this.setHelpUrl(Blockly.Msg.sensebox_ntp_get_helpurl);
|
||||
this.setColour(getColour().time);
|
||||
this.appendDummyInput()
|
||||
.appendField(Blockly.Msg.sensebox_ntp_get)
|
||||
.appendField(
|
||||
new Blockly.FieldDropdown([
|
||||
[Blockly.Msg.sensebox_ntp_epochTime, "getEpochTime"],
|
||||
[Blockly.Msg.sensebox_ntp_formattedTimeStamp, "getFormattedTime"],
|
||||
]),
|
||||
"dropdown"
|
||||
);
|
||||
this.setOutput(true, Types.LARGE_NUMBER.typeName);
|
||||
this.setTooltip(Blockly.Msg.sensebox_rtc_get_tooltip);
|
||||
},
|
||||
};
|
||||
|
||||
Blockly.Blocks["sensebox_ntp_get_timestamp"] = {
|
||||
init: function () {
|
||||
this.setHelpUrl(Blockly.Msg.sensebox_rtc_helpurl);
|
||||
this.setColour(getColour().time);
|
||||
this.appendDummyInput().appendField(Blockly.Msg.sensebox_rtc_get_timestamp);
|
||||
this.setOutput(true);
|
||||
this.setTooltip(Blockly.Msg.sensebox_rtc_get_timestamp_tooltip);
|
||||
},
|
||||
};
|
@ -76,3 +76,67 @@ Blockly.Blocks["sensebox_rtc_get_timestamp"] = {
|
||||
this.setTooltip(Blockly.Msg.sensebox_rtc_get_timestamp_tooltip);
|
||||
},
|
||||
};
|
||||
|
||||
/**
|
||||
* Internal RTC
|
||||
*
|
||||
*/
|
||||
|
||||
Blockly.Blocks["sensebox_internal_rtc_init"] = {
|
||||
init: function () {
|
||||
this.setHelpUrl(Blockly.Msg.sensebox_internal_rtc_helpurl);
|
||||
this.setColour(getColour().time);
|
||||
this.appendDummyInput().appendField(Blockly.Msg.sensebox_internal_rtc_init);
|
||||
this.setPreviousStatement(true);
|
||||
this.setNextStatement(true);
|
||||
this.setTooltip(Blockly.Msg.sensebox_internal_rtc_init_tooltip);
|
||||
},
|
||||
};
|
||||
|
||||
Blockly.Blocks["sensebox_internal_rtc_set"] = {
|
||||
init: function () {
|
||||
this.setHelpUrl(Blockly.Msg.sensebox_rtc_helpurl);
|
||||
this.setColour(getColour().time);
|
||||
this.appendValueInput("time").appendField(
|
||||
Blockly.Msg.sensebox_internal_rtc_set
|
||||
);
|
||||
this.setPreviousStatement(true);
|
||||
this.setNextStatement(true);
|
||||
this.setTooltip(Blockly.Msg.sensebox_internal_rtc_set_tooltip);
|
||||
},
|
||||
};
|
||||
|
||||
Blockly.Blocks["sensebox_internal_rtc_get"] = {
|
||||
init: function () {
|
||||
this.setHelpUrl(Blockly.Msg.sensebox_rtc_helpurl);
|
||||
this.setColour(getColour().time);
|
||||
this.appendDummyInput()
|
||||
.appendField(Blockly.Msg.sensebox_internal_rtc_get)
|
||||
.appendField(
|
||||
new Blockly.FieldDropdown([
|
||||
[Blockly.Msg.sensebox_internal_rtc_epoch, "Epoch"],
|
||||
[Blockly.Msg.sensebox_internal_rtc_year, "Year"],
|
||||
[Blockly.Msg.sensebox_internal_rtc_month, "Month"],
|
||||
[Blockly.Msg.sensebox_internal_rtc_day, "Day"],
|
||||
[Blockly.Msg.sensebox_internal_rtc_hour, "Hours"],
|
||||
[Blockly.Msg.sensebox_internal_rtc_minutes, "Minutes"],
|
||||
[Blockly.Msg.sensebox_internal_rtc_seconds, "Seconds"],
|
||||
]),
|
||||
"dropdown"
|
||||
);
|
||||
this.setOutput(true, Types.LARGE_NUMBER.typeName);
|
||||
this.setTooltip(Blockly.Msg.sensebox_internal_rtc_get_tooltip);
|
||||
},
|
||||
};
|
||||
|
||||
Blockly.Blocks["sensebox_internal_rtc_get_timestamp"] = {
|
||||
init: function () {
|
||||
this.setHelpUrl(Blockly.Msg.sensebox_internal_rtc_helpurl);
|
||||
this.setColour(getColour().time);
|
||||
this.appendDummyInput().appendField(
|
||||
Blockly.Msg.sensebox_internal_rtc_get_timestamp
|
||||
);
|
||||
this.setOutput(true);
|
||||
this.setTooltip(Blockly.Msg.sensebox_internal_rtc_get_timestamp_tooltip);
|
||||
},
|
||||
};
|
||||
|
@ -118,7 +118,7 @@ Blockly.Blocks["sensebox_sensor_sds011"] = {
|
||||
.appendField(Blockly.Msg.senseBox_sds011_dimension)
|
||||
.appendField(
|
||||
new Blockly.FieldDropdown(
|
||||
selectedBoard().serial),
|
||||
selectedBoard().serialSensors),
|
||||
"SERIAL"
|
||||
);
|
||||
this.setOutput(true, Types.DECIMAL.typeName);
|
||||
@ -191,7 +191,7 @@ Blockly.Blocks["sensebox_sensor_bme680_bsec"] = {
|
||||
var dropdownOptions = [
|
||||
[Blockly.Msg.senseBox_temp, "temperature"],
|
||||
[Blockly.Msg.senseBox_hum, "humidity"],
|
||||
[Blockly.Msg.senseBox_pressure, "pressure"],
|
||||
[Blockly.Msg.senseBox_bme_pressure, "pressure"],
|
||||
[Blockly.Msg.senseBox_bme_iaq, "IAQ"],
|
||||
[Blockly.Msg.senseBox_bme_iaq_accuracy, "IAQAccuracy"],
|
||||
[Blockly.Msg.senseBox_bme_co2, "CO2"],
|
||||
@ -218,12 +218,7 @@ Blockly.Blocks["sensebox_sensor_bme680_bsec"] = {
|
||||
|
||||
Blockly.Blocks["sensebox_sensor_ultrasonic_ranger"] = {
|
||||
init: function () {
|
||||
var dropdownOptions = [
|
||||
[Blockly.Msg.senseBox_ultrasonic_port_A, "A"],
|
||||
[Blockly.Msg.senseBox_ultrasonic_port_B, "B"],
|
||||
[Blockly.Msg.senseBox_ultrasonic_port_C, "C"],
|
||||
];
|
||||
var dropdown = new FieldGridDropdown(dropdownOptions, function (option) {
|
||||
var dropdown = new FieldGridDropdown(selectedBoard().digitalPorts, function (option) {
|
||||
var input = option === "A" || option === "B" || option === "C";
|
||||
this.sourceBlock_.updateShape_(input);
|
||||
});
|
||||
@ -336,6 +331,7 @@ Blockly.Blocks["sensebox_button"] = {
|
||||
[Blockly.Msg.senseBox_button_isPressed, "isPressed"],
|
||||
[Blockly.Msg.senseBox_button_wasPressed, "wasPressed"],
|
||||
[Blockly.Msg.senseBox_button_longPress, "longPress"],
|
||||
[Blockly.Msg.senseBox_button_switch,"toggleButton"]
|
||||
]),
|
||||
"FUNCTION"
|
||||
)
|
||||
@ -434,16 +430,11 @@ Blockly.Blocks["sensebox_gps"] = {
|
||||
|
||||
Blockly.Blocks["sensebox_sensor_truebner_smt50"] = {
|
||||
init: function () {
|
||||
var dropdownOptions = [
|
||||
[Blockly.Msg.senseBox_ultrasonic_port_A, "A"],
|
||||
[Blockly.Msg.senseBox_ultrasonic_port_B, "B"],
|
||||
[Blockly.Msg.senseBox_ultrasonic_port_C, "C"],
|
||||
];
|
||||
this.setColour(getColour().sensebox);
|
||||
this.appendDummyInput().appendField(Blockly.Msg.senseBox_smt50);
|
||||
this.appendDummyInput()
|
||||
.appendField("Port:")
|
||||
.appendField(new Blockly.FieldDropdown(dropdownOptions), "Port");
|
||||
.appendField(new Blockly.FieldDropdown(selectedBoard().digitalPorts), "Port");
|
||||
this.appendDummyInput()
|
||||
.appendField(Blockly.Msg.senseBox_value)
|
||||
.appendField(
|
||||
@ -467,16 +458,12 @@ Blockly.Blocks["sensebox_sensor_truebner_smt50"] = {
|
||||
|
||||
Blockly.Blocks["sensebox_sensor_watertemperature"] = {
|
||||
init: function () {
|
||||
var dropdownOptions = [
|
||||
[Blockly.Msg.senseBox_ultrasonic_port_A, "A"],
|
||||
[Blockly.Msg.senseBox_ultrasonic_port_B, "B"],
|
||||
[Blockly.Msg.senseBox_ultrasonic_port_C, "C"],
|
||||
];
|
||||
|
||||
this.setColour(getColour().sensebox);
|
||||
this.appendDummyInput()
|
||||
.appendField(Blockly.Msg.senseBox_watertemperature)
|
||||
.appendField("Port:")
|
||||
.appendField(new Blockly.FieldDropdown(dropdownOptions), "Port");
|
||||
.appendField(new Blockly.FieldDropdown(selectedBoard().digitalPorts), "Port");
|
||||
this.setOutput(true, Types.NUMBER.typeName);
|
||||
this.setTooltip(Blockly.Msg.senseBox_watertemperature_tip);
|
||||
this.data = {name: "ds18b20"};
|
||||
@ -506,16 +493,11 @@ Blockly.Blocks['sensebox_windspeed'] = {
|
||||
|
||||
Blockly.Blocks["sensebox_soundsensor_dfrobot"] = {
|
||||
init: function () {
|
||||
var dropdownOptions = [
|
||||
[Blockly.Msg.senseBox_ultrasonic_port_A, "A"],
|
||||
[Blockly.Msg.senseBox_ultrasonic_port_B, "B"],
|
||||
[Blockly.Msg.senseBox_ultrasonic_port_C, "C"],
|
||||
];
|
||||
this.setColour(getColour().sensebox);
|
||||
this.appendDummyInput()
|
||||
.appendField(Blockly.Msg.senseBox_soundsensor_dfrobot)
|
||||
.appendField("Port:")
|
||||
.appendField(new Blockly.FieldDropdown(dropdownOptions), "Port");
|
||||
.appendField(new Blockly.FieldDropdown(selectedBoard().digitalPorts), "Port");
|
||||
this.setOutput(true, Types.DECIMAL.typeName);
|
||||
this.setTooltip(Blockly.Msg.senseBox_soundsensor_dfrobot_tooltip);
|
||||
this.setHelpUrl(Blockly.Msg.senseBox_soundsensor_dfrobot_helpurl);
|
||||
@ -573,3 +555,31 @@ Blockly.Blocks["sensebox_sensor_dps310"] = {
|
||||
}
|
||||
},
|
||||
};
|
||||
|
||||
/**
|
||||
* Sensirion SPS30 Fine Particular Matter Sensor
|
||||
* added 02.12.2022
|
||||
*/
|
||||
|
||||
Blockly.Blocks["sensebox_sensor_sps30"] = {
|
||||
init: function () {
|
||||
this.appendDummyInput().appendField(Blockly.Msg.senseBox_sps30);
|
||||
this.appendDummyInput()
|
||||
.setAlign(Blockly.ALIGN_LEFT)
|
||||
.appendField(Blockly.Msg.senseBox_value)
|
||||
.appendField(
|
||||
new Blockly.FieldDropdown([
|
||||
[Blockly.Msg.senseBox_sps30_1p0, "1p0"],
|
||||
[Blockly.Msg.senseBox_sps30_2p5, "2p5"],
|
||||
[Blockly.Msg.senseBox_sps30_4p0, "4p0"],
|
||||
[Blockly.Msg.senseBox_sps30_10p0, "10p0"],
|
||||
]),
|
||||
"value"
|
||||
)
|
||||
.appendField(Blockly.Msg.senseBox_sps30_dimension);
|
||||
this.setOutput(true, Types.DECIMAL.typeName);
|
||||
this.setColour(getColour().sensebox);
|
||||
this.setTooltip(Blockly.Msg.senseBox_sps30_tooltip);
|
||||
this.setHelpUrl(Blockly.Msg.senseBox_sps30_helpurl);
|
||||
},
|
||||
};
|
@ -10,7 +10,7 @@ Blockly.Blocks["variables_set_dynamic"] = {
|
||||
this.setNextStatement(true, null);
|
||||
this.appendValueInput("VALUE")
|
||||
.appendField(Blockly.Msg.variables_set, Blockly.Msg.variables_set)
|
||||
// .appendField("", "type")
|
||||
.appendField("", "type")
|
||||
.appendField(new Blockly.FieldVariable("VAR"), "VAR")
|
||||
.appendField(Blockly.Msg.variables_to);
|
||||
},
|
||||
|
61
src/components/Blockly/generator/CleVerLab.js
Normal file
61
src/components/Blockly/generator/CleVerLab.js
Normal file
@ -0,0 +1,61 @@
|
||||
import Blockly from "blockly";
|
||||
|
||||
/**
|
||||
* starte/stoppe Pumpe
|
||||
*
|
||||
*/
|
||||
Blockly.Arduino.CleVerLab_pump = function (block) {
|
||||
var pin = block.getFieldValue('DigitalPin');
|
||||
var state = block.getFieldValue("Mode");
|
||||
Blockly['Arduino'].setupCode_['pinMode'] = 'pinMode(' + pin + ', OUTPUT);';
|
||||
var code = 'digitalWrite(' + pin + ', ' + state + ');\n';
|
||||
return code;
|
||||
};
|
||||
/**
|
||||
* PH wert
|
||||
*
|
||||
*/
|
||||
Blockly.Arduino.CleVerLab_temperature = function () {
|
||||
var dropdown_pin = this.getFieldValue("DigitalPort");
|
||||
Blockly.Arduino.libraries_["library_senseBoxIO"] = "#include <senseBoxIO.h>";
|
||||
Blockly.Arduino.libraries_["library_oneWire"] =
|
||||
"#include <OneWire.h> // http://librarymanager/All#OneWire";
|
||||
Blockly.Arduino.libraries_["library_oneDallasTemperature"] =
|
||||
"#include <DallasTemperature.h> // http://librarymanager/All#DallasTemperature";
|
||||
Blockly.Arduino.definitions_["define_OneWire"] =
|
||||
"#define ONE_WIRE_BUS " +
|
||||
dropdown_pin +
|
||||
"\nOneWire oneWire(ONE_WIRE_BUS);\nDallasTemperature sensors(&oneWire);";
|
||||
Blockly.Arduino.setupCode_["sensebox_oneWireSetup"] = "sensors.begin();";
|
||||
Blockly.Arduino.codeFunctions_["sensebox_requestTemp"] =
|
||||
"float getWaterTemp(){\nsensors.requestTemperatures();\nsensors.getTempCByIndex(0);\n}";
|
||||
var code = "getWaterTemp()";
|
||||
return [code, Blockly.Arduino.ORDER_ATOMIC];
|
||||
};
|
||||
Blockly.Arduino.CleVerLab_pH = function () {
|
||||
var dropdown_pin = this.getFieldValue("DigitalPin");
|
||||
Blockly.Arduino.definitions_["define_pHgetter"] =
|
||||
"#define SensorPin " + dropdown_pin +"\n#define samplingInterval 20\n#define printInterval 800\n#define ArrayLenth 40 //times of collection\nint pHArray[ArrayLenth]; //Store the average value of the sensor feedback\nint pHArrayIndex=0;\nfloat slope = 1.00;\nfloat b =0.00;";
|
||||
Blockly.Arduino.codeFunctions_["sensebox_requestpH"] =
|
||||
"float getpH(){\nstatic unsigned long samplingTime = millis();\nstatic unsigned long printTime = millis();\nstatic float pHValue,voltage;\n//nif(millis()-samplingTime > samplingInterval){\n//pHArray[pHArrayIndex++]=analogRead(SensorPin);\nfor (int i = 1; i <= 10; i += 1) {\nvoltage = voltage + analogRead(SensorPin);\n}\n voltage = (voltage / 10)*5.0/1024; \nsamplingTime=millis();\n\nreturn pHValue = 3.5*voltage*slope+b;\n}\n";
|
||||
Blockly.Arduino.codeFunctions_["avergearraypH"] =
|
||||
"double avergearray(int* arr, int number) {\n int i;\n int max, min;\n double avg;\n long amount = 0;\n if (number <= 0) {\n return 0;\n }\n if (number < 5) {\n for (i = 0; i < number; i++) {\n amount += arr[i];\n }\n avg = amount / number;\n return avg;\n }\n else {\n if (arr[0] < arr[1]) {\n min = arr[0];\n max = arr[1];\n }\n else {\n min = arr[1];\n max = arr[0];\n }\n for (i = 2; i < number; i++) {\n if (arr[i] < min) {\n amount += min;\n min = arr[i];\n }\n else {\n if (arr[i] > max) {\n amount += max;\n max = arr[i];\n }\n else {\n amount += arr[i];\n }\n }\n }\n avg = (double)amount / (number - 2);\n }\n return avg;\n}";
|
||||
var code = "getpH()";
|
||||
return [code, Blockly.Arduino.ORDER_ATOMIC];
|
||||
};
|
||||
|
||||
Blockly.Arduino.CleVerLab_cali1 = function () {
|
||||
var var1 = Blockly.Arduino.valueToCode(this, 'VAR1', Blockly.Arduino.ORDER_ATOMIC) || "4.00";
|
||||
var var2 = Blockly.Arduino.valueToCode(this, 'VAR2', Blockly.Arduino.ORDER_ATOMIC) || "7.00";
|
||||
//var var1 = this.getFieldValue("VAR1");
|
||||
//var var2 = this.getFieldValue("VAR2");
|
||||
Blockly.Arduino.definitions_["define_pHKali"] = "#define pH4 4.00\n#define pH7 7.00\nfloat pH4is = "+ var1+";\nfloat pH7is = "+ var2 +";";
|
||||
Blockly.Arduino.setupCode_["asdsadsa"] ="slope = (2.00-(4.00/3.50))/(pH7is/3.50 - pH4is/3.50);\n b = 7 - (pH7is * slope);";
|
||||
var code = "0";
|
||||
return [code, Blockly.Arduino.ORDER_ATOMIC];
|
||||
};
|
||||
|
||||
|
||||
|
||||
|
||||
|
@ -10,6 +10,7 @@ import "./sensebox-lora";
|
||||
import "./sensebox-led";
|
||||
import "./sensebox";
|
||||
import "./sensebox-rtc";
|
||||
import "./sensebox-ntp";
|
||||
import "./sensebox-ble";
|
||||
import "./sensebox-sd";
|
||||
import "./mqtt";
|
||||
@ -26,3 +27,4 @@ import "./variables";
|
||||
import "./lists";
|
||||
import "./watchdog";
|
||||
import "./webserver";
|
||||
import "./CleVerLab"
|
@ -275,10 +275,15 @@ Blockly.Arduino["math_change"] = function (block) {
|
||||
"DELTA",
|
||||
Blockly.Arduino.ORDER_ADDITIVE
|
||||
) || "0";
|
||||
var varName = Blockly.Arduino.nameDB_.getName(
|
||||
block.getFieldValue("VAR"),
|
||||
Blockly.Variables.NAME_TYPE
|
||||
);
|
||||
var id = block.getFieldValue("VAR")
|
||||
const varName = Blockly.Variables.getVariable(
|
||||
Blockly.getMainWorkspace(),
|
||||
id
|
||||
).name;
|
||||
// var varName = Blockly.Arduino.nameDB_.getName(
|
||||
// block.getFieldValue("VAR"),
|
||||
// Blockly.Variables.NAME_TYPE
|
||||
// );
|
||||
return varName + " += " + argument0 + ";\n";
|
||||
};
|
||||
|
||||
|
19
src/components/Blockly/generator/sensebox-ntp.js
Normal file
19
src/components/Blockly/generator/sensebox-ntp.js
Normal file
@ -0,0 +1,19 @@
|
||||
import Blockly from "blockly";
|
||||
|
||||
Blockly.Arduino.sensebox_ntp_init = function () {
|
||||
Blockly.Arduino.libraries_["WiFiUdp"] = `#include <WiFiUdp.h>`;
|
||||
Blockly.Arduino.libraries_["NTPClient"] = `#include <NTPClient.h>`;
|
||||
Blockly.Arduino.definitions_["WiFiUDP"] = `WiFiUDP ntpUDP;`;
|
||||
Blockly.Arduino.definitions_["NTPClient"] = `NTPClient timeClient(ntpUDP);`;
|
||||
Blockly.Arduino.libraries_["library_senseBoxIO"] = "#include <senseBoxIO.h>";
|
||||
Blockly.Arduino.setupCode_["timeclient.begin"] = `timeClient.begin();`;
|
||||
Blockly.Arduino.setupCode_["timeclient.update"] = `timeClient.update();`;
|
||||
var code = ``;
|
||||
return code;
|
||||
};
|
||||
|
||||
Blockly.Arduino.sensebox_ntp_get = function () {
|
||||
var format = this.getFieldValue("dropdown");
|
||||
var code = `timeClient.${format}()`;
|
||||
return [code, Blockly.Arduino.ORDER_ATOMIC];
|
||||
};
|
@ -94,3 +94,46 @@ uint8_t sec, min, hour, day, month;
|
||||
var code = `getTimeStamp()`;
|
||||
return [code, Blockly.Arduino.ORDER_ATOMIC];
|
||||
};
|
||||
|
||||
Blockly.Arduino.sensebox_internal_rtc_init = function () {
|
||||
Blockly.Arduino.libraries_["RTClib"] = `#include <RTCZero.h>`;
|
||||
Blockly.Arduino.definitions_["RTC"] = `RTCZero rtc;`;
|
||||
Blockly.Arduino.libraries_["library_senseBoxIO"] = "#include <senseBoxIO.h>";
|
||||
Blockly.Arduino.setupCode_["rtc.begin"] = `rtc.begin();`;
|
||||
return "";
|
||||
};
|
||||
|
||||
Blockly.Arduino.sensebox_internal_rtc_set = function () {
|
||||
var branch =
|
||||
Blockly.Arduino.valueToCode(this, "time", Blockly.Arduino.ORDER_ATOMIC) ||
|
||||
"0";
|
||||
Blockly.Arduino.setupCode_["rtc.setEpoch"] = `rtc.setEpoch(${branch});`;
|
||||
var code = ``;
|
||||
return code;
|
||||
};
|
||||
|
||||
Blockly.Arduino.sensebox_internal_rtc_get = function () {
|
||||
var dropdown = this.getFieldValue("dropdown");
|
||||
var code = `rtc.get${dropdown}()`;
|
||||
return [code, Blockly.Arduino.ORDER_ATOMIC];
|
||||
};
|
||||
|
||||
Blockly.Arduino.sensebox_internal_rtc_get_timestamp = function () {
|
||||
Blockly.Arduino.variables_["rtc_timestamp"] = `char timestamp[20];`;
|
||||
Blockly.Arduino.codeFunctions_["getTimeStamp"] = `
|
||||
char* getTimeStamp() {
|
||||
uint8_t sec, min, hour, day, month;
|
||||
uint16_t year;
|
||||
sec = rtc.getSeconds();
|
||||
min = rtc.getMinutes();
|
||||
hour = rtc.getHours();
|
||||
day = rtc.getDay();
|
||||
month = rtc.getMonth();
|
||||
year = rtc.getYear();
|
||||
sprintf(timestamp, "%02d-%02d-%02dT%02d:%02d:%02dZ", year, month, day, hour, min, sec);
|
||||
return timestamp;
|
||||
}
|
||||
`;
|
||||
var code = `getTimeStamp()`;
|
||||
return [code, Blockly.Arduino.ORDER_ATOMIC];
|
||||
};
|
||||
|
@ -399,6 +399,7 @@ Blockly.Arduino.sensebox_button = function () {
|
||||
Blockly.Arduino.libraries_[
|
||||
"library_jcButtons"
|
||||
] = `#include <JC_Button.h> // http://librarymanager/All#JC_Button`;
|
||||
|
||||
Blockly.Arduino.definitions_["define_button" + dropdown_pin + ""] =
|
||||
"Button button_" + dropdown_pin + "(" + dropdown_pin + ");";
|
||||
Blockly.Arduino.setupCode_["setup_button" + dropdown_pin + ""] =
|
||||
@ -413,6 +414,10 @@ Blockly.Arduino.sensebox_button = function () {
|
||||
} else if (dropown_function === "longPress") {
|
||||
var time = this.getFieldValue("time");
|
||||
code = "button_" + dropdown_pin + ".pressedFor(" + time + ")";
|
||||
} else if (dropown_function === "toggleButton") {
|
||||
code = "button_" + dropdown_pin + ".toggleState()";
|
||||
Blockly.Arduino.definitions_["define_button" + dropdown_pin + ""] =
|
||||
"ToggleButton button_" + dropdown_pin + "(" + dropdown_pin + ");";
|
||||
}
|
||||
return [code, Blockly.Arduino.ORDER_ATOMIC];
|
||||
};
|
||||
@ -429,11 +434,13 @@ Blockly.Arduino.sensebox_scd30 = function () {
|
||||
"#include <SparkFun_SCD30_Arduino_Library.h> // http://librarymanager/All#SparkFun_SCD30_Arduino_Library";
|
||||
Blockly.Arduino.definitions_["SCD30"] = "SCD30 airSensor;";
|
||||
Blockly.Arduino.setupCode_["init_scd30"] = ` Wire.begin();
|
||||
if (airSensor.begin() == false)
|
||||
{
|
||||
while (1)
|
||||
;
|
||||
}`;
|
||||
if (airSensor.begin() == false)
|
||||
{
|
||||
while (1)
|
||||
;
|
||||
}`;
|
||||
Blockly.Arduino.setupCode_["scd30_staleData"] =
|
||||
"airSensor.useStaleData(true);";
|
||||
var code = "";
|
||||
switch (dropdown) {
|
||||
case "temperature":
|
||||
@ -692,3 +699,57 @@ Blockly.Arduino.sensebox_sensor_dps310 = function () {
|
||||
}
|
||||
return [code, Blockly.Arduino.ORDER_ATOMIC];
|
||||
};
|
||||
|
||||
/**
|
||||
* Sensirion SPS30 Fine Particlar Matter
|
||||
*
|
||||
*/
|
||||
|
||||
Blockly.Arduino.sensebox_sensor_sps30 = function () {
|
||||
var dropdown_name = this.getFieldValue("value");
|
||||
Blockly.Arduino.libraries_["library_senseBoxIO"] = "#include <senseBoxIO.h>";
|
||||
Blockly.Arduino.libraries_[
|
||||
"sps30"
|
||||
] = `#include <sps30.h> // http://librarymanager/All#`;
|
||||
Blockly.Arduino.variables_["sps30_measurement"] =
|
||||
"struct sps30_measurement m;";
|
||||
Blockly.Arduino.variables_["sps30_auto_clean_days"] =
|
||||
"uint32_t auto_clean_days = 4;";
|
||||
Blockly.Arduino.variables_["sps30_interval_intervalsps"] =
|
||||
"const long intervalsps = 1000;";
|
||||
Blockly.Arduino.variables_["sps30_time_startsps"] =
|
||||
"unsigned long time_startsps = 0;";
|
||||
Blockly.Arduino.variables_["sps30_time_actualsps"] =
|
||||
"unsigned long time_actualsps = 0;";
|
||||
Blockly.Arduino.codeFunctions_["sps30_getData"] = `
|
||||
void getSPS30Data(){
|
||||
|
||||
uint16_t data_ready;
|
||||
int16_t ret;
|
||||
|
||||
do {
|
||||
ret = sps30_read_data_ready(&data_ready);
|
||||
if (ret < 0) {
|
||||
} else if (!data_ready) {}
|
||||
else
|
||||
break;
|
||||
delay(100); /* retry in 100ms */
|
||||
} while (1);
|
||||
ret = sps30_read_measurement(&m);
|
||||
}
|
||||
`;
|
||||
|
||||
Blockly.Arduino.setupCode_["sps30_begin"] = "sensirion_i2c_init();";
|
||||
Blockly.Arduino.setupCode_["sps30_setFanCleaningInterval"] =
|
||||
"sps30_set_fan_auto_cleaning_interval_days(auto_clean_days);";
|
||||
Blockly.Arduino.setupCode_["sps30_startMeasurement"] =
|
||||
"sps30_start_measurement();";
|
||||
Blockly.Arduino.loopCodeOnce_["getSPS30Data();"] = `
|
||||
time_startsps = millis();
|
||||
if (time_startsps > time_actualsps + intervalsps) {
|
||||
time_actualsps = millis();
|
||||
getSPS30Data();
|
||||
}`;
|
||||
var code = `m.mc_${dropdown_name}`;
|
||||
return [code, Blockly.Arduino.ORDER_ATOMIC];
|
||||
};
|
||||
|
@ -13,6 +13,11 @@ const sensebox_mcu = {
|
||||
["C5", "5"],
|
||||
["C6", "6"],
|
||||
],
|
||||
digitalPorts: [
|
||||
["A", "A"],
|
||||
["B", "B"],
|
||||
["C", "C"],
|
||||
],
|
||||
digitalPinsLED: [
|
||||
["BUILTIN_1", "7"],
|
||||
["BUILTIN_2", "8"],
|
||||
@ -46,9 +51,13 @@ const sensebox_mcu = {
|
||||
["C6", "6"],
|
||||
],
|
||||
serial: [
|
||||
["serial", "SerialUSB"],
|
||||
["serial_1", "Serial1"],
|
||||
["serial_2", "Serial2"],
|
||||
["SerialUSB", "SerialUSB"],
|
||||
["Serial1", "Serial1"],
|
||||
["Serial2", "Serial2"],
|
||||
],
|
||||
serialSensors: [
|
||||
["Serial1", "Serial1"],
|
||||
["Serial2", "Serial2"],
|
||||
],
|
||||
serialPins: {
|
||||
SerialUSB: [
|
||||
@ -139,6 +148,9 @@ const sensebox_mini = {
|
||||
["IO1", "1"],
|
||||
["IO2", "2"],
|
||||
],
|
||||
digitalPorts: [
|
||||
["IO1-2", "A"],
|
||||
],
|
||||
digitalPinsLED: [
|
||||
["BUILTIN_1", "7"],
|
||||
["BUILTIN_2", "8"],
|
||||
@ -147,8 +159,7 @@ const sensebox_mini = {
|
||||
],
|
||||
digitalPinsRGB: [
|
||||
["on Board", "6"],
|
||||
["IO1", "1"],
|
||||
["IO2", "2"],
|
||||
["IO1-2", "1"],
|
||||
],
|
||||
digitalPinsButton: [
|
||||
["on Board", "0"],
|
||||
@ -161,8 +172,11 @@ const sensebox_mini = {
|
||||
["IO2", "2"],
|
||||
],
|
||||
serial: [
|
||||
["serial", "SerialUSB"],
|
||||
["serial_1", "Serial1"],
|
||||
["SerialUSB", "SerialUSB"],
|
||||
["Serial1", "Serial1"],
|
||||
],
|
||||
serialSensors: [
|
||||
["Serial1", "Serial1"],
|
||||
],
|
||||
serialPins: {
|
||||
SerialUSB: [
|
||||
|
@ -15,6 +15,7 @@ const colours = {
|
||||
webserver: 40,
|
||||
phyphox: 25,
|
||||
motors: 190,
|
||||
cleverlab: 185 ,
|
||||
};
|
||||
|
||||
export const getColour = () => {
|
||||
|
@ -13,6 +13,8 @@ const maxInstances = {
|
||||
sensebox_lora_initialize_otaa: 1,
|
||||
sensebox_lora_initialize_abp: 1,
|
||||
sensebox_phyphox_init: 1,
|
||||
sensebox_phyphox_experiment: 1,
|
||||
sensebox_phyphox_experiment_send: 1,
|
||||
sensebox_ethernet: 1,
|
||||
};
|
||||
|
||||
|
@ -21,39 +21,51 @@
|
||||
* @author samelh@google.com (Sam El-Husseini)
|
||||
*/
|
||||
|
||||
import React from 'react';
|
||||
import BlocklyComponent from './BlocklyComponent';
|
||||
import React from "react";
|
||||
import BlocklyComponent from "./BlocklyComponent";
|
||||
|
||||
export default BlocklyComponent;
|
||||
|
||||
const Block = (p) => {
|
||||
const { children, ...props } = p;
|
||||
props.is = "blockly";
|
||||
return React.createElement("block", props, children);
|
||||
const { children, ...props } = p;
|
||||
props.is = "blockly";
|
||||
return React.createElement("block", props, children);
|
||||
};
|
||||
|
||||
const Category = (p) => {
|
||||
const { children, ...props } = p;
|
||||
props.is = "blockly";
|
||||
return React.createElement("category", props, children);
|
||||
const { children, ...props } = p;
|
||||
props.is = "blockly";
|
||||
return React.createElement("category", props, children);
|
||||
};
|
||||
|
||||
const Value = (p) => {
|
||||
const { children, ...props } = p;
|
||||
props.is = "blockly";
|
||||
return React.createElement("value", props, children);
|
||||
const { children, ...props } = p;
|
||||
props.is = "blockly";
|
||||
return React.createElement("value", props, children);
|
||||
};
|
||||
|
||||
const Field = (p) => {
|
||||
const { children, ...props } = p;
|
||||
props.is = "blockly";
|
||||
return React.createElement("field", props, children);
|
||||
const { children, ...props } = p;
|
||||
props.is = "blockly";
|
||||
return React.createElement("field", props, children);
|
||||
};
|
||||
|
||||
const Shadow = (p) => {
|
||||
const { children, ...props } = p;
|
||||
props.is = "blockly";
|
||||
return React.createElement("shadow", props, children);
|
||||
const { children, ...props } = p;
|
||||
props.is = "blockly";
|
||||
return React.createElement("shadow", props, children);
|
||||
};
|
||||
|
||||
export { Block, Category, Value, Field, Shadow }
|
||||
const Sep = (p) => {
|
||||
const { children, ...props } = p;
|
||||
props.is = "blockly";
|
||||
return React.createElement("sep", props, children);
|
||||
};
|
||||
|
||||
const Label = (p) => {
|
||||
const { children, ...props } = p;
|
||||
props.is = "blockly";
|
||||
return React.createElement("label", props, children);
|
||||
};
|
||||
|
||||
export { Block, Category, Value, Field, Shadow, Sep, Label };
|
||||
|
@ -12,6 +12,7 @@ import { LED } from "./de/sensebox-led";
|
||||
import { LORA } from "./de/sensebox-lora";
|
||||
import { OSEM } from "./de/sensebox-osem";
|
||||
import { RTC } from "./de/sensebox-rtc";
|
||||
import { NTP } from "./de/sensebox-ntp";
|
||||
import { SD } from "./de/sensebox-sd";
|
||||
import { SENSORS } from "./de/sensebox-sensors";
|
||||
import { SENSEBOX } from "./de/sensebox";
|
||||
@ -40,6 +41,7 @@ export const De = {
|
||||
...LORA,
|
||||
...OSEM,
|
||||
...RTC,
|
||||
...NTP,
|
||||
...SD,
|
||||
...SENSORS,
|
||||
...SENSEBOX,
|
||||
|
11
src/components/Blockly/msg/de/sensebox-ntp.js
Normal file
11
src/components/Blockly/msg/de/sensebox-ntp.js
Normal file
@ -0,0 +1,11 @@
|
||||
export const NTP = {
|
||||
sensebox_ntp_init: "Initialisiere NTP",
|
||||
sensebox_ntp_init_tooltip: "Initialisiere den NTP Server.",
|
||||
sensebox_ntp_get: "Hole Zeit von NTP Server: ",
|
||||
sensebox_ntp_get_timestamp_tooltip:
|
||||
"Gibt dir einen in ISO 8601 formatierten Zeitstempel zurück. Bsp: 2021-12-24T18:21Z",
|
||||
sensebox_ntp_get_tooltip:
|
||||
"Gibt dir den ausgewählten Wert zurück. Unix Zeit entspricht der Anzahl der Sekunden seit dem 1.1.1970",
|
||||
sensebox_ntp_epochTime: "Unix Zeit",
|
||||
sensebox_ntp_formattedTimeStamp: "Zeitstempel (hh:mm:ss)",
|
||||
};
|
@ -1,14 +1,14 @@
|
||||
export const RTC = {
|
||||
sensebox_rtc_init: "Initialisiere RTC",
|
||||
sensebox_rtc_init: "Initialisiere externe RTC",
|
||||
sensebox_rtc_init_tooltip:
|
||||
"Initialisiere die RTC. Schließe diese an einen der 5 I2C/Wire Anschlüsse an und lege die Batterie ein. Bevor du die Uhrzeit auslesen kannst muss diese zunächst einmal gesetzt werden. Dieser Schritt muss normalerweise nur einmalig durchgeführt werden.",
|
||||
sensebox_rtc_set: "Setze Uhrzeit/Datum der RTC",
|
||||
sensebox_rtc_set: "Setze Uhrzeit/Datum der externen RTC",
|
||||
sensebox_rtc_set_tooltip:
|
||||
"Stellt die Uhrzeit der RTC ein. Beachte, dass du diesen Block im Setup ausführst.",
|
||||
sensebox_rtc_get_timestamp: "Zeitstempel (RFC 3339)",
|
||||
sensebox_rtc_get_timestamp: "Zeitstempel externe RTC (RFC 3339)",
|
||||
sensebox_rtc_get_timestamp_tooltip:
|
||||
"Gibt dir einen in ISO 8601 formatierten Zeitstempel zurück. Bsp: 2021-12-24T18:21Z",
|
||||
sensebox_rtc_get: "Wert: ",
|
||||
sensebox_rtc_get: "Wert (externe RTC): ",
|
||||
sensebox_rtc_get_tooltip: "Gibt dir den ausgewählten Wert zurück.",
|
||||
sensebox_rtc_second: "Sekunden",
|
||||
sensebox_rtc_minutes: "Minuten",
|
||||
@ -16,4 +16,22 @@ export const RTC = {
|
||||
sensebox_rtc_day: "Tag",
|
||||
sensebox_rtc_month: "Monat",
|
||||
sensebox_rtc_year: "Jahr",
|
||||
sensebox_internal_rtc_init: "Initialisiere interne RTC",
|
||||
sensebox_internal_rtc_init_tooltip:
|
||||
"Initialisieren der internen RTC. Diese RTC ist nicht batteriegepuffert und wird bei jedem Einschaltvorgang zurückgesetzt",
|
||||
sensebox_internal_rtc_set: "Setze interne RTC Zeit/Datum (Unix Time)",
|
||||
sensebox_internal_rtc_set_tooltip:
|
||||
"Setzt die Zeit der internen RTC. Führe den Block einmalig im Setup aus und setzte die Uhrzeit über die Unix Zeit.",
|
||||
sensebox_internal_rtc_get: "Wert (interne RTC): ",
|
||||
sensebox_internal_rtc_get_timestamp: "Zeitstempel interne RTC (RFC 3339)",
|
||||
sensebox_internal_rtc_get_timestamp_tooltip:
|
||||
"Returns a timestamp formatted in ISO 8601. Ex: 2021-12-24T18:21Z",
|
||||
sensebox_internal_rtc_get_tooltip: "Gibt den ausgewählten Wert zurück",
|
||||
sensebox_internal_rtc_epoch: "Unix Zeit",
|
||||
sensebox_internal_rtc_year: "Jahr",
|
||||
sensebox_internal_rtc_month: "Monat",
|
||||
sensebox_internal_rtc_day: "Tag",
|
||||
sensebox_internal_rtc_hour: "Stunde",
|
||||
sensebox_internal_rtc_minutes: "Minute",
|
||||
sensebox_internal_rtc_seconds: "Sekunde",
|
||||
};
|
||||
|
@ -140,6 +140,7 @@ Wenn die maximale Distanz überschritten wird, wird ein Wert von **O** ausgegebe
|
||||
senseBox_bme_iaq: "Innenraumluftqualität (IAQ)",
|
||||
senseBox_bme_iaq_accuracy: "Kalibrierungswert",
|
||||
senseBox_bme_co2: "CO2 Äquivalent",
|
||||
senseBox_bme_pressure: "Luftdruck in Pa",
|
||||
senseBox_bme_breatheVocEquivalent: "Atemluft VOC Äquivalent",
|
||||
senseBox_bme_tooltip: `Schließe den Umweltsensor an einen der 5 **I2C-Anschlüsse** an. **Beachte:** Der Sensor benöigt eine gewisse Zeit zum kalibrieren.
|
||||
Den Status der Kalibrierung kann über den Kalibrierungswert abgelesen werden. Er ist entweder 0, 1, 2 oder 3 und sagt folgendes aus:
|
||||
@ -175,7 +176,7 @@ Die Messwerte für Temperatur, Luftfeuchtigkeit und Luftdruck können direkt ver
|
||||
* Feinstaubsensor (SDS011)
|
||||
*/
|
||||
|
||||
senseBox_sds011: "Feinstaubsensor",
|
||||
senseBox_sds011: "Feinstaubsensor SDS011",
|
||||
senseBox_sds011_dimension: "in µg/m³ an",
|
||||
senseBox_sds011_pm25: "PM2.5",
|
||||
senseBox_sds011_pm10: "PM10",
|
||||
@ -200,4 +201,23 @@ Die Messwerte für Temperatur, Luftfeuchtigkeit und Luftdruck können direkt ver
|
||||
- "wurde gedrückt": Mit diesem Modus kannst du abfragen ob der Block gedrückt wurde. Erst wenn der Knopf gedrückt und wieder losgelassen wurde erhältst du TRUE zurück
|
||||
- "als Schalter": Wenn du diesen Block verwendest kannst du den Knopf wie ein Lichtschalter verwenden. Der Status wird gespeichert bis der Button erneut gedrückt wird`,
|
||||
senseBox_button_helpurl: "",
|
||||
};
|
||||
|
||||
|
||||
|
||||
/**
|
||||
* Feinstaubsensor Sensirion SPS30
|
||||
*/
|
||||
|
||||
senseBox_sps30: "Feinstaubsensor Sensirion SPS30",
|
||||
senseBox_sps30_dimension: "in µg/m³",
|
||||
senseBox_sps30_1p0: "PM1.0",
|
||||
senseBox_sps30_2p5: "PM2.5",
|
||||
senseBox_sps30_4p0: "PM4.0",
|
||||
senseBox_sps30_10p0: "PM10",
|
||||
senseBox_sps30_tooltip:"Dieser Block gibt dir den Messwert des Sensirion SPS30 Feinstaubsensor. Schließe den Feinstaubsensor an einen der 5 **I2C** Anschlüssen an. Im Dropdown Menü zwischen PM1.0, PM2.5, PM4.0 und PM10 auswählen. Der Messwert wird dir als **Kommazahl** in µg/m3",
|
||||
senseBox_sps30_helpurl:
|
||||
"https://docs.sensebox.de/hardware/sensoren-feinstaub/",
|
||||
|
||||
|
||||
|
||||
};
|
@ -8,11 +8,15 @@ export const UI = {
|
||||
toolbox_math: "Mathematik",
|
||||
toolbox_io: "Eingang/Ausgang",
|
||||
toolbox_time: "Zeit",
|
||||
toolbox_rtc: "RTC",
|
||||
toolbox_ntp: "NTP",
|
||||
toolbox_functions: "Funktionen",
|
||||
toolbox_variables: "Variablen",
|
||||
toolbox_serial: "Seriell",
|
||||
toolbox_advanced: "Erweitert",
|
||||
toolbox_motors: "Motoren",
|
||||
toolbox_label_externalRTC: "Externe RTC",
|
||||
toolbox_label_internalRTC: "Interne RTC",
|
||||
variable_NUMBER: "Zahl (int)",
|
||||
variable_SHORT_NUMBER: "char",
|
||||
variable_LONG: "große Zahl (long)",
|
||||
@ -312,7 +316,8 @@ export const UI = {
|
||||
* Device Selction
|
||||
* */
|
||||
deviceselection_head: "Welches Board benutzt du?",
|
||||
deviceselection_keep_selection: "Speichere meine Auswahl fürs nächste Mal (Du kannst das Board später in den Einstellungen wechseln)",
|
||||
deviceselection_keep_selection:
|
||||
"Speichere meine Auswahl fürs nächste Mal (Du kannst das Board später in den Einstellungen wechseln)",
|
||||
deviceselection_footnote: "Hier kommst du zur alten Blockly Version für den ",
|
||||
deviceselection_footnote_02: "oder die",
|
||||
|
||||
|
@ -13,6 +13,7 @@ import { LED } from "./en/sensebox-led";
|
||||
import { LORA } from "./en/sensebox-lora";
|
||||
import { OSEM } from "./en/sensebox-osem";
|
||||
import { RTC } from "./en/sensebox-rtc";
|
||||
import { NTP } from "./en/sensebox-ntp";
|
||||
import { SD } from "./en/sensebox-sd";
|
||||
import { SENSORS } from "./en/sensebox-sensors";
|
||||
import { TELEGRAM } from "./en/sensebox-telegram";
|
||||
@ -40,6 +41,7 @@ export const En = {
|
||||
...LORA,
|
||||
...OSEM,
|
||||
...RTC,
|
||||
...NTP,
|
||||
...SD,
|
||||
...SENSORS,
|
||||
...SENSEBOX,
|
||||
|
3
src/components/Blockly/msg/en/CleVerLab.js
Normal file
3
src/components/Blockly/msg/en/CleVerLab.js
Normal file
@ -0,0 +1,3 @@
|
||||
export const CLEVERLAB = {
|
||||
|
||||
}
|
10
src/components/Blockly/msg/en/sensebox-ntp.js
Normal file
10
src/components/Blockly/msg/en/sensebox-ntp.js
Normal file
@ -0,0 +1,10 @@
|
||||
export const NTP = {
|
||||
sensebox_ntp_init: "Initialise NTP",
|
||||
sensebox_ntp_init_tooltip:
|
||||
"Initialisiere die RTC. Schließe diese an einen der 5 I2C/Wire Anschlüsse an und lege die Batterie ein. Bevor du die Uhrzeit auslesen kannst muss diese zunächst einmal gesetzt werden. Dieser Schritt muss normalerweise nur einmalig durchgeführt werden.",
|
||||
sensebox_ntp_get: "Get time from NTP Server: ",
|
||||
sensebox_ntp_get_tooltip:
|
||||
"Gibt dir den ausgewählten Wert zurück. Unix Zeit entspricht der Anzahl der Sekunden seit dem 1.1.1970",
|
||||
sensebox_ntp_epochTime: "Unix time",
|
||||
sensebox_ntp_formattedTimeStamp: "Timestamp (hh:mm:ss)",
|
||||
};
|
@ -1,11 +1,11 @@
|
||||
export const RTC = {
|
||||
sensebox_rtc_init: "Initialise RTC",
|
||||
sensebox_rtc_init: "Initialise external RTC",
|
||||
sensebox_rtc_init_tooltip:
|
||||
"Initialise the RTC. Connect it to one of the 5 I2C/Wire connections and insert the battery. Before you can read out the time, it must first be set. This step usually only needs to be done once.",
|
||||
sensebox_rtc_set: "Set RTC time/date:",
|
||||
sensebox_rtc_set_tooltip:
|
||||
"Sets the time of the RTC. Note that you execute this block in the setup.",
|
||||
sensebox_rtc_get_timestamp: "Get timestamp",
|
||||
sensebox_rtc_get_timestamp: "Timestamp external RTC (RFC 3339)",
|
||||
sensebox_rtc_get_timestamp_tooltip:
|
||||
"Returns a timestamp formatted in ISO 8601. Ex: 2021-12-24T18:21Z",
|
||||
sensebox_rtc_get_tooltip: "Returns the selected value",
|
||||
@ -17,4 +17,22 @@ export const RTC = {
|
||||
sensebox_rtc_day: "day",
|
||||
sensebox_rtc_month: "month",
|
||||
sensebox_rtc_year: "year",
|
||||
sensebox_internal_rtc_init: "Initialise internal RTC",
|
||||
sensebox_internal_rtc_init_tooltip:
|
||||
"Initialise the internal RTC. This RTC is not battery backed and will be reset on every power cycle.",
|
||||
sensebox_internal_rtc_set: "Set internal RTC time/date:",
|
||||
sensebox_internal_rtc_set_tooltip:
|
||||
"Sets the time of the internal RTC. Note that you execute this block in the setup.",
|
||||
sensebox_internal_rtc_get: "Get: ",
|
||||
sensebox_internal_rtc_get_timestamp: "Timestamp internal RTC (RFC 3339)",
|
||||
sensebox_internal_rtc_get_timestamp_tooltip:
|
||||
"Returns a timestamp formatted in ISO 8601. Ex: 2021-12-24T18:21Z",
|
||||
sensebox_internal_rtc_get_tooltip: "Returns the selected value",
|
||||
sensebox_internal_rtc_epoch: "Unix Time",
|
||||
sensebox_internal_rtc_year: "year",
|
||||
sensebox_internal_rtc_month: "month",
|
||||
sensebox_internal_rtc_day: "day",
|
||||
sensebox_internal_rtc_hour: "hour",
|
||||
sensebox_internal_rtc_minutes: "minutes",
|
||||
sensebox_internal_rtc_seconds: "seconds",
|
||||
};
|
||||
|
@ -141,6 +141,7 @@ If the max distance is reached the a value of **O** will be returned`,
|
||||
senseBox_bme680: "Environmental sensor (BME680)",
|
||||
senseBox_bme_iaq: "Indoor Air Quality (IAQ)",
|
||||
senseBox_bme_iaq_accuracy: "Calibration Value",
|
||||
senseBox_bme_pressure: "Airpressure in Pa",
|
||||
senseBox_bme_co2: "CO2 Equivalent",
|
||||
senseBox_bme_breatheVocEquivalent: "Breathe VOC Equivalent",
|
||||
senseBox_bme_tooltip: `Connect the environmental sensor to one of the 5 **I2C ports**. **Note:** The sensor needs some time to calibrate.
|
||||
@ -205,4 +206,23 @@ The measured values for temperature, humidity and air pressure can be used direc
|
||||
*
|
||||
*/
|
||||
senseBox_watertemperature: "Water Temperature",
|
||||
|
||||
|
||||
/**
|
||||
* Feinstaubsensor Sensirion SPS30
|
||||
*/
|
||||
|
||||
senseBox_sps30: "Particulate Matter Sensor (Sensirion SPS30)",
|
||||
senseBox_sps30_dimension: "in µg/m³",
|
||||
senseBox_sps30_1p0: "PM1.0",
|
||||
senseBox_sps30_2p5: "PM2.5",
|
||||
senseBox_sps30_4p0: "PM4.0",
|
||||
senseBox_sps30_10p0: "PM10",
|
||||
senseBox_sps30_tooltip:
|
||||
"This block gives you the measured value of the Sensirion SPS30 fine dust sensor. Connect the fine dust sensor to one of the 5 **I2C** connectors. Select between PM1.0, PM2.5, PM4.0 and PM10 in the dropdown menu. The measured value will be displayed as **decimal** in µg/m3",
|
||||
senseBox_sps30_helpurl:
|
||||
"https://docs.sensebox.de/hardware/sensoren-feinstaub/",
|
||||
|
||||
|
||||
|
||||
};
|
||||
|
@ -8,11 +8,15 @@ export const UI = {
|
||||
toolbox_math: "Math",
|
||||
toolbox_io: "Input/Output",
|
||||
toolbox_time: "Time",
|
||||
toolbox_rtc: "RTC",
|
||||
toolbox_ntp: "NTP",
|
||||
toolbox_functions: "Functions",
|
||||
toolbox_variables: "Variables",
|
||||
toolbox_serial: "Serial",
|
||||
toolbox_advanced: "Erweitert",
|
||||
toolbox_motors: "Motors",
|
||||
toolbox_label_externalRTC: "External RTC",
|
||||
toolbox_label_internalRTC: "Internal RTC",
|
||||
variable_NUMBER: "Number (int)",
|
||||
variable_SHORT_NUMBER: "char",
|
||||
variable_LONG: "Big number (long)",
|
||||
@ -304,11 +308,14 @@ export const UI = {
|
||||
"Your code will now be compiled and then downloaded to your computer",
|
||||
|
||||
/**
|
||||
* Device Selction
|
||||
* Device Selection
|
||||
* */
|
||||
|
||||
deviceselection_head: "Which board are you using?",
|
||||
deviceselection_keep_selection: "Save my choice (You can change the board later in the settings)",
|
||||
deviceselection_footnote: "Here you can access the old blockly Version for the",
|
||||
deviceselection_keep_selection:
|
||||
"Save my choice (You can change the board later in the settings)",
|
||||
deviceselection_footnote:
|
||||
"Here you can access the old blockly Version for the",
|
||||
deviceselection_footnote_02: "or the",
|
||||
|
||||
/**
|
||||
|
@ -1,5 +1,5 @@
|
||||
import React from "react";
|
||||
import { Block, Value, Field, Shadow, Category } from "../";
|
||||
import { Block, Value, Field, Shadow, Category, Sep, Label } from "../";
|
||||
import { getColour } from "../helpers/colour";
|
||||
import "@blockly/block-plus-minus";
|
||||
import { TypedVariableModal } from "@blockly/plugin-typed-variable-modal";
|
||||
@ -61,6 +61,7 @@ class Toolbox extends React.Component {
|
||||
<Block type="sensebox_sensor_uv_light" />
|
||||
<Block type="sensebox_sensor_bmx055_accelerometer" />
|
||||
<Block type="sensebox_sensor_sds011" />
|
||||
<Block type="sensebox_sensor_sps30" />
|
||||
<Block type="sensebox_sensor_pressure" />
|
||||
<Block type="sensebox_sensor_dps310" />
|
||||
<Block type="sensebox_sensor_bme680_bsec" />
|
||||
@ -502,42 +503,63 @@ class Toolbox extends React.Component {
|
||||
<Block type="time_micros"></Block>
|
||||
<Block type="infinite_loop"></Block>
|
||||
<Block type="sensebox_interval_timer"></Block>
|
||||
<Block type="sensebox_rtc_init"></Block>
|
||||
<Block type="sensebox_rtc_set">
|
||||
<Value name="second">
|
||||
<Block type="math_number">
|
||||
<Field name="NUM">00</Field>
|
||||
</Block>
|
||||
</Value>
|
||||
<Value name="minutes">
|
||||
<Block type="math_number">
|
||||
<Field name="NUM">00</Field>
|
||||
</Block>
|
||||
</Value>
|
||||
<Value name="hour">
|
||||
<Block type="math_number">
|
||||
<Field name="NUM">00</Field>
|
||||
</Block>
|
||||
</Value>
|
||||
<Value name="day">
|
||||
<Block type="math_number">
|
||||
<Field name="NUM">01</Field>
|
||||
</Block>
|
||||
</Value>
|
||||
<Value name="month">
|
||||
<Block type="math_number">
|
||||
<Field name="NUM">01</Field>
|
||||
</Block>
|
||||
</Value>
|
||||
<Value name="year">
|
||||
<Block type="math_number">
|
||||
<Field name="NUM">1970</Field>
|
||||
</Block>
|
||||
</Value>
|
||||
</Block>
|
||||
{/* <Block type="sensebox_rtc_set_ntp"></Block> */}
|
||||
<Block type="sensebox_rtc_get"></Block>
|
||||
<Block type="sensebox_rtc_get_timestamp"></Block>
|
||||
<Category
|
||||
id="time"
|
||||
name={Blockly.Msg.toolbox_rtc}
|
||||
colour={getColour().time}
|
||||
>
|
||||
<Label text={Blockly.Msg.toolbox_label_externalRTC}></Label>
|
||||
<Block type="sensebox_rtc_init"></Block>
|
||||
<Block type="sensebox_rtc_set">
|
||||
<Value name="second">
|
||||
<Block type="math_number">
|
||||
<Field name="NUM">00</Field>
|
||||
</Block>
|
||||
</Value>
|
||||
<Value name="minutes">
|
||||
<Block type="math_number">
|
||||
<Field name="NUM">00</Field>
|
||||
</Block>
|
||||
</Value>
|
||||
<Value name="hour">
|
||||
<Block type="math_number">
|
||||
<Field name="NUM">00</Field>
|
||||
</Block>
|
||||
</Value>
|
||||
<Value name="day">
|
||||
<Block type="math_number">
|
||||
<Field name="NUM">01</Field>
|
||||
</Block>
|
||||
</Value>
|
||||
<Value name="month">
|
||||
<Block type="math_number">
|
||||
<Field name="NUM">01</Field>
|
||||
</Block>
|
||||
</Value>
|
||||
<Value name="year">
|
||||
<Block type="math_number">
|
||||
<Field name="NUM">1970</Field>
|
||||
</Block>
|
||||
</Value>
|
||||
</Block>
|
||||
{/* <Block type="sensebox_rtc_set_ntp"></Block> */}
|
||||
<Block type="sensebox_rtc_get"></Block>
|
||||
<Block type="sensebox_rtc_get_timestamp"></Block>
|
||||
<Sep gap="40"></Sep>
|
||||
<Label text={Blockly.Msg.toolbox_label_internalRTC}></Label>
|
||||
<Block type="sensebox_internal_rtc_init"></Block>
|
||||
<Block type="sensebox_internal_rtc_set"></Block>
|
||||
<Block type="sensebox_internal_rtc_get"></Block>
|
||||
<Block type="sensebox_internal_rtc_get_timestamp"></Block>
|
||||
</Category>
|
||||
<Category
|
||||
id="timeUTP"
|
||||
name={Blockly.Msg.toolbox_ntp}
|
||||
colour={getColour().time}
|
||||
>
|
||||
<Block type="sensebox_ntp_init"></Block>
|
||||
<Block type="sensebox_ntp_get"></Block>
|
||||
</Category>
|
||||
</Category>
|
||||
<Category
|
||||
id="math"
|
||||
@ -611,6 +633,11 @@ class Toolbox extends React.Component {
|
||||
colour={getColour().procedures}
|
||||
custom="PROCEDURE"
|
||||
></Category>
|
||||
<Category name="CleVerLab" colour={getColour().cleverlab}>
|
||||
<Block type="CleVerLab_pH" />
|
||||
<Block type="CleVerLab_pump" />
|
||||
<Block type="CleVerLab_cali1" />
|
||||
</Category>
|
||||
<Category name={Blockly.Msg.toolbox_advanced} colour={getColour().io}>
|
||||
<Category
|
||||
name={Blockly.Msg.toolbox_serial}
|
||||
@ -642,16 +669,19 @@ class Toolbox extends React.Component {
|
||||
</Value>
|
||||
</Block>
|
||||
</Category>
|
||||
<Category name={Blockly.Msg.toolbox_motors} colour={getColour().motors}>
|
||||
<Block type="sensebox_motors_beginServoMotor" />
|
||||
<Block type="sensebox_motors_moveServoMotor">
|
||||
<Value name="degrees">
|
||||
<Block type="math_number">
|
||||
<Field name="NUM">90</Field>
|
||||
</Block>
|
||||
</Value>
|
||||
</Block>
|
||||
{/* <Block type="sensebox_motors_I2CMotorBoard_begin" />
|
||||
<Category
|
||||
name={Blockly.Msg.toolbox_motors}
|
||||
colour={getColour().motors}
|
||||
>
|
||||
<Block type="sensebox_motors_beginServoMotor" />
|
||||
<Block type="sensebox_motors_moveServoMotor">
|
||||
<Value name="degrees">
|
||||
<Block type="math_number">
|
||||
<Field name="NUM">90</Field>
|
||||
</Block>
|
||||
</Value>
|
||||
</Block>
|
||||
{/* <Block type="sensebox_motors_I2CMotorBoard_begin" />
|
||||
<Block type="sensebox_motors_I2CMotorBoard_moveDCMotor">
|
||||
<Value name="speed">
|
||||
<Block type="math_number">
|
||||
@ -668,7 +698,7 @@ class Toolbox extends React.Component {
|
||||
</Block>
|
||||
</Value>
|
||||
</Block> */}
|
||||
</Category>
|
||||
</Category>
|
||||
<Category name="Watchdog" colour={getColour().io}>
|
||||
<Block type="watchdog_enable"></Block>
|
||||
<Block type="watchdog_reset"></Block>
|
||||
|
@ -37,10 +37,20 @@ import {
|
||||
faLightbulb,
|
||||
faCode,
|
||||
faPuzzlePiece,
|
||||
faUser,
|
||||
faMicrochip,
|
||||
faEarthEurope,
|
||||
faEarthAmericas,
|
||||
faCaretDown
|
||||
} from "@fortawesome/free-solid-svg-icons";
|
||||
import { FontAwesomeIcon } from "@fortawesome/react-fontawesome";
|
||||
import * as Blockly from "blockly";
|
||||
import Tooltip from "@mui/material/Tooltip";
|
||||
import MenuItem from '@mui/material/MenuItem'
|
||||
import Menu from '@mui/material/Menu'
|
||||
import { setLanguage } from "../actions/generalActions";
|
||||
import { setBoard } from "../actions/boardAction";
|
||||
import { Button } from "@mui/material";
|
||||
|
||||
const styles = (theme) => ({
|
||||
drawerWidth: {
|
||||
@ -60,9 +70,14 @@ const styles = (theme) => ({
|
||||
class Navbar extends Component {
|
||||
constructor(props) {
|
||||
super(props);
|
||||
this.langRef = React.createRef();
|
||||
this.mcuRef = React.createRef();
|
||||
this.state = {
|
||||
open: false,
|
||||
isTourOpen: false,
|
||||
anchorElLang: null,
|
||||
anchorElBoard: null,
|
||||
anchorElUser: null
|
||||
};
|
||||
}
|
||||
|
||||
@ -80,7 +95,6 @@ class Navbar extends Component {
|
||||
|
||||
render() {
|
||||
var isHome = /^\/(\/.*$|$)/g.test(this.props.location.pathname);
|
||||
var isTutorial = /^\/tutorial(\/.*$|$)/g.test(this.props.location.pathname);
|
||||
var isAssessment =
|
||||
/^\/tutorial\/.{1,}$/g.test(this.props.location.pathname) &&
|
||||
!this.props.tutorialIsLoading &&
|
||||
@ -127,55 +141,226 @@ class Navbar extends Component {
|
||||
<Link to={"/"} style={{ marginLeft: "10px" }}>
|
||||
<img src={senseboxLogo} alt="senseBox-Logo" width="30" />
|
||||
</Link>
|
||||
{isTutorial ? (
|
||||
<Link
|
||||
to={"/tutorial"}
|
||||
style={{
|
||||
textDecoration: "none",
|
||||
color: "inherit",
|
||||
marginLeft: "10px",
|
||||
<div style={{ margin: "0 0 0 auto", display: "flex", alignItems: 'center', justifyContent: 'center' }}>
|
||||
{isHome ? (
|
||||
<div style={{ display: "flex" }}>
|
||||
<div style={{ padding: "12px" }}>
|
||||
<Button
|
||||
style={{ textTransform: 'none', cursor: "pointer", alignItems: "center", alignContent: "center", background: "transparent", color: "inherit", fontWeight: "bold", border: "2px solid white", borderRadius: "25px" }}
|
||||
ref={this.mcuRef}
|
||||
onClick={() => {
|
||||
this.setState({ anchorElBoard: this.mcuRef.current })
|
||||
}}
|
||||
startIcon={<FontAwesomeIcon icon={faMicrochip} />}
|
||||
endIcon={<FontAwesomeIcon icon={faCaretDown} />}
|
||||
sx={{ display: { xs: "none", sm: "none", md: "flex" } }}
|
||||
>
|
||||
{this.props.selectedBoard}
|
||||
</Button>
|
||||
<Menu
|
||||
anchorEl={this.state.anchorElBoard}
|
||||
anchorOrigin={{
|
||||
vertical: 'bottom',
|
||||
horizontal: 'center',
|
||||
}}
|
||||
keepMounted
|
||||
transformOrigin={{
|
||||
vertical: 'top',
|
||||
horizontal: 'center',
|
||||
}}
|
||||
open={Boolean(this.state.anchorElBoard)}
|
||||
onClose={() => {
|
||||
this.setState({ anchorElBoard: null });
|
||||
}}
|
||||
>
|
||||
<MenuItem
|
||||
value="mcu"
|
||||
onClick={(event) => {
|
||||
this.props.setBoard(event.currentTarget.getAttribute("value"));
|
||||
this.setState({ anchorElBoard: null });
|
||||
}}
|
||||
>
|
||||
mcu
|
||||
</MenuItem>
|
||||
<MenuItem
|
||||
value="mini"
|
||||
onClick={(event) => {
|
||||
this.props.setBoard(event.currentTarget.getAttribute("value"));
|
||||
this.setState({ anchorElBoard: null });
|
||||
}}
|
||||
>
|
||||
mini
|
||||
</MenuItem>
|
||||
</Menu>
|
||||
</div>
|
||||
<div style={{ padding: "12px" }}>
|
||||
{
|
||||
this.props.language === "en_US" ?
|
||||
(
|
||||
<Button
|
||||
style={{ textTransform: 'none', cursor: "pointer", alignItems: "center", alignContent: "center", background: "transparent", color: "inherit", fontWeight: "bold", border: "2px solid white", borderRadius: "25px" }}
|
||||
ref={this.langRef}
|
||||
onClick={() => {
|
||||
this.setState({ anchorElLang: this.langRef.current })
|
||||
}}
|
||||
startIcon={<FontAwesomeIcon icon={faEarthAmericas} />}
|
||||
endIcon={<FontAwesomeIcon icon={faCaretDown} />}
|
||||
sx={{ display: { xs: "none", sm: "none", md: "flex" } }}
|
||||
>
|
||||
English
|
||||
</Button>
|
||||
) : (
|
||||
<Button
|
||||
style={{ textTransform: 'none', cursor: "pointer", alignItems: "center", alignContent: "center", background: "transparent", color: "inherit", fontWeight: "bold", border: "2px solid white", borderRadius: "25px" }}
|
||||
ref={this.langRef}
|
||||
onClick={() => {
|
||||
this.setState({ anchorElLang: this.langRef.current })
|
||||
}}
|
||||
startIcon={<FontAwesomeIcon icon={faEarthEurope} />}
|
||||
endIcon={<FontAwesomeIcon icon={faCaretDown} />}
|
||||
sx={{ display: { xs: "none", sm: "none", md: "flex" } }}
|
||||
>
|
||||
Deutsch
|
||||
</Button>
|
||||
|
||||
)
|
||||
}
|
||||
<Menu
|
||||
anchorEl={this.state.anchorElLang}
|
||||
anchorOrigin={{
|
||||
vertical: 'bottom',
|
||||
horizontal: 'center',
|
||||
}}
|
||||
keepMounted
|
||||
transformOrigin={{
|
||||
vertical: 'top',
|
||||
horizontal: 'center',
|
||||
}}
|
||||
open={Boolean(this.state.anchorElLang)}
|
||||
onClose={() => {
|
||||
this.setState({ anchorElLang: null });
|
||||
}}
|
||||
>
|
||||
<MenuItem
|
||||
value="de_DE"
|
||||
onClick={(event) => {
|
||||
this.props.setLanguage(event.currentTarget.getAttribute("value"));
|
||||
this.setState({ anchorElLang: null });
|
||||
}}
|
||||
>
|
||||
Deutsch
|
||||
</MenuItem>
|
||||
<MenuItem
|
||||
value="en_US"
|
||||
onClick={(event) => {
|
||||
this.props.setLanguage(event.currentTarget.getAttribute("value"));
|
||||
this.setState({ anchorElLang: null });
|
||||
}}
|
||||
>
|
||||
English
|
||||
</MenuItem>
|
||||
</Menu>
|
||||
</div>
|
||||
</div>
|
||||
) : (null)}
|
||||
{isHome ? (
|
||||
<Tooltip title={'Start Tour'} arrow>
|
||||
<IconButton
|
||||
color="inherit"
|
||||
className={`openTour ${this.props.classes.button}`}
|
||||
onClick={() => {
|
||||
this.openTour();
|
||||
}}
|
||||
size="large">
|
||||
<FontAwesomeIcon icon={faQuestionCircle} />
|
||||
</IconButton>
|
||||
</Tooltip>
|
||||
) : null}
|
||||
{isAssessment ? (
|
||||
<Tooltip title={'Start tour'} arrow>
|
||||
<IconButton
|
||||
color="inherit"
|
||||
className={`openTour ${this.props.classes.button}`}
|
||||
onClick={() => {
|
||||
this.openTour();
|
||||
}}
|
||||
size="large">
|
||||
<FontAwesomeIcon icon={faQuestionCircle} />
|
||||
</IconButton>
|
||||
</Tooltip>
|
||||
) : null}
|
||||
<Tour
|
||||
steps={isHome ? home() : assessment()}
|
||||
isOpen={this.state.isTourOpen}
|
||||
onRequestClose={() => {
|
||||
this.closeTour();
|
||||
}}
|
||||
>
|
||||
<Typography variant="h6" noWrap>
|
||||
Tutorial
|
||||
</Typography>
|
||||
</Link>
|
||||
) : null}
|
||||
{isHome ? (
|
||||
<Tooltip title={'Start Tour'} arrow>
|
||||
<IconButton
|
||||
color="inherit"
|
||||
className={`openTour ${this.props.classes.button}`}
|
||||
onClick={() => {
|
||||
this.openTour();
|
||||
}}
|
||||
style={{ margin: "0 30px 0 auto" }}
|
||||
size="large">
|
||||
<FontAwesomeIcon icon={faQuestionCircle} />
|
||||
</IconButton>
|
||||
</Tooltip>
|
||||
) : null}
|
||||
{isAssessment ? (
|
||||
<Tooltip title={'Start tour'} arrow>
|
||||
<IconButton
|
||||
color="inherit"
|
||||
className={`openTour ${this.props.classes.button}`}
|
||||
onClick={() => {
|
||||
this.openTour();
|
||||
}}
|
||||
style={{ margin: "0 30px 0 auto" }}
|
||||
size="large">
|
||||
<FontAwesomeIcon icon={faQuestionCircle} />
|
||||
</IconButton>
|
||||
</Tooltip>
|
||||
) : null}
|
||||
<Tour
|
||||
steps={isHome ? home() : assessment()}
|
||||
isOpen={this.state.isTourOpen}
|
||||
onRequestClose={() => {
|
||||
this.closeTour();
|
||||
}}
|
||||
/>
|
||||
/>
|
||||
{this.props.user ? (
|
||||
<div>
|
||||
<IconButton
|
||||
color="inherit"
|
||||
onClick={(event) => { this.setState({ anchorElUser: event.target }) }}
|
||||
style={{ margin: "0 30px 0 0" }}
|
||||
size="large"
|
||||
>
|
||||
<FontAwesomeIcon icon={faUser} />
|
||||
</IconButton>
|
||||
<Menu
|
||||
anchorEl={this.state.anchorElUser}
|
||||
anchorOrigin={{
|
||||
vertical: 'bottom',
|
||||
horizontal: 'center',
|
||||
}}
|
||||
keepMounted
|
||||
transformOrigin={{
|
||||
vertical: 'top',
|
||||
horizontal: 'center',
|
||||
}}
|
||||
open={Boolean(this.state.anchorElUser)}
|
||||
onClose={() => { this.setState({ anchorElUser: null }); }}
|
||||
>
|
||||
<div className="" style={{ paddingLeft: "16px", paddingRight: "16px", paddingTop: "16px" }}>
|
||||
<p style={{ fontWeight: "bold", margin: "0px" }}>
|
||||
{this.props.user.name}
|
||||
</p>
|
||||
<p style={{ marginTop: "0px", color: "#696969" }}>
|
||||
{this.props.user.email}
|
||||
</p>
|
||||
</div>
|
||||
<hr style={{ borderTop: "3px solid #bbb", marginLeft: "5px", marginRight: "5px" }} />
|
||||
<MenuItem>
|
||||
<Link to={"/user"} style={{ textDecoration: 'none', color: "black" }}>
|
||||
{Blockly.Msg.navbar_account}
|
||||
</Link>
|
||||
</MenuItem>
|
||||
<MenuItem>
|
||||
<Link to={"/settings"} style={{ textDecoration: 'none', color: "black" }}>
|
||||
{Blockly.Msg.navbar_settings}
|
||||
</Link>
|
||||
</MenuItem>
|
||||
<MenuItem
|
||||
onClick={() => {
|
||||
this.props.logout()
|
||||
}}
|
||||
>
|
||||
{Blockly.Msg.navbar_logout}
|
||||
</MenuItem>
|
||||
</Menu>
|
||||
</div>
|
||||
)
|
||||
:
|
||||
(<Link to={"/user/login"} style={{ textDecoration: 'none', color: "white" }}>
|
||||
<IconButton
|
||||
color="inherit"
|
||||
style={{ margin: "0 30px 0 auto" }}
|
||||
>
|
||||
<FontAwesomeIcon icon={faUser} />
|
||||
</IconButton>
|
||||
</Link>
|
||||
)
|
||||
}
|
||||
</div>
|
||||
</Toolbar>
|
||||
</AppBar>
|
||||
<Drawer
|
||||
@ -369,6 +554,10 @@ Navbar.propTypes = {
|
||||
user: PropTypes.object,
|
||||
tutorial: PropTypes.object,
|
||||
activeStep: PropTypes.number.isRequired,
|
||||
setLanguage: PropTypes.func.isRequired,
|
||||
language: PropTypes.string.isRequired,
|
||||
setBoard: PropTypes.func.isRequired,
|
||||
selectedBoard: PropTypes.string.isRequired
|
||||
};
|
||||
|
||||
const mapStateToProps = (state) => ({
|
||||
@ -378,8 +567,10 @@ const mapStateToProps = (state) => ({
|
||||
user: state.auth.user,
|
||||
tutorial: state.tutorial.tutorials[0],
|
||||
activeStep: state.tutorial.activeStep,
|
||||
language: state.general.language,
|
||||
selectedBoard: state.board.board
|
||||
});
|
||||
|
||||
export default connect(mapStateToProps, { logout })(
|
||||
export default connect(mapStateToProps, { logout, setLanguage, setBoard })(
|
||||
withStyles(styles, { withTheme: true })(withRouter(Navbar))
|
||||
);
|
||||
|
@ -1,7 +1,7 @@
|
||||
import React, { Component } from "react";
|
||||
import PropTypes from "prop-types";
|
||||
import { connect } from "react-redux";
|
||||
import { visitPage } from "../../actions/generalActions";
|
||||
import { visitPage, setPlatform } from "../../actions/generalActions";
|
||||
|
||||
import { Route, Switch, withRouter } from "react-router-dom";
|
||||
|
||||
@ -27,6 +27,24 @@ import Faq from "../Faq";
|
||||
import CodeEditor from "../CodeEditor/CodeEditor";
|
||||
|
||||
class Routes extends Component {
|
||||
|
||||
componentDidMount() {
|
||||
const { location } = this.props;
|
||||
const query = new URLSearchParams(location.search, [location.search]);
|
||||
const mode = query.get('mode');
|
||||
|
||||
if (!this.props.platform && mode) {
|
||||
switch (mode.toLowerCase()) {
|
||||
case 'tablet':
|
||||
this.props.setPlatform(true);
|
||||
break;
|
||||
default:
|
||||
break;
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
componentDidUpdate() {
|
||||
this.props.visitPage();
|
||||
}
|
||||
@ -105,6 +123,12 @@ class Routes extends Component {
|
||||
|
||||
Home.propTypes = {
|
||||
visitPage: PropTypes.func,
|
||||
platform: PropTypes.bool.isRequired,
|
||||
setPlatform: PropTypes.func.isRequired
|
||||
};
|
||||
|
||||
export default connect(null, { visitPage })(withRouter(Routes));
|
||||
const mapStateToProps = (state) => ({
|
||||
platform: state.general.platform,
|
||||
});
|
||||
|
||||
export default connect(mapStateToProps, { visitPage, setPlatform })(withRouter(Routes));
|
||||
|
@ -4,12 +4,22 @@
|
||||
"name": "senseBox MCU",
|
||||
"src": "senseboxmcu.png",
|
||||
"url": "https://docs.sensebox.de/hardware/allgemein-sensebox-mcu/",
|
||||
"category": "boards",
|
||||
"description": "test"
|
||||
},
|
||||
{
|
||||
"id": "senseboxmcumini",
|
||||
"name": "senseBox MCU:mini",
|
||||
"src": "senseboxmcumini.png",
|
||||
"url": "https://docs.sensebox.de/hardware/allgemein-sensebox-mcu-mini/",
|
||||
"category": "boards",
|
||||
"description": ""
|
||||
},
|
||||
{
|
||||
"id": "breadboard",
|
||||
"name": "Breadboard",
|
||||
"src": "breadboard.png",
|
||||
"category": "misc",
|
||||
"url": ""
|
||||
},
|
||||
{
|
||||
@ -56,10 +66,16 @@
|
||||
},
|
||||
{
|
||||
"id": "feinstaub",
|
||||
"name": "Feinstaubsensor",
|
||||
"name": "Feinstaubsensor (SDS011)",
|
||||
"src": "feinstaub.png",
|
||||
"url": "https://docs.sensebox.de/hardware/sensoren-feinstaub/"
|
||||
},
|
||||
{
|
||||
"id": "feinstaub-sps30",
|
||||
"name": "Feinstaubsensor (SPS30)",
|
||||
"src": "sps30.png",
|
||||
"url": "https://docs.sensebox.de/hardware/sensoren-feinstaub/"
|
||||
},
|
||||
{
|
||||
"id": "gps",
|
||||
"name": "GPS-Modul",
|
||||
@ -140,8 +156,14 @@
|
||||
},
|
||||
{
|
||||
"id": "ds1820b",
|
||||
"name": "Wassertemperatur",
|
||||
"src": "ws2818.png",
|
||||
"name": "Wassertemperatur Sensor",
|
||||
"src": "wassertemp.png",
|
||||
"url": ""
|
||||
},
|
||||
{
|
||||
"id": "expander",
|
||||
"name": "I2C Expander",
|
||||
"src": "expander.png",
|
||||
"url": ""
|
||||
},
|
||||
{
|
||||
@ -162,6 +184,18 @@
|
||||
"src": "jst-jst.png",
|
||||
"url": ""
|
||||
},
|
||||
{
|
||||
"id": "jst-qwiic",
|
||||
"name": "JST-QWIIC Kabel",
|
||||
"src": "jst-qwiic.png",
|
||||
"url": ""
|
||||
},
|
||||
{
|
||||
"id": "qwiic-qwiic",
|
||||
"name": "QWIIC-QWICC Kabel",
|
||||
"src": "qwiic-qwiic.png",
|
||||
"url": ""
|
||||
},
|
||||
{
|
||||
"id": "jumperwire",
|
||||
"name": "Steckkabel",
|
||||
|
Loading…
x
Reference in New Issue
Block a user