@@ -225,8 +225,8 @@ Basic fields meaning:
225225
226226If other specific fields are necessary you need to define them.
227227You need to override specific methods - e.g. ` connect ` which is depended on type of board.
228- All specific functions are placed at the end of ` hal .py` .
229- If your board needs function supporting its equipment you need to put it in this place .
228+ All specific functions are placed in ` services .py` .
229+ If your board needs function supporting its equipment you need to put it in this file .
230230
231231
232232# Installation guide for uPython #
@@ -246,9 +246,9 @@ change **\<PIN\>** and **\<APN\>** suitable to your SIM card.
246246
2472472 . Copy files into device
248248``` Shell
249- > ampy -pCOMXX put umqttrobust.py
250- > ampy -pCOMXX put simple.py
251- > ampy -pCOMXX put LiveObjects // It will copy directory with its content
249+ > ampy -pCOMXX put umqttrobust.py
250+ > ampy -pCOMXX put simple.py
251+ > ampy -pCOMXX put LiveObjects // It will copy directory with its content
252252```
2532533 . Prepare your script and save it as ` main.py ` then copy file into device.
254254You can use one of example ones (` 1_send_data.py ` , ...) renaming it to ` main.py `
@@ -266,14 +266,14 @@ You can use one of example ones (`1_send_data.py`, ...) renaming it to `main.py`
266266
267267After all steps content of the device should look like below:
268268``` Shell
269- > ampy -pCOMXX ls
269+ > ampy -pCOMXX ls
270270/LiveObjects
271271/boot.py
272272/main.py
273273/umqttrobust.py
274274/simple.py
275275
276- > ampy -pCOMXX ls LiveObjects
276+ > ampy -pCOMXX ls LiveObjects
277277/LiveObjects/Connection.py
278278/LiveObjects/__init__.py
279279/LiveObjects/hal.py
0 commit comments