https://github.com/roboticsbrno/robotarnawall
Simple PHP web page for quick sharing information during lecture or event.
https://github.com/roboticsbrno/robotarnawall
Last synced: 8 months ago
JSON representation
Simple PHP web page for quick sharing information during lecture or event.
- Host: GitHub
- URL: https://github.com/roboticsbrno/robotarnawall
- Owner: RoboticsBrno
- License: mit
- Created: 2017-07-11T09:13:07.000Z (almost 9 years ago)
- Default Branch: master
- Last Pushed: 2019-01-03T20:51:00.000Z (over 7 years ago)
- Last Synced: 2025-06-02T11:49:16.615Z (about 1 year ago)
- Language: PHP
- Homepage: https://wall.robotikabrno.cz
- Size: 131 KB
- Stars: 0
- Watchers: 6
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# robotarnawall
Simple PHP web page for quick sharing information during lecture or event.
The files with suffix `.dist` (`config.php.dist`, `data.sqlite.dist`) are specific for each instance of wall. You must **delete** the suffix `.dist` for correct working.
## config.php.dist
In this file you can set the wall name and passwords for editing the content on the wall.
## data.sqlite.dist
Empty database.
## Available tags
### Tag [code]
To put on the wall text as source code (C/C++, Python, ...).
```
[code]
// source: http://platformio.org/lib/show/1739/ServoESP32
#include "LearningKit.h"
#include
static const int servoPin = S1;
static const int potentiometerPin = 32;
Servo servo1;
void setup() {
Serial.begin(115200);
servo1.attach(servoPin);
}
void loop() {
int servoPosition = map(analogRead(potentiometerPin), 0, 4096, 0, 180);
servo1.write(servoPosition);
Serial.println(servoPosition);
delay(20);
}[/code]
```
### Tag [raw]
To put on the wall HTML elements and code which you want to process on the user side (in the browser).
```
[raw]
[/raw]
```
## Screenshots
Wall with `raw` tag example

Wall with `code` tag example

Wall with text
