Skip to content

Commit b07d525

Browse files
authored
chore: ci-testing (#27)
* testing Add branch policy section to README * testing2 Updated the 'How to Use' section for clarity. * Update error logging message for ScienceLab initialization * Update barometer_screen.dart * Remove common and screenshot jobs from workflow * Change dutyMin value from 0 to 10
1 parent 9c6be49 commit b07d525

4 files changed

Lines changed: 7 additions & 4 deletions

File tree

README.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -506,6 +506,9 @@ Despite any reason, follow the steps given below to squash all commits into one
506506

507507
`$ git push -f origin <branch-name>`
508508

509+
//////////
510+
511+
509512
### Branch Policy
510513

511514
We have the following branches

docs/Lux meter.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ Configure view is used to control the lux meter by changing variuos parameters.
4747
4. Update period
4848
- The time delay between two successive sensor readings can be changed by this parameter. The range is from `100ms` to `1000ms`.
4949

50-
## How to Use
50+
## How to Use it
5151

5252
The default sensor for the lux meter is the built-in sensor. If the android device contains the ambient light sensor, immediatly the data can be observed throught the data view.
5353
When using a I2C connected lux sensor, the pin configuration for the sensor is as follows.
@@ -63,4 +63,4 @@ SDA | SDA
6363

6464
The pin configuration for the TSL-2561 is also as same as above.
6565

66-
Change the parameters `update period`, `high limit` and `gain range` and observe the differences.
66+
Change the parameters `update period`, `high limit` and `gain range` and observe the differences.

lib/providers/wave_generator_state_provider.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ enum WaveConst {
3434

3535
enum WaveData {
3636
freqMin(10),
37-
dutyMin(0),
37+
dutyMin(10),
3838
phaseMin(0),
3939
freqMax(5000),
4040
phaseMax(360),

lib/view/barometer_screen.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ class _BarometerScreenState extends State<BarometerScreen> {
7777
_i2c = I2C(_scienceLab!.mPacketHandler);
7878
}
7979
} catch (e) {
80-
logger.e('Error initializing ScienceLab: $e');
80+
logger.e('Error initializing _____ScienceLab_____: $e');
8181
}
8282
}
8383

0 commit comments

Comments
 (0)