Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
N
neOCampus-arduino
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
GIS-neOCampus
neOSensor
neOCampus-arduino
Commits
0536cab0
"instance.py" did not exist on "8888f80bda2cdf091c670cb798e2040c1b078a30"
Commit
0536cab0
authored
2 years ago
by
thiebolt
Browse files
Options
Downloads
Patches
Plain Diff
update
parent
01425b66
No related branches found
No related tags found
No related merge requests found
Changes
3
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
.gitignore
+1
-1
1 addition, 1 deletion
.gitignore
neosensor/esp32.svd
+46087
-0
46087 additions, 0 deletions
neosensor/esp32.svd
neosensor/neosensor.ino
+4
-4
4 additions, 4 deletions
neosensor/neosensor.ino
with
46092 additions
and
5 deletions
.gitignore
+
1
−
1
View file @
0536cab0
...
@@ -17,7 +17,7 @@
...
@@ -17,7 +17,7 @@
# others
# others
.vscode
.vscode
.
v
sd
.s
v
d
# KiCad
# KiCad
.bck
.bck
...
...
This diff is collapsed.
Click to expand it.
neosensor/esp32.svd
0 → 100644
+
46087
−
0
View file @
0536cab0
This diff is collapsed.
Click to expand it.
neosensor/neosensor.ino
+
4
−
4
View file @
0536cab0
...
@@ -24,15 +24,15 @@
...
@@ -24,15 +24,15 @@
*
*
* ---
* ---
* TODO:
* TODO:
* - remove WiFi.setPhyMode(WIFI_PHY_MODE_11G) once DHCP issue would have been solved
* - esp8266 now features a configTzTime() in newer API
* - esp8266 now features a configTzTime() in newer API
* - loadSensoConfig --> avoid data duplication, implement an iterator
* - loadSensoConfig --> avoid data duplication, implement an iterator
* - check sntp!=IPADDR_ANY works with ESP8266 (line 400)
* - remove DISABLE_SSL compilation flag
* - remove DISABLE_SSL compilation flag
* - as the number of modules is increasing, implement a list of modules in the setup()
* ---
* ---
* F.Thiebolt jan.23 some cleanup about MAX_TCP connection that is defined at LWIP compile time
* F.Thiebolt nov.21 corrected timezone definition for esp32
* F.Thiebolt nov.21 corrected timezone definition for esp32
* F.Thiebolt sep.21 added display module support (e.g oled or 7segment displays)
* F.Thiebolt sep.21 added display module support (e.g oled or 7segment displays)
* F.Thiebolt aug.21 added digital inputs support (e
;
g PIR sensor)
* F.Thiebolt aug.21 added digital inputs support (e
.
g PIR sensor)
* added support for shared JSON document for data exchange
* added support for shared JSON document for data exchange
* between modules
* between modules
* F.Thiebolt aug.20 initial port from neOSensor based on ESP8266
* F.Thiebolt aug.20 initial port from neOSensor based on ESP8266
...
@@ -642,7 +642,7 @@ void earlySetup( void ) {
...
@@ -642,7 +642,7 @@ void earlySetup( void ) {
* we decided to set WiFi physical mode explicitly
* we decided to set WiFi physical mode explicitly
*/
*/
#ifdef ESP8266
#ifdef ESP8266
WiFi
.
setPhyMode
(
WIFI_PHY_MODE_11G
);
WiFi
.
setPhyMode
(
WIFI_PHY_MODE_11G
);
#
[
jan
.23
]
does
it
solve
esp8266
DHCP
issue
???
not
really
sure
#endif
/* ESP8266 */
#endif
/* ESP8266 */
// WiFi.disconnect(true); // to erase default credentials
// WiFi.disconnect(true); // to erase default credentials
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment