ESP8266 Developer Zone The Official ESP8266 Forum 2019-06-26T11:01:24+08:00 https://bbs.espressif.com:443/feed.php?f=9 2019-06-26T11:01:24+08:00 2019-06-26T11:01:24+08:00 https://bbs.espressif.com:443/viewtopic.php?t=10398&p=48389#p48389 <![CDATA[Espressif Cloud Server • Re: 一个关于:ESP8266_RTOS 在线升级FOTA CRC问题]]> Statistics: Posted by Her Mary — Wed Jun 26, 2019 11:01 am


]]>
2019-06-19T20:00:19+08:00 2019-06-19T20:00:19+08:00 https://bbs.espressif.com:443/viewtopic.php?t=10398&p=43943#p43943 <![CDATA[Espressif Cloud Server • Re: 一个关于:ESP8266_RTOS 在线升级FOTA CRC问题]]> Statistics: Posted by Guest — Wed Jun 19, 2019 8:00 pm


]]>
2018-08-23T16:57:42+08:00 2018-08-23T16:57:42+08:00 https://bbs.espressif.com:443/viewtopic.php?t=12090&p=22823#p22823 <![CDATA[Espressif Cloud Server • Re: 乐鑫云服务器可以用来小规模的发布样品吗?]]> Statistics: Posted by Her Mary — Thu Aug 23, 2018 4:57 pm


]]>
2018-08-14T09:41:46+08:00 2018-08-14T09:41:46+08:00 https://bbs.espressif.com:443/viewtopic.php?t=12090&p=22761#p22761 <![CDATA[Espressif Cloud Server • 乐鑫云服务器可以用来小规模的发布样品吗?]]> Statistics: Posted by yinfeng2324 — Tue Aug 14, 2018 9:41 am


]]>
2018-07-19T15:03:54+08:00 2018-07-19T15:03:54+08:00 https://bbs.espressif.com:443/viewtopic.php?t=10398&p=22126#p22126 <![CDATA[Espressif Cloud Server • Re: 一个关于:ESP8266_RTOS 在线升级FOTA CRC问题]]> 1> 在PC端,生成测试程序(从Esp8266源码中抽出upgrade相关代码,直接调用upgrade_crc_check函数)计算CRC值。发现生成的CRC值和用Esp8266编译出来的CRC值有时候相等,有时候不等。
2> 怀疑是Esp8266编译产生的CRC有问题,跟踪makefile文件。发现Esp8266生成bin文件后,是通过调用\tools\gen_appbin.py脚本产生CRC。
3> 对\tools\gen_appbin.py脚本单独进行测试,发现问题出在函数gen_appbin()的最后对all_bin_crc的判断上:
if boot_mode == '1' or boot_mode == '2':
all_bin_crc = getFileCRC(flash_bin_name)
if all_bin_crc < 0:
all_bin_crc = abs(all_bin_crc) - 1
else :
all_bin_crc = abs(all_bin_crc) + 1
print "bin crc: %x"%all_bin_crc
如果all_bin_crc < 0,那么计算出的CRC就是正确的,否则错误。这就是为何有时候CRC相等,有时候不等的原因。
4> 修改上述代码为如下,CRC问题解决。

if boot_mode == '1' or boot_mode == '2':
all_bin_crc = getFileCRC(flash_bin_name)
all_bin_crc = ~all_bin_crc

:D :D :D :D

Statistics: Posted by John Liu — Thu Jul 19, 2018 3:03 pm


]]>
2018-07-18T10:31:22+08:00 2018-07-18T10:31:22+08:00 https://bbs.espressif.com:443/viewtopic.php?t=10398&p=22112#p22112 <![CDATA[Espressif Cloud Server • (搞定)一个关于:ESP8266_RTOS 在线升级FOTA CRC问题]]>
1> 对\tools\gen_appbin.py脚本单独进行测试,发现问题出在函数gen_appbin()的最后对all_bin_crc的判断上:
if boot_mode == '1' or boot_mode == '2':
all_bin_crc = getFileCRC(flash_bin_name)
if all_bin_crc < 0:
all_bin_crc = abs(all_bin_crc) - 1
else :
all_bin_crc = abs(all_bin_crc) + 1
print "bin crc: %x"%all_bin_crc
如果all_bin_crc < 0,那么计算出的CRC就是正确的,否则错误。这就是为何有时候CRC相等,有时候不等的原因。

2> 修改上述代码为如下,CRC问题解决。

if boot_mode == '1' or boot_mode == '2':
all_bin_crc = getFileCRC(flash_bin_name)
all_bin_crc = ~all_bin_crc

Statistics: Posted by John Liu — Wed Jul 18, 2018 10:31 am


]]>
2018-07-11T17:28:19+08:00 2018-07-11T17:28:19+08:00 https://bbs.espressif.com:443/viewtopic.php?t=10398&p=22054#p22054 <![CDATA[Espressif Cloud Server • Re: 一个关于:ESP8266_RTOS 在线升级FOTA CRC问题]]> 2. 是不是编译 user 2 之前没有先 make clean 删除上一次编译生成的文件?

Statistics: Posted by Her Mary — Wed Jul 11, 2018 5:28 pm


]]>
2018-06-29T16:18:33+08:00 2018-06-29T16:18:33+08:00 https://bbs.espressif.com:443/viewtopic.php?t=10398&p=20969#p20969 <![CDATA[Espressif Cloud Server • 一个关于:ESP8266_RTOS 在线升级FOTA CRC问题]]> 问题:
1. 做FOTA时,从Server端下载文件成功,但调用upgrade_crc_check函数时,计算出来的img_crc不正确。读出来的flash_crc正确。
2. 有时候编译出来的user1.bin或者user2.bin放在Server端,进行在线升级时,img_crc又是正确的。
问题2,是非常令我困惑的地方。要么img_crc总是不正确,为何有时候又是正确的呢?程序只是增加了一个串口打印。

Statistics: Posted by John Liu — Fri Jun 29, 2018 4:18 pm


]]>
2018-05-30T14:26:15+08:00 2018-05-30T14:26:15+08:00 https://bbs.espressif.com:443/viewtopic.php?t=1577&p=20582#p20582 <![CDATA[Espressif Cloud Server • Please Translate english]]> Do do you just want it translated?

Statistics: Posted by andreysnug — Wed May 30, 2018 2:26 pm


]]>
2018-03-13T17:58:50+08:00 2018-03-13T17:58:50+08:00 https://bbs.espressif.com:443/viewtopic.php?t=9376&p=19624#p19624 <![CDATA[Espressif Cloud Server • 改变ROM版本后,利用API获取到的ROM版本还是最后一次升级的版本,无法检测最新版]]> 在网页端设置ROM版本后
version.png
,利用列出用户的所有设备 API(GET /v1/user/devices/)列出的设备版本还是未改变,请问是哪里设置不正确吗?
网页端可以显示升级最新版
wangye.png

利用API获取的版本如下
get.png

Statistics: Posted by zxl965210 — Tue Mar 13, 2018 5:58 pm


]]>
2017-12-06T16:57:45+08:00 2017-12-06T16:57:45+08:00 https://bbs.espressif.com:443/viewtopic.php?t=8357&p=18574#p18574 <![CDATA[Espressif Cloud Server • Re: Espressif Cloud Server to Custom Server]]> Statistics: Posted by Alexis — Wed Dec 06, 2017 4:57 pm


]]>
2017-11-20T11:21:46+08:00 2017-11-20T11:21:46+08:00 https://bbs.espressif.com:443/viewtopic.php?t=8357&p=18244#p18244 <![CDATA[Espressif Cloud Server • Re: Espressif Cloud Server to Custom Server]]>
A little update on this issue:
- With my custom Server, I'm able to download a small file; but still not able to download the binary file I need for the OTA (285 KB),
- My custom Server is based in Europe and my Device is based in China.

Is it possible that the Connection is closed by the Server before I am able to download the entire file ?
Then, how the Server should be configured regarding timing considerations ?

Would it be possible to have Support Contact from Espressif Server ?
On the server website: http://iot.espressif.cn/#/api-en/#api-more-contact ; the Contact information is missing...

Thanks,

Statistics: Posted by Alexis — Mon Nov 20, 2017 11:21 am


]]>
2017-11-15T09:42:28+08:00 2017-11-15T09:42:28+08:00 https://bbs.espressif.com:443/viewtopic.php?t=8357&p=18168#p18168 <![CDATA[Espressif Cloud Server • Re: Espressif Cloud Server to Custom Server]]>
Yes the Server is a HTTP Server.
And yes if I open the URL directly in my browser, I can download the rom.bin on my computer.

So I'm not sure where the problem comes from:
- If I try to download the file on my Browser or with a CURL command from the Custom Server, it works.
- If I try to download the file on the ESP8266 from the Espressif Cloud Server, it works.
But if I try to download the file on the ESP8266 from the Custom Server it doesn't work anymore.

Isn't anything special to do on the Server to make it "downloadable" from the ESP8266 ?

Thanks,

Statistics: Posted by Alexis — Wed Nov 15, 2017 9:42 am


]]>
2017-11-14T22:23:11+08:00 2017-11-14T22:23:11+08:00 https://bbs.espressif.com:443/viewtopic.php?t=8357&p=18159#p18159 <![CDATA[Espressif Cloud Server • Re: Espressif Cloud Server to Custom Server]]> Open your url "LINK_OF_THE_CUSTOM_SERVER/rom.bin" with a browser on your PC, can the rom.bin be downloaded on your PC?

Statistics: Posted by Her Mary — Tue Nov 14, 2017 10:23 pm


]]>
2017-11-14T17:57:35+08:00 2017-11-14T17:57:35+08:00 https://bbs.espressif.com:443/viewtopic.php?t=8357&p=18155#p18155 <![CDATA[Espressif Cloud Server • Espressif Cloud Server to Custom Server]]>
I'm developping a Firmware for a device based on the ESP8266 supporting the FOTA.
Until now, I was handling the FOTA through the Espressif Cloud Server but I would like to move to my Own Custom Server.

I've tried to simply replace the HTTP GET I'm doing on the Espressif Cloud Server by a HTTP GET on my Own Server, but it doesn't work.
I've also tried to Get the Size of the Firmware first to erase the flash sector (which I was doing directly when I was doing the GET and reading the Header with the Espressif Cloud Server) but it's doesn't work either.

So my question is about the Custom Server; is there anything specific to do there to allow the ESP8266 to download the Binary file ?
In the FOTA Guide, it is said: "The custom server must support the downloading function". Is there anything special to handle at this point ?

I've tested the Custom Server with Curl command and when I'm doing:

curl LINK_OF_THE_CUSTOM_SERVER/rom.bin"

It works exactly as when I'm doing:

curl -H "Authorization: token HERE_IS_THE_MASTER_DEVICE_KEY" 'https://iot.espressif.cn/v1/device/rom/?action=download_rom&version=v1.0&filename=rom.bin'


Anything I could miss on this part ?

Thanks,

Statistics: Posted by Alexis — Tue Nov 14, 2017 5:57 pm


]]>
2017-10-12T19:54:13+08:00 2017-10-12T19:54:13+08:00 https://bbs.espressif.com:443/viewtopic.php?t=4531&p=16399#p16399 <![CDATA[Espressif Cloud Server • IOT_demo sensor mode not working since 12nd may 2017]]> Statistics: Posted by Bentjudges — Thu Oct 12, 2017 7:54 pm


]]>
2017-09-15T20:18:17+08:00 2017-09-15T20:18:17+08:00 https://bbs.espressif.com:443/viewtopic.php?t=1577&p=15788#p15788 <![CDATA[Espressif Cloud Server • Please Translate english]]> Statistics: Posted by Jamartox — Fri Sep 15, 2017 8:18 pm


]]>
2017-09-13T10:46:28+08:00 2017-09-13T10:46:28+08:00 https://bbs.espressif.com:443/viewtopic.php?t=6089&p=15737#p15737 <![CDATA[Espressif Cloud Server • Re: ESP8266Ex demo开发板,在云服务器上看不到日志信息]]> 怎么烧录之类的,可以参考官网的入门指南 http://www.espressif.com/zh-hans/support/download/documents

Statistics: Posted by Her Mary — Wed Sep 13, 2017 10:46 am


]]>
2017-08-25T16:50:21+08:00 2017-08-25T16:50:21+08:00 https://bbs.espressif.com:443/viewtopic.php?t=6089&p=15329#p15329 <![CDATA[Espressif Cloud Server • ESP8266Ex demo开发板,在云服务器上看不到日志信息]]> 1. 图1 中 ESP_14C642 是 ESP8266Ex 开发板,右边的是直接在服务器上创建的一个设备,通过app可以操控 ESP_14C642 ,本想看下日志,结果发现不能像右边的一样看到那么多信息(图3)。怎么办?

2. 用官方APP控制灯的颜色,连接到云端时app 的log都是https://iot.espressif.cn/v1/datastreams/light/datapoint/?deliver_to_device=true,不连接到云端时是http://192.168.1.102/config?command=light,灯都会正常反应。但后来随便按了板子的按钮或开关,突然发现灯不亮了,app 的log打出来的是 http://localhost:10672/config?command=light,这都是些什么场景呢?还有我的开发板就这么废了吗,我不会烧硬件。
3设备详情,可查看日志.PNG

2查看设备.PNG

1我的设备.PNG

Statistics: Posted by clairehouqq — Fri Aug 25, 2017 4:50 pm


]]>
2017-08-25T16:11:49+08:00 2017-08-25T16:11:49+08:00 https://bbs.espressif.com:443/viewtopic.php?t=66&p=15328#p15328 <![CDATA[Espressif Cloud Server • Re: Illustration: how the ESP-cloud serve your application!!]]>
10.png

Statistics: Posted by clairehouqq — Fri Aug 25, 2017 4:11 pm


]]>
2017-05-18T14:33:16+08:00 2017-05-18T14:33:16+08:00 https://bbs.espressif.com:443/viewtopic.php?t=4592&p=13230#p13230 <![CDATA[Espressif Cloud Server • Re: XPD_DCDC state while in deep sleep]]>
You can refer to the ESP8266 Pin List: http://www.espressif.com/en/support/download/documents.
It is at high logic level.

Thanks for your interest in ESP8266 !

Statistics: Posted by ESP_Faye — Thu May 18, 2017 2:33 pm


]]>
2017-05-17T12:33:06+08:00 2017-05-17T12:33:06+08:00 https://bbs.espressif.com:443/viewtopic.php?t=4592&p=13189#p13189 <![CDATA[Espressif Cloud Server • XPD_DCDC state while in deep sleep]]>
I'd like to know what is the XPD_DCDC state while the ESP8285 is in deep sleep.

Is it at high logic level?

Or is it at high impedance?

In other words: Is it an open drain GPIO during deep sleep?

Thank you.

Best regards,
Hatus

Statistics: Posted by hatus — Wed May 17, 2017 12:33 pm


]]>
2017-05-15T00:46:25+08:00 2017-05-15T00:46:25+08:00 https://bbs.espressif.com:443/viewtopic.php?t=4531&p=13111#p13111 <![CDATA[Espressif Cloud Server • IOT_demo ( sensor mode ) not working since 12nd may 2017]]>
I have several modules equipped with sensors running the IOT_demo software ( sensor mode ).
It worked for almost 1 year.
This the 12nd may ( about 11:00am HK time ), my modules cannot send datas to the espressif cloud server.
All my modules now are running in a loop seeking the next memorised wif networks.

on a terminal if I'm doing this :
telnet iot.espressif.cn 8000

Trying 115.29.202.58...
telnet: connect to address 115.29.202.58: Connection refused
telnet: Unable to connect to remote host
the connection is refused

if I'm doing this :
telnet iot.espressif.com 8000

Trying 119.9.91.208...
Connected to iot.espressif.com.
Escape character is '^]'.

it seems working

Is there any change between iot.espressif.cn and iot.espressif.com ?
Should I update my firmware ?
Or is it an issue with the cloud server ?

Regards
Olivier

Statistics: Posted by olivier.butler — Mon May 15, 2017 12:46 am


]]>
2017-05-14T22:46:54+08:00 2017-05-14T22:46:54+08:00 https://bbs.espressif.com:443/viewtopic.php?t=4529&p=13109#p13109 <![CDATA[Espressif Cloud Server • tcp方式连接不了服务器了,服务器代码能开源吗?]]> Statistics: Posted by 692499304@qq.com — Sun May 14, 2017 10:46 pm


]]>
2017-03-22T11:03:07+08:00 2017-03-22T11:03:07+08:00 https://bbs.espressif.com:443/viewtopic.php?t=1577&p=11535#p11535 <![CDATA[Espressif Cloud Server • Re: Please Translate english]]> iot.espressif.com, the default language is English.

Thanks for your interest in ESP8266!

Statistics: Posted by ESP_Faye — Wed Mar 22, 2017 11:03 am


]]>
2017-03-19T20:15:27+08:00 2017-03-19T20:15:27+08:00 https://bbs.espressif.com:443/viewtopic.php?t=1577&p=11525#p11525 <![CDATA[Espressif Cloud Server • Re: Please Translate english]]>
Regards
snikul

Statistics: Posted by snikul — Sun Mar 19, 2017 8:15 pm


]]>
2017-02-17T18:20:13+08:00 2017-02-17T18:20:13+08:00 https://bbs.espressif.com:443/viewtopic.php?t=3223&p=11336#p11336 <![CDATA[Espressif Cloud Server • Re: API Trigger on iot cloud server]]> the trigger will post as fellow:
{
"device": {
"id": 770197835,
"created": "2016-12-19T23:42:42+08:00",
"updated": "2017-02-17T00:30:19+08:00",
"visibly": true,
"ptype": 45772,
"product_id": 1580185304,
"productbatch_id": 0,
"name": "548c6",
"description": "f117e",
"serial": "2e5ff350",
"bssid": "b083feb39ad5",
"is_private": true,
"is_frozen": false,
"status": "developing",
"metadata": "a85dd",
"key_id": 1870208457,
"location": "",
"last_push": "0001-01-01T08:00:00+08:00",
"last_pull": "0001-01-01T08:00:00+08:00",
"last_active": "2017-02-16T16:30:19+08:00",
"last_activated_at": "2016-12-22T13:44:08+08:00",
"activate_status": "activated",
"activated_at": "1970-01-01T08:00:00+08:00",
"rom_version": "",
"latest_rom_version": ""
},
"trigger": {
"id": 639454757,
"created": "2017-02-18T01:31:53+08:00",
"updated": "2017-02-18T01:36:14+08:00",
"visibly": true,
"name": "ffff",
"trigger_type": "deviceDatastream",
"product_id": 0,
"device_id": 770197835,
"datastream_tmpl_id": 1184225554,
"dimension_index": "x",
"interval": 0,
"interval_func": "max",
"compare_type": "gt",
"threshold_value": 1,
"notified_at": "0001-01-01T08:00:00+08:00",
"message_user": "none",
"url": "http://cloudzhou.org:10001/trigger/webhook1",
"notify_id": 0,
"activate_status": true,
"interval_ts": "0001-01-01T08:00:00+08:00",
"interval_value": 0,
"interval_cnt": 0
},
"value": 2
}

Statistics: Posted by wuyunzhou — Fri Feb 17, 2017 6:20 pm


]]>
2017-02-17T18:19:12+08:00 2017-02-17T18:19:12+08:00 https://bbs.espressif.com:443/viewtopic.php?t=2346&p=11335#p11335 <![CDATA[Espressif Cloud Server • Re: 乐鑫云 触发器功能 URL能否带参数]]>
{
"device": {
"id": 770197835,
"created": "2016-12-19T23:42:42+08:00",
"updated": "2017-02-17T00:30:19+08:00",
"visibly": true,
"ptype": 45772,
"product_id": 1580185304,
"productbatch_id": 0,
"name": "548c6",
"description": "f117e",
"serial": "2e5ff350",
"bssid": "b083feb39ad5",
"is_private": true,
"is_frozen": false,
"status": "developing",
"metadata": "a85dd",
"key_id": 1870208457,
"location": "",
"last_push": "0001-01-01T08:00:00+08:00",
"last_pull": "0001-01-01T08:00:00+08:00",
"last_active": "2017-02-16T16:30:19+08:00",
"last_activated_at": "2016-12-22T13:44:08+08:00",
"activate_status": "activated",
"activated_at": "1970-01-01T08:00:00+08:00",
"rom_version": "",
"latest_rom_version": ""
},
"trigger": {
"id": 639454757,
"created": "2017-02-18T01:31:53+08:00",
"updated": "2017-02-18T01:36:14+08:00",
"visibly": true,
"name": "ffff",
"trigger_type": "deviceDatastream",
"product_id": 0,
"device_id": 770197835,
"datastream_tmpl_id": 1184225554,
"dimension_index": "x",
"interval": 0,
"interval_func": "max",
"compare_type": "gt",
"threshold_value": 1,
"notified_at": "0001-01-01T08:00:00+08:00",
"message_user": "none",
"url": "http://cloudzhou.org:10001/trigger/webhook1",
"notify_id": 0,
"activate_status": true,
"interval_ts": "0001-01-01T08:00:00+08:00",
"interval_value": 0,
"interval_cnt": 0
},
"value": 2
}

Statistics: Posted by wuyunzhou — Fri Feb 17, 2017 6:19 pm


]]>
2017-01-26T23:50:25+08:00 2017-01-26T23:50:25+08:00 https://bbs.espressif.com:443/viewtopic.php?t=3295&p=11190#p11190 <![CDATA[Espressif Cloud Server • Lost connectivity and device names on all accounts]]>
Please help! It appears something has gone wrong with the Espressif server because it is affecting all of my devices and the app.

Statistics: Posted by ScottR — Thu Jan 26, 2017 11:50 pm


]]>
2017-01-16T18:28:41+08:00 2017-01-16T18:28:41+08:00 https://bbs.espressif.com:443/viewtopic.php?t=3223&p=11119#p11119 <![CDATA[Espressif Cloud Server • Re: API Trigger on iot cloud server]]>
Do you have any news ?

Regards
Olivier

Statistics: Posted by olivier.butler — Mon Jan 16, 2017 6:28 pm


]]>
2017-01-04T20:52:29+08:00 2017-01-04T20:52:29+08:00 https://bbs.espressif.com:443/viewtopic.php?t=3223&p=11018#p11018 <![CDATA[Espressif Cloud Server • Re: API Trigger on iot cloud server]]>
Yes sorry for been not accurate.
Yes it is about the iot device in sensor mode. ( see attached picture )
trigger.png


it worked in the past, but now nothing happens


Regards
Olivier

Statistics: Posted by olivier.butler — Wed Jan 04, 2017 8:52 pm


]]>
2017-01-04T11:39:40+08:00 2017-01-04T11:39:40+08:00 https://bbs.espressif.com:443/viewtopic.php?t=3223&p=11008#p11008 <![CDATA[Espressif Cloud Server • Re: API Trigger on iot cloud server]]> what's trigger?our iot support plug、light and sensor.

Statistics: Posted by ESP_Xutao — Wed Jan 04, 2017 11:39 am


]]>
2017-01-02T17:20:57+08:00 2017-01-02T17:20:57+08:00 https://bbs.espressif.com:443/viewtopic.php?t=3223&p=10993#p10993 <![CDATA[Espressif Cloud Server • API Trigger on iot cloud server]]>
are the triggers working on iot.espressif.cn ?

I set some new ones , and they are doing nothing.
I set a trigger 6 months ago, it was working, but not anymore.
is there an issue ?

regards
Olivier

Statistics: Posted by olivier.butler — Mon Jan 02, 2017 5:20 pm


]]>
2016-11-11T11:34:20+08:00 2016-11-11T11:34:20+08:00 https://bbs.espressif.com:443/viewtopic.php?t=2346&p=10505#p10505 <![CDATA[Espressif Cloud Server • Re: 乐鑫云 触发器功能 URL能否带参数]]> 你们功能更新了?没看到说明文档的?
望告知!

Statistics: Posted by binary — Fri Nov 11, 2016 11:34 am


]]>
2016-11-05T14:10:18+08:00 2016-11-05T14:10:18+08:00 https://bbs.espressif.com:443/viewtopic.php?t=3001&p=10412#p10412 <![CDATA[Espressif Cloud Server • The [+ Deploy] buttom is missing]]>
I'm using the ESP8266_NONOS_SDK_v2.0.0_16_08_10 and it's working well. The IoT_Demo example is also working fine. I registered an account at iot.espressif.cn, created a device and my ESP pings the server and gets the response. Until here, everytihng is ok.

After things are all right, I tried to update over the air. Reading the doccument "ESP8266 FOTA Introduction", Version 1.6, Friday, April 22, 2016, at page 10 it says:

"(2) Click a product which need to update firmware, find “ROM Deploy” at the right side of webpage. For example, we click “dev-controller” at above picture, and find “ROM Deploy”."

I found “ROM Deploy” section in my IoTBucket page, but it goes on at page 11:

"(3) Click “+ Deploy” to upload a new version of firmware. Follow steps showing below. ROM version format as “v1.0.1t23701(a)” according to appendix."

And my problem is here. I've found the "ROM Deploy" section, but there is no button [+ Deploy] in my IoTBucket page.

Is there a problem with my account? Did I make something wrong?

Thanks!
Hatus

Statistics: Posted by hatus — Sat Nov 05, 2016 2:10 pm


]]>
2016-10-18T20:03:43+08:00 2016-10-18T20:03:43+08:00 https://bbs.espressif.com:443/viewtopic.php?t=2889&p=10196#p10196 <![CDATA[Espressif Cloud Server • Login Failed Since Last two days]]> From last two days, I am not able to logging in to my account from my mobile application. Apart from this, if I try to update datapoint from my application then it send error-500. The same code had been worked for me till then.

Statistics: Posted by ankitsohliya — Tue Oct 18, 2016 8:03 pm


]]>
2016-08-01T11:50:55+08:00 2016-08-01T11:50:55+08:00 https://bbs.espressif.com:443/viewtopic.php?t=1857&p=8216#p8216 <![CDATA[Espressif Cloud Server • Re: 【Feedback】已经注册云端服务,并获取到 master_device_key.bin, 手机安装 相应的 .apk,如何通过云端控制ESP8266]]> Statistics: Posted by yueda — Mon Aug 01, 2016 11:50 am


]]>
2016-07-28T11:07:44+08:00 2016-07-28T11:07:44+08:00 https://bbs.espressif.com:443/viewtopic.php?t=1857&p=8161#p8161 <![CDATA[Espressif Cloud Server • Re: 【Feedback】已经注册云端服务,并获取到 master_device_key.bin, 手机安装 相应的 .apk,如何通过云端控制ESP8266]]> Statistics: Posted by yueda — Thu Jul 28, 2016 11:07 am


]]>
2016-07-25T19:11:27+08:00 2016-07-25T19:11:27+08:00 https://bbs.espressif.com:443/viewtopic.php?t=1857&p=8115#p8115 <![CDATA[Espressif Cloud Server • Re: 【Feedback】已经注册云端服务,并获取到 master_device_key.bin, 手机安装 相应的 .apk,如何通过云端控制ESP8266]]>
在https://github.com/EspressifApp/IOT-Espressif-Android下载了1.2版本,还是存在上面说的问题,我要卸载了,从新安装0.9.1的版本才能发现设备,晕啊,到底有哪个版本可以吧着两个功能都兼容到,这是个非常严肃的问题了。
能不能把整套:云端设置》手机APP源码版本》ESP8266SDK版本》做一个整合的说明,我找了几天资料,零零碎碎的调试真令人感到崩溃,我最不明白的就是,也是最让大家疑惑的就是sdk设备端添加到和云端的设备添加这两者的联系,虽然知道添加简单的,但是具体很多功能根本不知道怎么去用。

Statistics: Posted by dianzier — Mon Jul 25, 2016 7:11 pm


]]>
2016-07-25T10:55:42+08:00 2016-07-25T10:55:42+08:00 https://bbs.espressif.com:443/viewtopic.php?t=1857&p=8098#p8098 <![CDATA[Espressif Cloud Server • Re: 已经注册云端服务,并获取到 master_device_key.bin, 手机安装 相应的 .apk,如何通过云端控制ESP8266]]> 最新下载链接如下:
RTOS SDK:https://github.com/espressif
Android/Iphone APP:https://github.com/espressifapp

Statistics: Posted by ESP_Rubin — Mon Jul 25, 2016 10:55 am


]]>
2016-07-25T10:22:28+08:00 2016-07-25T10:22:28+08:00 https://bbs.espressif.com:443/viewtopic.php?t=1857&p=8097#p8097 <![CDATA[Espressif Cloud Server • Re: 已经注册云端服务,并获取到 master_device_key.bin, 手机安装 相应的 .apk,如何通过云端控制ESP8266]]> Statistics: Posted by dianzier — Mon Jul 25, 2016 10:22 am


]]>
2016-07-11T18:08:15+08:00 2016-07-11T18:08:15+08:00 https://bbs.espressif.com:443/viewtopic.php?t=2416&p=7902#p7902 <![CDATA[Espressif Cloud Server • Re: 关于云端服务器对商业产品的支持问题]]> 目前我们的云服务提供的功能比较有限,对于一些深层次的应用可能比较吃力,您可以参考http://iot.espressif.cn/#/,了解一下我们目前提供的服务。
目前已经有不少云服务商与我们产品实现了对接,请参考:http://espressif.com/zh-hans/ecosystem/cloud-platform
您可以针对自己产品额定位,选择合适的云服务

Statistics: Posted by ESP_Rubin — Mon Jul 11, 2016 6:08 pm


]]>
2016-07-11T17:10:24+08:00 2016-07-11T17:10:24+08:00 https://bbs.espressif.com:443/viewtopic.php?t=2416&p=7901#p7901 <![CDATA[Espressif Cloud Server • 【Feedback】关于云端服务器对商业产品的支持问题]]> 对于商业产品接入的支持程度如何?比如说稳定性、长期维护程度以及负载量等能否支撑商业产品的接入?

Statistics: Posted by mengzawj — Mon Jul 11, 2016 5:10 pm


]]>
2016-06-30T11:48:04+08:00 2016-06-30T11:48:04+08:00 https://bbs.espressif.com:443/viewtopic.php?t=2346&p=7578#p7578 <![CDATA[Espressif Cloud Server • 【Feedback】乐鑫云 触发器功能 URL能否带参数]]> Statistics: Posted by ESP_Rubin — Thu Jun 30, 2016 11:48 am


]]>
2016-06-24T14:53:01+08:00 2016-06-24T14:53:01+08:00 https://bbs.espressif.com:443/viewtopic.php?t=2346&p=7494#p7494 <![CDATA[Espressif Cloud Server • 乐鑫云 触发器功能 URL能否带参数]]> 请问乐鑫云 触发器功能 URL能否带参数,例如设备id和数据模型之类。
api文档并无此说明,望告知或提供相关文档!

谢谢!急!!! :x

Statistics: Posted by binary — Fri Jun 24, 2016 2:53 pm


]]>
2016-06-02T15:33:29+08:00 2016-06-02T15:33:29+08:00 https://bbs.espressif.com:443/viewtopic.php?t=1877&p=7179#p7179 <![CDATA[Espressif Cloud Server • Re: 阅读代码, 图解析 IoT_Demo 的原理及执行过程]]> 我自己也是一句一句读懂了IOT的过程,并且注释了。
本来也想写一份,送给想入门的,让他们不比经过那么多的麻烦,尽快入门。
但是还是懒,没有像你一样分享出来了,哈哈哈。

Statistics: Posted by pillarpeng — Thu Jun 02, 2016 3:33 pm


]]>
2016-05-17T14:38:56+08:00 2016-05-17T14:38:56+08:00 https://bbs.espressif.com:443/viewtopic.php?t=1887&p=6940#p6940 <![CDATA[Espressif Cloud Server • Re: Using Cloud server to flash custom firmware]]>
Example of upgrading AT firmware is in \ESP8266_NONOS_SDK\examples\at\user\at_upgrade.c.

Example of upgrading firmware base on ESP8266_NONOS_SDK you can refer to http://bbs.espressif.com/viewtopic.php?f=7&t=423#p1619.

Thanks for your interest in ESP8266 !

Statistics: Posted by ESP_Faye — Tue May 17, 2016 2:38 pm


]]>
2016-05-17T13:49:50+08:00 2016-05-17T13:49:50+08:00 https://bbs.espressif.com:443/viewtopic.php?t=1914&p=6937#p6937 <![CDATA[Espressif Cloud Server • Re: 函数编写库函数使用疑问]]>
1. 请勿将不同的 task 设置为同一优先级,ESP8266_NONOS_SDK 支持 0,1,2 三个优先级,即最多支持 3 个 task 设置为不同优先级。

2. user_init 是设置初始化;如果您是在 user_init 中调用 wifi_station_set_config,则无需调用 wifi_station_connect,初始化完成后 ESP8266 会自动连接设置的路由器;如果不是在初始化时调用 wifi_station_set_config,则需要调用 wifi_station_connect ESP8266 才会去连接路由器。

感谢您对 ESP8266 的关注!

Statistics: Posted by ESP_Faye — Tue May 17, 2016 1:49 pm


]]>
2016-04-18T17:31:54+08:00 2016-04-18T17:31:54+08:00 https://bbs.espressif.com:443/viewtopic.php?t=1960&p=6509#p6509 <![CDATA[Espressif Cloud Server • Re: 关于Espressif Cloud的问题]]>
是的,如果您使用 Espressif Cloud,就需要为您的每个设备配一个唯一的 master-device-key。
相当于我们的身份证号码,它就是设备的身份 ID。

Statistics: Posted by ESP_Faye — Mon Apr 18, 2016 5:31 pm


]]>
2016-04-17T23:04:06+08:00 2016-04-17T23:04:06+08:00 https://bbs.espressif.com:443/viewtopic.php?t=1960&p=6498#p6498 <![CDATA[Espressif Cloud Server • Re: 关于Espressif Cloud的问题]]> Statistics: Posted by magicvision — Sun Apr 17, 2016 11:04 pm


]]>